/*
Theme Name: The Very Present Future - Child Theme
Template: twentytwentyfive
Description: Custom child theme for The Very Present Future
Author: Milo de Prieto
Version: 1.0.0
Text Domain: vpf-child
*/

/* ================================================================
   WEBFONTS
   ================================================================ */

@font-face {
    font-family: "Soho Std";
    src: url("fonts/soho-std-medium.woff2") format("woff2"),
         url("fonts/soho-std-medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Signpainter";
    src: url("fonts/signpainter-housescript.woff2") format("woff2"),
         url("fonts/signpainter-housescript.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ================================================================
   ROOT VARIABLES
   ================================================================ */

:root {

    /* Logo & Navigation */
    --logo-h-desktop: 104px;
    --logo-h-tablet: 64px;
    --logo-h-mobile: 48px;
    --logo-h: var(--logo-h-desktop);

    --nav-font-desktop: 76px;
    --nav-font-tablet: 38px;
    --nav-font-mobile: 24px;
    --nav-font: var(--nav-font-desktop);

    --nav-gap-desktop: clamp(40px, 5vw, 90px);
    --nav-gap-tablet: clamp(24px, 4vw, 56px);
    --nav-gap-mobile: clamp(10px, 2.5vw, 18px);

    /* Header */
    --header-pad-y: clamp(8px, 1.2vw, 16px);
    --header-pad-x: clamp(16px, 3vw, 48px);
    --header-peek: 12px;
    --header-max: 1720px;
    --adminbar: 0px;
    --header-h: calc(max(var(--logo-h), var(--nav-font)) + (var(--header-pad-y) * 2));

    /* Hero */
    --hero-size-min: 2.125rem;
    --hero-size-max: 9rem;
    --hero-lh-desktop: 1.02;
    --hero-lh-mobile: 1.08;
    --hero-track-desktop: -0.008em;
    --hero-track-mobile: -0.004em;

    /* Typography */
    --font-h1: 3rem;
    --font-h2: 2.15rem;
    --font-h3: 1.55rem;
    --font-h4: 1.25rem;
    --font-body: 1.15rem;
    --font-small: 0.95rem;

    --weight-h1: 800;
    --weight-h2: 700;
    --weight-h3: 600;
    --weight-h4: 500;
    --weight-body: 300;
    --weight-emphasis: 600;

    --lh-tight: 1.15;
    --lh-normal: 1.5;
    --lh-relaxed: 1.7;
    --lh-body: 1.8;

    /* Colors */
    --bg-primary: #FAFAF7;          /* Warm off-white */
    --bg-secondary: #F0F0EC;        /* Warm surface grey */

    --text-heading: #111111;        /* Deep black - titles */
    --text-body: #333333;           /* Dark grey - body text */
    --text-bridge: #4A4A4A;         /* Medium-dark - subheads */
    --text-secondary: #707070;      /* Medium - supporting text */
    --text-meta: #999999;           /* Light - dates/meta */

    --border-light: #E8E8E4;        /* Warm neutral border */
    --accent: #9B5040;              /* Burnt sienna - links/hover */

    /* Animation */
    --timing-quick: 220ms;
    --timing-smooth: 350ms;
    --timing-elegant: 500ms;
    --ease-natural: cubic-bezier(0.4, 0.0, 0.2, 1);
    --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-museum: cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 1024px) {
    :root {
        --logo-h: var(--logo-h-tablet);
        --nav-font: var(--nav-font-tablet);
    }
}

@media (max-width: 640px) {
    :root {
        --logo-h: var(--logo-h-mobile);
        --nav-font: var(--nav-font-mobile);
    }
}

html.admin-bar {
    --adminbar: 32px;
}

html {
    scroll-padding-top: calc(var(--header-h) + var(--adminbar) + 16px);
    scroll-behavior: smooth;
}

/* Body background */
body {
    background-color: var(--bg-primary) !important;
}

/* ================================================================
   HEADER - FIXED NAVIGATION
   ================================================================ */

#site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 999;
    width: 100%;
    padding: var(--header-pad-y) var(--header-pad-x);
    background: transparent;
    pointer-events: none;
    transition: transform var(--timing-smooth) var(--ease-elegant);
    transform: translateY(0);
    will-change: transform;
}

#site-header > * {
    pointer-events: auto;
}

.site-header,
.kadence-header,
.header-wrap,
.site-branding,
#site-header.wp-block-group {
    background: transparent;
    box-shadow: none;
}

/* Inner flex container */
#site-header .wp-block-group {
    background: transparent !important;
    box-shadow: none !important;
}

#site-header > .wp-block-group > .wp-block-group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: min(var(--header-max), 100%) !important;
    margin-inline: auto !important;
    gap: clamp(8px, 1.6vw, 24px) !important;
}

/* Logo image */
#site-header .wp-block-kadence-image img {
    height: var(--logo-h);
    max-height: var(--logo-h);
    width: auto;
    max-width: none;
    display: block;
    filter: invert(1) brightness(1);
    mix-blend-mode: difference;
    transition: opacity 0.2s ease;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

#site-header .wp-block-kadence-image,
#site-header .wp-block-kadence-image figure,
#site-header .wp-block-kadence-image .kb-img {
    background: transparent !important;
    box-shadow: none !important;
    margin: 0 !important;
}

/* NAV COLUMN LAYOUT - removed, using vpf-nav directly */

/* VPF nav container */
#site-header .vpf-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: var(--nav-gap-desktop) !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* PRESENT and FUTURE shared base */
#site-header .vpf-nav a {
    font-family: "Soho Std", "Libre Baskerville", serif !important;
    font-weight: 500 !important;
    font-size: var(--nav-font) !important;
    letter-spacing: 0.08em !important;
    line-height: 1 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    color: #fff !important;
    mix-blend-mode: difference !important;
    display: inline-block !important;
    transition: -webkit-text-fill-color var(--timing-smooth) var(--ease-elegant),
                -webkit-text-stroke var(--timing-smooth) var(--ease-elegant);
}

/* PRESENT - solid, hover to outline */
#site-header .vpf-nav-present {
    -webkit-text-fill-color: currentColor !important;
    -webkit-text-stroke: 0 !important;
}

#site-header .vpf-nav-present:hover {
    -webkit-text-fill-color: transparent !important;
    -webkit-text-stroke: 1.4px currentColor !important;
}

/* FUTURE - outline, hover to solid */
#site-header .vpf-nav-future {
    -webkit-text-fill-color: transparent !important;
    -webkit-text-stroke: 1.4px currentColor !important;
}

#site-header .vpf-nav-future:hover {
    -webkit-text-fill-color: currentColor !important;
    -webkit-text-stroke: 0 transparent !important;
}

@media (max-width: 1024px) {
    #site-header .vpf-nav {
        gap: var(--nav-gap-tablet) !important;
    }
}

@media (max-width: 768px) {
    #site-header .vpf-nav {
        gap: var(--nav-gap-mobile) !important;
    }
    #site-header .vpf-nav a {
        font-size: var(--nav-font-mobile) !important;
    }
}

/* Smart scroll behavior */
body.scrolling-down #site-header {
    transform: translateY(calc(-100% - var(--adminbar)));
}

body.scrolling-up #site-header,
body.at-top #site-header {
    transform: translateY(0);
}

html.admin-bar #site-header {
    top: 32px;
}

html.admin-bar body.scrolling-down #site-header {
    transform: translateY(calc(-100% - 32px));
}

/* Remove focus outlines from nav */
#site-header .wp-block-navigation a:focus,
#site-header .wp-block-navigation a:focus-visible,
#site-header .wp-block-navigation .wp-block-navigation-item__content:focus,
#site-header .wp-block-navigation .wp-block-navigation-item__content:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

a:focus,
a:focus-visible,
button:focus,
button:focus-visible,
.wp-block-button__link:focus,
.wp-block-button__link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid rgba(155, 80, 64, 0.3) !important;
    outline-offset: 2px !important;
    box-shadow: none !important;
}

/* ================================================================
   BASE TYPOGRAPHY
   ================================================================ */

p {
    font-family: "Montserrat", sans-serif;
    font-weight: var(--weight-body);
    font-size: var(--font-body);
    line-height: var(--lh-body);
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

ul, ol {
    font-family: "Montserrat", sans-serif;
    font-weight: var(--weight-body);
    font-size: var(--font-body);
    line-height: var(--lh-relaxed);
    color: var(--text-body);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

li {
    margin-bottom: 1rem;
    line-height: var(--lh-relaxed);
}

strong, b {
    font-weight: var(--weight-emphasis);
    color: var(--text-heading);
}

/* ================================================================
   HEADINGS - GLOBAL SYSTEM
   ================================================================ */

h1 {
    font-family: "Libre Baskerville", serif;
    font-size: var(--font-h1);
    font-weight: var(--weight-h1);
    line-height: var(--lh-tight);
    color: var(--text-heading);
    margin-top: 0;
    margin-bottom: 1.5rem;
}

h2 {
    font-family: "Libre Baskerville", serif;
    font-size: var(--font-h2);
    font-weight: var(--weight-h2);
    line-height: var(--lh-normal);
    color: var(--text-heading);
    letter-spacing: 0.02em;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-h3);
    font-weight: var(--weight-h3);
    line-height: var(--lh-normal);
    color: var(--text-heading);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-h4);
    font-weight: var(--weight-h4);
    line-height: var(--lh-normal);
    color: var(--text-heading);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

/* Page title */
.page-title {
    font-family: "Libre Baskerville", serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-heading);
    line-height: 1.15;
    text-align: center;
    margin-bottom: 1rem;
}

/* Page subtitle */
.page-subtitle {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

/* Captions */
figcaption,
.wp-element-caption,
.wp-caption-text {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 300 !important;
    font-style: italic !important;
    font-size: 0.95rem !important;
    color: var(--text-secondary) !important;
    margin-top: 0.75rem !important;
    line-height: 1.5 !important;
    text-align: center !important;
}

/* ================================================================
   HERO - FRONT PAGE
   ================================================================ */

.hero-title,
h1.hero-title,
.wp-block-heading.hero-title {
    font-family: "Libre Baskerville", serif !important;
    font-size: clamp(var(--hero-size-min), 8vw, var(--hero-size-max)) !important;
    line-height: var(--hero-lh-desktop) !important;
    letter-spacing: var(--hero-track-desktop) !important;
    text-align: center !important;
    max-width: 20ch;
    margin: 0 auto !important;
    font-weight: 800 !important;
    color: var(--text-heading) !important;
}

/* Front page subhead */
.front-subhead {
    font-size: clamp(1.35rem, 3vw, 1.85rem) !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
    letter-spacing: 0.005em !important;
    margin-top: clamp(2rem, 4vh, 3rem) !important;
    margin-bottom: clamp(2.5rem, 5vh, 4rem) !important;
    max-width: 48em !important;
    margin-inline: auto !important;
    color: var(--text-bridge) !important;
    padding: 0 2rem !important;
}

/* The Very Present Future wordmark on front page */
.front-logo {
    padding-block: clamp(8px, 1.8vw, 28px);
}

.front-logo img {
    display: block;
    width: min(96vw, 1600px);
    height: auto;
    margin-inline: auto;
    margin-block: 0;
    mix-blend-mode: normal !important;
}

.front-logo .wp-block-image,
.front-logo figure {
    margin: 0;
}

/* Centered body text — front page paragraphs */
.vpf-body-centered {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
}



.page-subtitle {
    margin-bottom: 1rem;
}

/* ================================================================
   INTERVIEW QUERY LOOP - SUBTITLE (DO NOT REMOVE)
   Mirrors ARTESIAN essay subtitle system
   ================================================================ */

/* Descriptor line on single interview pages */
.interview-subtitle {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
    min-height: 1.5rem;
    display: block;
}

/* Descriptor line in query loops/grid */
.query-subtitle {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
    padding: 0;
    display: block;
}

.interview-subtitle:empty {
    display: none;
}

/* ================================================================
   META LINE - GUEST NAME & DATE (DO NOT REMOVE)
   ================================================================ */

.interview-meta-line {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
}

.interview-meta-line .interview-guest,
.interview-meta-line .interview-dot,
.interview-meta-line .wp-block-post-date {
    font-family: "Montserrat", sans-serif !important;
    font-size: 0.9rem !important;
    color: var(--text-meta) !important;
    margin: 0 !important;
    line-height: 1.1 !important;
    letter-spacing: 0.01em;
}

.interview-meta-line .interview-dot {
    opacity: 0.8;
    user-select: none;
}

.interview-meta-line .interview-guest a {
    color: var(--text-meta) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.interview-meta-line .interview-guest a:hover {
    color: var(--accent) !important;
}

/* ================================================================
   LINKS - GLOBAL SYSTEM
   ================================================================ */

a {
    transition: color var(--timing-smooth) var(--ease-natural);
}

/* Body links */
p a,
.entry-content a:not(.wp-block-button__link),
.wp-block-post-content a:not(.wp-block-button__link) {
    color: var(--text-body);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all var(--timing-smooth) var(--ease-natural);
}

p a:hover,
.entry-content a:not(.wp-block-button__link):hover,
.wp-block-post-content a:not(.wp-block-button__link):hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Post title links */
.wp-block-post-title a {
    color: var(--text-heading);
    text-decoration: none;
}

.wp-block-post-title a:hover {
    color: var(--accent);
}

/* ================================================================
   BUTTONS - GLOBAL SYSTEM
   ================================================================ */

.wp-block-buttons {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.wp-block-button.is-style-outline .wp-block-button__link {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    padding: 0.65rem 1.15rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    background-color: transparent;
    border-radius: 4px;
    transition: all var(--timing-smooth) var(--ease-elegant);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0.35rem 1rem rgba(155, 80, 64, 0.18);
}

.kb-buttons-wrap .kb-button {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    padding: 0.65rem 1.15rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    background-color: transparent;
    border-radius: 4px;
    transition: all var(--timing-smooth) var(--ease-elegant);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.kb-buttons-wrap .kb-button:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0.35rem 1rem rgba(155, 80, 64, 0.18);
}

/* ================================================================
   IMAGES - GLOBAL STYLING
   ================================================================ */

.wp-block-kadence-image {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.wp-block-kadence-image img {
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* ================================================================
   INTERVIEW GRID - ARCHIVE PAGE
   ================================================================ */

/* Grid container */
.interview-grid .wp-block-post-template {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 3rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Individual interview cards */
.interview-grid .wp-block-post {
    border: none !important;
    transition: transform var(--timing-smooth) var(--ease-elegant);
    padding: 0 !important;
}

.interview-grid .wp-block-post:hover {
    transform: translateY(-3px);
}

/* Card thumbnail */
.interview-grid .wp-block-post-featured-image {
    margin-bottom: 0 !important;
}

.interview-grid .wp-block-post-featured-image img {
    border-radius: 0;
    width: 100%;
    height: auto;
    display: block;
    transition: opacity var(--timing-smooth) var(--ease-elegant);
}

.interview-grid .wp-block-post:hover .wp-block-post-featured-image img {
    opacity: 0.88;
}

/* Card post titles */
.interview-grid .wp-block-post-title,
h2.wp-block-post-title {
    font-family: "Libre Baskerville", serif !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    line-height: 1.4 !important;
    margin-top: 0.75rem !important;
    margin-bottom: 0.5rem !important;
    color: var(--text-heading) !important;
}

/* Card excerpts / curatorial notes */
.interview-grid .wp-block-post-excerpt,
.interview-grid .wp-block-post-excerpt__excerpt {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 300 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: var(--text-body) !important;
    margin-bottom: 0.75rem !important;
    margin-top: 0 !important;
}

/* Filter bar above grid */
.interview-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 0;
    list-style: none;
}

.interview-filter-bar a,
.interview-filter-bar button {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--border-light);
    padding: 0.4rem 0.9rem;
    background: transparent;
    cursor: pointer;
    transition: all var(--timing-smooth) var(--ease-elegant);
}

.interview-filter-bar a:hover,
.interview-filter-bar button:hover,
.interview-filter-bar a.active,
.interview-filter-bar button.active {
    color: var(--accent);
    border-color: var(--accent);
    background: transparent;
}

/* ================================================================
   SINGLE INTERVIEW PAGE
   ================================================================ */

/* Interview title */
.single-post .wp-block-post-title {
    font-family: "Libre Baskerville", serif !important;
    font-weight: 700 !important;
    font-size: 3rem !important;
    line-height: 1.15 !important;
    color: var(--text-heading) !important;
    text-align: center !important;
    text-decoration: none !important;
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
}

/* Interview body content */
.single-post .entry-content,
.single-post .post-content,
.single-post .wp-block-post-content {
    max-width: 680px;
    margin: 0 auto;
}

/* Body typography on single interview */
.single-post .entry-content p,
.single-post .post-content p,
.single-post .wp-block-post-content p {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 300 !important;
    font-size: 1.15rem !important;
    line-height: 1.8 !important;
    color: var(--text-body) !important;
    margin-bottom: 1.5rem !important;
}

.single-post .entry-content h2,
.single-post .post-content h2,
.single-post .wp-block-post-content h2 {
    font-family: "Libre Baskerville", serif !important;
    font-weight: 400 !important;
    font-size: 1.75rem !important;
    margin-top: 3rem !important;
    margin-bottom: 1.5rem !important;
    color: var(--text-heading) !important;
}

/* Video embed - full width */
.interview-video-embed {
    margin: 3rem auto !important;
    max-width: 100%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--bg-secondary);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Full-width video breakout within post content */
.single-post .wp-block-post-content > .interview-video-embed {
    max-width: 100vw !important;
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
}

/* ================================================================
   DIVIDERS
   ================================================================ */

.kt-block-spacer {
    margin: clamp(40px, 8vh, 80px) 0;
}

.kt-block-spacer .kt-divider {
    opacity: 0.3;
}

/* ================================================================
   FOOTER
   ================================================================ */

footer {
    background-color: var(--bg-secondary) !important;
}

footer a {
    color: var(--text-heading) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--accent) !important;
}

/* ================================================================
   UTILITY
   ================================================================ */

.push-under-header {
    padding-top: calc(var(--header-h) + var(--adminbar));
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1280px) {
    #site-header .vpf-nav {
        gap: clamp(28px, 3.5vw, 60px) !important;
    }
}

@media (max-width: 1024px) {
    .interview-grid .wp-block-post-template {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 2rem !important;
    }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.85rem; }
    .page-title { font-size: 2.25rem; }
    .page-subtitle { font-size: 1.15rem; padding: 0 1rem; }
    .interview-subtitle { font-size: 1.15rem; padding: 0 1rem; }
}

@media (max-width: 768px) {
    .interview-grid .wp-block-post-template {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .single-post .wp-block-post-title {
        font-size: 2.25rem !important;
    }

    .hero-title {
        font-size: clamp(2.5rem, 9.5vw, var(--hero-size-max)) !important;
        line-height: var(--hero-lh-mobile) !important;
        letter-spacing: var(--hero-track-mobile) !important;
        padding: 0 3vw;
    }

    .front-subhead {
        font-size: 1.35rem !important;
        padding: 0 1rem !important;
    }

    .single-post .wp-block-post-content > .interview-video-embed {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .interview-filter-bar {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.5rem, 11vw, 4rem) !important;
        padding: 0 2vw;
    }
}

/* ================================================================
   PRINT
   ================================================================ */

@media print {
    #site-header { display: none; }
}
