.page-hero {
    padding: 9rem 0 5rem;
   background:
    radial-gradient(ellipse 85% 65% at 75% 35%, rgba(255, 176, 102, 0.4) 0%, transparent 70%), 
    radial-gradient(ellipse 50% 50% at 15% 85%, rgba(255, 176, 102, 0.2) 0%, transparent 60%), 
    linear-gradient(160deg, 
      var(--orange) 0%, 
      var(--orange) 55%, 
      var(--orange-deep) 85%, 
      var(--orange-dark) 100%
    );
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://picsum.photos/seed/geriaclips-podcast-studio/1400/700");
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 75% 35%, rgba(255, 176, 102, 0.4) 0%, transparent 70%), 
    radial-gradient(ellipse 50% 50% at 15% 85%, rgba(255, 176, 102, 0.2) 0%, transparent 60%), 
    linear-gradient(160deg, 
      var(--orange) 0%, 
      var(--orange) 55%, 
      var(--orange-deep) 85%, 
      var(--orange-dark) 100%
    );
}
.page-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(249, 115, 22, 0.09) 1px,
        transparent 1px
    );
    background-size: 30px 30px;
}
.page-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(249, 115, 22, 0.13) 0%,
        transparent 70%
    );
    bottom: -150px;
    right: 5%;
    pointer-events: none;
}
.page-hero-content {
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    font-family: var(--font-hero);
    font-size: clamp(3.5rem, 8vw, 8.5rem);
    line-height: 1;
    letter-spacing: 0.04em;
    color: #fff;
}
.page-hero h1 span {
    color: var(--orange-dark);
}
.page-hero-sub {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    margin-top: 1.2rem;
    line-height: 1.65;
}
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.73rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}
.page-breadcrumb a {
    color: var(--orange-dark);
    text-decoration: none;
}
.page-breadcrumb a:hover {
    color: #fff;
}
/* Podcast stats in hero */
.hero-podcast-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.hps-item .num {
    font-family: var(--font-hero);
    font-size: 2.2rem;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.05em;
}
.hps-item .num span {
    color: var(--orange);
}
.hps-item .lbl {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin-top: 0.2rem;
}
/* Platform badges */
.platform-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    transition:
        border-color 0.3s,
        color 0.3s,
        background 0.3s,
        transform 0.2s;
}
.platform-badge:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}
.platform-badge i {
    font-size: 1rem;
}
.platform-badge.yt {
    border-color: rgba(255, 0, 0, 0.4);
    color: #ff6b6b;
}
.platform-badge.yt:hover {
    border-color: #ff0000;
    color: #ff0000;
    background: rgba(255, 0, 0, 0.08);
}
/* Hero right — featured episode */
.hero-featured-ep {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.8rem;
    backdrop-filter: blur(10px);
}
.hero-feat-thumb {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
    margin-bottom: 1.2rem;
}
.hero-feat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-feat-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 10, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-feat-play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.hero-feat-play:hover {
    transform: scale(1.12);
}
.hero-feat-play i {
    color: #fff;
    font-size: 1.3rem;
    margin-left: 3px;
}
.hero-feat-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--orange);
    color: #fff;
    border-radius: 20px;
    padding: 0.25rem 0.8rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hero-feat-ep-num {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.35rem;
}
.hero-feat-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}
.hero-feat-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}
.hero-feat-meta i {
    color: var(--orange);
}

/* ── CATEGORY TABS ─────────── */
.cat-section {
    padding: 2.5rem 0 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--grey-light);
    position: sticky;
    top: 72px;
    z-index: 100;
}
.cat-tabs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    align-items: center;
}
.cat-tab {
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.79rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1.5px solid var(--grey-light);
    background: var(--white);
    color: var(--grey);
    transition:
        background var(--tr),
        color var(--tr),
        border-color var(--tr),
        transform 0.2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.cat-tab:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}
.cat-tab.active {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.3);
}
.cat-tab .count {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 0.1rem 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
}
.cat-tab.active .count {
    background: rgba(255, 255, 255, 0.25);
}
.cat-search {
    margin-left: auto;
    position: relative;
}
.cat-search input {
    padding: 0.5rem 1rem 0.5rem 2.4rem;
    border: 1.5px solid var(--grey-light);
    border-radius: 40px;
    font-size: 0.82rem;
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
    width: 220px;
}
.cat-search input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}
.cat-search i {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grey);
    font-size: 0.9rem;
}
@media (max-width: 767px) {
    .cat-search {
        width: 100%;
        margin-left: 0;
        margin-top: 0.75rem;
    }
    .cat-search input {
        width: 100%;
    }
}

/* ── EPISODIOS GRID ────────── */
.ep-main {
    padding: 3rem 0 5rem;
    background: var(--cream);
}
/* Results info */
.results-info {
    font-size: 0.82rem;
    color: var(--grey);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.results-info strong {
    color: var(--dark);
}
/* Episode card */
.ep-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--grey-light);
    transition:
        transform var(--tr),
        box-shadow var(--tr),
        border-color var(--tr);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.ep-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.22);
}
/* Thumb with YouTube embed */
.ep-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--dark);
    overflow: hidden;
    flex-shrink: 0;
}
.ep-thumb-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}
.ep-thumb-wrap iframe.loaded {
    display: block;
}
.ep-thumb-layer {
    position: absolute;
    inset: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.ep-thumb-layer img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ep-thumb-layer .ep-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 10, 0, 0.38);
    transition: background 0.3s;
}
.ep-thumb-layer:hover .ep-thumb-overlay {
    background: rgba(28, 10, 0, 0.52);
}
.ep-play-btn {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.5);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.ep-thumb-layer:hover .ep-play-btn {
    transform: scale(1.12);
    box-shadow: 0 12px 32px rgba(255, 0, 0, 0.6);
}
.ep-play-btn i {
    color: #fff;
    font-size: 1.2rem;
    margin-left: 3px;
}
.ep-ep-num {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
    padding: 0.2rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 1;
}
.ep-cat-badge {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    border-radius: 20px;
    padding: 0.22rem 0.75rem;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}
/* Body */
.ep-body {
    padding: 1.3rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ep-body h5 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
    line-height: 1.35;
}
.ep-body p {
    font-size: 0.83rem;
    color: var(--grey);
    line-height: 1.7;
    flex: 1;
}
.ep-guest {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--grey-light);
}
.ep-guest-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--orange-light);
}
.ep-guest-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ep-guest-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
}
.ep-guest-role {
    font-size: 0.7rem;
    color: var(--grey);
}
/* Footer */
.ep-foot {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    border-top: 1px solid var(--grey-light);
    font-size: 0.72rem;
    color: var(--grey);
    flex-wrap: wrap;
}
.ep-foot i {
    color: var(--orange);
    font-size: 0.85rem;
}
.ep-yt-btn {
    margin-left: auto;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 0.32rem 0.85rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: background 0.3s;
    text-decoration: none;
}
.ep-yt-btn:hover {
    background: var(--orange-dark);
    color: #fff;
}

/* Category color coding */
.cat-historias {
    background: rgba(249, 115, 22, 0.12);
    color: var(--orange-dark);
}
.cat-salud {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}
.cat-familia {
    background: rgba(168, 85, 247, 0.12);
    color: #7e22ce;
}
.cat-podcast {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}
.cat-entrevistas {
    background: rgba(234, 179, 8, 0.12);
    color: #92400e;
}

/* No results */
.no-results {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--grey);
}
.no-results i {
    font-size: 3rem;
    color: var(--grey-light);
    display: block;
    margin-bottom: 1rem;
}
.no-results h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

/* ── NEWSLETTER BAND ─────── */
.newsletter-band {
    padding: 4rem 0;
    background: var(--orange);
}
.newsletter-band h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.newsletter-band h3 em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
}
.newsletter-band p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.newsletter-form input {
    flex: 1;
    min-width: 220px;
    padding: 0.85rem 1.2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    color: var(--dark);
}
.newsletter-form input::placeholder {
    color: var(--grey);
}
.newsletter-form button {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background 0.3s,
        transform 0.2s;
}
.newsletter-form button:hover {
    background: var(--dark-mid);
    transform: translateY(-2px);
}
.platform-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.plat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.3s,
        border-color 0.3s;
}
.plat-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
}
.plat-btn i {
    font-size: 1.1rem;
}
