/* ── Self-contained CSS variables (films.css not loaded on detail pages) ── */
:root {
    --films-gold:          #bfa854;
    --films-gold-dim:      rgba(191,168,84,0.12);
    --films-gold-border:   rgba(191,168,84,0.2);
    --films-gold-glow:     rgba(191,168,84,0.07);
    --films-bg:            #010811;
    --films-surface-1:     #040f1a;
    --films-surface-2:     #071522;
    --films-text-primary:  #f5f5fb;
    --films-text-secondary: rgba(245,245,251,0.72);
    --films-text-tertiary:  rgba(245,245,251,0.42);
    --films-ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
    --films-space-1: 4px;
    --films-space-2: 8px;
    --films-space-3: 12px;
    --films-space-4: 16px;
    --films-space-5: 20px;
    --films-space-6: 24px;
    --films-space-8: 32px;
    --films-space-10: 40px;
    --films-space-12: 48px;
    --films-space-16: 64px;
    --films-space-20: 80px;
    --films-space-24: 96px;
}

/* ============================================================
   SVAFF — film-detail-v3.css
   Cinematic film detail page. Dark, editorial, premium.
   ============================================================ */

/* ── Back link ─────────────────────────────────────────────── */
.fd-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(245,245,251,0.45);
    text-decoration: none;
    padding-block: 28px 24px;
    transition: color 0.2s ease;
}
.fd-back svg { transition: transform 0.2s ease; }
.fd-back:hover { color: #bfa854; }
.fd-back:hover svg { transform: translateX(-3px); }

/* ── Hero ──────────────────────────────────────────────────── */
.fd__hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    background: #071522;
}

/* Blurred poster backdrop */
.fd__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.fd__backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(1,8,18,0.55);
    z-index: 1;
}
.fd__backdrop img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: blur(48px) brightness(0.3) saturate(1.5);
    transform: scale(1.12);
}

/* Dark overlay gradient over backdrop */
.fd__hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(1,8,18,0.55) 0%,
            rgba(1,8,18,0.25) 40%,
            rgba(1,8,18,0.75) 80%,
            var(--films-bg) 100%),
        linear-gradient(to right,
            rgba(1,8,18,0.6) 0%,
            transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.fd__hero-body {
    position: relative;
    z-index: 2;
    padding-bottom: 72px;
}

.fd__hero-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: flex-start;
    padding-top: 12px;
}

/* ── Poster column ─────────────────────────────────────────── */
.fd__poster-col {
    position: sticky;
    top: 32px;
}

.fd__poster {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.6),
        0 32px 80px rgba(0,0,0,0.55),
        0 0 0 1px rgba(191,168,84,0.2);
    border-radius: 2px;
}

.fd__poster-placeholder {
    width: 100%;
    aspect-ratio: 2 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(191,168,84,0.15);
    color: rgba(245,245,251,0.3);
    border-radius: 2px;
}
.fd__poster-placeholder span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ── Info column ───────────────────────────────────────────── */
.fd__info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
}

/* Badges */
.fd__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fd__badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    border-radius: 2px;
}
.fd__badge--cat {
    border: 1px solid rgba(191,168,84,0.3);
    color: #bfa854;
    background: transparent;
}
.fd__badge--official {
    border: 1px solid rgba(191,168,84,0.4);
    background: rgba(191,168,84,0.1);
    color: #bfa854;
}
.fd__badge--winner {
    background: #bfa854;
    border-color: #bfa854;
    color: #010f17;
}

/* Title */
.fd__title {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #f5f5fb;
    margin: 0;
    hanging-punctuation: first;
}

/* Director */
.fd__director {
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    color: rgba(245,245,251,0.6);
    margin: 0;
    line-height: 1.5;
}
.fd__director strong {
    color: #f5f5fb;
    font-weight: 600;
}

/* Gold rule */
.fd__rule {
    width: 40px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--films-gold) 0%, transparent 100%);
}

/* Meta */
.fd__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    margin: 0;
    padding: 18px 0;
    border-top: 1px solid rgba(191,168,84,0.15);
    border-bottom: 1px solid rgba(191,168,84,0.15);
}
.fd__meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fd__meta-item dt {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245,245,251,0.35);
    line-height: 1;
}
.fd__meta-item dd {
    font-size: 0.88rem;
    font-weight: 500;
    color: #f5f5fb;
    margin: 0;
    line-height: 1.3;
}

/* Actions */
.fd__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 4px;
}

.fd__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 28px;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-radius: 2px;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.fd__btn:active { transform: scale(0.98); }

.fd__btn--primary {
    background: #bfa854;
    color: #010f17;
    box-shadow: 0 4px 20px rgba(191,168,84,0.3), 0 2px 8px rgba(0,0,0,0.4);
}
.fd__btn--primary:hover {
    background: #d4c06a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(191,168,84,0.4);
}

.fd__btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(1,15,23,0.18);
    border-radius: 50%;
    flex-shrink: 0;
}

.fd__btn--ghost {
    background: transparent;
    border: 1px solid rgba(191,168,84,0.22);
    color: rgba(245,245,251,0.5);
}
.fd__btn--ghost:hover {
    border-color: #bfa854;
    color: #bfa854;
    background: rgba(191,168,84,0.06);
    transform: translateY(-2px);
}
.fd__btn--ghost.copied {
    border-color: #bfa854;
    color: #bfa854;
}

/* ═══════════════════════════════════════════════════════════════
   BODY — three editorial sections
   ═══════════════════════════════════════════════════════════════ */
.fd__body {
    padding-block: 80px 112px;
    border-top: 1px solid rgba(191,168,84,0.1);
}

.fd__body-inner {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Section wrapper ───────────────────────────────────────── */
.fd__section {
    padding-block: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.fd__section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.fd__section:first-child {
    padding-top: 0;
}

/* Section eyebrow label */
.fd__section-header {
    margin-bottom: 28px;
}
.fd__section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #bfa854;
}
.fd__section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: #bfa854;
    opacity: 0.6;
}

/* ── Synopsis ──────────────────────────────────────────────── */
.fd__synopsis-block {
    position: relative;
    padding-left: 24px;
}
.fd__synopsis-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(191,168,84,0.5) 20%,
        rgba(191,168,84,0.5) 80%,
        transparent 100%
    );
}
.fd__synopsis-text {
    font-size: clamp(1rem, 1.4vw, 1.08rem);
    line-height: 1.9;
    color: rgba(245,245,251,0.72);
    margin: 0;
    font-weight: 400;
    hanging-punctuation: first;
}

/* ── Filmmaker card ────────────────────────────────────────── */
.fd__filmmaker-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 40px;
    align-items: flex-start;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(191,168,84,0.1);
    padding: 36px;
}

/* No photo — single column */
.fd__filmmaker-card:not(:has(.fd__filmmaker-portrait)) {
    grid-template-columns: 1fr;
}

.fd__filmmaker-portrait {
    position: relative;
    flex-shrink: 0;
}
.fd__filmmaker-img {
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 2px;
    object-fit: cover;
    object-position: center top;
    border: 1px solid rgba(191,168,84,0.2);
    box-shadow:
        0 8px 32px rgba(0,0,0,0.5),
        0 2px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}
/* Gold glow behind portrait */
.fd__filmmaker-portrait-glow {
    position: absolute;
    inset: -8px;
    background: radial-gradient(ellipse at center, rgba(191,168,84,0.12) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.fd__filmmaker-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 4px;
}

.fd__filmmaker-identity {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(191,168,84,0.1);
}

.fd__filmmaker-name {
    font-size: 1rem;
    font-weight: 700;
    color: #f5f5fb;
    margin: 0;
    letter-spacing: -0.01em;
}
.fd__filmmaker-origin {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(191,168,84,0.7);
    margin: 0;
    letter-spacing: 0.06em;
}

.fd__filmmaker-bio {
    font-size: clamp(0.88rem, 1.2vw, 0.95rem);
    line-height: 1.82;
    color: rgba(245,245,251,0.6);
    margin: 0;
    font-weight: 400;
}

@media (max-width: 640px) {
    .fd__filmmaker-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }
    .fd__filmmaker-img {
        width: 100px;
        height: 100px;
    }
}

/* ── Screening schedule ────────────────────────────────────── */
.fd__screenings {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fd__screening {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(191,168,84,0.1);
    transition: background 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}
.fd__screening:hover {
    background: rgba(191,168,84,0.04);
    border-color: rgba(191,168,84,0.2);
}

/* Calendar block */
.fd__screening-cal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 20px 16px;
    border-right: 1px solid rgba(191,168,84,0.1);
    background: rgba(191,168,84,0.04);
    text-align: center;
    align-self: stretch;
}
.fd__screening-cal-month {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(191,168,84,0.7);
}
.fd__screening-cal-day {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f5f5fb;
    line-height: 1;
    letter-spacing: -0.02em;
}
.fd__screening-cal-dow {
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,245,251,0.3);
}

/* Detail block */
.fd__screening-detail {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.fd__screening-time {
    font-size: 1rem;
    font-weight: 600;
    color: #f5f5fb;
    margin: 0;
    letter-spacing: -0.01em;
}
.fd__screening-tz {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(245,245,251,0.35);
    vertical-align: middle;
}
.fd__screening-venue {
    font-size: 0.82rem;
    color: rgba(245,245,251,0.5);
    margin: 0;
}
.fd__screening-prog {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(191,168,84,0.55);
    margin: 0;
}

/* Ticket button */
.fd__screening-action {
    padding: 20px 24px;
    display: flex;
    align-items: center;
}
.fd__screening-ticket-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(191,168,84,0.3);
    color: #bfa854;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 1px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.fd__screening-ticket-btn:hover {
    background: #bfa854;
    border-color: #bfa854;
    color: #010f17;
}

/* TBA state */
.fd__screenings-tba {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 36px;
    border: 1px solid rgba(191,168,84,0.1);
    background: rgba(255,255,255,0.018);
}
.fd__screenings-tba-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(191,168,84,0.15);
    color: rgba(191,168,84,0.4);
}
.fd__screenings-tba-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fd__screenings-tba-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(245,245,251,0.7);
    margin: 0;
}
.fd__screenings-tba-sub {
    font-size: 0.82rem;
    color: rgba(245,245,251,0.38);
    margin: 0;
    line-height: 1.6;
}
.fd__screenings-tba-dates {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(191,168,84,0.55);
    text-transform: uppercase;
    margin: 4px 0 0;
}

@media (max-width: 580px) {
    .fd__screening {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
    }
    .fd__screening-cal {
        grid-row: 1 / 3;
        padding: 16px 12px;
    }
    .fd__screening-cal-day { font-size: 1.5rem; }
    .fd__screening-action {
        grid-column: 2;
        padding: 0 24px 16px;
    }
    .fd__screenings-tba {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
}

/* ── Trailer overlay ───────────────────────────────────────── */
.fd-overlay {
    position: fixed;
    inset: 0;
    background: rgba(1,6,14,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.fd-overlay.is-open { opacity: 1; }
.fd-overlay[hidden] { display: none; }

.fd-overlay__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(245,245,251,0.6);
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s ease, color 0.2s ease;
}
.fd-overlay__close:hover {
    background: rgba(255,255,255,0.13);
    color: #f5f5fb;
}

.fd-overlay__frame {
    width: min(960px, 92vw);
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: 0 0 0 1px rgba(191,168,84,0.1), 0 40px 100px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.fd-overlay.is-open .fd-overlay__frame { transform: scale(1); }

.fd-overlay__frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── 404 ───────────────────────────────────────────────────── */
.fd-not-found {
    padding-block: 96px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 520px;
}
.fd-not-found__code {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,245,251,0.3);
}
.fd-not-found h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #f5f5fb;
    margin: 0;
    letter-spacing: -0.02em;
}
.fd-not-found p:not(.fd-not-found__code) {
    color: rgba(245,245,251,0.5);
    line-height: 1.7;
    margin: 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 860px) {
    .fd__hero-inner {
        grid-template-columns: 200px 1fr;
        gap: 36px;
    }
}

@media (max-width: 600px) {
    .fd__hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .fd__poster-col {
        position: static;
        max-width: 180px;
        margin: 0 auto;
    }
    .fd__title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
    .fd__btn { flex: 1; justify-content: center; }
    .fd__body { padding-block: 48px 64px; }
}

@media (prefers-reduced-motion: reduce) {
    .fd-back svg, .fd__btn, .fd-overlay, .fd-overlay__frame { transition: none; }
}

/* ── Embed-blocked fallback ────────────────────────────────── */
.fd-overlay__fallback {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #020c16;
    padding: 40px;
    text-align: center;
    z-index: 2;
}
.fd-overlay__fallback.is-visible {
    display: flex;
}
.fd-overlay__fallback p {
    font-size: 1rem;
    font-weight: 600;
    color: #f5f5fb;
    margin: 0;
    line-height: 1.5;
}
.fd-overlay__fallback-sub {
    font-size: 0.82rem !important;
    font-weight: 400 !important;
    color: rgba(245,245,251,0.45) !important;
}
.fd-overlay__fallback-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 28px;
    background: #bfa854;
    color: #010f17;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.fd-overlay__fallback-btn:hover {
    background: #d4c06a;
    transform: translateY(-2px);
}
.fd-overlay__frame {
    position: relative;
}

/* ── Filmmaker section ─────────────────────────────────────── */
.fd__filmmaker {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.fd__filmmaker-photo-wrap {
    flex-shrink: 0;
}

.fd__filmmaker-photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border: 2px solid rgba(191,168,84,0.25);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.fd__filmmaker-bio {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.fd__filmmaker-name {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #bfa854;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .fd__filmmaker {
        flex-direction: column;
        gap: 16px;
    }
}

/* ── Screening schedule ────────────────────────────────────── */
.fd__screenings {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    border: 1px solid rgba(191,168,84,0.12);
}

.fd__screening-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 0;
    align-items: center;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(191,168,84,0.08);
    transition: background 0.2s ease;
}
.fd__screening-item:last-child { border-bottom: none; }
.fd__screening-item:hover { background: rgba(191,168,84,0.04); }

.fd__screening-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    border-right: 1px solid rgba(191,168,84,0.1);
    background: rgba(191,168,84,0.04);
    text-align: center;
    gap: 1px;
}

.fd__screening-day {
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245,245,251,0.35);
}

.fd__screening-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: #bfa854;
    line-height: 1;
}

.fd__screening-mon {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,245,251,0.4);
}

.fd__screening-info {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fd__screening-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f5f5fb;
    margin: 0;
}

.fd__screening-venue {
    font-size: 0.78rem;
    color: rgba(245,245,251,0.55);
    margin: 0;
}

.fd__screening-prog {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(191,168,84,0.6);
    margin: 0;
}

.fd__screening-ticket {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 20px;
    padding: 8px 16px;
    border: 1px solid rgba(191,168,84,0.3);
    color: #bfa854;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 2px;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.fd__screening-ticket:hover {
    background: rgba(191,168,84,0.08);
    border-color: rgba(191,168,84,0.5);
}

/* TBA placeholder */
.fd__screenings-tba {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 32px;
    border: 1px solid rgba(191,168,84,0.1);
    background: rgba(255,255,255,0.015);
    color: rgba(245,245,251,0.4);
}

.fd__screenings-tba p {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(245,245,251,0.5);
    margin: 0;
}

.fd__screenings-tba-sub {
    font-size: 0.78rem !important;
    color: rgba(245,245,251,0.32) !important;
    line-height: 1.6 !important;
}

.fd__screenings-tba-sub strong {
    color: rgba(191,168,84,0.6);
    font-weight: 600;
}

@media (max-width: 520px) {
    .fd__screening-item {
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto;
    }
    .fd__screening-date {
        grid-row: 1 / 3;
    }
    .fd__screening-ticket {
        grid-column: 2;
        margin: 0 16px 12px;
        align-self: start;
        justify-self: start;
    }
}
