/* ═══════════════════════════════════════════════════════════════════════════
   The Fringe Feed v5 — Frontend Styles
   Aesthetic: editorial dark, sharp, high-contrast, magazine-quality
   Fonts: Syne (display) + DM Sans (body) via Google Fonts
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Tokens ───────────────────────────────────────────────────────────────── */
:root {
    --ff-bg:        #09090b;
    --ff-surface:   #111115;
    --ff-surface2:  #18181d;
    --ff-border:    #27272f;
    --ff-border2:   #3f3f4a;
    --ff-text:      #f4f4f5;
    --ff-muted:     #71717a;
    --ff-dim:       #3f3f46;

    --ff-para:   #a78bfa;  /* violet */
    --ff-crypt:  #34d399;  /* emerald */
    --ff-ufo:    #38bdf8;  /* sky */
    --ff-accent: #f97316;  /* orange — brand accent */

    --ff-hero-h: clamp(380px, 50vw, 600px);
    --ff-card-r: 10px;
    --ff-gap:    20px;

    --ff-font-display: 'Syne', system-ui, sans-serif;
    --ff-font-body:    'DM Sans', system-ui, sans-serif;
}

/* ── Base ─────────────────────────────────────────────────────────────────── */
.ff-wrap {
    font-family: var(--ff-font-body);
    color: var(--ff-text);
    background: var(--ff-bg);
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 40px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.ff-wrap *, .ff-wrap *::before, .ff-wrap *::after { box-sizing: border-box; }
.ff-wrap a { text-decoration: none; color: inherit; }
.ff-wrap img { display: block; max-width: 100%; height: auto; }

/* ── Filter bar ───────────────────────────────────────────────────────────── */
.ff-filters {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.ff-filter-btn {
    padding: 7px 18px;
    border-radius: 100px;
    border: 1px solid var(--ff-border);
    background: transparent;
    color: var(--ff-muted);
    font-family: var(--ff-font-body);
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .18s;
    white-space: nowrap;
}
.ff-filter-btn:hover {
    border-color: var(--ff-border2);
    color: var(--ff-text);
}
.ff-filter-btn.is-active {
    background: var(--ff-text);
    border-color: var(--ff-text);
    color: var(--ff-bg);
    font-weight: 600;
}

/* ── Category pills ───────────────────────────────────────────────────────── */
.ff-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.ff-pill--paranormal { background: rgba(167,139,250,.12); color: var(--ff-para);   border: 1px solid rgba(167,139,250,.2); }
.ff-pill--cryptid    { background: rgba(52,211,153,.1);   color: var(--ff-crypt);  border: 1px solid rgba(52,211,153,.18); }
.ff-pill--ufo        { background: rgba(56,189,248,.1);   color: var(--ff-ufo);    border: 1px solid rgba(56,189,248,.18); }
.ff-pill--weird      { background: rgba(249,115,22,.1);   color: #f97316;          border: 1px solid rgba(249,115,22,.2); }
.ff-pill--science    { background: rgba(232,121,249,.1);  color: #e879f9;          border: 1px solid rgba(232,121,249,.2); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.ff-hero-wrap { margin-bottom: 28px; }

.ff-hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: var(--ff-hero-h);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--ff-surface2);
    border: 1px solid var(--ff-border);
    transition: transform .25s cubic-bezier(.2,0,.0,1), box-shadow .25s;
}
.ff-hero:hover { transform: scale(1.005); box-shadow: 0 24px 60px rgba(0,0,0,.5); }

.ff-hero__media {
    position: absolute;
    inset: 0;
}
.ff-hero__media--empty { background: var(--ff-surface2); }
.ff-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    image-rendering: auto;
}
.ff-hero__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ff-surface2) 0%, var(--ff-bg) 100%);
}
.ff-hero__placeholder-icon { font-size: 5rem; opacity: .18; filter: grayscale(1); }

.ff-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(9,9,11,.97) 0%,
        rgba(9,9,11,.75) 40%,
        rgba(9,9,11,.15) 70%,
        transparent 100%
    );
}

.ff-hero__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(24px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ff-hero__title {
    font-family: var(--ff-font-display);
    font-size: clamp(1.4rem, 3.2vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 0;
    max-width: 72ch;
    text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.ff-hero__excerpt {
    color: rgba(255,255,255,.72);
    font-size: .92rem;
    line-height: 1.55;
    max-width: 60ch;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ff-hero__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .78rem;
    color: rgba(255,255,255,.5);
}
.ff-hero__source { font-weight: 600; color: rgba(255,255,255,.65); }
.ff-hero__read {
    margin-left: auto;
    color: var(--ff-accent);
    font-weight: 600;
    font-size: .82rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all .2s;
}
.ff-hero:hover .ff-hero__read { opacity: 1; transform: translateX(0); }

/* ── Ad row (after hero) ─────────────────────────────────────────────────── */
.ff-ad-row {
    margin-bottom: 28px;
    text-align: center;
}
.ff-ad--adsense, .ff-ad--custom { width: 100%; }

/* ── Card grid ────────────────────────────────────────────────────────────── */
.ff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: var(--ff-gap);
    margin-bottom: 40px;
}

/* ── Article card ─────────────────────────────────────────────────────────── */
.ff-card {
    background: var(--ff-surface);
    border: 1px solid var(--ff-border);
    border-radius: var(--ff-card-r);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
}
.ff-card:hover {
    border-color: var(--ff-border2);
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
    transform: translateY(-2px);
}
.ff-card--ad {
    background: var(--ff-surface2);
    border-style: dashed;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.ff-card__link {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

/* Card image */
.ff-card__media {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--ff-surface2);
    flex-shrink: 0;
    position: relative;
}
.ff-card__media--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
}
.ff-card__media-icon {
    font-size: 2.8rem;
    opacity: .12;
    filter: grayscale(1);
}
.ff-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    transition: transform .4s cubic-bezier(.2,0,0,1);
}
.ff-card:hover .ff-card__img { transform: scale(1.04); }

/* Card body */
.ff-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    flex: 1;
}
.ff-card__title {
    font-family: var(--ff-font-display);
    font-size: .97rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ff-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .15s;
}
.ff-card:hover .ff-card__title { color: #fff; }
.ff-card__excerpt {
    font-size: .82rem;
    color: var(--ff-muted);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.ff-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--ff-border);
    gap: 8px;
}
.ff-card__source {
    font-size: .72rem;
    font-weight: 600;
    color: var(--ff-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ff-card__time {
    font-size: .72rem;
    color: var(--ff-dim);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Load more ────────────────────────────────────────────────────────────── */
.ff-more-wrap { text-align: center; padding: 8px 0 48px; }
.ff-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 36px;
    background: transparent;
    border: 1px solid var(--ff-border2);
    border-radius: 100px;
    color: var(--ff-muted);
    font-family: var(--ff-font-body);
    font-size: .88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
}
.ff-more-btn:hover {
    border-color: var(--ff-text);
    color: var(--ff-text);
    background: var(--ff-surface);
}
.ff-more-btn:disabled { opacity: .4; cursor: default; }
.ff-more-btn__icon { transition: transform .2s; }
.ff-more-btn:hover .ff-more-btn__icon { transform: translateY(3px); }
.ff-more-btn--loading .ff-more-btn__text::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: ff-spin .7s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

/* ── Empty state ──────────────────────────────────────────────────────────── */
.ff-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--ff-muted);
    font-size: .95rem;
}
.ff-empty-icon { display: block; font-size: 3rem; margin-bottom: 16px; opacity: .4; }
.ff-empty a { color: var(--ff-ufo); text-decoration: underline; }

/* ── Animations ───────────────────────────────────────────────────────────── */
@keyframes ff-spin { to { transform: rotate(360deg); } }

@keyframes ff-fadein {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ff-card { animation: ff-fadein .3s ease both; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (min-width: 900px) {
    .ff-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) {
    .ff-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 600px) {
    .ff-hero { grid-template-rows: clamp(280px, 70vw, 400px); }
    .ff-grid { grid-template-columns: 1fr; gap: 14px; }
    .ff-filter-btn { padding: 6px 14px; font-size: .78rem; }
}

/* ── Conspiracy pill ──────────────────────────────────────────────────────── */
.ff-pill--conspiracy { background: rgba(239,68,68,.18); color: #fca5a5; }

/* ── Submit RSS Feed Form ────────────────────────────────────────────────── */
.ff-submit-wrap {
    background: #0f1117;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    max-width: 600px;
    margin: 2rem auto;
    font-family: var(--ff-sans, 'DM Sans', system-ui, sans-serif);
}
.ff-submit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 .4rem;
}
.ff-submit-desc {
    color: #94a3b8;
    font-size: .9rem;
    margin: 0 0 1.6rem;
    line-height: 1.5;
}
.ff-submit-row {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin-bottom: 1.1rem;
}
.ff-submit-row label {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #94a3b8;
}
.ff-required { color: #f87171; }
.ff-submit-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: #64748b; }
.ff-submit-row input,
.ff-submit-row select,
.ff-submit-row textarea {
    background: #1a1f2e;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: .9rem;
    padding: .65rem .9rem;
    transition: border-color .2s;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}
.ff-submit-row input:focus,
.ff-submit-row select:focus,
.ff-submit-row textarea:focus {
    outline: none;
    border-color: #8b5cf6;
}
.ff-submit-row textarea { resize: vertical; min-height: 70px; }
.ff-submit-row select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.2rem; }
.ff-submit-hint { font-size: .78rem; color: #64748b; }
.ff-submit-error {
    background: rgba(239,68,68,.12);
    border: 1px solid rgba(239,68,68,.3);
    border-radius: 8px;
    color: #fca5a5;
    font-size: .85rem;
    padding: .6rem .9rem;
    margin-bottom: .8rem;
}
.ff-submit-btn {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 600;
    padding: .7rem 1.8rem;
    transition: opacity .2s, transform .15s;
    letter-spacing: .02em;
}
.ff-submit-btn:hover:not(:disabled) { opacity: .9; transform: translateY(-1px); }
.ff-submit-btn:disabled { opacity: .6; cursor: default; }
.ff-submit-btn__spinner { display: inline-block; animation: ff-spin .7s linear infinite; }
@keyframes ff-spin { to { transform: rotate(360deg); } }
.ff-submit-success {
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.3);
    border-radius: 12px;
    color: #86efac;
    font-size: .95rem;
    padding: 1.5rem;
    text-align: center;
    line-height: 1.5;
}
.ff-submit-success__icon { font-size: 2rem; display: block; margin-bottom: .5rem; }

/* Ancient Mysteries & Occult category pills */
.ff-pill--ancient  { background: rgba(217,119,6,.18);  color: #fcd34d; }
.ff-pill--occult   { background: rgba(124,58,237,.22); color: #c4b5fd; }

/* ── Search bar ────────────────────────────────────────────────────────────── */
.ff-search-wrap {
    margin-bottom: 20px;
}
.ff-search-inner {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--ff-surface);
    border: 1px solid var(--ff-border);
    border-radius: 100px;
    transition: border-color .18s, box-shadow .18s;
    max-width: 520px;
}
.ff-search-inner:focus-within {
    border-color: var(--ff-border2);
    box-shadow: 0 0 0 3px rgba(139,92,246,.12);
}
.ff-search-icon {
    position: absolute;
    left: 16px;
    color: var(--ff-muted);
    display: flex;
    align-items: center;
    pointer-events: none;
}
.ff-search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 11px 44px 11px 44px;
    color: var(--ff-text);
    font-family: var(--ff-font-body);
    font-size: .9rem;
    border-radius: 100px;
}
.ff-search-input::placeholder { color: var(--ff-muted); }
.ff-search-input::-webkit-search-cancel-button { display: none; }
.ff-search-clear {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--ff-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 50%;
    transition: color .15s, background .15s;
}
.ff-search-clear:hover { color: var(--ff-text); background: var(--ff-surface2); }
.ff-search-status {
    margin-top: 10px;
    font-size: .82rem;
    color: var(--ff-muted);
    padding-left: 4px;
}

/* Ancient Mysteries & Occult category pills */
.ff-pill--ancient  { background: rgba(217,119,6,.18);  color: #fcd34d; border: 1px solid rgba(217,119,6,.25); }
.ff-pill--occult   { background: rgba(124,58,237,.22); color: #c4b5fd; border: 1px solid rgba(124,58,237,.3); }

/* ── Pagination ────────────────────────────────────────────────────────────── */
.ff-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0 48px;
    font-family: var(--ff-font-body);
}
.ff-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--ff-border2);
    border-radius: 100px;
    color: var(--ff-muted);
    font-size: .88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
}
.ff-page-btn:hover {
    border-color: var(--ff-text);
    color: var(--ff-text);
    background: var(--ff-surface);
}
.ff-page-current {
    font-size: .82rem;
    color: var(--ff-dim);
    padding: 0 8px;
}

/* ── Source Spotlight ──────────────────────────────────────────────────────── */
.ff-spotlight {
    margin: 32px 0;
    font-family: var(--ff-font-body);
}
.ff-spotlight__heading {
    font-family: var(--ff-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ff-text);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ff-spotlight__heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ff-border);
}
.ff-spotlight__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(260px,100%), 1fr));
    gap: var(--ff-gap);
}
.ff-spotlight__card {
    background: var(--ff-surface);
    border: 1px solid var(--ff-border);
    border-radius: var(--ff-card-r);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .2s, box-shadow .2s;
}
.ff-spotlight__card:hover {
    border-color: var(--ff-border2);
    box-shadow: 0 8px 28px rgba(0,0,0,.3);
}
.ff-spotlight__name {
    font-family: var(--ff-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ff-text);
    margin: 0;
    line-height: 1.25;
}
.ff-spotlight__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .72rem;
    color: var(--ff-muted);
}
.ff-spotlight__meta span { display: flex; align-items: center; gap: 3px; }
.ff-spotlight__latest {
    display: block;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--ff-border);
    font-size: .78rem;
    color: var(--ff-muted);
    text-decoration: none;
    line-height: 1.4;
    transition: color .15s;
}
.ff-spotlight__latest:hover { color: var(--ff-text); }
.ff-spotlight__latest-label { color: var(--ff-dim); font-weight: 600; display: block; margin-bottom: 2px; }
.ff-spotlight__latest-title { color: var(--ff-muted); }
.ff-spotlight__latest:hover .ff-spotlight__latest-title { color: var(--ff-text); }

/* ── Original content badges ───────────────────────────────────────────────── */

/* Card — orange accent border + badge */
.ff-card--original {
    border-color: rgba(249,115,22,.35);
    position: relative;
}
.ff-card--original:hover {
    border-color: rgba(249,115,22,.65);
    box-shadow: 0 8px 28px rgba(249,115,22,.12);
}
.ff-original-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: rgba(249,115,22,.92);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 100px;
    pointer-events: none;
    backdrop-filter: blur(4px);
}

/* Hero — ribbon in top-left corner */
.ff-hero--original {
    border: 1px solid rgba(249,115,22,.4);
}
.ff-original-ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    background: rgba(249,115,22,.92);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    pointer-events: none;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.ff-hero-wrap { position: relative; }

/* Admin shortcode group labels */
.fringe-sc-group {
    font-size: .7rem;
    font-weight: 700;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 10px 0 4px;
    border-bottom: 1px solid #27272f;
    margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Story page — .fsp- prefix (single-fringe-story.php)
   ═══════════════════════════════════════════════════════════════════════════ */
.fsp-wrap {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: #09090b;
    color: #f4f4f5;
    max-width: 780px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 60px) clamp(16px, 4vw, 32px);
    -webkit-font-smoothing: antialiased;
}
.fsp-wrap *, .fsp-wrap *::before, .fsp-wrap *::after { box-sizing: border-box; }
.fsp-wrap a { color: inherit; }

.fsp-breadcrumb {
    font-size: .78rem;
    color: #71717a;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.fsp-breadcrumb a { color: #71717a; text-decoration: none; }
.fsp-breadcrumb a:hover { color: #f4f4f5; }
.fsp-breadcrumb__sep { color: #3f3f46; }

.fsp-header { margin-bottom: 28px; }
.fsp-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: color-mix(in srgb, var(--fsp-cat, #f97316) 15%, transparent);
    color: var(--fsp-cat, #f97316);
    border: 1px solid color-mix(in srgb, var(--fsp-cat, #f97316) 30%, transparent);
    margin-bottom: 16px;
}
.fsp-title {
    font-family: 'Syne', system-ui, sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 16px;
}
.fsp-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    color: #71717a;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.fsp-meta__source { font-weight: 600; color: #a1a1aa; }
.fsp-meta__dot { color: #3f3f46; }

.fsp-hero-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    margin: 24px 0;
    background: #111115;
}
.fsp-hero-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    background: #111115;
    border: 1px solid #27272f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: .25;
    margin: 24px 0;
}

.fsp-excerpt {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #d4d4d8;
    margin: 0 0 32px;
    padding: 20px 24px;
    border-left: 3px solid var(--fsp-cat, #f97316);
    background: #111115;
    border-radius: 0 8px 8px 0;
}

.fsp-cta { display: flex; margin: 32px 0; }
.fsp-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #f97316;
    color: #fff;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 100px;
    transition: background .18s, transform .18s, box-shadow .18s;
    box-shadow: 0 4px 20px rgba(249,115,22,.35);
}
.fsp-cta__btn:hover {
    background: #ea6c0a;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(249,115,22,.4);
    color: #fff;
}
.fsp-cta__arrow { transition: transform .18s; }
.fsp-cta__btn:hover .fsp-cta__arrow { transform: translateX(4px); }

.fsp-attribution {
    background: #111115;
    border: 1px solid #27272f;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 32px 0;
    font-size: .82rem;
    color: #71717a;
    line-height: 1.6;
}
.fsp-attribution strong { color: #a1a1aa; }
.fsp-attribution a { color: #f97316; text-decoration: none; }
.fsp-attribution a:hover { text-decoration: underline; }

.fsp-disclosure {
    font-size: .75rem;
    color: #52525b;
    margin: 24px 0;
    padding-top: 16px;
    border-top: 1px solid #1c1c22;
    line-height: 1.6;
}
.fsp-disclosure a { color: #71717a; }

.fsp-related { margin-top: 48px; }
.fsp-related__heading {
    font-family: 'Syne', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f4f4f5;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.fsp-related__heading::after { content: ''; flex: 1; height: 1px; background: #27272f; }
.fsp-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(220px,100%), 1fr));
    gap: 16px;
}
.fsp-related__card {
    background: #111115;
    border: 1px solid #27272f;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}
.fsp-related__card:hover {
    border-color: #3f3f4a;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    transform: translateY(-2px);
}
.fsp-related__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #18181d; }
.fsp-related__body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.fsp-related__title {
    font-family: 'Syne', system-ui, sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: #f4f4f5;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fsp-related__meta { font-size: .7rem; color: #52525b; margin-top: auto; }
.fsp-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: #71717a;
    text-decoration: none;
    margin-top: 40px;
    transition: color .15s;
}
.fsp-back:hover { color: #f4f4f5; }

/* ═══════════════════════════════════════════════════════════════════════════
   Original post page — .fop- prefix (single-fringe-post.php)
   ═══════════════════════════════════════════════════════════════════════════ */
.fop-wrap {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: #09090b;
    color: #f4f4f5;
    max-width: 780px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 60px) clamp(16px, 4vw, 32px);
    -webkit-font-smoothing: antialiased;
}
.fop-wrap *, .fop-wrap *::before, .fop-wrap *::after { box-sizing: border-box; }

.fop-breadcrumb {
    font-size: .78rem;
    color: #71717a;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.fop-breadcrumb a { color: #71717a; text-decoration: none; }
.fop-breadcrumb a:hover { color: #f4f4f5; }
.fop-breadcrumb__sep { color: #3f3f46; }

.fop-original-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(249,115,22,.15);
    color: #f97316;
    border: 1px solid rgba(249,115,22,.3);
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.fop-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: color-mix(in srgb, var(--fop-cat, #f97316) 15%, transparent);
    color: var(--fop-cat, #f97316);
    border: 1px solid color-mix(in srgb, var(--fop-cat, #f97316) 30%, transparent);
    margin-bottom: 16px;
    margin-left: 8px;
}
.fop-title {
    font-family: 'Syne', system-ui, sans-serif;
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.12;
    color: #ffffff;
    margin: 0 0 20px;
}
.fop-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    color: #71717a;
    flex-wrap: wrap;
    margin-bottom: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid #1c1c22;
}
.fop-meta__author { font-weight: 600; color: #a1a1aa; }
.fop-meta__dot { color: #3f3f46; }

.fop-hero-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    margin: 24px 0;
    background: #111115;
}
.fop-hero-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    background: #111115;
    border: 1px solid #27272f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: .25;
    margin: 24px 0;
}

.fop-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d4d4d8;
    margin: 0 0 40px;
}
.fop-content h2 {
    font-family: 'Syne', system-ui, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f4f4f5;
    margin: 2em 0 .6em;
}
.fop-content h3 {
    font-family: 'Syne', system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #e4e4e7;
    margin: 1.8em 0 .5em;
}
.fop-content p { margin: 0 0 1.2em; }
.fop-content a { color: #f97316; text-decoration: underline; text-underline-offset: 3px; }
.fop-content a:hover { color: #fb923c; }
.fop-content blockquote {
    margin: 1.5em 0;
    padding: 16px 20px;
    border-left: 3px solid var(--fop-cat, #f97316);
    background: #111115;
    border-radius: 0 8px 8px 0;
    color: #a1a1aa;
    font-style: italic;
}
.fop-content blockquote p { margin: 0; }
.fop-content ul, .fop-content ol { padding-left: 1.5em; margin: 0 0 1.2em; }
.fop-content li { margin-bottom: .4em; }
.fop-content img { max-width: 100%; border-radius: 8px; height: auto; margin: 1em 0; }
.fop-content hr { border: none; border-top: 1px solid #27272f; margin: 2em 0; }
.fop-content strong { color: #f4f4f5; }
.fop-content code {
    background: #18181d;
    border: 1px solid #27272f;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: .88em;
    color: #f97316;
}

.fop-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid #1c1c22;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.fop-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: #71717a;
    text-decoration: none;
    transition: color .15s;
}
.fop-back:hover { color: #f4f4f5; }

.fop-related { margin-top: 48px; }
.fop-related__heading {
    font-family: 'Syne', system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #f4f4f5;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.fop-related__heading::after { content: ''; flex: 1; height: 1px; background: #27272f; }
.fop-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(220px,100%), 1fr));
    gap: 16px;
}
.fop-related__card {
    background: #111115;
    border: 1px solid #27272f;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}
.fop-related__card:hover {
    border-color: #3f3f4a;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    transform: translateY(-2px);
}
.fop-related__card--original { border-color: rgba(249,115,22,.25); }
.fop-related__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #18181d; }
.fop-related__body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.fop-related__badge { font-size: .65rem; font-weight: 700; color: #f97316; text-transform: uppercase; letter-spacing: .05em; }
.fop-related__title {
    font-family: 'Syne', system-ui, sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: #f4f4f5;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fop-related__meta { font-size: .7rem; color: #52525b; margin-top: auto; }

/* ═══════════════════════════════════════════════════════════════════
   FRINGE CAROUSEL  [fringe_carousel]
   Dark editorial — one horizontal track per category
   ═══════════════════════════════════════════════════════════════════ */

.ffc-root {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 8px 0 32px;
}

/* ── Section ─────────────────────────────────────────────────────── */
.ffc-section {
  --ffc-color: #8b5cf6;
  position: relative;
}

.ffc-section::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--ffc-color);
  border-radius: 2px;
  opacity: .7;
}

/* ── Header ──────────────────────────────────────────────────────── */
.ffc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 14px 20px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.ffc-header__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ffc-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.ffc-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #f4f4f5;
  text-transform: uppercase;
}

.ffc-pill {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ffc-color);
  background: color-mix(in srgb, var(--ffc-color) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ffc-color) 30%, transparent);
  padding: 2px 8px;
  border-radius: 99px;
}

/* ── Arrow buttons ───────────────────────────────────────────────── */
.ffc-header__nav {
  display: flex;
  gap: 6px;
}

.ffc-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #a1a1aa;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s, color .18s, border-color .18s;
  flex-shrink: 0;
}

.ffc-btn:hover {
  background: color-mix(in srgb, var(--ffc-color) 18%, transparent);
  border-color: var(--ffc-color);
  color: var(--ffc-color);
}

.ffc-btn:disabled {
  opacity: .3;
  cursor: not-allowed;
}

/* ── Track ───────────────────────────────────────────────────────── */
.ffc-track-wrap {
  overflow: hidden;
  padding-left: 20px;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 20px, black calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 20px, black calc(100% - 40px), transparent 100%);
}

.ffc-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 12px 40px 16px 0;
  /* hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ffc-track::-webkit-scrollbar { display: none; }

/* ── Card ────────────────────────────────────────────────────────── */
.ffc-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
  background: #111115;
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}

.ffc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.45);
  border-color: color-mix(in srgb, var(--ffc-color) 35%, transparent);
}

.ffc-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* ── Card image ──────────────────────────────────────────────────── */
.ffc-card__img-wrap {
  position: relative;
  height: 140px;
  overflow: hidden;
  background: #1a1a22;
  flex-shrink: 0;
}

.ffc-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.ffc-card:hover .ffc-card__img {
  transform: scale(1.05);
}

.ffc-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  opacity: .25;
  background: linear-gradient(135deg,#1a1a22 0%,#111115 100%);
}

/* shimmer accent at image bottom */
.ffc-card__shimmer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
  pointer-events: none;
}

/* category color line at top of card */
.ffc-card__img-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--ffc-color);
  opacity: .8;
}

/* ── Card body ───────────────────────────────────────────────────── */
.ffc-card__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.ffc-card__time {
  font-size: .68rem;
  color: var(--ffc-color);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ffc-card__title {
  margin: 0;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.4;
  color: #e4e4e7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ffc-card__excerpt {
  margin: 0;
  font-size: .74rem;
  color: #71717a;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ffc-card__source {
  font-size: .68rem;
  color: #52525b;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,.05);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .ffc-card { flex: 0 0 200px; }
  .ffc-card__img-wrap { height: 118px; }
  .ffc-title { font-size: .9rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   FRINGE PODCASTS — Show cards, Episode list, Audio player
   ═══════════════════════════════════════════════════════════════════ */

/* ── Podcast card grid ───────────────────────────────────────────── */
.fpod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  padding: 8px 0 32px;
}

.fpod-card {
  border-radius: 12px;
  overflow: hidden;
  background: #111115;
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  display: flex;
  flex-direction: column;
}

.fpod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  border-color: color-mix(in srgb, var(--ffc-color, #8b5cf6) 35%, transparent);
}

.fpod-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.fpod-card__art-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a22;
  flex-shrink: 0;
}

.fpod-card__art {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.fpod-card:hover .fpod-card__art { transform: scale(1.04); }

.fpod-card__art-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; opacity: .25;
}

.fpod-card__cat-pill {
  position: absolute;
  top: 10px; left: 10px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 99px;
  border: 1px solid;
  backdrop-filter: blur(6px);
}

.fpod-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.fpod-card__title {
  margin: 0;
  font-size: .92rem;
  font-weight: 700;
  color: #f4f4f5;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fpod-card__host {
  margin: 0;
  font-size: .76rem;
  color: #71717a;
}

.fpod-card__desc {
  margin: 0;
  font-size: .78rem;
  color: #52525b;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fpod-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.fpod-card__eps {
  font-size: .72rem;
  color: #52525b;
}

.fpod-card__cta {
  font-size: .75rem;
  font-weight: 600;
  color: var(--ffc-color, #8b5cf6);
}

/* ── Show page ───────────────────────────────────────────────────── */
.fpod-show__hero {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin: 0 0 40px;
  padding: 28px;
  background: #111115;
  border: 1px solid #27272f;
  border-radius: 14px;
}

.fpod-show__cover-wrap {
  flex-shrink: 0;
}

.fpod-show__cover {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #27272f;
  display: block;
}

.fpod-show__cover-placeholder {
  width: 180px; height: 180px;
  border-radius: 12px;
  background: #1a1a22;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: #3f3f46;
}

.fpod-show__title {
  margin: 6px 0 8px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #f4f4f5;
  line-height: 1.2;
}

.fpod-show__host {
  margin: 0 0 10px;
  color: #a1a1aa;
  font-size: .9rem;
}

.fpod-show__desc {
  margin: 0 0 12px;
  color: #71717a;
  font-size: .88rem;
  line-height: 1.55;
  max-width: 560px;
}

.fpod-show__stats {
  font-size: .8rem;
  color: #52525b;
}

.fpod-show__stats a { color: var(--fsp-cat, #8b5cf6); text-decoration: none; }
.fpod-show__stats a:hover { text-decoration: underline; }

/* ── Episode list ────────────────────────────────────────────────── */
.fpod-eps__heading {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #52525b;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1f1f27;
}

.fpod-ep {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #1f1f27;
}

.fpod-ep:last-child { border-bottom: none; }

.fpod-ep__img {
  width: 64px; height: 64px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #27272f;
}

.fpod-ep__img-placeholder {
  width: 64px; height: 64px;
  border-radius: 8px;
  background: #1a1a22;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}

.fpod-ep__body { flex: 1; min-width: 0; }

.fpod-ep__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.fpod-ep__num {
  font-size: .68rem;
  font-weight: 700;
  color: var(--fsp-cat, #8b5cf6);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.fpod-ep__date,
.fpod-ep__dur {
  font-size: .72rem;
  color: #52525b;
}

.fpod-ep__title {
  margin: 0 0 5px;
  font-size: .9rem;
  font-weight: 600;
  color: #e4e4e7;
  line-height: 1.35;
}

.fpod-ep__title a {
  color: inherit;
  text-decoration: none;
}

.fpod-ep__title a:hover { color: var(--fsp-cat, #8b5cf6); }

.fpod-ep__desc {
  margin: 0 0 10px;
  font-size: .78rem;
  color: #71717a;
  line-height: 1.45;
}

.fpod-ep__detail-link {
  font-size: 1.2rem;
  color: #3f3f46;
  text-decoration: none;
  flex-shrink: 0;
  align-self: center;
  padding: 4px 8px;
  transition: color .15s;
}

.fpod-ep__detail-link:hover { color: var(--fsp-cat, #8b5cf6); }

/* ── Play button ─────────────────────────────────────────────────── */
.fpod-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--fsp-cat, #8b5cf6);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .18s, transform .18s;
}

.fpod-play-btn:hover { opacity: .85; transform: scale(1.03); }
.fpod-play-btn__icon { font-size: .9rem; }

.fpod-ep__player-wrap { margin-top: 8px; }

.fpod-ep__audio {
  border-radius: 8px;
  height: 36px;
  accent-color: var(--fsp-cat, #8b5cf6);
}

/* ── Episode page audio player ───────────────────────────────────── */
.fpod-player {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #111115;
  border: 1px solid #27272f;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0 28px;
}

.fpod-player__audio {
  flex: 1;
  height: 40px;
  accent-color: var(--fsp-cat, #8b5cf6);
}

.fpod-player__download {
  font-size: .78rem;
  color: #52525b;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.fpod-player__download:hover { color: var(--fsp-cat, #8b5cf6); }

.fpod-episode__cover {
  max-width: 260px;
  border-radius: 14px;
  display: block;
  margin: 0 0 20px;
}

.fpod-episode__desc {
  max-width: 680px;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .fpod-show__hero { flex-direction: column; padding: 16px; }
  .fpod-show__cover, .fpod-show__cover-placeholder { width: 120px; height: 120px; }
  .fpod-show__title { font-size: 1.25rem; }
  .fpod-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .fpod-player { flex-direction: column; align-items: stretch; }
}

/* ── Podcast carousel card extras ───────────────────────────────────
   Inherits all .ffc-* base styles; adds square art ratio + play overlay
   ─────────────────────────────────────────────────────────────────── */
.fpod-carousel-root .ffc-card { flex: 0 0 200px; }

.fpod-car-card__art-wrap {
  aspect-ratio: 1;          /* square album-art style */
  height: auto !important;  /* override ffc-card__img-wrap fixed height */
}

.fpod-car-card__play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  opacity: 0;
  background: rgba(0,0,0,.45);
  transition: opacity .2s ease;
  pointer-events: none;
}

.fpod-car-card:hover .fpod-car-card__play-icon { opacity: 1; }

.fpod-car-card__latest {
  margin: 0;
  font-size: .7rem;
  color: #52525b;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-style: italic;
}

@media (max-width: 600px) {
  .fpod-carousel-root .ffc-card { flex: 0 0 160px; }
}
