/*
Theme Name: Holiker Stitch
Author: Pantherholiker
Version: 1.0
Description: Jersey-inspired dark theme for Pantherholiker.de
*/

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

/* ════════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ════════════════════════════════════════════════════════════════ */
:root {
    /* Core palette */
    --navy:     #060c18;
    --navy-1:   #0a1526;
    --navy-2:   #0f1e35;
    --navy-3:   #162540;
    --navy-4:   #1d2f50;

    /* Accent */
    --ice:      #00d4ff;   /* ERC cyan */
    --ice-dim:  rgba(0,212,255,0.18);
    --ice-glow: rgba(0,212,255,0.35);
    --white:    #e9f2ff;
    --mist:     #6b87a8;
    --fog:      #2e4460;

    /* Jersey stripe */
    --stripe:   #f0f5ff;   /* off-white like real jersey */

    /* Stitch */
    --stitch:   rgba(0,212,255,0.45);

    /* Fonts */
    --fd:  'Adumu', Impact, sans-serif;
    --fh:  'Barlow Condensed', sans-serif;
    --fb:  'Barlow', sans-serif;
    --fm:  'JetBrains Mono', monospace;

    /* Easing */
    --ease: cubic-bezier(0.16,1,0.3,1);

    /* Layout */
    --w: 90%;
    --wmax: 1760px;
}

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

body {
    background: var(--navy);
    color: var(--white);
    font-family: var(--fb);
    font-size: 17px;
    line-height: 1.75;
    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(--fh);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: .5px;
    color: var(--white);
}

.wrap {
    width: var(--w);
    max-width: var(--wmax);
    margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════════
   STITCH UTILITY
   A dashed border that mimics jersey stitching
   ════════════════════════════════════════════════════════════════ */
.stitch-top {
    border-top: 2px dashed var(--stitch);
    padding-top: 6px;
}

.stitch-bottom {
    border-bottom: 2px dashed var(--stitch);
    padding-bottom: 6px;
}

/* ════════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════════ */
.hs-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(6,12,24,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: box-shadow .3s;
}

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

/* Single row */
.hs-header-row {
    height: 68px;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Logo */
.hs-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    height: 100%;
    padding-right: 28px;
    border-right: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
    text-decoration: none;
}

.hs-logo-img {
    height: 40px;
    width: auto;
    transition: filter .25s;
    filter: drop-shadow(0 0 6px rgba(0,212,255,.25));
}

.hs-logo:hover .hs-logo-img {
    filter: drop-shadow(0 0 12px rgba(0,212,255,.6));
}

.hs-logo-name {
    font-family: var(--fd);
    font-size: clamp(1.1rem, 2vw, 1.7rem);
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
    transition: color .2s;
}

.hs-logo:hover .hs-logo-name { color: var(--ice); }

/* Desktop nav */
.hs-nav {
    flex: 1;
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 0;
    overflow: hidden;
}

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

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

.hs-nav > ul > li > a {
    font-family: var(--fh);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mist);
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: color .15s, background .15s;
    white-space: nowrap;
    position: relative;
}

/* Hover underline – jersey stripe style */
.hs-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 3px;
    background: var(--ice);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
    border-radius: 2px 2px 0 0;
    box-shadow: 0 0 8px var(--ice-glow);
}

.hs-nav > ul > li > a:hover,
.hs-nav > ul > li.current-menu-item > a { color: var(--white); }

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

/* Dropdown */
.hs-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--navy-2);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--ice);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s, transform .18s, visibility .18s;
    pointer-events: none;
    z-index: 200;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 16px 48px rgba(0,0,0,.6);
}

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

.hs-nav .sub-menu a {
    display: block;
    padding: 11px 20px;
    font-family: var(--fh);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mist);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color .15s, background .15s, padding-left .15s;
}

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

/* Header right */
.hs-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}

.hs-pod-img {
    height: 38px;
    width: auto;
    opacity: .8;
    transition: opacity .2s, transform .2s;
}
.hs-pod-img:hover { opacity: 1; transform: scale(1.06); }

/* Burger (hidden desktop) */
.hs-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 5px;
    cursor: pointer;
    padding: 9px 10px;
    width: 40px;
    height: 40px;
    transition: border-color .2s;
}
.hs-burger:hover { border-color: var(--ice); }
.hs-burger span {
    display: block;
    width: 20px; height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: transform .3s var(--ease), opacity .2s;
    transform-origin: center;
}
.hs-burger.open span:nth-child(1) { transform: rotate(45deg) translate(0,7px); }
.hs-burger.open span:nth-child(2) { opacity: 0; }
.hs-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,.75);
    backdrop-filter: blur(8px);
    opacity: 0; transition: opacity .3s;
}
.mob-overlay.open .mob-bg { opacity: 1; }

.mob-panel {
    position: absolute;
    top: 0; right: 0;
    width: min(85vw, 340px);
    height: 100%;
    background: var(--navy-1);
    border-left: 1px solid rgba(0,212,255,.2);
    padding: 76px 32px 40px;
    overflow-y: auto;
    transform: translateX(110%);
    transition: transform .4s var(--ease);
}
.mob-overlay.open .mob-panel { transform: translateX(0); }

/* Stitch top border on panel */
.mob-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--ice);
    box-shadow: 0 0 16px var(--ice-glow);
}

.mob-panel-label {
    font-family: var(--fm);
    font-size: .6rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--ice);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--stitch);
}

.mob-nav-list > li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

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

.mob-sub {
    display: none;
    padding: 6px 0 10px 16px;
    border-left: 2px solid var(--ice);
    margin-bottom: 8px;
}
.mob-sub.open { display: block; }

.mob-sub a {
    font-family: var(--fh);
    font-size: 1.1rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--mist);
    display: block; padding: 7px 0;
    transition: color .15s;
}
.mob-sub a:hover { color: var(--white); }

.mob-arrow {
    position: absolute; top: 6px; right: 0;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    color: var(--fog); cursor: pointer;
    font-size: .85rem;
    transition: transform .25s, color .2s;
}
.mob-arrow.open { transform: rotate(180deg); color: var(--ice); }

/* ════════════════════════════════════════════════════════════════
   TICKER
   ════════════════════════════════════════════════════════════════ */
.hs-ticker {
    width: 100%;
    height: 32px;
    background: var(--navy-1);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hs-ticker-track {
    display: flex;
    white-space: nowrap;
    animation: tickerRoll 28s linear infinite;
}

.hs-ticker-track span {
    font-family: var(--fm);
    font-size: .6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--fog);
    padding-right: 72px;
}

.hs-ticker-track span b { color: var(--ice); font-weight: 500; }

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

/* ════════════════════════════════════════════════════════════════
   HERO — viewport-wide, title fits the line
   ════════════════════════════════════════════════════════════════ */
.hs-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 360px;
    max-height: 640px;
    overflow: hidden;
}

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

.hs-hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center 30%;
    opacity: 0;
    animation: hs-slide 35s infinite;
}

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

@keyframes hs-slide {
    0%   { opacity: 0; transform: scale(1.04); }
    5%   { opacity: 1; }
    20%  { opacity: 1; }
    28%  { opacity: 0; transform: scale(1.0); }
    100% { opacity: 0; transform: scale(1.04); }
}

.hs-hero-veil {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(6,12,24,.1)  0%,
            rgba(6,12,24,.35) 45%,
            rgba(6,12,24,.98) 100%),
        linear-gradient(to right,
            rgba(0,40,160,.25) 0%,
            transparent 55%);
}

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

.hs-hero-kicker {
    font-family: var(--fm);
    font-size: .6rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--ice);
    margin-bottom: 10px;
    display: flex; align-items: center; gap: 12px;
    animation: hs-up .8s var(--ease) both;
}

.hs-hero-kicker::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--ice);
    flex-shrink: 0;
}

/* Title scaled so it fills the viewport width */
.hs-hero-title {
    font-family: var(--fd);
    /* 8.8vw tracks viewport; clamp prevents extremes */
    font-size: clamp(3.5rem, 8.8vw, 9.5rem);
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
    line-height: .9;
    text-shadow: 0 2px 60px rgba(0,0,0,.5);
    animation: hs-up .8s var(--ease) both;
}

.hs-hero-sub {
    font-family: var(--fh);
    font-size: clamp(.75rem, 1.4vw, 1rem);
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(233,242,255,.42);
    margin-top: 12px;
    animation: hs-up .8s .12s var(--ease) both;
}

@keyframes hs-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════════
   JERSEY STRIPE — the horizontal white band from the reference
   Full browser width, cyan stitch borders top+bottom
   ════════════════════════════════════════════════════════════════ */
.hs-stripe-zone {
    position: relative;
    width: 100%;
}

/* Top stitch line (cyan glow) */
.hs-stripe-zone::before {
    content: '';
    display: block;
    height: 6px;
    background: var(--ice);
    box-shadow: 0 0 20px var(--ice-glow), 0 0 50px rgba(0,212,255,.15);
}

/* Bottom stitch line */
.hs-stripe-zone::after {
    content: '';
    display: block;
    height: 6px;
    background: var(--ice);
    box-shadow: 0 0 20px var(--ice-glow), 0 0 50px rgba(0,212,255,.15);
}

/* The white stripe itself */
.hs-stripe-body {
    background: var(--stripe);
    /* Mesh texture – jersey fabric dot pattern */
    background-image: radial-gradient(circle, rgba(0,0,0,.05) 1px, transparent 1px);
    background-size: 7px 7px;
    padding: 44px 0;
}

/* ════════════════════════════════════════════════════════════════
   PODCAST CARD inside the stripe
   Dark glass card floating on the white band
   ════════════════════════════════════════════════════════════════ */
.hs-pod {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 240px;
    background: var(--navy-1);
    box-shadow:
        0 24px 80px rgba(0,0,0,.55),
        0 0 0 1px rgba(0,212,255,.1);
    transition: box-shadow .35s, transform .35s var(--ease);
}

.hs-pod:hover {
    transform: translateY(-4px);
    box-shadow:
        0 36px 100px rgba(0,0,0,.65),
        0 0 0 1px rgba(0,212,255,.28),
        0 0 60px rgba(0,212,255,.05);
}

/* Blurred cover art as atmosphere */
.hs-pod-bg {
    position: absolute; inset: -24px;
    background-size: cover; background-position: center;
    filter: blur(38px) saturate(1.4) brightness(.26);
    transform: scale(1.08);
    z-index: 0;
    transition: filter .6s;
}
.hs-pod:hover .hs-pod-bg { filter: blur(32px) saturate(1.6) brightness(.3); }

.hs-pod-veil {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,55,200,.18), transparent 55%),
        linear-gradient(to right, rgba(6,12,24,.8) 0%, rgba(6,12,24,.2) 100%);
}

/* Stitch border */
.hs-pod::before {
    content: '';
    position: absolute; inset: 0; border-radius: 14px;
    border: 1px dashed rgba(0,212,255,.15);
    pointer-events: none; z-index: 20;
    transition: border-color .3s;
}
.hs-pod:hover::before { border-color: rgba(0,212,255,.3); }

/* Cover art */
.hs-pod-art {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    padding: 28px 20px 28px 32px;
}

.hs-pod-cover {
    width: 148px; height: 148px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 56px rgba(0,0,0,.75), 0 0 0 1px rgba(255,255,255,.07);
    transition: transform .4s var(--ease), box-shadow .4s;
    flex-shrink: 0;
}

.hs-pod:hover .hs-pod-cover {
    transform: translateY(-5px) rotate(-1.5deg);
    box-shadow: 0 30px 72px rgba(0,0,0,.85), 0 0 0 1px rgba(0,212,255,.2), 0 0 40px rgba(0,212,255,.07);
}

/* Info */
.hs-pod-info {
    position: relative; z-index: 2;
    padding: 30px 36px 30px 8px;
    display: flex; flex-direction: column; gap: 14px;
}

.hs-pod-top {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}

.hs-pod-live {
    display: flex; align-items: center; gap: 7px;
    font-family: var(--fm); font-size: .58rem;
    letter-spacing: 3px; text-transform: uppercase;
    color: #ff3355;
}

.hs-pod-live::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: #ff3355; box-shadow: 0 0 8px #ff3355;
    animation: live-blink 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

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

.hs-pod-date {
    font-family: var(--fm); font-size: .57rem;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(233,242,255,.32);
}

.hs-pod-title {
    font-family: var(--fh); font-weight: 700;
    font-size: clamp(1.4rem, 2.5vw, 2.5rem);
    text-transform: uppercase; letter-spacing: .3px;
    color: #fff; line-height: 1.06;
}

.hs-pod-title a { color: inherit; transition: color .2s; }
.hs-pod-title a:hover { color: var(--ice); }

.hs-pod-desc {
    font-size: .9rem;
    color: rgba(233,242,255,.55);
    line-height: 1.7;
    max-width: 520px;
}

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

/* Waveform */
.hs-wave {
    display: flex; align-items: center;
    gap: 3px; height: 20px; margin-left: 4px;
}

.hs-wave span {
    width: 3px;
    background: rgba(0,212,255,.55);
    border-radius: 2px;
    animation: wave-anim 1.2s ease-in-out infinite alternate;
}

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

@keyframes wave-anim { from{transform:scaleY(.25)} to{transform:scaleY(1)} }

.hs-pod-platforms {
    display: flex; align-items: center; gap: 12px;
}

.hs-pod-platforms-lbl {
    font-family: var(--fm); font-size: .54rem;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(233,242,255,.22);
}

.hs-pod-plat-link {
    font-family: var(--fm); font-size: .54rem;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(233,242,255,.36);
    text-decoration: underline; text-decoration-color: transparent;
    transition: color .2s, text-decoration-color .2s;
}

.hs-pod-plat-link:hover {
    color: rgba(233,242,255,.75);
    text-decoration-color: rgba(0,212,255,.5);
}

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

.hs-btn-ice { background: var(--ice); color: var(--navy); }
.hs-btn-ice:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,212,255,.4); }

.hs-btn-ghost {
    background: rgba(255,255,255,.06);
    color: rgba(233,242,255,.8);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(4px);
}
.hs-btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); transform: translateY(-2px); }

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

/* ════════════════════════════════════════════════════════════════
   NEWS SECTION
   ════════════════════════════════════════════════════════════════ */
.hs-news {
    padding: 52px 0 80px;
}

/* ── Patch-badge section header ────────────────────────────── */
.hs-section-hd {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; margin-bottom: 28px;
}

.hs-section-hd-left {
    display: flex; align-items: center; gap: 16px;
}

/* The patch circle */
.hs-patch {
    width: 46px; height: 46px; border-radius: 50%;
    border: 2px solid var(--ice);
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,212,255,.06);
    box-shadow: 0 0 0 4px rgba(0,212,255,.07), inset 0 0 10px rgba(0,212,255,.04);
    flex-shrink: 0;
    position: relative;
}

.hs-patch::after {
    content: ''; position: absolute; inset: 4px; border-radius: 50%;
    border: 1px dashed rgba(0,212,255,.4);
}

.hs-patch-icon {
    font-family: var(--fm); font-size: .5rem;
    letter-spacing: 1px; color: var(--ice); font-weight: 600;
}

.hs-section-title {
    font-family: var(--fd);
    font-size: clamp(1.4rem, 2.2vw, 2.1rem);
    letter-spacing: 5px; text-transform: uppercase;
    color: var(--white); line-height: 1;
}

/* Stitch underline */
.hs-section-title::after {
    content: '';
    display: block; height: 3px; margin-top: 5px;
    background: linear-gradient(90deg, var(--ice) 0%, transparent 100%);
    width: 100%;
}

.hs-section-hd-link {
    font-family: var(--fm); font-size: .58rem;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--fog);
    border: 1px dashed rgba(255,255,255,.1);
    padding: 7px 14px; border-radius: 4px;
    transition: color .18s, border-color .18s;
    white-space: nowrap;
}
.hs-section-hd-link:hover { color: var(--ice); border-color: rgba(0,212,255,.35); }

/* ════════════════════════════════════════════════════════════════
   NEWS GRID
   ════════════════════════════════════════════════════════════════ */
.hs-row-1 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.hs-row-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hs-stack {
    display: flex; flex-direction: column; gap: 16px;
}

/* ── Base card ─────────────────────────────────────────────── */
.hs-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: flex; flex-direction: column;
    background: var(--navy-2);
    border: 1px solid rgba(255,255,255,.05);
    transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
    cursor: pointer;
}

.hs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(0,0,0,.6);
    border-color: rgba(0,212,255,.2);
}

/* Stitch accent top on hover */
.hs-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ice) 0%, transparent 60%);
    opacity: 0; transition: opacity .28s;
    z-index: 3;
}
.hs-card:hover::after { opacity: 1; }

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

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

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

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

.hs-card-thumb-fb span {
    font-family: var(--fd); font-size: 1rem;
    letter-spacing: 4px; opacity: .07; text-transform: uppercase;
}

/* Patch-style category badge */
.hs-card-badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    font-family: var(--fm); font-size: .52rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    background: var(--ice); color: var(--navy);
    padding: 4px 9px;
    border-radius: 4px;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,.4);
}

/* Body */
.hs-card-body {
    padding: 17px 20px 20px;
    display: flex; flex-direction: column; gap: 8px; flex: 1;
    border-top: 2px solid rgba(0,212,255,.06);
    transition: border-color .28s;
}

.hs-card:hover .hs-card-body { border-top-color: rgba(0,212,255,.18); }

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

.hs-card-cat {
    font-family: var(--fm); font-size: .52rem;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--ice);
}

.hs-card-date {
    font-family: var(--fm); font-size: .52rem;
    letter-spacing: 1px; color: var(--fog);
}
.hs-card-date::before { content: '/'; margin-right: 8px; opacity: .4; }

.hs-card-title {
    font-family: var(--fh); font-weight: 700;
    text-transform: uppercase; color: var(--white);
    display: block; line-height: 1.12;
    transition: color .18s; letter-spacing: .2px;
}
.hs-card-title:hover { color: var(--ice); }

.hs-card-exc {
    font-family: var(--fb); font-size: .86rem;
    color: var(--mist); line-height: 1.65; flex: 1;
}

.hs-card-more {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--fm); font-size: .55rem;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--ice); margin-top: 2px;
    transition: gap .18s, color .18s;
    width: fit-content;
}
.hs-card-more:hover { gap: 10px; color: var(--white); }

/* ── Feature ───────────────────────────────────────────────── */
.hs-card--feat .hs-card-thumb  { height: 380px; }
.hs-card--feat .hs-card-title  { font-size: clamp(1.4rem, 2vw, 2.2rem); }
.hs-card--feat .hs-card-body   { padding: 22px 24px 26px; gap: 12px; }
.hs-card--feat .hs-card-exc    { font-size: .9rem; }

/* ── Stacked ───────────────────────────────────────────────── */
.hs-card--stack            { flex: 1; }
.hs-card--stack .hs-card-thumb { height: 145px; }
.hs-card--stack .hs-card-title { font-size: clamp(1rem, 1.3vw, 1.25rem); }
.hs-card--stack .hs-card-body  { padding: 14px 16px 17px; gap: 6px; }

/* ── Medium ─────────────────────────────────────────────────── */
.hs-card--med .hs-card-thumb  { aspect-ratio: 16/9; }
.hs-card--med .hs-card-title  { font-size: clamp(1.05rem, 1.4vw, 1.45rem); }

/* ── Compact ────────────────────────────────────────────────── */
.hs-card--compact .hs-card-thumb   { aspect-ratio: 4/3; }
.hs-card--compact .hs-card-title   { font-size: clamp(.9rem, 1.1vw, 1.15rem); line-height: 1.15; }
.hs-card--compact .hs-card-body    { padding: 13px 15px 16px; gap: 5px; }
.hs-card--compact .hs-card-exc     { display: none; }
.hs-card--compact .hs-card-more    { display: none; }

/* ════════════════════════════════════════════════════════════════
   PAGINATION
   ════════════════════════════════════════════════════════════════ */
.hs-pagination {
    margin-top: 44px;
    display: flex; justify-content: center;
}

.hs-pagination .nav-links {
    display: flex; gap: 5px; align-items: center;
}

.hs-pagination .page-numbers {
    min-width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 12px;
    background: var(--navy-2); border: 1px solid rgba(255,255,255,.07);
    border-radius: 5px;
    font-family: var(--fm); font-size: .75rem; letter-spacing: 1px;
    color: var(--mist);
    transition: all .2s;
}

.hs-pagination .page-numbers:hover,
.hs-pagination .page-numbers.current {
    background: var(--ice); border-color: var(--ice); color: var(--navy);
}

/* ════════════════════════════════════════════════════════════════
   SINGLE ARTICLE
   ════════════════════════════════════════════════════════════════ */
.hs-art-banner {
    position: relative;
    width: 100%;
    height: 54vh; min-height: 360px;
    overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end;
}

.hs-art-banner-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: brightness(.32) saturate(.7);
    transition: filter .4s;
}

.hs-art-banner:hover .hs-art-banner-img { filter: brightness(.37) saturate(.8); }

.hs-art-banner-veil {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--navy) 0%, rgba(6,12,24,.2) 100%);
}

.hs-art-banner-content {
    position: relative; z-index: 2;
    padding-bottom: 48px;
}

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

.hs-art-cat {
    font-family: var(--fm); font-size: .6rem; letter-spacing: 2.5px;
    text-transform: uppercase;
    background: var(--ice); color: var(--navy);
    padding: 4px 10px; border-radius: 3px; line-height: 1;
}

.hs-art-date-tag {
    font-family: var(--fm); font-size: .6rem; letter-spacing: 2px;
    color: rgba(233,242,255,.45);
}

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

/* Article body + sidebar */
.hs-art-body {
    padding: 52px 0 80px;
}

.hs-art-grid {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 56px; align-items: start;
}

.hs-art-text .entry-content {
    font-family: var(--fb); font-size: 1.05rem;
    line-height: 1.82; color: rgba(233,242,255,.72);
}

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

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

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

.hs-art-text .entry-content a { color: var(--ice); text-decoration: underline; text-decoration-color: rgba(0,212,255,.3); }
.hs-art-text .entry-content a:hover { text-decoration-color: var(--ice); }

.hs-art-text .entry-content img { width: 100%; border-radius: 6px; margin: 2em 0; }
.hs-art-text .entry-content ul { padding-left: 1.4em; }
.hs-art-text .entry-content ul li { list-style: disc; }
.hs-art-text .entry-content ol { padding-left: 1.4em; }
.hs-art-text .entry-content ol li { list-style: decimal; }
.hs-art-text .entry-content blockquote {
    border-left: 3px solid rgba(0,212,255,.5);
    background: var(--navy-2); padding: 16px 20px 16px 22px;
    border-radius: 0 5px 5px 0; color: var(--mist); font-style: italic; margin: 2em 0;
}

/* Sidebar */
.hs-art-sidebar {
    position: sticky; top: 88px;
    border-left: 2px dashed var(--stitch);
    padding-left: 30px;
}

.hs-side-block { margin-bottom: 30px; }

.hs-side-label {
    font-family: var(--fm); font-size: .57rem; letter-spacing: 4px;
    text-transform: uppercase; color: var(--fog);
    display: block; margin-bottom: 8px;
    padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.06);
}

.hs-side-value {
    font-family: var(--fh); font-size: 1.1rem; font-weight: 700;
    text-transform: uppercase; color: var(--ice);
}

.hs-side-date {
    font-family: var(--fb); font-size: .85rem; color: var(--mist); line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════
   STATIC PAGE
   ════════════════════════════════════════════════════════════════ */
.hs-page-banner {
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 52px 0 48px;
    background: var(--navy-1);
    position: relative;
}

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

.hs-page-banner h1 {
    font-family: var(--fh); font-size: clamp(2rem, 4vw, 4.5rem);
    font-weight: 700; text-transform: uppercase; color: var(--white);
}

.hs-page-body { padding: 52px 0 80px; }

.hs-page-body .entry-content {
    font-family: var(--fb); font-size: 1.05rem;
    line-height: 1.82; color: rgba(233,242,255,.7);
    max-width: 860px;
}

.hs-page-body .entry-content > * + * { margin-top: 1.3em; }
.hs-page-body .entry-content h2 { font-family: var(--fh); font-size: 1.8rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-top: 2em; }
.hs-page-body .entry-content a { color: var(--ice); }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.hs-footer {
    background: var(--navy-1);
    border-top: 1px solid rgba(255,255,255,.05);
    position: relative;
}

/* Stitch on top */
.hs-footer::before {
    content: '';
    display: block; height: 4px;
    background: var(--ice);
    box-shadow: 0 0 16px var(--ice-glow);
}

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

.hs-ft-name {
    font-family: var(--fd); font-size: 1.9rem;
    letter-spacing: 6px; text-transform: uppercase; color: var(--white);
    display: block; line-height: 1; margin-bottom: 5px;
}

.hs-ft-sub {
    font-family: var(--fm); font-size: .58rem; letter-spacing: 4px;
    text-transform: uppercase; color: var(--ice);
    display: block; margin-bottom: 16px;
}

.hs-ft-desc {
    font-size: .87rem; color: var(--fog); max-width: 300px; line-height: 1.7;
}

.hs-ft-col-title {
    font-family: var(--fm); font-size: .57rem; letter-spacing: 4px;
    text-transform: uppercase; color: var(--fog);
    display: block; margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--stitch);
}

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

.hs-ft-col a {
    font-family: var(--fh); font-size: 1.1rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--mist); padding: 6px 0; display: block;
    transition: color .15s, padding-left .15s;
}
.hs-ft-col a:hover { color: var(--white); padding-left: 6px; }

.hs-footer-bar {
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 16px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px;
}

.hs-footer-bar span {
    font-family: var(--fm); font-size: .58rem;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--fog);
}

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

/* ════════════════════════════════════════════════════════════════
   ERC TABLES (shortcode compat)
   ════════════════════════════════════════════════════════════════ */
.erc-clean-wrapper { max-width: 100%; }
.erc-card { background: var(--navy-2) !important; border: 1px solid rgba(255,255,255,.07); border-radius: 5px; overflow: hidden; margin-bottom: 18px; }
.erc-card-header { background: transparent !important; color: var(--ice) !important; padding: 11px 18px; font-family: var(--fh); font-size: 1.2rem; font-weight:700; text-transform: uppercase; letter-spacing: 2px; border-bottom: 1px solid rgba(255,255,255,.07); }
.erc-table { width: 100%; border-collapse: collapse; }
.erc-table th { text-align: left; padding: 10px 18px; color: var(--fog) !important; font-family: var(--fm); font-size: .6rem; text-transform: uppercase; letter-spacing: 2px; border-bottom: 1px solid rgba(255,255,255,.07); }
.erc-table td { padding: 10px 18px; border-bottom: 1px solid rgba(255,255,255,.04); color: var(--white) !important; font-size: .9rem; }
.erc-table tr:last-child td { border-bottom: none; }
.erc-table tr:hover { background: rgba(255,255,255,.02) !important; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hs-row-1 { grid-template-columns: 1fr; }
    .hs-stack  { flex-direction: row; gap: 16px; }
    .hs-card--stack { flex: 1; min-width: 0; }
    .hs-card--feat .hs-card-thumb { height: 280px; }
    .hs-row-3  { grid-template-columns: repeat(2, 1fr); }
    .hs-pod    { grid-template-columns: 165px 1fr; }
    .hs-pod-cover { width: 120px; height: 120px; }
    .hs-art-grid { grid-template-columns: 1fr; }
    .hs-art-sidebar { position: static; border-left: none; border-top: 2px dashed var(--stitch); padding: 22px 0 0; }
    .hs-footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
    /* Swap to mobile nav */
    .hs-nav      { display: none; }
    .hs-burger   { display: flex; }
    .mob-overlay { display: block; }
    .hs-pod-img  { display: none; }
}

@media (max-width: 720px) {
    .hs-row-1,.hs-row-2,.hs-row-3 { grid-template-columns: 1fr; }
    .hs-stack  { flex-direction: column; }
    .hs-hero   { height: 50vh; min-height: 300px; }
    .hs-stripe-body { padding: 28px 0; }
    .hs-pod    { grid-template-columns: 1fr; }
    .hs-pod-art { padding: 24px 24px 8px; justify-content: flex-start; }
    .hs-pod-info { padding: 8px 24px 24px; }
    .hs-pod-actions { flex-direction: column; }
    .hs-btn { width: 100%; justify-content: center; }
    .hs-footer-main { grid-template-columns: 1fr; gap: 28px; }
    .hs-footer-bar  { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hs-logo-name { font-size: 1rem; letter-spacing: 3px; }
    .hs-art-title { font-size: clamp(1.8rem, 8vw, 3rem); }
}
