/*
Theme Name: VentureStori
Theme URI:
Author: pascalpizzy
Description: African startup and business intelligence WordPress theme — dark editorial aesthetic with lime green accent.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: venturestori
*/

/* ── DESIGN TOKENS ── */
:root {
  --vs-black:       #080C0F;
  --vs-black-2:     #111518;
  --vs-green:       #8DC63F;
  --vs-green-light: #A6D666;
  --vs-green-pale:  #F1F8E4;
  --vs-off-white:   #F4F6F5;
  --vs-white:       #ffffff;
  --vs-slate:       #2D3A3A;
  --vs-muted:       #6B7C7C;
  --vs-border:      #D8E2E0;
  --vs-yellow:      #F5C842;
  --vs-red:         #E5433D;
  --vs-radius:      4px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.6; color: var(--vs-slate); background: var(--vs-off-white); }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
.skip { position: absolute; left: -9999px; }

/* ── LAYOUT ── */
.vs-wrap { max-width: 1240px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 40px); }

/* ── TICKER ── */
.vs-ticker { background: var(--vs-green); overflow: hidden; height: 36px; display: flex; align-items: center; }
.vs-ticker__track { display: flex; align-items: center; white-space: nowrap; animation: vs-tick 35s linear infinite; }
.vs-ticker__item { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--vs-black); padding: 0 20px; display: inline-flex; align-items: center; gap: 16px; }
.vs-ticker__item::after { content: '▶'; font-size: 8px; color: rgba(8,12,15,.35); }
@keyframes vs-tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.vs-ticker:hover .vs-ticker__track { animation-play-state: paused; }

/* ── TOP BAR ── */
.vs-topbar { background: var(--vs-black); border-bottom: 1px solid rgba(255,255,255,.07); }
.vs-topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.vs-topbar__left { font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: .04em; }
.vs-topbar__right { display: flex; align-items: center; height: 100%; }
.vs-topbar__link { font-size: 12px; font-weight: 400; color: rgba(255,255,255,.75); padding: 0 16px; height: 100%; display: flex; align-items: center; transition: color .2s; letter-spacing: .01em; white-space: nowrap; }
.vs-topbar__link:hover { color: var(--vs-green); }
.vs-topbar__newsletter { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--vs-black); background: var(--vs-green); padding: 0 16px; height: 100%; display: flex; align-items: center; transition: background .2s; white-space: nowrap; }
.vs-topbar__newsletter:hover { background: var(--vs-green-light); }

/* ── HEADER ── */
.vs-header { background: var(--vs-black); padding: 28px 0 22px; }
.vs-header__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; }
.vs-header__brand { text-decoration: none; }
.vs-header__logo { font-family: 'Fraunces', serif; font-size: clamp(30px, 4.5vw, 52px); font-weight: 700; color: var(--vs-white); line-height: 1; letter-spacing: -.02em; }
.vs-header__logo em { font-style: normal; color: var(--vs-green); }
.vs-header__tagline { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 7px; }
.vs-header__stats { display: flex; gap: 28px; }
.vs-header__stat-num { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; color: var(--vs-yellow); line-height: 1.1; }
.vs-header__stat-label { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 3px; }

/* ── MAIN NAV ── */
.vs-nav { background: var(--vs-black); border-bottom: 2px solid rgba(255,255,255,.07); position: sticky; top: 0; z-index: 200; }
.vs-nav__inner { display: flex; align-items: center; justify-content: space-between; }
.vs-nav__links { display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; flex: 1; min-width: 0; }
.vs-nav__links::-webkit-scrollbar { display: none; }
.vs-nav__link { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); padding: 0 16px; height: 46px; display: inline-flex; align-items: center; border-bottom: 2px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: color .2s, border-color .2s; }
.vs-nav__link:hover, .vs-nav__link.active, .vs-nav__link[aria-current="page"], .vs-nav__link.current-menu-item { color: var(--vs-green); border-bottom-color: var(--vs-green); }
.vs-nav__search { flex-shrink: 0; width: 44px; height: 46px; display: flex; align-items: center; justify-content: center; background: none; border: none; color: rgba(255,255,255,.45); font-size: 16px; transition: color .2s; }
.vs-nav__search:hover { color: var(--vs-green); }

/* ── HAMBURGER ── */
.vs-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 46px; padding: 4px 8px; background: none; border: none; flex-shrink: 0; }
.vs-hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.65); border-radius: 2px; transition: transform .25s, opacity .25s; }
.vs-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vs-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vs-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.vs-mobile-menu { position: fixed; inset: 0; z-index: 9999; }
.vs-mobile-menu__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.vs-mobile-menu__panel { position: absolute; top: 0; left: 0; width: min(300px, 85vw); height: 100%; background: var(--vs-black); display: flex; flex-direction: column; overflow-y: auto; box-shadow: 4px 0 28px rgba(0,0,0,.4); animation: vs-slide-left .25s ease; }
@keyframes vs-slide-left { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.vs-mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.vs-mobile-menu__logo { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; color: var(--vs-white); }
.vs-mobile-menu__logo em { font-style: normal; color: var(--vs-green); }
.vs-mobile-menu__close { background: none; border: none; color: rgba(255,255,255,.45); font-size: 18px; padding: 4px; line-height: 1; }
.vs-mobile-menu__nav { display: flex; flex-direction: column; flex: 1; padding: 8px 0; }
.vs-mobile-menu__nav a { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); padding: 15px 24px; border-bottom: 1px solid rgba(255,255,255,.06); transition: color .2s, background .2s; }
.vs-mobile-menu__nav a:hover { color: var(--vs-green); background: rgba(255,255,255,.03); }

/* ── SEARCH OVERLAY ── */
.vs-search-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(8,12,15,.96); display: flex; align-items: flex-start; padding-top: 80px; }
.vs-search-overlay__inner { width: 100%; max-width: 640px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); position: relative; }
.vs-search-overlay__close { position: fixed; top: 20px; right: 24px; background: none; border: none; color: rgba(255,255,255,.45); font-size: 26px; line-height: 1; transition: color .2s; }
.vs-search-overlay__close:hover { color: var(--vs-white); }
.vs-search-overlay__form { border-bottom: 2px solid var(--vs-green); padding-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.vs-search-overlay__label { font-size: 13px; color: rgba(255,255,255,.35); flex-shrink: 0; }
.vs-search-overlay__input { flex: 1; background: none; border: none; font-family: 'Fraunces', serif; font-size: clamp(22px, 4vw, 32px); font-weight: 600; color: var(--vs-white); outline: none; min-width: 0; }
.vs-search-overlay__input::placeholder { color: rgba(255,255,255,.18); }
.vs-search-overlay__hint { font-size: 11px; color: rgba(255,255,255,.28); margin-top: 10px; }

/* ── SECTION HEADER ── */
.vs-section-head { display: flex; align-items: baseline; gap: 12px; padding: 28px 0 14px; border-bottom: 2px solid var(--vs-black); margin-bottom: 24px; }
.vs-section-head__label { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--vs-green); }
.vs-section-head__title { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; color: var(--vs-black); letter-spacing: -.01em; }
.vs-section-head__more { margin-left: auto; font-size: 11px; font-weight: 600; letter-spacing: .08em; color: var(--vs-muted); transition: color .2s; flex-shrink: 0; }
.vs-section-head__more:hover { color: var(--vs-green); }

/* ── HERO ── */
.vs-hero { background: var(--vs-black); padding: 28px 0 28px; }
.vs-hero__grid { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.vs-hero__main { position: relative; border-radius: var(--vs-radius); overflow: hidden; }
.vs-hero__main-img { width: 100%; height: 460px; object-fit: cover; display: block; transition: transform .5s ease; }
.vs-hero__main:hover .vs-hero__main-img { transform: scale(1.02); }
.vs-hero__main-placeholder { width: 100%; height: 460px; background: var(--vs-border); }
.vs-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,12,15,.92) 0%, rgba(8,12,15,.3) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.vs-hero__cat { display: inline-block; align-self: flex-start; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--vs-black); background: var(--vs-green); padding: 3px 9px; margin-bottom: 12px; }
.vs-hero__title { font-family: 'Fraunces', serif; font-size: clamp(22px, 2.8vw, 36px); font-weight: 700; color: var(--vs-white); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 10px; }
.vs-hero__deck { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vs-hero__meta { display: flex; gap: 14px; font-size: 11px; color: rgba(255,255,255,.45); flex-wrap: wrap; }

.vs-hero__side { display: flex; flex-direction: column; }
.vs-hero__side-item { display: grid; grid-template-columns: 96px 1fr; gap: 14px; align-items: start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.vs-hero__side-item:last-child { border-bottom: none; }
.vs-hero__side-cat { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--vs-green); margin-bottom: 5px; display: block; }
.vs-hero__side-title { font-family: 'Fraunces', serif; font-size: 14px; font-weight: 600; color: var(--vs-white); line-height: 1.3; letter-spacing: -.01em; transition: color .2s; }
.vs-hero__side-item:hover .vs-hero__side-title { color: var(--vs-green); }
.vs-hero__side-meta { font-size: 10px; color: rgba(255,255,255,.4); margin-top: 6px; }
.vs-hero__side-img { width: 96px; height: 80px; object-fit: cover; border-radius: var(--vs-radius); flex-shrink: 0; }
.vs-hero__side-placeholder { width: 96px; height: 80px; background: rgba(255,255,255,.08); border-radius: var(--vs-radius); flex-shrink: 0; }

/* ── MARKET BAR ── */
.vs-market-bar { background: var(--vs-white); border-top: 1px solid var(--vs-border); border-bottom: 1px solid var(--vs-border); margin: 24px 0; }
.vs-market-bar__inner { display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; padding: 10px 0; }
.vs-market-bar__inner::-webkit-scrollbar { display: none; }
.vs-market-bar__item { display: flex; align-items: center; gap: 6px; padding: 0 20px; border-right: 1px solid var(--vs-border); white-space: nowrap; flex-shrink: 0; }
.vs-market-bar__item:last-child { border-right: none; }
.vs-market-bar__name { font-size: 11px; font-weight: 700; letter-spacing: .05em; color: var(--vs-slate); }
.vs-market-bar__price { font-size: 12px; font-weight: 600; color: var(--vs-black); }
.vs-market-bar__change { font-size: 11px; font-weight: 600; }
.vs-market-bar__change.up   { color: #22a03c; }
.vs-market-bar__change.down { color: var(--vs-red); }

/* ── ARTICLE CARDS ── */
.vs-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vs-card { display: flex; flex-direction: column; background: var(--vs-white); border-radius: var(--vs-radius); overflow: hidden; border: 1px solid var(--vs-border); transition: box-shadow .2s; }
.vs-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.vs-card__img-wrap { overflow: hidden; height: 186px; }
.vs-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.vs-card:hover .vs-card__img { transform: scale(1.04); }
.vs-card__img-placeholder { width: 100%; height: 100%; background: var(--vs-border); }
.vs-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.vs-card__cat { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--vs-green); margin-bottom: 7px; }
.vs-card__title { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 600; color: var(--vs-black); line-height: 1.3; letter-spacing: -.01em; margin-bottom: 8px; transition: color .2s; }
.vs-card:hover .vs-card__title { color: var(--vs-green); }
.vs-card__deck { font-size: 13px; color: var(--vs-muted); line-height: 1.5; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.vs-card__meta { display: flex; gap: 6px; font-size: 11px; color: var(--vs-muted); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--vs-border); }
.vs-card__meta-sep { opacity: .5; }

/* ── DEEP FEATURE ── */
.vs-feature-row { display: grid; grid-template-columns: 1fr 280px; gap: 32px; align-items: start; margin-bottom: 40px; }
.vs-feature__main-img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--vs-radius); margin-bottom: 16px; }
.vs-feature__tag { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--vs-black); background: var(--vs-green); padding: 3px 8px; display: inline-block; margin-bottom: 12px; }
.vs-feature__title { font-family: 'Fraunces', serif; font-size: clamp(20px, 2.5vw, 26px); font-weight: 600; color: var(--vs-black); line-height: 1.25; letter-spacing: -.015em; margin-bottom: 10px; transition: color .2s; }
.vs-feature__main:hover .vs-feature__title { color: var(--vs-green); }
.vs-feature__deck { font-size: 14px; color: var(--vs-muted); line-height: 1.6; margin-bottom: 10px; }
.vs-feature__meta { font-size: 11px; color: var(--vs-muted); }
.vs-most-read__heading { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 600; color: var(--vs-black); padding-bottom: 12px; border-bottom: 2px solid var(--vs-black); margin-bottom: 0; }
.vs-most-read-list { list-style: none; }
.vs-most-read-list li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--vs-border); }
.vs-most-read-list li:last-child { border-bottom: none; }
.vs-most-read-list__num { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--vs-border); line-height: 1; flex-shrink: 0; }
.vs-most-read-list a { font-size: 13px; font-weight: 600; color: var(--vs-black); line-height: 1.35; transition: color .2s; }
.vs-most-read-list a:hover { color: var(--vs-green); }

/* ── FUNDING SECTION ── */
.vs-funding { background: var(--vs-black); padding: 52px 0 56px; margin: 0; }
.vs-funding__kicker { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--vs-green); margin-bottom: 14px; }
.vs-funding__heading { font-family: 'Fraunces', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: var(--vs-white); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 40px; }
.vs-funding__more { font-size: 11px; font-weight: 600; letter-spacing: .08em; color: rgba(255,255,255,.35); margin-top: 32px; display: inline-block; transition: color .2s; }
.vs-funding__more:hover { color: var(--vs-green); }
.vs-funding__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.vs-funding-card { padding: 0 32px 0 0; display: flex; flex-direction: column; gap: 12px; border-right: 1px solid rgba(255,255,255,.1); margin-right: 32px; }
.vs-funding-card:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.vs-funding-card__amount { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 700; color: var(--vs-yellow); line-height: 1; }
.vs-funding-card__name { font-size: 16px; font-weight: 700; color: var(--vs-white); line-height: 1.3; }
.vs-funding-card__desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; flex: 1; }
.vs-funding-card__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.vs-funding-card__tag { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--vs-green); border: 1px solid rgba(141,198,63,.4); padding: 3px 8px; border-radius: 2px; }

/* ── NEWSLETTER ── */
.vs-newsletter { background: var(--vs-green); padding: 80px 0; text-align: center; }
.vs-newsletter__inner { max-width: 620px; margin: 0 auto; }
.vs-newsletter__kicker { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(8,12,15,.5); margin-bottom: 18px; }
.vs-newsletter__title { font-family: 'Fraunces', serif; font-size: clamp(30px, 4.5vw, 52px); font-weight: 700; color: var(--vs-black); line-height: 1.12; margin-bottom: 14px; letter-spacing: -.02em; }
.vs-newsletter__sub { font-size: 15px; color: rgba(8,12,15,.55); line-height: 1.6; margin-bottom: 32px; }
.vs-newsletter__form { display: flex; max-width: 480px; margin: 0 auto; }
.vs-newsletter__input { flex: 1; padding: 15px 18px; font-size: 14px; border: none; background: rgba(8,12,15,.1); color: var(--vs-black); outline: none; min-width: 0; }
.vs-newsletter__input::placeholder { color: rgba(8,12,15,.4); }
.vs-newsletter__btn { padding: 15px 24px; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--vs-black); color: var(--vs-white); border: none; white-space: nowrap; transition: background .2s; }
.vs-newsletter__btn:hover { background: rgba(8,12,15,.75); }

/* ── FOOTER ── */
.vs-footer { background: var(--vs-black); padding: 52px 0 0; }
.vs-footer__grid { display: grid; grid-template-columns: 260px 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.vs-footer__logo { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 700; color: var(--vs-white); margin-bottom: 10px; }
.vs-footer__logo em { font-style: normal; color: var(--vs-green); }
.vs-footer__desc { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.6; margin-bottom: 18px; }
.vs-footer__socials { display: flex; gap: 10px; }
.vs-footer__social { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.45); transition: border-color .2s, color .2s; }
.vs-footer__social:hover { border-color: var(--vs-green); color: var(--vs-green); }
.vs-footer__col-title { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.07); }
.vs-footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.vs-footer__col-links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.vs-footer__col-links a:hover { color: var(--vs-green); }
.vs-footer__bot { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; font-size: 11px; color: rgba(255,255,255,.22); }

/* ── SINGLE POST ── */
.vs-progress-wrap { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9998; }
.vs-progress-bar { height: 100%; width: 0; background: var(--vs-green); transition: width .1s linear; }
.vs-article-nav { background: var(--vs-white); border-bottom: 1px solid var(--vs-border); position: sticky; top: 0; z-index: 200; }
.vs-article-nav__inner { display: flex; align-items: center; gap: 32px; height: 44px; }
.vs-article-nav__logo { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; color: var(--vs-black); flex-shrink: 0; text-decoration: none; letter-spacing: -.01em; }
.vs-article-nav__logo em { font-style: normal; color: var(--vs-green); }
.vs-article-nav__links { display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; flex: 1; min-width: 0; }
.vs-article-nav__links::-webkit-scrollbar { display: none; }
.vs-article-nav__link { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--vs-slate); padding: 0 12px; line-height: 44px; display: inline-block; white-space: nowrap; flex-shrink: 0; transition: color .15s; }
.vs-article-nav__link:hover { color: var(--vs-green); }
.vs-breadcrumb { background: var(--vs-off-white); border-bottom: 1px solid var(--vs-border); }
.vs-breadcrumb__inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px,3vw,40px); display: flex; align-items: center; gap: 6px; height: 34px; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--vs-muted); }
.vs-breadcrumb__inner a { color: var(--vs-muted); transition: color .2s; }
.vs-breadcrumb__inner a:hover { color: var(--vs-green); }
.vs-breadcrumb__sep { opacity: .4; }
.vs-article-header { max-width: 820px; margin: 0 auto; padding: 30px clamp(16px,3vw,40px) 0; }
.vs-article-cat { display: inline-flex; align-items: center; gap: 8px; font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--vs-black); background: var(--vs-green); padding: 5px 12px; margin-bottom: 20px; }
.vs-article-title { font-family: 'Fraunces', serif; font-size: clamp(28px, 4vw, 50px); font-weight: 700; color: var(--vs-black); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 16px; }
.vs-article-deck { font-family: 'Fraunces', serif; font-size: clamp(16px, 2vw, 20px); font-style: italic; font-weight: 300; color: var(--vs-muted); line-height: 1.55; margin-bottom: 24px; }
.vs-byline { background: var(--vs-white); max-width: 820px; margin: 0 auto; display: flex; align-items: center; gap: 18px; padding: 16px clamp(16px,3vw,40px); border-top: 1px solid var(--vs-border); border-bottom: 1px solid var(--vs-border); flex-wrap: wrap; }
.vs-byline__author { display: flex; align-items: center; gap: 10px; }
.vs-byline__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--vs-green); color: var(--vs-black); font-family: 'Fraunces', serif; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vs-byline__name { font-size: 13px; font-weight: 600; color: var(--vs-black); }
.vs-byline__role { font-size: 11px; font-weight: 600; color: var(--vs-slate); }
.vs-byline__divider { width: 1px; height: 28px; background: var(--vs-border); flex-shrink: 0; }
.vs-byline__meta { display: flex; gap: 16px; font-size: 11px; font-weight: 600; color: var(--vs-slate); flex-wrap: wrap; align-items: center; }
.vs-byline__share { display: flex; gap: 7px; align-items: center; margin-left: auto; }
.vs-byline__share-label { font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--vs-muted); }
.vs-share-btn { width: 30px; height: 30px; border: 1px solid var(--vs-border); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--vs-muted); transition: all .2s; cursor: pointer; background: transparent; }
.vs-share-btn:hover { background: var(--vs-green); border-color: var(--vs-green); color: var(--vs-black); }
.vs-article-hero { max-width: 1100px; margin: 0 auto; padding: 28px clamp(16px,3vw,40px); }
.vs-article-hero img { width: 100%; max-height: 540px; object-fit: cover; }
.vs-article-hero-cap { font-size: 11px; font-weight: 600; color: var(--vs-slate); text-align: center; margin-top: 10px; }
.vs-article-body { display: grid; grid-template-columns: 1fr 300px; gap: 56px; max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px,3vw,40px) 60px; align-items: start; }
.vs-article-content { font-size: 17px; line-height: 1.78; color: var(--vs-black); }
.vs-article-content p { margin-bottom: 22px; }
.vs-article-content h2 { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 600; color: var(--vs-black); margin: 40px 0 14px; line-height: 1.2; }
.vs-article-content h3 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; color: var(--vs-black); margin: 28px 0 10px; line-height: 1.3; }
.vs-article-content strong { font-weight: 600; }
.vs-article-content a { color: var(--vs-green); border-bottom: 1px solid rgba(141,198,63,.35); transition: border-color .2s; }
.vs-article-content a:hover { border-bottom-color: var(--vs-green); }
.vs-article-content blockquote { border-left: 4px solid var(--vs-green); margin: 36px 0; padding: 20px 28px; background: var(--vs-green-pale); }
.vs-article-content blockquote p { font-family: 'Fraunces', serif; font-size: clamp(17px, 2vw, 22px); font-style: italic; font-weight: 400; line-height: 1.45; color: var(--vs-black); margin: 0; }
.vs-article-content img { margin: 32px 0; width: 100%; }
.vs-article-sidebar { position: sticky; top: 60px; display: flex; flex-direction: column; gap: 30px; }
.vs-sidebar-widget { padding: 0; }
.vs-sidebar-widget__title { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--vs-black); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--vs-green); display: flex; align-items: center; justify-content: space-between; }
.vs-sidebar-widget__title a { color: var(--vs-green); font-size: 9px; }
.vs-sidebar-related a { display: grid; grid-template-columns: 72px 1fr; gap: 11px; padding: 12px 0; border-bottom: 1px solid var(--vs-border); }
.vs-sidebar-related a:first-of-type { padding-top: 0; }
.vs-sidebar-related a:last-of-type { border-bottom: none; }
.vs-sidebar-related__img { overflow: hidden; }
.vs-sidebar-related__img img { width: 72px; height: 50px; object-fit: cover; transition: transform .4s; }
.vs-sidebar-related a:hover .vs-sidebar-related__img img { transform: scale(1.07); }
.vs-sidebar-related__cat { font-size: 8px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--vs-green); margin-bottom: 3px; }
.vs-sidebar-related__title { font-size: 13px; font-weight: 600; line-height: 1.3; color: var(--vs-black); transition: color .2s; }
.vs-sidebar-related a:hover .vs-sidebar-related__title { color: var(--vs-green); }
.vs-sidebar-nl { background: var(--vs-green); padding: 22px; text-align: center; }
.vs-sidebar-nl h4 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700; color: var(--vs-white); margin-bottom: 8px; line-height: 1.2; }
.vs-sidebar-nl p { font-size: 13px; color: rgba(255,255,255,.88); line-height: 1.6; margin-bottom: 14px; }
.vs-sidebar-nl input { width: 100%; padding: 10px 13px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: var(--vs-white); font-size: 13px; outline: none; margin-bottom: 8px; }
.vs-sidebar-nl input::placeholder { color: rgba(255,255,255,.35); }
.vs-sidebar-nl button { width: 100%; padding: 11px; background: var(--vs-black); color: var(--vs-white); border: none; font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; transition: background .2s; }
.vs-sidebar-nl button:hover { background: var(--vs-slate); }
.vs-sidebar-fund { background: var(--vs-white); border: 1px solid var(--vs-border); padding: 18px; }
.vs-sidebar-fund__item { padding: 12px 0; border-bottom: 1px solid var(--vs-border); }
.vs-sidebar-fund__item:first-child { padding-top: 0; }
.vs-sidebar-fund__item:last-child { border-bottom: none; padding-bottom: 0; }
.vs-sidebar-fund__amt { font-size: 18px; font-weight: 600; color: var(--vs-yellow); line-height: 1; margin-bottom: 3px; }
.vs-sidebar-fund__co { font-family: 'Fraunces', serif; font-size: 14px; font-weight: 600; margin-bottom: 3px; color: var(--vs-black); }
.vs-sidebar-fund__detail { font-size: 10px; font-weight: 600; color: var(--vs-slate); line-height: 1.5; }
.vs-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--vs-border); max-width: 820px; margin-left: auto; margin-right: auto; padding-left: clamp(16px,3vw,40px); padding-right: clamp(16px,3vw,40px); }
.vs-tags__label { font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--vs-muted); }
.vs-tag { font-size: 10px; color: var(--vs-black); background: var(--vs-white); border: 1px solid var(--vs-border); padding: 5px 11px; transition: all .2s; }
.vs-tag:hover { background: var(--vs-green); border-color: var(--vs-green); color: var(--vs-black); }
.vs-author-bio { max-width: 820px; margin: 0 auto 0; padding: 0 clamp(16px,3vw,40px) 40px; }
.vs-author-bio__inner { background: var(--vs-white); border: 1px solid var(--vs-border); padding: 24px; display: grid; grid-template-columns: 68px 1fr; gap: 18px; align-items: start; }
.vs-author-bio__avatar { width: 68px; height: 68px; border-radius: 50%; background: var(--vs-green); color: var(--vs-black); font-family: 'Fraunces', serif; font-size: 26px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.vs-author-bio__name { font-size: 17px; font-weight: 700; margin-bottom: 5px; color: var(--vs-black); }
.vs-author-bio__role { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--vs-green); margin-bottom: 7px; }
.vs-author-bio__text { font-size: 13px; color: var(--vs-muted); line-height: 1.65; }
.vs-related { background: var(--vs-white); border-top: 1px solid var(--vs-border); padding: 48px clamp(16px,3vw,40px); }
.vs-related__inner { max-width: 1280px; margin: 0 auto; }
.vs-related__head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.vs-related__head h2 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; white-space: nowrap; color: var(--vs-black); }
.vs-related__line { flex: 1; height: 1px; background: var(--vs-border); }
.vs-rcard { display: block; color: inherit; }
.vs-rcard__img { overflow: hidden; margin-bottom: 12px; }
.vs-rcard__img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .45s; }
.vs-rcard:hover .vs-rcard__img img { transform: scale(1.05); }
.vs-rcard__cat { font-size: 8px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--vs-green); margin-bottom: 7px; }
.vs-rcard__title { font-size: 17px; font-weight: 600; line-height: 1.25; color: var(--vs-black); margin-bottom: 7px; transition: color .2s; }
.vs-rcard:hover .vs-rcard__title { color: var(--vs-green); }
.vs-rcard__meta { font-size: 10px; font-weight: 600; color: var(--vs-slate); }

/* ── ARCHIVE ── */
.vs-archive-header { background: var(--vs-black); padding: 44px 0; }
.vs-archive-kicker { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--vs-green); margin-bottom: 8px; }
.vs-archive-title { font-family: 'Fraunces', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--vs-white); letter-spacing: -.02em; }
.vs-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 32px 0; }
.vs-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 0 0 40px; }
.vs-pagination a, .vs-pagination span { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; font-size: 13px; font-weight: 600; border: 1px solid var(--vs-border); color: var(--vs-slate); transition: background .2s, color .2s, border-color .2s; }
.vs-pagination a:hover, .vs-pagination .current { background: var(--vs-green); color: var(--vs-black); border-color: var(--vs-green); }

/* ── 404 ── */
.vs-404 { text-align: center; padding: 80px 16px; }
.vs-404__num { font-family: 'Fraunces', serif; font-size: clamp(80px, 15vw, 160px); font-weight: 700; color: var(--vs-green); line-height: 1; }
.vs-404__title { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 600; color: var(--vs-black); margin: 12px 0 10px; }
.vs-404__sub { font-size: 15px; color: var(--vs-muted); margin-bottom: 28px; }
.vs-404__btn { display: inline-block; background: var(--vs-green); color: var(--vs-black); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 14px 28px; transition: background .2s; }
.vs-404__btn:hover { background: var(--vs-green-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .vs-hero__grid { grid-template-columns: 1fr 280px; }
  .vs-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .vs-article-body { grid-template-columns: 1fr; }
  .vs-article-sidebar { position: static; }
  .vs-feature-row { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .vs-topbar { display: none; }
  .vs-header__inner { grid-template-columns: 1fr; gap: 14px; }
  .vs-header__stats { gap: 20px; }
  .vs-hero__grid { grid-template-columns: 1fr; }
  .vs-hero__side { display: none; }
  .vs-card-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .vs-funding__grid { grid-template-columns: 1fr; }
  .vs-funding-card { border-right: none; margin-right: 0; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 24px; }
  .vs-funding-card:last-child { border-bottom: none; padding-bottom: 0; }
  .vs-newsletter__form { width: 100%; }
  .vs-footer__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .vs-footer__bot { flex-direction: column; gap: 4px; text-align: center; }
  .vs-nav__links { display: none; }
  .vs-hamburger { display: flex; }
  .vs-archive-grid { grid-template-columns: 1fr 1fr; }
  .vs-article-nav__links { display: none; }
  .vs-article-body { grid-template-columns: 1fr; }
  .vs-article-sidebar { position: static; }
}
@media (max-width: 479px) {
  .vs-card-grid { grid-template-columns: 1fr; }
  .vs-archive-grid { grid-template-columns: 1fr; }
  .vs-footer__grid { grid-template-columns: 1fr; }
}
