/**
 * Episode "Recommended episodes" — anti-flash gate.
 *
 * The server renders the full pool of cards; episode-recs.js then picks the
 * final set on load. Until it does, hide the pool so visitors never see the
 * full list flash before it collapses to the chosen cards. If JS never runs,
 * the ":not(.aoa-recs-ready)" guard is the ONLY thing hiding them — so we keep
 * it scoped to when the script is present (the class is added by the script).
 */
.elementor-posts-container:not(.aoa-recs-ready) .elementor-post {
	display: none;
}
