/* ======= GLOBAL RESETS & VARS ======= */
:root {
    --choc-dark: #3B2416;
    --choc-light: #6B4226;
    --cream-base: #F5EFE6;
    --cream-light: #FFFFFF;
    --gold: #C9922A;

    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* CRITICAL: sharp/square everywhere site-wide */
    border-radius: 0 !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--cream-base);
    color: var(--choc-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Web3 Grain Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.15;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Base Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-pad {
    padding: 6rem 0;
}

.bg-choc {
    background-color: var(--choc-dark);
    color: var(--cream-light);
}

.text-cream {
    color: var(--cream-light) !important;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--choc-dark);
    text-align: left;
}

/* Icons */
.roach-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    padding: 1rem 2rem;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--choc-dark);
    color: var(--cream-light);
    border: 1px solid var(--choc-dark);
    box-shadow: 4px 4px 0px var(--gold);
}

.btn-primary:hover {
    background-color: var(--gold);
    color: var(--choc-dark);
    border: 1px solid var(--gold);
    box-shadow: 2px 2px 0px var(--choc-dark);
    transform: translate(2px, 2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--cream-light);
    border: 1px solid var(--cream-light);
    box-shadow: 4px 4px 0px var(--gold);
}

.btn-secondary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--choc-dark);
    box-shadow: 2px 2px 0px var(--cream-light);
    transform: translate(2px, 2px);
}

.btn-nav {
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    background-color: var(--gold);
    color: var(--choc-dark);
    border: 1px solid var(--choc-dark);
    box-shadow: 2px 2px 0px var(--choc-dark);
}

.btn-nav:hover {
    box-shadow: 0 0 0 transparent;
    transform: translate(2px, 2px);
}

/* Glassmorphism Web3 Card */
.glass-card {
    background: rgba(245, 239, 230, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gold);
    box-shadow: 6px 6px 0px rgba(59, 36, 22, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0px rgba(59, 36, 22, 0.2);
}

/* ======= HEADER / TICKER / NAV ======= */
.ticker-bar {
    background: var(--gold);
    color: var(--choc-dark);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 100;
    border-bottom: 2px solid var(--choc-dark);
}

.ticker-content {
    display: inline-block;
    animation: ticker 25s linear infinite;
}

.ticker-separator {
    margin: 0 1rem;
    color: var(--choc-dark);
    opacity: 0.5;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(245, 239, 230, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--choc-dark);
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--choc-dark);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    font-family: var(--font-display);
    color: var(--choc-dark);
    font-size: 1.1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

@media(max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* ======= HERO SECTION ======= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 1.5rem;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Base styling before mesh */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: grayscale(100%) sepia(20%) hue-rotate(5deg) contrast(1.5);
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Duotone chocolate cream mesh */
    background: linear-gradient(135deg, rgba(59, 36, 22, 0.9) 0%, rgba(107, 66, 38, 0.7) 100%);
    mix-blend-mode: multiply;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--cream-light);
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 4px 4px 0px var(--choc-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--cream-base);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ======= ORIGIN STORY ======= */
.origin-story {
    background: var(--cream-base);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--choc-dark);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border: 2px solid var(--choc-dark);
    /* Keep it square per prompt */
    border-radius: 0;
}

.timeline-date {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--choc-light);
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-card {
    padding: 1.5rem;
}

/* ======= LATEST NEWS ======= */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--cream-base);
    color: var(--choc-dark);
    border: 2px solid var(--choc-dark);
    position: relative;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid var(--choc-dark);
}

.nophoto-box {
    width: 100%;
    height: 200px;
    background: var(--choc-light);
    color: var(--cream-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--choc-dark);
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.news-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: var(--font-display);
    text-decoration: none;
    color: var(--choc-dark);
    font-weight: 700;
    border-bottom: 2px solid var(--gold);
}

.news-link:hover {
    color: var(--gold);
}

/* ======= MANIFESTO ======= */
.manifesto {
    background: var(--cream-base);
    position: relative;
    overflow: hidden;
}

.angular-bg-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 30%;
    background: var(--choc-light);
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
    z-index: 0;
    opacity: 0.1;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.man-card {
    padding: 2rem;
    background: var(--cream-base);
}

.man-num {
    font-family: var(--font-mono);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.man-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ======= STATS ======= */
.pattern-bg {
    position: relative;
}

.pattern-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--choc-light) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-num {
    font-family: var(--font-mono);
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1.2;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream-light);
    letter-spacing: 1px;
}

/* ======= VOICES CAROUSEL ======= */
.carousel {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.voice-card {
    min-width: 100%;
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
}

.voice-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 4px solid var(--gold);
    flex-shrink: 0;
}

.voice-quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--choc-dark);
}

.voice-author {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.25rem;
}

@media(max-width: 768px) {
    .voice-card {
        flex-direction: column;
        text-align: center;
    }

    .voice-quote {
        font-size: 1.2rem;
    }
}

.carousel-nav {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.btn-icon {
    background: var(--choc-dark);
    color: var(--cream-light);
    width: 48px;
    height: 48px;
    border: none;
    font-family: var(--font-mono);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-icon:hover {
    background: var(--gold);
    color: var(--choc-dark);
}

/* ======= PHOTO WALL ======= */
.masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    gap: 1rem;
    grid-auto-flow: dense;
}

.masonry-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid var(--choc-light);
    transition: transform 0.3s;
}

.masonry-item:hover {
    transform: scale(1.02);
    border-color: var(--gold);
    z-index: 2;
    position: relative;
}

.tall {
    grid-row: span 2;
}

.wide {
    grid-column: span 2;
}

@media(max-width: 500px) {
    .wide {
        grid-column: span 1;
    }
}

/* ======= JOIN & FAQ ======= */
.double-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media(max-width: 768px) {
    .double-col {
        grid-template-columns: 1fr;
    }
}

.solid-card {
    background: var(--choc-dark);
    color: var(--cream-base);
    padding: 3rem;
    border: 4px solid var(--gold);
}

.solid-card h2 {
    color: var(--cream-light);
    margin-bottom: 1rem;
}

#joinForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

#joinForm input {
    padding: 1rem;
    background: var(--cream-base);
    border: none;
    font-family: var(--font-mono);
    color: var(--choc-dark);
}

#joinForm input:focus {
    outline: 2px solid var(--gold);
}

.btn-block {
    width: 100%;
    background: var(--gold);
    color: var(--choc-dark);
    border: none;
    box-shadow: none;
}

.btn-block:hover {
    background: var(--cream-light);
    box-shadow: none;
    transform: translateY(-2px);
}

.social-links a {
    color: var(--gold);
    margin-right: 1rem;
    font-family: var(--font-mono);
    text-decoration: none;
    font-size: 0.9rem;
}

.social-links a:hover {
    color: var(--cream-light);
}

.faq-box h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.acc-item {
    margin-bottom: 1rem;
    border: 2px solid var(--choc-dark);
    background: var(--cream-light);
}

.acc-header {
    width: 100%;
    text-align: left;
    padding: 1rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--choc-dark);
    display: flex;
    justify-content: space-between;
}

.acc-header::after {
    content: '+';
    font-family: var(--font-mono);
}

.acc-item.active .acc-header::after {
    content: '-';
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}

.acc-item.active .acc-body {
    max-height: 200px;
    padding: 0 1rem 1rem 1rem;
}

/* ======= FOOTER ======= */
.footer {
    padding: 4rem 0 2rem 0;
    border-top: 4px solid var(--gold);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--choc-light);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.foot-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-left: 0.5rem;
}

.footer-links a {
    color: var(--cream-base);
    text-decoration: none;
    margin-left: 2rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    font-family: var(--font-mono);
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--choc-light);
    margin-top: 1rem;
}

@media(max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links a {
        margin: 0 1rem;
    }
}

/* Scroll Reveal Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======= TICKER LIVE DOT ======= */
.ticker-live {
    color: #ff4444;
    font-weight: 700;
    margin-right: 0.5rem;
    animation: pulse-dot 1.2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ======= GOLD TEXT ======= */
.gold-text {
    color: var(--gold);
}

/* ======= TRENDING HASHTAGS ======= */
.trending-section {
    background: var(--cream-base);
    border-top: 3px solid var(--choc-dark);
    border-bottom: 3px solid var(--choc-dark);
}

.trending-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trending-label {
    background: var(--gold);
    color: var(--choc-dark);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--choc-dark);
    letter-spacing: 0.1em;
    white-space: nowrap;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

.hashtag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hashtag {
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    text-transform: none;
    padding: 0.5rem 1rem;
    border: 2px solid var(--choc-dark);
    color: var(--choc-dark);
    background: transparent;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.hashtag:hover {
    background: var(--choc-dark);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 4px 4px 0 var(--gold);
}

.h-xl {
    font-size: 2.2rem;
}

.h-lg {
    font-size: 1.6rem;
}

.h-md {
    font-size: 1.2rem;
}

.h-sm {
    font-size: 0.95rem;
}

/* ======= DEMANDS TRACKER ======= */
.demands-section {
    background: var(--cream-base);
    position: relative;
}

.demands-sub {
    max-width: 700px;
    margin-bottom: 3rem;
    color: var(--choc-light);
}

.demands-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demand-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: var(--cream-light);
    border: 2px solid var(--choc-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demand-row:hover {
    transform: translateX(5px);
    box-shadow: -5px 0 0 var(--gold);
}

.demand-info h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: var(--choc-dark);
}

.demand-info p {
    font-size: 0.9rem;
    color: var(--choc-light);
    line-height: 1.5;
}

.demand-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    letter-spacing: 0.08em;
}

.tag-pending {
    background: #fde8e8;
    color: #c0392b;
    border: 1px solid #c0392b;
}

.tag-partial {
    background: #fef3cd;
    color: #856404;
    border: 1px solid #c9922a;
}

.tag-met {
    background: #d4edda;
    color: #155724;
    border: 1px solid #28a745;
}

.demand-bar-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    min-width: 120px;
}

.demand-bar {
    width: 120px;
    height: 8px;
    background: #e0d6c8;
    position: relative;
    overflow: hidden;
}

.demand-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gold);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.demand-bar.animated::after {
    width: var(--bar-width);
}

.demand-pct {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--choc-light);
}

@media(max-width: 768px) {
    .demand-row {
        grid-template-columns: 1fr;
    }

    .demand-bar-wrap {
        align-items: flex-start;
    }
}

/* ======= LIVE CITIES FEED ======= */
.cities-section {
    background: var(--cream-base);
    border-top: 3px solid var(--choc-dark);
}

.cities-header p {
    max-width: 700px;
    margin-bottom: 3rem;
    color: var(--choc-light);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.city-card {
    background: var(--choc-dark);
    color: var(--cream-light);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    animation: fadeUp 0.5s ease forwards;
    opacity: 0;
}

.city-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 0 var(--gold);
}

.city-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.city-pulse {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border: none;
    animation: pulse-ring 1.5s ease-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.5);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(255, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======= INTERNATIONAL PRESS ======= */
.press-section {}

.press-sub {
    max-width: 700px;
    margin-bottom: 3rem;
    opacity: 0.85;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.press-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem;
    background: rgba(107, 66, 38, 0.25);
    border: 1px solid var(--choc-light);
    text-decoration: none;
    color: var(--cream-light);
    transition: all 0.3s ease;
}

.press-card:hover {
    background: rgba(201, 146, 42, 0.15);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 0 var(--gold);
}

.press-outlet {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    border-bottom: 1px solid var(--choc-light);
    padding-bottom: 0.75rem;
}

.press-headline {
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--cream-light);
    flex-grow: 1;
}

.press-date {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--cream-base);
    opacity: 0.7;
}