/*
Theme Name: Pantherholiker – Broadcast 90
Version: 60.0
*/

/* ================================================================
   FONT
   ================================================================ */
@font-face {
    font-family: 'Adumu';
    src: url('Adumu.ttf') format('truetype');
    font-display: swap;
}

/* ================================================================
   TOKENS
   ================================================================ */
:root {
    --w:          90%;          /* ← THE 90% RULE */
    --max:        1800px;

    --bg:         #080b12;
    --bg-1:       #0d1221;
    --bg-2:       #121a2e;
    --bg-3:       #192238;
    --bg-4:       #1f2b44;

    --line:       rgba(255,255,255,0.07);
    --line-hi:    rgba(0,200,255,0.3);

    --cyan:       #00c8ff;
    --blue:       #0055dd;
    --red:        #ff2244;

    --txt:        #e8eeff;
    --txt-2:      #7a92b0;
    --txt-3:      #3d5170;

    --f-disp:     'Adumu', Impact, sans-serif;
    --f-head:     'Barlow Condensed', sans-serif;
    --f-body:     'Barlow', sans-serif;
    --f-mono:     'JetBrains Mono', monospace;

    --ease:       cubic-bezier(0.16,1,0.3,1);
    --fast:       cubic-bezier(0.4,0,0.2,1);
}

/* ================================================================
   BASE
   ================================================================ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }

body {
    background: var(--bg);
    color: var(--txt);
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration:none; color:inherit; }
img { max-width:100%; height:auto; display:block; }
ul { list-style:none; }

h1,h2,h3,h4 {
    font-family: var(--f-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.05;
    color: var(--txt);
}

/* ----------------------------------------------------------------
   90% CONTAINER — used everywhere
   ---------------------------------------------------------------- */
.wrap {
    width: var(--w);
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(8,11,18,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.6); }

/* Single header row — everything inline */
.header-row {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 0;
}

/* Logo area */
.h-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    padding-right: 32px;
    border-right: 1px solid var(--line);
    height: 100%;
    text-decoration: none;
}

.h-logo-img {
    height: 38px;
    width: auto;
    transition: opacity 0.2s;
}
.h-logo:hover .h-logo-img { opacity:0.75; }

.h-site-name {
    font-family: var(--f-disp);
    font-size: 1.55rem;
    letter-spacing: 5px;
    color: var(--txt);
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.2s;
}
.h-logo:hover .h-site-name { color: var(--cyan); }

/* Desktop nav */
.h-nav {
    flex: 1;
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 4px;
}

.h-nav > ul {
    display: flex;
    height: 100%;
    align-items: center;
}

.h-nav > ul > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.h-nav > ul > li > a {
    font-family: var(--f-head);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--txt-2);
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
    position: relative;
}

.h-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease);
}

.h-nav > ul > li > a:hover { color: var(--txt); }
.h-nav > ul > li > a:hover::after,
.h-nav > ul > li.current-menu-item > a::after { transform: scaleX(1); }
.h-nav > ul > li.current-menu-item > a { color: var(--txt); }

/* Dropdown */
.h-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-top: 2px solid var(--cyan);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    pointer-events: none;
    z-index: 100;
}

.h-nav > ul > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.h-nav .sub-menu a {
    display: block;
    padding: 11px 20px;
    font-family: var(--f-head);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--txt-2);
    border-bottom: 1px solid var(--line);
    transition: color 0.15s, background 0.15s, padding-left 0.15s;
}

.h-nav .sub-menu li:last-child a { border-bottom: none; }
.h-nav .sub-menu a:hover { color: var(--txt); background: var(--bg-3); padding-left: 26px; }

/* Header right */
.h-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    padding-left: 24px;
    border-left: 1px solid var(--line);
    height: 100%;
    flex-shrink: 0;
}

.h-pod-img {
    height: 36px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
}
.h-pod-img:hover { opacity: 1; transform: scale(1.06); }

/* Burger */
.h-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--line);
    border-radius: 5px;
    cursor: pointer;
    padding: 9px 10px;
    width: 40px;
    height: 40px;
    transition: border-color 0.2s;
}
.h-burger:hover { border-color: var(--cyan); }

.h-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--txt);
    border-radius: 1px;
    transition: transform 0.3s var(--ease), opacity 0.2s;
    transform-origin: center;
}
.h-burger.open span:nth-child(1) { transform: rotate(45deg) translate(0,7px); }
.h-burger.open span:nth-child(2) { opacity: 0; }
.h-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(0,-7px); }

/* ================================================================
   MOBILE NAV
   ================================================================ */
.mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1500;
    pointer-events: none;
}
.mob-overlay.open { pointer-events: auto; }

.mob-bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s;
}
.mob-overlay.open .mob-bg { opacity: 1; }

.mob-panel {
    position: absolute;
    top: 0; right: 0;
    width: min(85vw, 340px);
    height: 100%;
    background: var(--bg-1);
    border-left: 1px solid var(--line-hi);
    padding: 72px 32px 40px;
    overflow-y: auto;
    transform: translateX(110%);
    transition: transform 0.4s var(--ease);
}
.mob-overlay.open .mob-panel { transform: translateX(0); }

.mob-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.mob-panel-label {
    font-family: var(--f-mono);
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.mob-nav-list > li {
    border-bottom: 1px solid var(--line);
    position: relative;
}

.mob-nav-list > li > a {
    font-family: var(--f-head);
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--txt);
    display: block;
    padding: 11px 44px 11px 0;
    line-height: 1;
    transition: color 0.15s, padding-left 0.15s;
}
.mob-nav-list > li > a:hover { color: var(--cyan); padding-left: 8px; }

.mob-sub-menu { display: none; padding: 6px 0 10px 16px; border-left: 2px solid var(--cyan); margin-bottom: 8px; }
.mob-sub-menu.open { display: block; }
.mob-sub-menu a {
    font-family: var(--f-head);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--txt-2);
    display: block;
    padding: 7px 0;
    transition: color 0.15s;
}
.mob-sub-menu a:hover { color: var(--txt); }

.mob-arrow {
    position: absolute;
    top: 6px; right: 0;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    color: var(--txt-3);
    cursor: pointer;
    font-size: 0.85rem;
    transition: transform 0.25s, color 0.2s;
}
.mob-arrow.open { transform: rotate(180deg); color: var(--cyan); }

/* ================================================================
   TICKER STRIP
   ================================================================ */
.ticker-strip {
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
    height: 34px;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    white-space: nowrap;
    animation: tickerRoll 26s linear infinite;
    height: 100%;
    align-items: center;
}

.ticker-inner span {
    font-family: var(--f-mono);
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--txt-3);
    padding-right: 80px;
}

.ticker-inner span b {
    color: var(--cyan);
    font-weight: 500;
}

@keyframes tickerRoll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ==============================================================   HOMEPAGE LAYOUT
   ================================================================ */
.home-layout {
    padding: 0 0 80px;
}

/* ================================================================
   HERO — cinematic slideshow (homepage)
   ================================================================ */
.site-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 560px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 35s infinite;
    will-change: opacity, transform;
}

.hero-slide:nth-child(1)  { animation-delay: 0s; }
.hero-slide:nth-child(2)  { animation-delay: 5s; }
.hero-slide:nth-child(3)  { animation-delay: 10s; }
.hero-slide:nth-child(4)  { animation-delay: 15s; }
.hero-slide:nth-child(5)  { animation-delay: 20s; }
.hero-slide:nth-child(6)  { animation-delay: 25s; }
.hero-slide:nth-child(7)  { animation-delay: 30s; }

@keyframes slideShow {
    0%   { opacity: 0; transform: scale(1.05); }
    5%   { opacity: 1; }
    20%  { opacity: 1; }
    28%  { opacity: 0; transform: scale(1.0); }
    100% { opacity: 0; transform: scale(1.05); }
}

/* Multi-layer gradient for depth */
.hero-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(8,11,18,0.3)  0%,
            rgba(8,11,18,0.15) 30%,
            rgba(8,11,18,0.55) 65%,
            rgba(8,11,18,1.0)  100%
        ),
        linear-gradient(to right,
            rgba(0,85,221,0.25) 0%,
            transparent 60%
        );
    z-index: 1;
}

.hero-body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 56px;
}

.hero-eyebrow {
    font-family: var(--f-mono);
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--cyan);
}

.hero-title {
    font-family: var(--f-disp);
    font-size: clamp(5rem, 13vw, 14rem);
    letter-spacing: 6px;
    color: #fff;
    text-transform: uppercase;
    line-height: 0.88;
    text-shadow: 0 4px 80px rgba(0,0,0,0.5);
    animation: heroIn 1s var(--ease) both;
}

.hero-sub {
    font-family: var(--f-head);
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(232,238,255,0.55);
    margin-top: 20px;
    animation: heroIn 1s 0.15s var(--ease) both;
}

@keyframes heroIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 0.58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--txt-3);
    animation: heroIn 1s 0.4s var(--ease) both;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--txt-3), transparent);
}

/* ================================================================
   PODCAST CARD — atmospheric glass
   ================================================================ */
.pod-section {
    padding: 40px 0 0;
}

.pod-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 52px;
    min-height: 280px;
    display: flex;
    align-items: stretch;
}

/* Blurred background from cover art */
.pod-bg {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(32px) saturate(1.4) brightness(0.35);
    transform: scale(1.05);
    z-index: 0;
    transition: filter 0.6s;
}

.pod-card:hover .pod-bg { filter: blur(28px) saturate(1.6) brightness(0.4); }

/* Dark vignette on top of blur */
.pod-bg-veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0,85,221,0.2), transparent 60%),
        linear-gradient(to right, rgba(8,11,18,0.7) 0%, rgba(8,11,18,0.25) 100%);
    z-index: 1;
}

/* Subtle border glow */
.pod-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
    z-index: 10;
    transition: border-color 0.3s;
}

.pod-card:hover::after { border-color: rgba(0,200,255,0.2); }

/* Inner layout */
.pod-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 220px 1fr;
    width: 100%;
    align-items: center;
    gap: 0;
}

/* Cover art */
.pod-art {
    padding: 32px 28px 32px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pod-art-img {
    width: 160px;
    height: 160px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow:
        0 24px 60px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.08);
    transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.pod-card:hover .pod-art-img {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 32px 72px rgba(0,0,0,0.8),
        0 0 0 1px rgba(0,200,255,0.15),
        0 0 40px rgba(0,200,255,0.08);
}

/* Info */
.pod-info {
    padding: 36px 40px 36px 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pod-tag-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pod-new-tag {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--f-mono);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
}

.pod-new-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
    animation: blink 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.pod-date {
    font-family: var(--f-mono);
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(232,238,255,0.4);
}

.pod-title {
    font-family: var(--f-head);
    font-size: clamp(1.5rem, 2.6vw, 2.6rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #fff;
    line-height: 1.05;
}

.pod-title a { color: inherit; transition: color 0.2s; }
.pod-title a:hover { color: var(--cyan); }

.pod-desc {
    font-size: 0.9rem;
    color: rgba(232,238,255,0.6);
    line-height: 1.7;
    max-width: 540px;
}

.pod-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Wave */
.pod-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 22px;
    margin-left: 6px;
}

.pod-wave span {
    width: 3px;
    background: rgba(0,200,255,0.6);
    border-radius: 2px;
    animation: wv 1.2s ease-in-out infinite alternate;
}

.pod-wave span:nth-child(1)  { height:30%; animation-delay:.00s; }
.pod-wave span:nth-child(2)  { height:60%; animation-delay:.07s; }
.pod-wave span:nth-child(3)  { height:100%;animation-delay:.14s; }
.pod-wave span:nth-child(4)  { height:45%; animation-delay:.21s; }
.pod-wave span:nth-child(5)  { height:80%; animation-delay:.28s; }
.pod-wave span:nth-child(6)  { height:35%; animation-delay:.35s; }
.pod-wave span:nth-child(7)  { height:90%; animation-delay:.42s; }
.pod-wave span:nth-child(8)  { height:55%; animation-delay:.49s; }
.pod-wave span:nth-child(9)  { height:70%; animation-delay:.56s; }
.pod-wave span:nth-child(10) { height:25%; animation-delay:.63s; }

@keyframes wv { from{transform:scaleY(.25)} to{transform:scaleY(1)} }

/* Platform links inside card */
.pod-platforms {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 4px;
}

.pod-platforms-label {
    font-family: var(--f-mono);
    font-size: 0.58rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(232,238,255,0.3);
    white-space: nowrap;
}

.pod-platform-link {
    font-family: var(--f-mono);
    font-size: 0.58rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(232,238,255,0.4);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.pod-platform-link:hover {
    color: rgba(232,238,255,0.8);
    text-decoration-color: rgba(0,200,255,0.5);
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-head);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 11px 22px;
    border-radius: 6px;
    transition: all 0.22s var(--ease);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.btn-primary {
    background: var(--cyan);
    color: var(--bg);
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,200,255,0.4);
}

.btn-outline {
    background: rgba(255,255,255,0.06);
    color: rgba(232,238,255,0.8);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}

.btn-spotify {
    background: #1DB954;
    color: #fff;
}

.btn-spotify:hover {
    background: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29,185,84,0.45);
}

/* ================================================================
   SECTION HEADER
   ================================================================ */
.section-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.section-hd-title {
    font-family: var(--f-head);
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--txt-3);
}

.section-hd-link {
    font-family: var(--f-mono);
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    white-space: nowrap;
    transition: color 0.15s;
}

.section-hd-link:hover { color: var(--txt); }

/* ================================================================
   NEWS GRID — image-first magazine tiles
   ================================================================ */

/* Row 1: Feature (7 cols) + Stack (5 cols) */
.news-row-1 {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

/* Row 2: 3 equal */
.news-row-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

/* Row 3: 4 compact */
.news-row-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Stacked right column */
.nc-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ----------------------------------------------------------------
   BASE CARD — image fills card, text overlays bottom
   ---------------------------------------------------------------- */
.nc {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--bg-2);
    transition: transform 0.28s var(--ease), box-shadow 0.28s;
    cursor: pointer;
}

.nc:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.55);
}

/* Thumbnail */
.nc-thumb {
    overflow: hidden;
    position: relative;
    background: var(--bg-3);
    flex-shrink: 0;
}

.nc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.nc:hover .nc-thumb img { transform: scale(1.06); }

.nc-thumb-fb {
    width: 100%;
    height: 100%;
    min-height: 120px;
    background: linear-gradient(135deg, var(--bg-2), var(--bg-4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.nc-thumb-fb span {
    font-family: var(--f-disp);
    font-size: 1.1rem;
    letter-spacing: 5px;
    opacity: 0.08;
    text-transform: uppercase;
}

/* Category badge */
.nc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--f-mono);
    font-size: 0.56rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--cyan);
    color: var(--bg);
    padding: 4px 9px;
    border-radius: 4px;
    line-height: 1;
    z-index: 2;
}

/* Text body */
.nc-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    background: var(--bg-1);
}

.nc-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nc-cat {
    font-family: var(--f-mono);
    font-size: 0.56rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cyan);
}

.nc-date {
    font-family: var(--f-mono);
    font-size: 0.56rem;
    letter-spacing: 1px;
    color: var(--txt-3);
}

.nc-date::before { content: '/'; margin-right: 8px; opacity: 0.35; }

.nc-title {
    font-family: var(--f-head);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--txt);
    display: block;
    line-height: 1.12;
    transition: color 0.18s;
    letter-spacing: 0.2px;
}

.nc-title:hover { color: var(--cyan); }

.nc-excerpt {
    font-family: var(--f-body);
    font-size: 0.87rem;
    color: var(--txt-2);
    line-height: 1.65;
    flex: 1;
}

.nc-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--f-mono);
    font-size: 0.58rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-top: 2px;
    transition: gap 0.18s, color 0.18s;
    width: fit-content;
}

.nc-read:hover { gap: 10px; color: var(--txt); }

/* ----------------------------------------------------------------
   FEATURE CARD
   ---------------------------------------------------------------- */
.nc--feature .nc-thumb { height: 380px; }
.nc--feature .nc-title { font-size: clamp(1.5rem, 2vw, 2.1rem); }
.nc--feature .nc-body  { padding: 22px 24px 26px; gap: 12px; }
.nc--feature .nc-excerpt { font-size: 0.92rem; }

/* ----------------------------------------------------------------
   STACKED (right col row 1)
   ---------------------------------------------------------------- */
.nc--stacked         { flex: 1; }
.nc--stacked .nc-thumb { height: 140px; }
.nc--stacked .nc-title { font-size: clamp(1rem, 1.3vw, 1.25rem); }
.nc--stacked .nc-body  { padding: 14px 16px 18px; gap: 6px; }

/* ----------------------------------------------------------------
   MEDIUM (row 2)
   ---------------------------------------------------------------- */
.nc--medium .nc-thumb { aspect-ratio: 16/9; }
.nc--medium .nc-title { font-size: clamp(1.05rem, 1.4vw, 1.45rem); }

/* ----------------------------------------------------------------
   COMPACT (row 3)
   ---------------------------------------------------------------- */
.nc--compact .nc-thumb   { aspect-ratio: 4/3; }
.nc--compact .nc-title   { font-size: clamp(0.9rem, 1.1vw, 1.15rem); line-height: 1.15; }
.nc--compact .nc-body    { padding: 14px 16px 16px; gap: 6px; }
.nc--compact .nc-excerpt { display: none; }
.nc--compact .nc-read    { display: none; }
/* ================================================================
   ARTICLE (SINGLE)
   ================================================================ */

/* Full-width banner with image + title overlay */
.art-banner {
    position: relative;
    width: 100%;
    height: 58vh;
    min-height: 380px;
    overflow: hidden;
}

.art-banner-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(0.7);
    transition: filter 0.4s;
}

.art-banner:hover .art-banner-img { filter: brightness(0.35) saturate(0.8); }

.art-banner-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(8,11,18,0.6) 50%,
        rgba(8,11,18,0.98) 100%
    );
}

.art-banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 52px;
}

.art-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.art-cat-tag {
    font-family: var(--f-mono);
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: var(--cyan);
    color: var(--bg);
    padding: 4px 10px;
    border-radius: 2px;
}

.art-date-tag {
    font-family: var(--f-mono);
    font-size: 0.62rem;
    letter-spacing: 2px;
    color: var(--txt-2);
}

.art-main-title {
    font-family: var(--f-head);
    font-size: clamp(2rem, 4.5vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    line-height: 1.0;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

/* Body */
.art-body {
    padding: 56px 0 80px;
}

.art-body-inner {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 60px;
    align-items: start;
}

.art-text .entry-content {
    font-family: var(--f-body);
    font-size: 1.05rem;
    line-height: 1.84;
    color: var(--txt-2);
}

.art-text .entry-content > * + * { margin-top: 1.35em; }

.art-text .entry-content h2 {
    font-family: var(--f-head);
    font-size: 1.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--txt);
    margin-top: 2.4em;
    border-left: 3px solid var(--cyan);
    padding-left: 16px;
}

.art-text .entry-content h3 {
    font-family: var(--f-head);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--txt);
    margin-top: 2em;
}

.art-text .entry-content p { color: #b8c8de; }

.art-text .entry-content a { color: var(--cyan); text-decoration: underline; text-decoration-color: rgba(0,200,255,0.3); }
.art-text .entry-content a:hover { text-decoration-color: var(--cyan); }

.art-text .entry-content img { width: 100%; border-radius: 4px; margin: 2em 0; }

.art-text .entry-content blockquote {
    border-left: 3px solid var(--blue);
    background: var(--bg-2);
    padding: 18px 24px 18px 22px;
    border-radius: 0 4px 4px 0;
    color: var(--txt-2);
    font-style: italic;
    margin: 2em 0;
}

.art-text .entry-content ul,
.art-text .entry-content ol {
    padding-left: 1.4em; color: #b8c8de;
}
.art-text .entry-content ul li { list-style: disc; }
.art-text .entry-content ol li { list-style: decimal; }

/* Sidebar */
.art-sidebar {
    position: sticky;
    top: 88px;
    border-left: 1px solid var(--line);
    padding-left: 32px;
}

.art-side-block { margin-bottom: 32px; }

.art-side-label {
    font-family: var(--f-mono);
    font-size: 0.58rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--txt-3);
    display: block;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.art-side-value {
    font-family: var(--f-head);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--cyan);
}

.art-side-date {
    font-family: var(--f-body);
    font-size: 0.85rem;
    color: var(--txt-2);
    line-height: 1.6;
}

/* ================================================================
   PAGE (static)
   ================================================================ */
.page-banner {
    border-bottom: 1px solid var(--line);
    padding: 52px 0 48px;
    background: var(--bg-1);
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
}

.page-banner h1 {
    font-family: var(--f-head);
    font-size: clamp(2rem, 4vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--txt);
}

.page-content {
    padding: 56px 0 80px;
}

.page-content .entry-content {
    font-family: var(--f-body);
    font-size: 1.05rem;
    line-height: 1.82;
    color: #b8c8de;
    max-width: 860px;
}

.page-content .entry-content > * + * { margin-top: 1.3em; }
.page-content .entry-content h2 { font-family: var(--f-head); font-size: 1.8rem; font-weight:700; text-transform:uppercase; color: var(--txt); margin-top:2em; }
.page-content .entry-content a { color: var(--cyan); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: var(--bg-1);
    border-top: 1px solid var(--line);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 60px;
    padding: 52px 0 44px;
}

.ft-brand-name {
    font-family: var(--f-disp);
    font-size: 1.9rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--txt);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.ft-brand-sub {
    font-family: var(--f-mono);
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cyan);
    display: block;
    margin-bottom: 18px;
}

.ft-brand-desc {
    font-size: 0.88rem;
    color: var(--txt-3);
    max-width: 300px;
    line-height: 1.7;
}

.ft-col-title {
    font-family: var(--f-mono);
    font-size: 0.58rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--txt-3);
    display: block;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.ft-col ul { display: flex; flex-direction: column; gap: 2px; }

.ft-col a {
    font-family: var(--f-head);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--txt-2);
    padding: 6px 0;
    display: block;
    transition: color 0.15s, padding-left 0.15s;
}
.ft-col a:hover { color: var(--txt); padding-left: 6px; }

.footer-bar {
    border-top: 1px solid var(--line);
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bar span {
    font-family: var(--f-mono);
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--txt-3);
}

.footer-bar strong { color: var(--cyan); }

/* ================================================================
   ERC TABLES
   ================================================================ */
.erc-clean-wrapper { max-width: 100%; }
.erc-card { background: var(--bg-2) !important; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; margin-bottom: 20px; }
.erc-card-header { background: transparent !important; color: var(--cyan) !important; padding: 12px 18px; font-family: var(--f-head); font-size: 1.2rem; font-weight:700; text-transform: uppercase; letter-spacing: 2px; border-bottom: 1px solid var(--line); }
.erc-table { width: 100%; border-collapse: collapse; }
.erc-table th { text-align: left; padding: 10px 18px; color: var(--txt-3) !important; font-family: var(--f-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2px; border-bottom: 1px solid var(--line); }
.erc-table td { padding: 10px 18px; border-bottom: 1px solid var(--line); color: var(--txt) !important; font-size: 0.9rem; }
.erc-table tr:last-child td { border-bottom: none; }
.erc-table tr:hover { background: rgba(255,255,255,0.02) !important; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .news-row-1 { grid-template-columns: 1fr; }
    .nc-stack   { flex-direction: row; gap: 16px; }
    .nc--stacked { flex: 1; min-width: 0; }
    .nc--feature .nc-thumb { height: 300px; }
    .news-row-3 { grid-template-columns: repeat(2, 1fr); }
    .pod-inner  { grid-template-columns: 180px 1fr; }
    .pod-art-img { width: 130px; height: 130px; }
}

@media (max-width: 960px) {
    .h-nav { display: none; }
    .h-burger { display: flex; }
    .mob-overlay { display: block; }
    .h-pod-img { display: none; }

    .pod-inner  { grid-template-columns: 1fr; }
    .pod-art    { padding: 28px 28px 12px; justify-content: flex-start; }
    .pod-art-img { width: 110px; height: 110px; }
    .pod-info   { padding: 8px 28px 28px; }
    .pod-actions { flex-direction: column; align-items: flex-start; }
    .btn        { width: 100%; justify-content: center; }

    .art-body-inner { grid-template-columns: 1fr; }
    .art-sidebar { position: static; border-left: none; border-top: 1px solid var(--line); padding: 24px 0 0; }

    .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .news-row-1,
    .news-row-2,
    .news-row-3 { grid-template-columns: 1fr; }
    .nc-stack   { flex-direction: column; }
    .nc--feature .nc-thumb { height: 240px; }
    .site-hero  { height: 75vh; min-height: 420px; }
    .hero-title { font-size: clamp(4rem, 14vw, 8rem); }

    .art-banner { height: 46vh; min-height: 300px; }
    .art-main-title { font-size: clamp(1.8rem, 7vw, 3rem); }

    .footer-main { grid-template-columns: 1fr; gap: 32px; }
    .footer-bar  { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
    .pod-bottom { flex-direction: column; align-items: flex-start; }
    .btn { width: 100%; justify-content: center; }
    .pod-wave { display: none; }
    .h-site-name { font-size: 1.1rem; letter-spacing: 3px; }
}
