/* ============================================================
 * EBA Audio Detail + Series — brand-forward sales pages
 * Charcoal / Gold / Ivory · Cormorant Garamond heading
 * ============================================================ */

.eba-aud {
    --aud-gold: var(--eba-gold, #d4a24c);
    --aud-gold-light: var(--eba-gold-light, #e0b96b);
    --aud-gold-dark: var(--eba-gold-dark, #b58834);
    --aud-charcoal: var(--eba-charcoal, #0f172a);
    --aud-ivory: var(--eba-ivory, #f8f5f0);
    --aud-border: #eee9df;
    --aud-muted: #64748b;
    --aud-bg: #fafaf7;

    max-width: 1180px;
    margin: 0 auto;
    padding: 56px 24px 80px;
    color: var(--aud-charcoal);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

.eba-aud * { box-sizing: border-box; }

/* ============== DEFENSIVE THEME OVERRIDES ==============
   Hello / generic Elementor themes set high-specificity color rules on
   h1/h2/h3/p (e.g. .entry-content h2 { color: var(--e-global-color); }) that
   beat our 0,1,0 class selectors and bleed unwanted brand colors into our
   widget. Force inheritance from .eba-aud root so each component owns its
   own color, and the user can still override per element via Elementor. */
/* Only force inheritance on block-level text containers that themes commonly
   recolor (h1-h6, p, li). Span/strong/em are not touched — they keep their
   own brand colors (e.g. .eba-aud__duration-badge, .eba-aud__price, etc.). */
.eba-aud h1, .eba-aud h2, .eba-aud h3, .eba-aud h4, .eba-aud h5, .eba-aud h6,
.eba-aud p, .eba-aud li {
    color: inherit;
}
/* The dark bundle CTA card sets its own white text context — anything inside
   should inherit white unless explicitly themed. Higher specificity than the
   theme's h-tag rules. */
.eba-aud .eba-aud__bundle-card,
.eba-aud .eba-aud__series-bundle-card {
    color: #fff;
}
.eba-aud .eba-aud__bundle-card h1,
.eba-aud .eba-aud__bundle-card h2,
.eba-aud .eba-aud__bundle-card h3,
.eba-aud .eba-aud__bundle-card h4,
.eba-aud .eba-aud__bundle-card p,
.eba-aud .eba-aud__series-bundle-card h1,
.eba-aud .eba-aud__series-bundle-card h2,
.eba-aud .eba-aud__series-bundle-card h3,
.eba-aud .eba-aud__series-bundle-card h4,
.eba-aud .eba-aud__series-bundle-card p {
    color: inherit;
}
.eba-aud .eba-aud__bundle-card .eba-aud__bundle-desc,
.eba-aud .eba-aud__series-bundle-card .eba-aud__series-bundle-desc {
    color: #cbd5e1;
}

/* ============== HERO ============== */
.eba-aud__hero {
    margin-bottom: 56px;
}
.eba-aud__hero-grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 48px;
    align-items: center;
}

.eba-aud__hero-cover {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1e6cf, #e7d4a5);
    box-shadow: 0 24px 56px -16px rgba(15, 23, 42, 0.22);
}
.eba-aud__hero-cover img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.eba-aud__cover-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(212, 162, 76, 0.55);
}
.eba-aud .eba-aud__duration-badge,
.eba-aud__duration-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(6px);
}

.eba-aud__hero-info { display: flex; flex-direction: column; gap: 14px; }
.eba-aud__eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--aud-gold-dark);
}
.eba-aud__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: clamp(2rem, 1.5rem + 2vw, 2.85rem);
    line-height: 1.15;
    margin: 0;
    color: var(--aud-charcoal);
}
.eba-aud__tagline {
    font-style: italic;
    color: var(--aud-muted);
    font-size: 16.5px;
    margin: 0;
}
.eba-aud__desc {
    color: #334155;
    font-size: 15.5px;
    margin: 6px 0 0;
    max-width: 56ch;
}

.eba-aud__price-row {
    display: flex; align-items: baseline; gap: 12px;
    margin-top: 6px;
}
.eba-aud__price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.9rem;
    color: var(--aud-charcoal);
    font-weight: 600;
}
.eba-aud__price-meta {
    color: var(--aud-muted);
    font-size: 13px;
}
.eba-aud__price--free {
    color: #15803d !important;
    background: rgba(34, 197, 94, 0.12);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 1rem !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700 !important;
}
.eba-aud__series-card-price--free {
    color: #15803d !important;
    background: rgba(34, 197, 94, 0.12);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11.5px !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700 !important;
    font-family: 'Inter', sans-serif !important;
}

/* ============== INLINE PLAYER (owned state) ============== */
.eba-aud__player {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--aud-border);
    border-radius: 14px;
    box-shadow: 0 8px 24px -10px rgba(15, 23, 42, 0.08);
    margin-top: 12px;
}
.eba-aud__player audio { display: none; }
.eba-aud__play-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aud-gold), var(--aud-gold-light));
    color: var(--aud-charcoal);
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.15s;
    box-shadow: 0 4px 14px rgba(212, 162, 76, 0.4);
}
.eba-aud__play-btn:hover { transform: scale(1.04); }
.eba-aud__icon-pause { display: none; }
.eba-aud__player.is-playing .eba-aud__icon-play { display: none; }
.eba-aud__player.is-playing .eba-aud__icon-pause { display: block; }

.eba-aud__player-meta { flex: 1; min-width: 0; }
.eba-aud__progress {
    position: relative;
    height: 6px;
    background: rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    overflow: hidden;
    cursor: pointer;
}
.eba-aud__progress-fill {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--aud-gold-dark), var(--aud-gold-light));
    border-radius: 999px;
    transition: width 0.1s linear;
}
.eba-aud__times {
    display: flex; justify-content: space-between;
    font-size: 12px; color: var(--aud-muted);
    margin-top: 8px;
    font-variant-numeric: tabular-nums;
}

/* ============== CTA BUTTONS ============== */
.eba-aud__cta-row {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 4px;
}
.eba-aud__btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}
.eba-aud__btn--sm {
    padding: 9px 16px;
    font-size: 13.5px;
}
.eba-aud__btn--lg {
    padding: 16px 28px;
    font-size: 15.5px;
}
.eba-aud__btn--primary {
    background: linear-gradient(135deg, var(--aud-gold), var(--aud-gold-light));
    color: var(--aud-charcoal) !important;
    box-shadow: 0 6px 18px -4px rgba(212, 162, 76, 0.45);
}
.eba-aud__btn--primary:hover {
    box-shadow: 0 10px 24px -4px rgba(212, 162, 76, 0.6);
    transform: translateY(-1px);
}
.eba-aud__btn--ghost {
    background: transparent;
    color: var(--aud-charcoal) !important;
    border-color: #ddd4c6;
}
.eba-aud__btn--ghost:hover {
    background: var(--aud-ivory);
    border-color: var(--aud-gold);
}
.eba-aud__btn--disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============== TRUST STRIP (under CTA) ============== */
.eba-aud__trust {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.eba-aud__trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--aud-muted);
}
.eba-aud__trust svg {
    color: var(--aud-gold-dark);
}

.eba-aud__notice {
    margin-top: 12px;
    padding: 14px 18px;
    background: rgba(212, 162, 76, 0.12);
    border-left: 3px solid var(--aud-gold);
    border-radius: 8px;
    font-size: 14px;
    color: #5c4b1d;
}

/* ============== "WHO IT'S FOR" + INCLUDES ============== */
.eba-aud__section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2rem);
    font-weight: 600;
    margin: 0 0 18px;
    color: var(--aud-charcoal);
}
.eba-aud__who, .eba-aud__includes {
    margin-bottom: 56px;
    padding: 36px 32px;
    background: var(--aud-bg);
    border-radius: 16px;
    border: 1px solid var(--aud-border);
}
.eba-aud__lede {
    font-size: 17px;
    color: #334155;
    line-height: 1.7;
    margin: 0;
    max-width: 64ch;
}
.eba-aud__includes-body h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    color: var(--aud-charcoal);
    margin: 18px 0 10px;
}
.eba-aud__includes-body p { color: #334155; font-size: 15.5px; }
.eba-aud__includes-body ul { padding-left: 22px; color: #334155; }
.eba-aud__includes-body li { margin-bottom: 6px; font-size: 15px; }

/* ============== BUNDLE CROSS-SELL CARD ============== */
.eba-aud__bundle, .eba-aud__series-bundle {
    margin-bottom: 56px;
}
.eba-aud__bundle-card, .eba-aud__series-bundle-card {
    padding: 36px;
    background:
        radial-gradient(circle at top right, rgba(212, 162, 76, 0.18), transparent 60%),
        linear-gradient(135deg, #1a253b, #0f172a);
    color: #fff;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}
.eba-aud__bundle-card::before, .eba-aud__series-bundle-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(212, 162, 76, 0.25), transparent 70%);
    pointer-events: none;
}
.eba-aud__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--aud-gold), var(--aud-gold-light));
    color: var(--aud-charcoal);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.eba-aud__bundle-title,
.eba-aud__bundle-title,
.eba-aud__series-bundle-title,
.eba-aud .eba-aud__bundle-title,
.eba-aud .eba-aud__series-bundle-title,
.eba-aud__bundle-card .eba-aud__bundle-title,
.eba-aud__series-bundle-card .eba-aud__series-bundle-title,
h1.eba-aud__bundle-title, h2.eba-aud__bundle-title, h3.eba-aud__bundle-title,
h1.eba-aud__series-bundle-title, h2.eba-aud__series-bundle-title, h3.eba-aud__series-bundle-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.7rem;
    margin: 0 0 10px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.25;
}
.eba-aud__bundle-desc,
.eba-aud__series-bundle-desc,
.eba-aud .eba-aud__bundle-desc,
.eba-aud .eba-aud__series-bundle-desc,
.eba-aud__bundle-card .eba-aud__bundle-desc,
.eba-aud__series-bundle-card .eba-aud__series-bundle-desc {
    color: #cbd5e1;
    margin: 0 0 16px;
    line-height: 1.6;
    max-width: 60ch;
}
.eba-aud__bundle-foot {
    display: flex; align-items: center; gap: 18px;
    flex-wrap: wrap;
}
.eba-aud__bundle-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.7rem;
    color: var(--aud-gold-light);
    font-weight: 600;
}

/* ============== TRANSCRIPT (WCAG 2.1 AA) ============== */
.eba-aud__transcript {
    margin: 0 0 48px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.eba-aud__transcript-details {
    background: #fff;
    border: 1px solid var(--aud-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.eba-aud__transcript-details[open] {
    border-color: var(--aud-gold);
    box-shadow: 0 8px 24px -10px rgba(15, 23, 42, 0.08);
}
.eba-aud__transcript-summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--aud-charcoal);
    user-select: none;
}
.eba-aud__transcript-summary::-webkit-details-marker { display: none; }
.eba-aud__transcript-summary > span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.eba-aud__transcript-summary svg { color: var(--aud-gold-dark); flex-shrink: 0; }
.eba-aud__transcript-summary:focus-visible {
    outline: 2px solid var(--aud-gold);
    outline-offset: -2px;
}
.eba-aud__transcript-chevron { transition: transform 0.25s; }
.eba-aud__transcript-details[open] .eba-aud__transcript-chevron { transform: rotate(180deg); }

.eba-aud__transcript-body {
    padding: 8px 26px 24px;
    color: #334155;
    font-size: 15px;
    line-height: 1.78;
    max-height: 480px;
    overflow-y: auto;
    border-top: 1px solid var(--aud-border);
    margin-top: -1px;
}
.eba-aud__transcript-body:focus-visible {
    outline: 2px solid var(--aud-gold);
    outline-offset: -2px;
}
.eba-aud__transcript-body p { margin: 0 0 14px; }
.eba-aud__transcript-body p:last-child { margin-bottom: 0; }
/* Highlight timestamps "(mm:ss)" subtly so readers can scan */
.eba-aud__transcript-body p::first-letter { font-weight: 500; }

@media (max-width: 540px) {
    .eba-aud__transcript-summary { padding: 16px 18px; font-size: 14px; }
    .eba-aud__transcript-body { padding: 8px 18px 20px; font-size: 14.5px; }
}

/* ============== FAQ ============== */
.eba-aud__faq {
    margin-top: 56px;
    margin-bottom: 32px;
    text-align: center;
}
.eba-aud__faq .eba-aud__section-title {
    margin-bottom: 36px;
    text-align: center;
}
.eba-aud__faq-list {
    display: flex; flex-direction: column;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}
.eba-aud__faq-item {
    background: #fff;
    border: 1px solid var(--aud-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.15s;
}
.eba-aud__faq-item[open] {
    border-color: var(--aud-gold);
}
.eba-aud__faq-item summary {
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 600;
    font-size: 15px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--aud-charcoal);
}
.eba-aud__faq-item summary::-webkit-details-marker { display: none; }
.eba-aud__faq-item summary svg {
    transition: transform 0.2s;
    color: var(--aud-gold-dark);
    flex-shrink: 0;
}
.eba-aud__faq-item[open] summary svg { transform: rotate(180deg); }
.eba-aud__faq-item p {
    padding: 0 22px 20px;
    color: #475569;
    font-size: 14.5px;
    margin: 0;
    line-height: 1.65;
}

/* ============================================================
 * SERIES SALES PAGE (Widget_Audio_Series_Sales)
 * ============================================================ */

.eba-aud--series .eba-aud__series-hero {
    text-align: center !important;
    margin-bottom: 56px;
    padding: 80px 32px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 162, 76, 0.10), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(212, 162, 76, 0.08), transparent 60%),
        linear-gradient(180deg, #fafaf7, #f8f5f0);
    border: 1px solid var(--aud-border);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 460px;
}
.eba-aud--series .eba-aud__series-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 88%, rgba(212, 162, 76, 0.18), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(15, 23, 42, 0.04), transparent 30%);
    pointer-events: none;
}
.eba-aud--series .eba-aud__series-hero > * { position: relative; z-index: 1; }

.eba-aud--series .eba-aud__series-hero .eba-aud__eyebrow {
    margin-bottom: 22px;
    padding: 7px 16px;
    background: rgba(212, 162, 76, 0.12);
    border: 1px solid rgba(212, 162, 76, 0.3);
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

/* Hero title — typography props are defaults only, Elementor Style tab wins.
   Layout props (margin/text-align/display/width) keep !important to beat
   Hello theme's <h1>/<h2> defaults. */
.eba-aud__series-title,
.eba-aud--series h1.eba-aud__series-title,
.eba-aud--series h2.eba-aud__series-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.2rem, 1.8rem + 2vw, 3.6rem);
    font-weight: 600;
    line-height: 1.12;
    color: var(--aud-charcoal);
    max-width: 28ch;
    letter-spacing: -0.01em;
    margin: 0 auto 24px !important;
    text-align: center !important;
    display: block !important;
    width: auto !important;
}
.eba-aud__series-lede,
.eba-aud--series p.eba-aud__series-lede {
    font-size: 17.5px;
    color: #475569;
    line-height: 1.72;
    max-width: 58ch;
    margin: 0 auto !important;
    text-align: center !important;
    display: block !important;
    width: auto !important;
}

/* Decorative gold rule below hero subheading */
.eba-aud--series .eba-aud__series-hero .eba-aud__series-lede::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    margin: 28px auto 0;
    background: linear-gradient(90deg, transparent, var(--aud-gold), transparent);
    border-radius: 999px;
}

/* ============== TRACK GRID ============== */
.eba-aud__series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}
.eba-aud__series-card {
    background: #fff;
    border: 1px solid var(--aud-border);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.2s;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.eba-aud__series-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: 0 0 0 0 rgba(212, 162, 76, 0.6);
    transition: box-shadow 0.35s;
}
.eba-aud__series-card:hover {
    border-color: rgba(212, 162, 76, 0.5);
    box-shadow: 0 18px 40px -14px rgba(15, 23, 42, 0.18);
    transform: translateY(-4px);
}
.eba-aud__series-card:hover::after {
    box-shadow: 0 0 0 2px rgba(212, 162, 76, 0.2);
}

.eba-aud__series-card-cover {
    aspect-ratio: 16 / 10;
    position: relative;
    background:
        linear-gradient(135deg, rgba(212, 162, 76, 0.18) 0%, rgba(212, 162, 76, 0.04) 100%),
        linear-gradient(180deg, #f5ecd6, #e8d8b3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.eba-aud__series-card-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.35), transparent 38%),
        radial-gradient(circle at 20% 90%, rgba(15, 23, 42, 0.06), transparent 50%);
    pointer-events: none;
}
.eba-aud__series-card-cover img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}
.eba-aud__series-card:hover .eba-aud__series-card-cover img {
    transform: scale(1.06);
}

/* Audio wave hint on empty placeholder cover */
.eba-aud__series-card-cover:not(:has(img))::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 24px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 24' fill='none' stroke='%23b58834' stroke-width='1.6' stroke-linecap='round' opacity='0.55'%3E%3Cline x1='4' y1='10' x2='4' y2='14'/%3E%3Cline x1='10' y1='6' x2='10' y2='18'/%3E%3Cline x1='16' y1='2' x2='16' y2='22'/%3E%3Cline x1='22' y1='8' x2='22' y2='16'/%3E%3Cline x1='28' y1='4' x2='28' y2='20'/%3E%3Cline x1='34' y1='10' x2='34' y2='14'/%3E%3Cline x1='40' y1='2' x2='40' y2='22'/%3E%3Cline x1='46' y1='6' x2='46' y2='18'/%3E%3Cline x1='52' y1='8' x2='52' y2='16'/%3E%3Cline x1='58' y1='4' x2='58' y2='20'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 2;
    opacity: 0.85;
}
.eba-aud__series-card-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 5.6rem;
    color: rgba(15, 23, 42, 0.22);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
}
.eba-aud__series-owned-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(15, 23, 42, 0.9);
    color: var(--aud-gold-light);
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.eba-aud__series-card-body {
    padding: 26px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.eba-aud__series-card-num-text {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--aud-gold-dark);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.eba-aud__series-card-num-text::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--aud-gold);
    display: inline-block;
}
.eba-aud__series-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 600;
    margin: 6px 0 0;
    line-height: 1.18;
    letter-spacing: -0.005em;
}
.eba-aud__series-card-title a {
    color: var(--aud-charcoal);
    text-decoration: none;
    transition: color 0.18s;
}
.eba-aud__series-card-title a:hover { color: var(--aud-gold-dark); }
.eba-aud__series-card-tagline {
    font-style: italic;
    color: var(--aud-muted);
    font-size: 13.5px;
    margin: 4px 0 0;
    line-height: 1.45;
}
.eba-aud__series-card-excerpt {
    font-size: 13.5px;
    color: #475569;
    margin: 12px 0 0;
    line-height: 1.6;
    flex: 1;
}
.eba-aud__series-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--aud-border);
    font-size: 13px;
    gap: 10px;
    flex-wrap: wrap;
}
.eba-aud__series-card-duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--aud-muted);
}
.eba-aud__series-card-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--aud-charcoal);
    letter-spacing: -0.01em;
}
.eba-aud__series-card-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}
.eba-aud__series-card-learn {
    font-size: 13px;
    color: var(--aud-gold-dark);
    text-decoration: none;
    font-weight: 600;
}
.eba-aud__series-card-learn:hover { text-decoration: underline; }

/* ============== SERIES BUNDLE CARD (richer) ============== */
.eba-aud__series-bundle-card {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 36px;
    align-items: center;
}
.eba-aud__series-bundle-list {
    list-style: none; padding: 0; margin: 12px 0 0;
    display: flex; flex-direction: column; gap: 8px;
}
.eba-aud__series-bundle-list li {
    display: flex; align-items: flex-start; gap: 10px;
    color: #e2e8f0;
    font-size: 14px;
}
.eba-aud__series-bundle-list svg {
    color: var(--aud-gold-light);
    flex-shrink: 0;
    margin-top: 4px;
}
.eba-aud__series-bundle-buy {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.eba-aud__series-bundle-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    justify-content: center;
}
.eba-aud__series-bundle-price-strike {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 18px;
}
.eba-aud__series-bundle-price-now {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4rem;
    color: var(--aud-gold-light);
    font-weight: 600;
}
.eba-aud__series-bundle-buy small {
    color: #94a3b8;
    font-size: 12px;
}
.eba-aud__series-bundle-card--owned {
    text-align: center;
    grid-template-columns: 1fr;
}
.eba-aud__series-bundle-card--owned p {
    color: #cbd5e1;
    margin: 4px 0 18px;
}

/* ============== TRUST STRIP ============== */
.eba-aud__series-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 56px;
    padding: 28px 24px;
    background: var(--aud-bg);
    border-radius: 14px;
    border: 1px solid var(--aud-border);
}
.eba-aud__series-trust-item {
    text-align: center;
}
.eba-aud__series-trust-item svg {
    color: var(--aud-gold-dark);
    margin-bottom: 8px;
}
.eba-aud__series-trust-item strong {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--aud-charcoal);
}
.eba-aud__series-trust-item p {
    margin: 0;
    color: var(--aud-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 860px) {
    .eba-aud { padding: 36px 18px 64px; }
    .eba-aud__hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .eba-aud__hero-cover { max-width: 340px; margin: 0 auto; }
    .eba-aud__series-bundle-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .eba-aud__series-bundle-list { text-align: left; }
    .eba-aud__bundle-foot { justify-content: center; }
}

@media (max-width: 540px) {
    .eba-aud { padding: 28px 14px 56px; }
    .eba-aud__bundle-card, .eba-aud__series-bundle-card,
    .eba-aud__who, .eba-aud__includes { padding: 22px 18px; }
    .eba-aud__series-grid { gap: 14px; }
    .eba-aud__series-card-body { padding: 18px 18px 20px; }
    .eba-aud__series-trust { padding: 18px 14px; }
    .eba-aud__player {
        flex-wrap: wrap;
        gap: 12px;
    }
    .eba-aud__player-meta { width: 100%; }
}
