/* =====================================================================
   SABINUS s.r.o. — Kaiser Natron regional distribution
   Design system: "Clean room meets old-world apothecary"
   Powder-white base · imperial ink · carbonate teal · brass heritage seal
   ===================================================================== */

:root {
  /* Palette */
  --powder:   #FBFBF9;   /* base — fine white powder, faintly warm */
  --powder-2: #F3F5F2;   /* raised surface */
  --ink:      #0F2C4D;   /* imperial / Prussian-leaning blue */
  --ink-soft: #1C3F63;
  --teal:     #2C8C9C;   /* carbonate / effervescence accent */
  --teal-dk:  #1F6A78;
  --brass:    #B0863C;   /* heritage seal — used sparingly */
  --slate:    #5C6B79;   /* muted secondary text */
  --line:     #E1E5E2;   /* hairlines */
  --line-ink: rgba(15,44,77,.12);
  --white:    #ffffff;
  --bg:       #F5F3EE;   /* page canvas — soft off-white, easier on the eyes */

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Scale */
  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(15,44,77,.05), 0 18px 40px -28px rgba(15,44,77,.35);
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--teal-dk); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 530; line-height: 1.1; letter-spacing: -.01em; margin: 0 0 .5em; color: var(--ink); }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 3px; }

/* ----- layout helpers ----- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(56px, 8vw, 110px); }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-dk);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--teal); display: inline-block; }
.lede { font-size: clamp(18px, 2.2vw, 21px); color: var(--ink-soft); max-width: 60ch; }
.muted { color: var(--slate); }

/* ----- buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--powder); }
.btn-primary:hover { background: var(--ink-soft); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,243,238,.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 600; font-size: 21px; color: var(--ink); letter-spacing: .02em; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 30px; height: 30px; flex: none; }
.brand small { font-family: var(--mono); font-size: 9.5px; letter-spacing: .26em; color: var(--slate); display: block; margin-top: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: 15px; position: relative; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background:var(--teal); transition:width .22s ease; }
.nav-links a:hover { text-decoration: none; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 6px; }
/* keep button text colours above the generic .nav-links a rule */
.nav-links .btn-primary { color: var(--powder); }
.nav-links .btn-primary:hover { color: var(--powder); }
.nav-links .btn-ghost { color: var(--ink); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-ink); border-radius: 8px; padding: 9px; cursor: pointer; }
.nav-toggle svg { width: 20px; height: 20px; stroke: var(--ink); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--powder); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 8px var(--gut) 20px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 14px 0 0; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 70px); align-items: center; padding-block: clamp(48px, 7vw, 96px); }
.hero h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 560; letter-spacing: -.025em; }
.hero h1 em { font-style: italic; color: var(--teal-dk); }
.hero .lede { margin-top: 6px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-meta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 22px 34px; font-family: var(--mono); font-size: 12.5px; color: var(--slate); letter-spacing: .02em; }
.hero-meta b { color: var(--ink); font-weight: 600; display: block; font-family: var(--body); font-size: 15px; letter-spacing: 0; }

/* product visual */
.hero-visual { position: relative; aspect-ratio: 4/5; }
.hero-card {
  position: relative; height: 100%; border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, #1a4470 0%, #0F2C4D 62%, #0b2138 100%);
  box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.hero-card .product-svg { width: 70%; filter: drop-shadow(0 24px 30px rgba(0,0,0,.35)); }
.hero-seal {
  position: absolute; top: 16px; right: 16px;
  width: 92px; height: 92px;
}
.bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubble { position: absolute; bottom: -20px; border-radius: 50%; background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.9), rgba(120,200,210,.25) 60%, transparent 70%); opacity: 0; animation: rise linear infinite; }
@keyframes rise {
  0%   { transform: translateY(0) scale(.6); opacity: 0; }
  12%  { opacity: .85; }
  85%  { opacity: .6; }
  100% { transform: translateY(-440px) scale(1.05); opacity: 0; }
}

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 360px; margin-inline: auto; width: 100%; }
}

/* =====================================================================
   TRUST STRIP
   ===================================================================== */
.trust { border-block: 1px solid var(--line); background: var(--powder-2); }
.trust .wrap { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: space-between; padding-block: 22px; align-items: center; }
.trust .item { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--ink-soft); }
.trust .item svg { width: 22px; height: 22px; flex: none; color: var(--teal-dk); }
.trust .item b { font-weight: 600; }

/* =====================================================================
   GENERIC SECTION HEADERS
   ===================================================================== */
.sec-head { max-width: 64ch; margin-bottom: clamp(34px, 5vw, 56px); }
.sec-head h2 { font-size: clamp(28px, 4vw, 42px); }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about .grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.about .lede { margin-bottom: 1.2em; }
.ceo-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.ceo-card .role { font-family: var(--mono); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-dk); }
.ceo-card .name { font-family: var(--display); font-size: 25px; margin: 4px 0 14px; }
.ceo-card hr { border: 0; border-top: 1px solid var(--line); margin: 18px 0; }
.factline { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; padding: 7px 0; }
.factline span:first-child { color: var(--slate); }
.factline span:last-child { font-family: var(--mono); font-size: 13px; text-align: right; }
@media (max-width: 760px){ .about .grid { grid-template-columns: 1fr; } }

/* region map */
.region { margin-top: 30px; }
.region figcaption { font-family: var(--mono); font-size: 12px; color: var(--slate); margin-top: 10px; letter-spacing: .04em; }

/* =====================================================================
   PRODUCT PORTFOLIO
   ===================================================================== */
.portfolio { background: var(--ink); color: var(--powder); }
.portfolio h2, .portfolio h3 { color: var(--powder); }
.portfolio .eyebrow { color: #7fd0dc; }
.portfolio .eyebrow::before { background: #7fd0dc; }
.portfolio .lede { color: #c4d2df; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 12px; }
.pcard {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, background .2s;
}
.pcard.live { background: var(--powder); color: var(--ink); border-color: transparent; }
.pcard.live h3 { color: var(--ink); }
.pcard.live:hover { transform: translateY(-4px); }
.pcard .thumb { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16/11; margin-bottom: 18px; background: var(--powder-2); display:grid; place-items:center; }
.pcard.live .thumb { border: 1px solid var(--line); }
.pcard .tag { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.pcard.live .tag { color: var(--teal-dk); }
.pcard .tag.soon { color: #8aa0b5; }
.pcard h3 { font-size: 22px; margin: 8px 0 8px; }
.pcard p { font-size: 14.5px; margin-bottom: 16px; }
.pcard.live p { color: var(--slate); }
.pcard.soon p { color: #9fb1c2; }
.pcard .more { margin-top: auto; font-weight: 600; font-size: 14px; color: var(--teal-dk); display: inline-flex; align-items: center; gap: 6px; }
.pcard.soon .more { color: #7e93a8; }
@media (max-width: 880px){ .cards { grid-template-columns: 1fr; } }

/* =====================================================================
   PRODUCT DEEP DIVE (Kaiser Natron)
   ===================================================================== */
.product .grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.product-figure { position: relative; }
.product-figure .frame {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: var(--powder-2); box-shadow: var(--shadow); aspect-ratio: 1/1; display:grid; place-items:center;
}
.databar {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.chip { font-family: var(--mono); font-size: 12px; padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); background: var(--white); }
.chip b { color: var(--teal-dk); }
@media (max-width: 820px){ .product .grid { grid-template-columns: 1fr; } }

/* uses */
.uses { background: var(--powder-2); }
.use-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 8px; }
.use {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px 24px; transition: transform .18s ease, box-shadow .2s ease;
}
.use:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.use .ico { width: 38px; height: 38px; color: var(--teal-dk); margin-bottom: 14px; }
.use h3 { font-size: 19px; margin-bottom: 6px; }
.use p { font-size: 14.5px; color: var(--slate); margin: 0; }
.note { font-size: 13px; color: var(--slate); margin-top: 22px; max-width: 70ch; }
@media (max-width: 820px){ .use-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .use-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   PARTNER / DISTRIBUTION
   ===================================================================== */
.distrib .grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,56px); align-items: center; }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; }
.steps li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before {
  counter-increment: s; content: counter(s,decimal-leading-zero);
  font-family: var(--mono); font-size: 13px; color: var(--teal-dk);
  border: 1px solid var(--line); border-radius: 8px; height: 40px; display: grid; place-items: center;
}
.steps h3 { font-size: 18px; margin: 2px 0 3px; }
.steps p { margin: 0; font-size: 14.5px; color: var(--slate); }
@media (max-width: 760px){ .distrib .grid { grid-template-columns: 1fr; } }

/* =====================================================================
   NEWS / BLOG
   ===================================================================== */
.news-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 8px; }
.post {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post .cover { aspect-ratio: 16/9; background: var(--powder-2); display:grid; place-items:center; border-bottom: 1px solid var(--line); }
.post .body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post .meta { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); margin-bottom: 10px; display: flex; gap: 10px; }
.post .meta .cat { color: var(--teal-dk); }
.post h3 { font-size: 20px; line-height: 1.2; margin-bottom: 8px; }
.post p { font-size: 14.5px; color: var(--slate); margin-bottom: 16px; }
.post .more { margin-top: auto; font-weight: 600; font-size: 14px; color: var(--teal-dk); }
@media (max-width: 640px){ .news-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact { background: var(--ink); color: var(--powder); }
.contact h2 { color: var(--powder); }
.contact .eyebrow { color: #7fd0dc; }
.contact .eyebrow::before { background: #7fd0dc; }
.contact .grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); }
.contact .lede { color: #c4d2df; }
.contact-list { list-style: none; margin: 22px 0 0; padding: 0; }
.contact-list li { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-list svg { width: 22px; height: 22px; color: #7fd0dc; flex: none; }
.contact-list a, .contact-list span { color: var(--powder); font-size: 16px; }
.legal-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 26px;
}
.legal-card h3 { color: var(--powder); font-size: 18px; }
.legal-card .factline span:first-child { color: #9fb1c2; }
.legal-card .factline span:last-child { color: var(--powder); }
.legal-card .factline { border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 760px){ .contact .grid { grid-template-columns: 1fr; } }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: #0a2138; color: #9fb1c2; padding-block: 40px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; }
.site-footer .brand { color: var(--powder); font-size: 18px; }
.site-footer .brand small { color: #6d8197; }
.site-footer a { color: #c4d2df; }
.site-footer .legal { font-size: 13px; line-height: 1.7; max-width: 60ch; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 26px; padding-top: 20px; font-size: 12.5px; }
.foot-bottom .wrap { justify-content: space-between; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; } }

/* =====================================================================
   PRODUCT CATALOGUE (portfolio) — real product range
   ===================================================================== */
/* hero + deep-dive now hold portrait product PNGs */
.hero-card .product-svg { width: auto; max-width: 70%; max-height: 80%; filter: drop-shadow(0 26px 30px rgba(0,0,0,.4)); }
.product-figure .frame img { width: auto; max-width: 72%; max-height: 82%; filter: drop-shadow(0 18px 26px rgba(15,44,77,.16)); }

/* featured product (powder) */
.feature {
  display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(22px, 4vw, 50px);
  align-items: center; background: var(--powder); color: var(--ink);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 40px);
  box-shadow: var(--shadow); margin-bottom: 8px;
}
.feature-img { display: grid; place-items: center; }
.feature-img img { max-height: 340px; width: auto; max-width: 100%; filter: drop-shadow(0 22px 28px rgba(15,44,77,.2)); }
.feature-copy .tag { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-dk); }
.feature-copy h3 { color: var(--ink); font-size: clamp(23px, 3vw, 30px); margin: 6px 0 10px; }
.feature-copy p { color: var(--slate); font-size: 15.5px; }
.feature-copy .databar { margin: 6px 0 20px; }
@media (max-width: 760px) { .feature { grid-template-columns: 1fr; text-align: left; } .feature-img img { max-height: 240px; } }

/* category headings inside the dark portfolio section */
.cat-head { margin-top: 38px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); }
.cat-label { font-family: var(--mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #7fd0dc; }

/* catalogue grid: consistent card sizes, left-aligned, no lonely stretching */
.portfolio .cards { grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 300px)); margin-top: 14px; }

/* product cards: transparent PNG on a clean white tile */
.portfolio .pcard.live { padding: 16px; }
.portfolio .pcard.live .thumb { aspect-ratio: 1 / 1; background: #fff; margin-bottom: 14px; }
.portfolio .pcard.live .thumb img { max-height: 86%; max-width: 80%; width: auto; object-fit: contain; }
.portfolio .pcard.live h3 { font-size: 18px; margin: 2px 0 6px; }
.portfolio .pcard.live p { font-size: 14px; margin: 0; }

/* =====================================================================
   COOKIE / PRIVACY NOTICE + LEGAL PAGES
   ===================================================================== */
.cookie-notice {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  max-width: 720px; margin: 0 auto;
  background: var(--ink); color: var(--powder);
  border: 1px solid rgba(255,255,255,.16); border-radius: 12px;
  padding: 15px 18px; box-shadow: 0 18px 50px -18px rgba(0,0,0,.6);
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap; font-size: 14px;
}
.cookie-notice p { margin: 0; flex: 1 1 300px; color: #c4d2df; line-height: 1.5; }
.cookie-notice a { color: #7fd0dc; }
.cookie-notice .btn { padding: 9px 20px; font-size: 14px; flex: none; }
@media (max-width: 520px){ .cookie-notice { flex-direction: column; align-items: stretch; } }

/* legal documents */
.legal-doc { max-width: 820px; }
.legal-doc h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 6px; }
.legal-doc .updated { font-family: var(--mono); font-size: 12px; color: var(--slate); letter-spacing: .05em; margin-bottom: 30px; }
.legal-doc h2 { font-size: 20px; margin: 32px 0 10px; }
.legal-doc p, .legal-doc li { color: var(--ink-soft); font-size: 15.5px; }
.legal-doc ul { padding-left: 20px; }
.legal-doc .factline { max-width: 480px; }
.legal-doc .disclaimer {
  background: var(--powder-2); border: 1px solid var(--line); border-left: 3px solid var(--brass);
  border-radius: 8px; padding: 16px 18px; font-size: 13.5px; color: var(--slate); margin-top: 32px;
}
.back-link { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-dk); display: inline-block; margin-bottom: 18px; }

/* news covers: full-bleed 16:9 images */
.post .cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =====================================================================
   FEATURED NEWS — strategic partnership (purple/violet framed)
   ===================================================================== */
:root { --violet: #6B4FD6; --violet-l: #9c86ee; }
.post.feat {
  display: grid; grid-template-columns: minmax(300px, 440px) 1fr;
  border: 2px solid var(--violet); border-radius: var(--radius); overflow: hidden;
  background: var(--powder); margin-bottom: 30px;
  box-shadow: 0 18px 44px -24px rgba(107,79,214,.55);
}
.post.feat .cover { aspect-ratio: auto; height: 100%; min-height: 230px; border-bottom: none; border-right: 1px solid var(--line); }
.post.feat .cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post.feat .body { padding: clamp(22px, 3vw, 38px); display: flex; flex-direction: column; justify-content: center; }
.post.feat h3 { font-size: clamp(21px, 2.4vw, 27px); margin: 6px 0 10px; }
.post.feat p { font-size: 15.5px; }
.cat.cat-strategy { color: var(--violet); }
.post.feat .badge { align-self: flex-start; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: var(--violet); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
@media (max-width: 720px) {
  .post.feat { grid-template-columns: 1fr; }
  .post.feat .cover { border-right: none; border-bottom: 1px solid var(--line); aspect-ratio: 16/9; height: auto; min-height: 0; }
}

/* featured news: logo panel instead of a full-bleed cover */
.post.feat .cover.logo-panel { background: #fff; display: grid; place-items: center; }
.post.feat .cover.logo-panel img { width: 100%; height: 100%; object-fit: contain; padding: 34px; }
@media (max-width: 720px){ .post.feat .cover.logo-panel { aspect-ratio: 16/9; } .post.feat .cover.logo-panel img { padding: 26px; } }

/* featured news now lives inside the 2-up grid as a normal vertical card */
.post.feat { display: flex; flex-direction: column; margin-bottom: 0; }
.post.feat .cover.logo-panel { aspect-ratio: 16/9; height: auto; min-height: 0; border-right: none; border-bottom: 1px solid var(--line); }
.post.feat .body { justify-content: flex-start; }
.post.feat h3 { font-size: 20px; }
.post.feat p { font-size: 14.5px; }
