/*
Theme Name:  Feel Good Nieuws
Theme URI:   https://feelgoodradio.nl
Description: Regionieuws voor Rijswijk, Pijnacker-Nootdorp en Leidschendam-Voorburg
Version:     1.0.0
Author:      Feel Good Radio
Author URI:  https://feelgoodradio.nl
Text Domain: feelgoodnieuws
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

:root {
    --bg: #cdd2b0;
    --bg-deep: #c2c8a2;
    --paper: #f5f1e2;
    --paper-soft: #efe9d6;
    --ink: #2b3320;
    --ink-soft: #55603e;
    --muted: #79825e;
    --line: #bcc29c;
    --accent: #4f6b32;
    --accent-deep: #3b5223;
    --accent-soft: #e2e9cf;
    --live: #b04a2f;
    --player-bg: #192510;
    --player-bg-light: #2e4019;
    --fgshadow: 0 10px 30px -16px rgba(43, 51, 32, .45);
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(255, 250, 225, .5), transparent 60%),
        radial-gradient(900px 500px at -5% 110%, rgba(79, 107, 50, .18), transparent 55%),
        linear-gradient(160deg, var(--bg), var(--bg-deep));
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.fg-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 22px 26px 60px;
}

/* ============================================================
   HEADER
   ============================================================ */
.fg-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.fg-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
}

.fg-logo--img img {
    max-height: 80px;
    width: auto;
    display: block;
    margin-top: -5px;
    margin-bottom: -10px;
}

.fg-logo .mark {
    background: var(--accent);
    color: #f5f1e2;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 6px;
    transform: rotate(-2deg);
    display: inline-block;
}

.fg-search,
.fg-header-spacer {
    flex: 1;
    min-width: 0;
}

.fg-search {
    min-width: 200px;
    position: relative;
}

.fg-search input {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 999px;
    padding: 8px 16px 8px 40px;
    font-family: inherit;
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--ink);
    box-shadow: var(--fgshadow);
}

.fg-search input::placeholder { color: var(--muted); }

.fg-search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

.fg-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: var(--fgshadow);
    white-space: nowrap;
}

/* ============================================================
   MOBILE HEADER CONTROLS
   ============================================================ */
.fg-mob-controls {
    display: none;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.fg-mob-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--fgshadow);
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s, color .15s;
}

.fg-mob-btn:hover {
    background: var(--accent);
    color: var(--paper);
    border-color: var(--accent);
}

/* Hamburger → X animation */
.fg-mob-hamburger .hb-top,
.fg-mob-hamburger .hb-mid,
.fg-mob-hamburger .hb-bot {
    transform-origin: center;
    transition: transform .22s ease, opacity .15s;
}

[aria-expanded="true"] .fg-mob-hamburger .hb-top {
    transform: translateY(6px) rotate(45deg);
}
[aria-expanded="true"] .fg-mob-hamburger .hb-mid {
    opacity: 0;
    transform: scaleX(0);
}
[aria-expanded="true"] .fg-mob-hamburger .hb-bot {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile search bar (below header, full width) */
.fg-mob-search-bar {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 10px 0 12px;
    margin-bottom: 12px;
}

.fg-mob-search-bar form {
    position: relative;
}

.fg-mob-search-bar input {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--bg);
    border-radius: 999px;
    padding: 9px 16px 9px 40px;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    box-shadow: var(--fgshadow);
}

.fg-mob-search-bar input::placeholder { color: var(--muted); }

.fg-mob-search-bar svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

/* Mobile drawer */
.fg-mob-drawer {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: var(--fgshadow);
}

.fg-mob-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fg-mob-drawer-nav .fg-tab {
    justify-content: flex-start;
    width: 100%;
    border-radius: 10px;
}

.fg-mob-drawer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

/* At ≤ 680px: swap to mobile header layout */
@media (max-width: 680px) {
    .fg-header {
        gap: 10px;
        margin-bottom: 12px;
    }

    /* Hide desktop search, pills, spacer */
    .fg-search,
    .fg-header-spacer,
    .fg-pill,
    #fgTrafficPill {
        display: none !important;
    }

    /* Show mobile controls */
    .fg-mob-controls {
        display: flex;
    }

    /* Hide desktop region tabs */
    .fg-tabs {
        display: none !important;
    }
}

/* ============================================================
   REGION TABS NAV
   ============================================================ */
.fg-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.fg-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 17px;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
    box-shadow: var(--fgshadow);
    transition: background .15s, color .15s;
}

.fg-tab.sel,
.fg-tab:hover {
    background: var(--accent);
    color: #f5f1e2;
    border-color: var(--accent);
}

/* ============================================================
   PAGE HEAD (archive/category/search titles)
   ============================================================ */
.fg-pagehead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.fg-pagehead h1 {
    font-family: 'Fraunces', serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1;
    color: var(--ink);
    margin: 0;
}

.fg-add { display: none; } /* temporarily hidden — re-enable when Mijn Regio feature launches */
.fg-add-UNUSED {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--accent-deep);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

/* ============================================================
   MAIN LAYOUT: 2/3 content + 1/3 sidebar
   ============================================================ */
.fg-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 4px;
}

@media (max-width: 980px) {
    .fg-layout { grid-template-columns: 1fr; }
}

.fg-content { min-width: 0; }
.fg-content .fg-overlay-card { margin-bottom: 26px; }
.fg-content .hmp-dossier-card + .fg-grid2 { margin-top: 26px; }
.fg-content .hmp-vp-card + .fg-grid2 { margin-top: 26px; }

/* ============================================================
   HERO OVERLAY CARD (front page featured post)
   ============================================================ */
.fg-overlay-card {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--fgshadow);
    border: 1px solid rgba(43, 51, 32, .1);
    aspect-ratio: 16 / 10;
    display: block;
}

.fg-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.95) saturate(1.25);
    transition: transform .4s ease;
}

.fg-overlay-card:hover .fg-hero-img { transform: scale(1.05); }

.fg-hero-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 38, 18, .05) 30%, rgba(22, 28, 12, .5) 62%, rgba(18, 24, 10, .88) 100%);
}

.fg-hero-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    color: #f6f3e6;
}

.fg-hero-kicker {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: .95;
}

.fg-hero-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -.3px;
    line-height: 1.13;
    font-size: 34px;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .5);
    margin: 0;
}

.fg-hero-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 13px;
    font-size: 13.5px;
    font-weight: 500;
    opacity: .92;
}

/* ============================================================
   VIDEO PLAY OVERLAY
   ============================================================ */
.fg-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(20, 26, 11, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
}

.fg-play svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    margin-left: 3px;
}

.fg-thumb .fg-play { width: 44px; height: 44px; }
.fg-thumb .fg-play svg { width: 18px; height: 18px; margin-left: 2px; }

/* ============================================================
   NEWS CARD GRID
   ============================================================ */
.fg-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

@media (max-width: 560px) {
    .fg-grid2 { grid-template-columns: 1fr; }
}

.fg-grid3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

@media (max-width: 700px) {
    .fg-grid3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 460px) {
    .fg-grid3 { grid-template-columns: 1fr; }
}

/* ── Read-more / related posts section ── */
.fg-read-more {
    margin-top: 40px;
}

.fg-read-more-section {
    margin-bottom: 36px;
}

.fg-read-more-head {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.fg-read-more-head::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}

/* ── Single-post widget bars ── */
.fg-single-widgets {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.fg-single-widgets-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

@media (max-width: 560px) {
    .fg-single-widgets-split { grid-template-columns: 1fr; }
}

.fg-widget-block {
    background: var(--card);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: var(--fgshadow);
}

.fg-widget-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.fg-card { cursor: pointer; }

.fg-card-link { display: block; }

.fg-thumb {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--fgshadow);
    border: 1px solid rgba(43, 51, 32, .08);
    aspect-ratio: 16 / 10;
    background: var(--bg);
}

.fg-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.25);
}

.fg-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(60, 72, 38, .04), rgba(60, 72, 38, .16));
    mix-blend-mode: multiply;
}

.fg-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-deep);
}

.fg-kicker {
    margin-top: 12px;
    font-size: 13px;
    color: var(--accent-deep);
    font-weight: 700;
}

.fg-head {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -.2px;
    line-height: 1.16;
    margin: 6px 0 0;
    font-size: 23px;
    color: var(--ink);
}

.fg-head a { color: inherit; text-decoration: none; }

.fg-card:hover .fg-head,
.fg-card:hover .fg-head a { color: var(--accent-deep); }

.fg-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 9px;
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 500;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.fg-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.fg-side-card {
    background: rgba(245, 241, 226, .42);
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 16px;
}

.fg-side-h,
.fg-side-card .wp-block-heading,
.fg-side-card .widget-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--accent-deep);
    margin-top: 0;
    margin-bottom: 12px;
}

.fg-side-btn {
    margin-top: 12px;
    width: 100%;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent-deep);
    font-family: inherit;
    font-weight: 600;
    font-size: 13.5px;
    padding: 9px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s, color .15s;
    display: block;
    text-align: center;
}

.fg-side-btn:hover {
    background: var(--accent);
    color: #f5f1e2;
}

/* Widget buttons — any button inside a sidebar card that isn't already
   specifically styled (radio play button, poll option, newsletter button). */
.fg-side-card button:not(.fg-rp-play):not(.fg-rp-playbtn):not(.fg-poll-opt):not(.fg-side-btn):not(.fg-radio-prev):not(.fg-radio-next),
.fg-side-card input[type="submit"],
.fg-side-card input[type="button"],
.fg-side-card input[type="reset"] {
    margin-top: 12px;
    width: 100%;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent-deep);
    font-family: inherit;
    font-weight: 600;
    font-size: 13.5px;
    padding: 9px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s, color .15s;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

.fg-side-card button:not(.fg-rp-play):not(.fg-rp-playbtn):not(.fg-poll-opt):not(.fg-side-btn):not(.fg-radio-prev):not(.fg-radio-next):hover,
.fg-side-card input[type="submit"]:hover,
.fg-side-card input[type="button"]:hover,
.fg-side-card input[type="reset"]:hover {
    background: var(--accent);
    color: #f5f1e2;
}

/* Widget text inputs, textareas and selects — match the newsletter input style.
   Excludes buttons, checkboxes, radios and hidden fields. */
.fg-side-card input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.fg-side-card textarea,
.fg-side-card select {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 10px;
    padding: 10px 13px;
    font-family: inherit;
    font-size: 13.5px;
    color: var(--ink);
    box-sizing: border-box;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    display: block;
    margin-top: 8px;
}

.fg-side-card input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus,
.fg-side-card textarea:focus,
.fg-side-card select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(79, 107, 50, .15);
}

.fg-side-card input::placeholder,
.fg-side-card textarea::placeholder {
    color: var(--muted);
}

.fg-side-card textarea {
    resize: vertical;
    min-height: 90px;
}

.fg-side-card select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2379825e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 36px;
    cursor: pointer;
}

/* ============================================================
   RADIO PLAYER
   ============================================================ */
.fg-radio-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fg-radio-head {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.fg-player {
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px;
    cursor: pointer;
    transition: background .15s, transform .15s;
}

.fg-player:hover {
    background: var(--accent-soft);
    transform: translateY(-1px);
}

.fg-art {
    flex-shrink: 0;
    width: 54px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background: linear-gradient(140deg, var(--g1), var(--g2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 16px -8px rgba(43, 51, 32, .6);
}

.fg-rp-info {
    flex: 1;
    min-width: 0;
}

.fg-rp-name {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 14.5px;
    line-height: 1.15;
    color: var(--ink);
}

.fg-rp-now {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 3px;
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fg-rp-play {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--accent);
    color: #f5f1e2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px -8px rgba(59, 82, 35, .9);
    transition: transform .15s;
}

.fg-rp-play:hover { transform: scale(1.08); }
.fg-rp-play .ic-pause { display: none; }
.fg-player.playing .fg-rp-play { background: var(--accent-deep); }
.fg-player.playing .ic-play { display: none; }
.fg-player.playing .ic-pause { display: block; }

.eq {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 11px;
}

.eq i {
    width: 3px;
    height: 4px;
    background: var(--accent);
    border-radius: 1px;
    opacity: .35;
}

.fg-player.playing .eq i {
    animation: fgbounce .9s ease-in-out infinite;
    opacity: 1;
}

.fg-player.playing .eq i:nth-child(2) { animation-delay: .15s; }
.fg-player.playing .eq i:nth-child(3) { animation-delay: .3s; }
.fg-player.playing .eq i:nth-child(4) { animation-delay: .45s; }

@keyframes fgbounce {
    0%, 100% { height: 4px; }
    50% { height: 11px; }
}

/* ============================================================
   RADIO CAROUSEL — vertical card players
   ============================================================ */

/* The radio card is edge-to-edge: no padding, dark theme */
.fg-radio-card {
    padding: 0;
    border-color: rgba(255,255,255,.07);
    background: linear-gradient(170deg, var(--player-bg-light) 0%, var(--player-bg) 100%);
}

.fg-radio-head {
    padding: 13px 15px 10px;
    color: rgba(205,210,176,.65);
    margin-bottom: 0;
}

.fg-radio-carousel {
    position: relative;
    padding: 0 12px 14px;
}

.fg-radio-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.fg-radio-track::-webkit-scrollbar { display: none; }

/* Individual player card */
.fg-rplayer {
    flex: 0 0 calc(50% - 4px);
    scroll-snap-align: start;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    cursor: pointer;
    transition: border-color .2s, background .2s;
    color: var(--paper);
}
.fg-rplayer:hover {
    border-color: rgba(255,255,255,.25);
    background: rgba(255,255,255,.1);
}
.fg-rplayer.playing {
    border-color: var(--accent);
    background: color-mix(in srgb, var(--accent) 25%, transparent);
    box-shadow: 0 0 0 1px var(--accent) inset;
}

/* Station header — name or logo above the art */
.fg-rp-station {
    padding: 8px 9px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 36px;
}
.fg-rp-logo {
    max-height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: .85;
}
.fg-rp-name {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fg-rp-subtitle {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .25px;
    color: #CADFD0;
    border: 1.5px solid #CADFD0;
    background-color: #000;
    border-radius: 4px;
    padding: 2px 9px;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Album art */
.fg-rp-art-wrap {
    position: relative;
    aspect-ratio: 1;
    background: var(--player-bg);
    overflow: hidden;
}
.fg-rp-art-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, var(--player-bg-light) 0%, var(--player-bg) 100%);
}
/* Bottom vignette so art transitions smoothly into meta */
.fg-rp-art-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0,0,0,.55));
    pointer-events: none;
    z-index: 1;
}
.fg-rp-art-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .5s ease, transform .4s;
    filter: brightness(1.2) saturate(1.1);
}

/* Play / pause button — small glass circle, centered on art; always visible */
.fg-rp-playbtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255,255,255,.75);
    border-radius: 50%;
    background: rgba(0,0,0,.32);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    transition: transform .18s, background .15s;
    padding: 0;
    z-index: 2;
}
.fg-rp-playbtn:hover,
.fg-rplayer:hover .fg-rp-playbtn {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(0,0,0,.48);
}
.fg-rplayer.playing .fg-rp-playbtn {
    background: rgba(0,0,0,.32);
    border-color: rgba(255,255,255,.75);
}
.fg-rplayer.playing:hover .fg-rp-playbtn {
    transform: translate(-50%, -50%) scale(1.1);
}
.fg-rp-playbtn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}
/* Nudge play icon slightly right (optical centering) */
.fg-rp-playbtn .ic-play { margin-left: 2px; }
.fg-rp-playbtn .ic-pause { display: none; }
.fg-rplayer.playing .fg-rp-playbtn .ic-play  { display: none; }
.fg-rplayer.playing .fg-rp-playbtn .ic-pause { display: block; margin-left: 0; }

/* Meta — eq, artist, song */
.fg-rp-meta {
    padding: 6px 9px 9px;
}
.fg-rp-eq-row {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
}
.fg-rp-eq-row .eq { flex-shrink: 0; display: none; }
.fg-rplayer.playing .fg-rp-eq-row .eq { display: inline-flex; }
.fg-rplayer.playing .eq i {
    animation: fgbounce .9s ease-in-out infinite;
    opacity: 1;
}
.fg-rplayer.playing .eq i:nth-child(2) { animation-delay: .15s; }
.fg-rplayer.playing .eq i:nth-child(3) { animation-delay: .3s; }
.fg-rplayer.playing .eq i:nth-child(4) { animation-delay: .45s; }
.fg-rplayer .eq i { background: var(--accent-soft); }

.fg-rp-artist {
    font-size: 11px;
    color: rgba(255,255,255,.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    min-width: 0;
}
.fg-rp-song {
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin-top: 1px;
}

/* Carousel arrows — glass pill buttons */
.fg-radio-prev,
.fg-radio-next {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 7px)) scale(1);
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: color-mix(in srgb, var(--player-bg) 65%, transparent);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    padding: 0;
    opacity: 1;
    transition: background .15s, border-color .15s, transform .2s, opacity .2s;
}
.fg-radio-prev:hover,
.fg-radio-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(calc(-50% - 7px)) scale(1.15);
}
.fg-radio-prev.fg-arrow-hidden,
.fg-radio-next.fg-arrow-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-50% - 7px)) scale(0.7);
}
.fg-radio-prev svg,
.fg-radio-next svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255,255,255,.9);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.fg-radio-prev { left: -10px; }
.fg-radio-next { right: -10px; }

/* When arrows are present, indent the track to not clip under them */
.fg-radio-carousel--nav .fg-radio-track {
    padding: 0 30px;
}

@media (max-width: 560px) {
    .fg-rplayer { flex: 0 0 calc(100% - 4px); }
}

/* ============================================================
   SIDEBAR WIDGETS: ADVERTISE
   ============================================================ */
.fg-ad-text,
.fg-side-card .textwidget,
.fg-side-card .wp-block-paragraph,
.fg-side-card p {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0 0 8px;
}

/* Links in dynamic widgets */
.fg-side-card .textwidget a,
.fg-side-card .wp-block-paragraph a,
.fg-side-card p a {
    color: var(--accent-deep);
    text-decoration: underline;
    text-decoration-color: rgba(79, 107, 50, .35);
    text-underline-offset: 2px;
    transition: text-decoration-color .15s;
}
.fg-side-card .textwidget a:hover,
.fg-side-card .wp-block-paragraph a:hover,
.fg-side-card p a:hover {
    text-decoration-color: var(--accent-deep);
}

/* Lists — e.g. recent posts, categories, archives */
.fg-side-card ul,
.fg-side-card ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
.fg-side-card ul li,
.fg-side-card ol li {
    border-top: 1px solid var(--line);
    padding: 8px 0;
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--ink-soft);
}
.fg-side-card ul li:first-child,
.fg-side-card ol li:first-child {
    border-top: none;
    padding-top: 0;
}
.fg-side-card ul li:last-child,
.fg-side-card ol li:last-child {
    padding-bottom: 0;
}
.fg-side-card ul li a,
.fg-side-card ol li a {
    color: var(--ink);
    font-weight: 500;
    text-decoration: none;
    display: block;
}
.fg-side-card ul li a:hover,
.fg-side-card ol li a:hover {
    color: var(--accent-deep);
}

/* ============================================================
   SIDEBAR WIDGETS: WEATHER & TRAFFIC
   ============================================================ */
.fg-weather {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.fg-weather-now {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fg-weather-icon { font-size: 34px; line-height: 1; }

.fg-weather-temp {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}

.fg-weather-text {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 3px;
}

.fg-weather-loc {
    font-size: 11px;
    color: var(--muted);
    text-align: right;
    max-width: 92px;
    line-height: 1.3;
}

.fg-traffic-h {
    margin: 15px 0 9px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--muted);
    border-top: 1px solid var(--line);
    padding-top: 13px;
}

.fg-traffic {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fg-traf-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
}

.fg-traf-name { color: var(--ink); }

.fg-traf-status {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 999px;
    white-space: nowrap;
}

.fg-traf-status.ok {
    background: var(--accent-soft);
    color: var(--accent-deep);
}

.fg-traf-status.warn {
    background: #f0d9c2;
    color: #8a4a1f;
}

.fg-traf-note {
    margin-top: 10px;
    font-size: 10.5px;
    color: var(--muted);
    line-height: 1.45;
    font-style: italic;
}

.fg-traf-loading {
    font-size: 12.5px;
    color: var(--muted);
}

/* ============================================================
   SIDEBAR WIDGETS: POLL
   ============================================================ */
.fg-poll-q {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 12px;
}

.fg-poll-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fg-poll-opt {
    width: 100%;
    text-align: left;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    font-family: inherit;
    font-weight: 600;
    font-size: 13.5px;
    padding: 10px 13px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s, border-color .15s;
}

.fg-poll-opt:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
}

.fg-poll-res { margin-bottom: 10px; }

.fg-poll-res-top {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--ink);
}

.fg-poll-res.mine .fg-poll-res-top { color: var(--accent-deep); }

.fg-poll-bar {
    height: 8px;
    background: var(--line);
    border-radius: 999px;
    overflow: hidden;
}

.fg-poll-bar i {
    display: block;
    height: 100%;
    background: var(--accent);
    border-radius: 999px;
    transition: width .5s ease;
}

.fg-poll-res.mine .fg-poll-bar i { background: var(--accent-deep); }

.fg-poll-total {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 6px;
}

/* ============================================================
   SIDEBAR WIDGETS: NEWSLETTER
   ============================================================ */
.fg-news-text {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.fg-news-input {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 10px;
    padding: 10px 13px;
    font-family: inherit;
    font-size: 13.5px;
    color: var(--ink);
}

.fg-news-input::placeholder { color: var(--muted); }

.fg-news-msg {
    font-size: 12px;
    color: var(--live);
    margin-top: 8px;
    min-height: 1em;
}

.fg-news-done {
    font-size: 13.5px;
    color: var(--accent-deep);
    font-weight: 600;
    line-height: 1.45;
    margin-top: 4px;
}

/* ============================================================
   SINGLE POST: BACK NAVIGATION
   ============================================================ */
.fg-article-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.fg-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 17px;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
    box-shadow: var(--fgshadow);
    transition: transform .15s;
    text-decoration: none;
}

.fg-back:hover { transform: translateX(-2px); color: var(--ink); }

/* ============================================================
   SINGLE POST: ARTICLE CARD
   ============================================================ */
.fg-article-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--fgshadow);
    overflow: hidden;
    max-width: 920px;
    margin: 0 auto;
}

.fg-article-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: var(--bg);
}

.fg-article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.25);
}

.fg-article-body { padding: 30px 38px 42px; }

.fg-article-kicker {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--accent-deep);
    margin-bottom: 12px;
}

.fg-article-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -.6px;
    line-height: 1.12;
    font-size: 40px;
    color: var(--ink);
    margin: 0 0 16px;
}

.fg-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 500;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.fg-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fg-article-content {
    font-size: 17px;
    line-height: 1.72;
    color: var(--ink);
}

.fg-article-content > *:first-child { margin-top: 0; }
.fg-article-content p { margin: 0 0 1.15em; }

.fg-article-content h2,
.fg-article-content h3,
.fg-article-content h4 {
    font-family: 'Fraunces', serif;
    color: var(--ink);
    letter-spacing: -.3px;
    line-height: 1.2;
    margin: 1.5em 0 .5em;
}

.fg-article-content h2 { font-size: 27px; }
.fg-article-content h3 { font-size: 22px; }

.fg-article-content a {
    color: var(--accent-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fg-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 13px;
    margin: 1.3em 0;
    filter: saturate(1.25);
}

.fg-article-content figure { margin: 1.3em 0; }
.fg-article-content figcaption { font-size: 13px; color: var(--muted); margin-top: 7px; text-align: center; }

.fg-article-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 13px;
    margin: 1.3em 0;
}

.fg-article-content ul,
.fg-article-content ol {
    margin: 0 0 1.15em;
    padding-left: 1.4em;
}

.fg-article-content li { margin-bottom: .45em; }

.fg-article-content blockquote {
    border-left: 4px solid var(--accent);
    margin: 1.3em 0;
    padding: .5em 0 .5em 1.3em;
    color: var(--ink-soft);
    font-style: italic;
    font-size: 18px;
}

@media (max-width: 680px) {
    .fg-article-body { padding: 24px 22px 32px; }
    .fg-article-title { font-size: 30px; }
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.fg-empty {
    padding: 60px 40px;
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    grid-column: 1 / -1;
}

.fg-empty p { margin-bottom: 24px; }

/* ============================================================
   PAGINATION
   ============================================================ */
.fg-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    padding-top: 10px;
    grid-column: 1 / -1;
}

.fg-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    background: var(--paper);
    box-shadow: var(--fgshadow);
    transition: background .15s, color .15s;
}

.fg-pagination .page-numbers.current,
.fg-pagination .page-numbers:hover {
    background: var(--accent);
    color: var(--paper);
    border-color: var(--accent);
}

.fg-pagination .page-numbers.dots {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

/* ============================================================
   LEES MEER BUTTON (front page page 1)
   ============================================================ */
.fg-more-wrap {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-top: 10px;
}

.fg-more-wrap a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 28px;
    height: 44px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--paper);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .2px;
    box-shadow: var(--fgshadow);
    border: 2px solid transparent;
    transition: background .18s, color .18s, border-color .18s;
}

.fg-more-wrap a:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

/* ============================================================
   PAGE LINKS (within single posts)
   ============================================================ */
.fg-page-links {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.fg-page-links a,
.fg-page-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    background: var(--paper);
    color: var(--ink);
}

.fg-page-links a:hover { background: var(--accent); color: var(--paper); border-color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.fg-footer {
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px 26px;
    text-align: center;
    margin-top: 48px;
}

.fg-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-bottom: 16px;
    list-style: none;
    padding: 0;
}

.fg-footer-nav li { margin: 0; }

.fg-footer-nav a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
}

.fg-footer-nav a:hover { color: var(--accent); }

.fg-footer-copy {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}

/* ============================================================
   WORDPRESS ALIGNMENT & BLOCK CLASSES
   ============================================================ */
.alignleft {
    float: left;
    margin: 0 1.5em 1em 0;
}

.alignright {
    float: right;
    margin: 0 0 1em 1.5em;
}

.aligncenter {
    display: block;
    margin: 1em auto;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1.3em;
}

.wp-caption img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.wp-caption-text {
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    margin-top: 7px;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    clip: auto !important;
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 12px 20px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--fgshadow);
}

/* ============================================================
   CUSTOMIZER PREVIEW — partial edit shortcut (pencil button)
   ============================================================ */

.customize-partial-edit-shortcut-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--accent) !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .35) !important;
}

.customize-partial-edit-shortcut-button svg {
    display: block;
    margin: 0 !important;
}

/* ============================================================
   PAGE HEAD — small label above h1 (tag.php, dossier pages)
   ============================================================ */
.fg-pagehead-label,
.fg-pagehead-dossier-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
    line-height: 1;
}

.fg-pagehead-label          { color: var(--muted); }
.fg-pagehead-dossier-label  { color: var(--accent-deep); }

/* ============================================================
   DOSSIER CARD (injected between posts on front page)
   ============================================================ */
.hmp-dossier-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--fgshadow);
    background: var(--player-bg);
    border: 1px solid rgba(255,255,255,.07);
    color: var(--paper);
    margin-bottom: 0;
}

.hmp-dossier-hero {
    position: relative;
    aspect-ratio: 21 / 9;
    background: var(--player-bg) center / cover no-repeat;
    overflow: hidden;
}

.hmp-dossier-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(15,22,8,.25) 0%, rgba(12,18,6,.82) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 30px;
}

.hmp-dossier-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 8px;
}

.hmp-dossier-title {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

.hmp-dossier-desc {
    font-size: 14px;
    color: rgba(245,241,226,.78);
    margin: 0;
    line-height: 1.5;
    max-width: 60ch;
}

.hmp-dossier-posts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hmp-dossier-post {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    text-decoration: none;
    border-top: 1px solid rgba(255,255,255,.07);
    transition: background .15s;
}
.hmp-dossier-post:not(:first-child) { border-left: 1px solid rgba(255,255,255,.07); }
.hmp-dossier-post:hover { background: rgba(255,255,255,.05); }

.hmp-dossier-post-img {
    border-radius: 9px;
    aspect-ratio: 16 / 10;
    background: var(--player-bg-light) center / cover no-repeat;
    flex-shrink: 0;
}

.hmp-dossier-post-title {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(245,241,226,.88);
    line-height: 1.32;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hmp-dossier-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 16px;
    color: var(--accent-soft);
    font-size: 13px;
    font-weight: 600;
    border-top: 1px solid rgba(255,255,255,.07);
    text-decoration: none;
    transition: color .15s;
}
.hmp-dossier-more:hover { color: #fff; }

@media (max-width: 640px) {
    .hmp-dossier-posts { grid-template-columns: repeat(2, 1fr); }
    .hmp-dossier-post:nth-child(2n+1) { border-left: none; }
    .hmp-dossier-post:nth-child(n+3)  { border-top: 1px solid rgba(255,255,255,.07); }
    .hmp-dossier-hero { aspect-ratio: 16 / 9; }
    .hmp-dossier-title { font-size: 22px; }
}

/* ============================================================
   DOSSIER TAG-PAGE HERO
   ============================================================ */
.hmp-dossier-tag-hero {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--fgshadow);
    border: 1px solid rgba(43,51,32,.1);
    aspect-ratio: 16 / 10;
    background: var(--player-bg) center / cover no-repeat;
    margin-bottom: 26px;
}

.hmp-dossier-tag-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(20,30,10,.18) 0%,
        rgba(15,22,8,.55) 55%,
        rgba(12,18,6,.88) 100%);
}

.hmp-dossier-tag-hero-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 34px;
}

.hmp-dossier-tag-hero-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 8px;
    display: block;
}

.hmp-dossier-tag-hero-title {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.1;
    text-shadow: 0 2px 18px rgba(0,0,0,.5);
}

.hmp-dossier-tag-hero-desc {
    font-size: 15px;
    color: rgba(245,241,226,.82);
    margin: 0;
    max-width: 55ch;
    line-height: 1.55;
}

@media (max-width: 640px) {
    .hmp-dossier-tag-hero-title { font-size: 26px; }
    .hmp-dossier-tag-hero-text  { padding: 20px 22px; }
}

/* Radio player popup is a separate browser window — see radio-popup.php */
