/* bandweb.ch — Dark Editorial
   Palette: #0c0c0c bg + #c4d4af sage-green accent
   Fonts: Clash Grotesk (display) + Epilogue (body) + Gambetta (serif) + DM Mono (mono)
   Delivery: Fontshare (Clash Grotesk + Gambetta) + Bunny CDN (Epilogue + DM Mono)
*/

/* =============================================
   TOKENS
   ============================================= */
:root {
  --c-accent:    #c4d4af;
  --c-accent-d:  #a8bc90;
  --c-bg:        #0c0c0c;
  --c-bg-alt:    #111111;
  --c-bg-surf:   #1a1a1a;
  --c-text:      #ffffff;
  --c-text-mid:  rgba(255,255,255,0.72);
  --c-text-muted:rgba(255,255,255,0.42);
  --c-border:    rgba(255,255,255,0.08);
  --c-border-d:  rgba(255,255,255,0.15);

  /* legacy aliases kept so old token refs still work */
  --c-primary:   #c4d4af;
  --c-primary-d: #a8bc90;
  --c-bg-dark:   #0c0c0c;

  --ff-display: 'Clash Grotesk', sans-serif;
  --ff-serif:   'Gambetta', Georgia, serif;
  --ff-body:    'Epilogue', system-ui, sans-serif;
  --ff-mono:    'DM Mono', 'Courier New', monospace;

  --r-sm:  3px;
  --r-md:  6px;
  --r-lg:  12px;

  --max-w: 1160px;
  --gap:   clamp(1rem, 3vw, 2rem);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--c-accent-d); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }
ul, ol { padding-left: 1.4em; margin-bottom: 1rem; }
li { margin-bottom: .3em; }

/* =============================================
   LAYOUT
   ============================================= */
.bw-container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.bw-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
  gap: var(--gap);
}
.bw-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--gap);
}

/* =============================================
   HEADER / NAV
   ============================================= */
.bw-header {
  background: rgba(12,12,12,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.bw-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .9rem;
  gap: 1.5rem;
}
.bw-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.bw-logo svg { width: auto; height: 36px; }
.bw-nav-links {
  display: flex;
  list-style: none;
  gap: clamp(.25rem, 1.5vw, 1.25rem);
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.bw-nav-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-family: var(--ff-mono);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .5rem;
  transition: color .15s;
}
.bw-nav-links a:hover,
.bw-nav-links a[aria-current="page"] {
  color: var(--c-accent);
}
.bw-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  color: rgba(255,255,255,.65);
}

/* =============================================
   HERO — inner pages (dark typographic)
   ============================================= */
.bw-hero {
  background: var(--c-bg);
  color: #fff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-bottom: 1px solid var(--c-border);
}
.bw-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.bw-hero__kicker {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-accent);
  border: 1px solid rgba(196,212,175,.28);
  padding: .25rem .75rem;
  border-radius: var(--r-sm);
  margin-bottom: .75rem;
}
.bw-hero__title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.015em;
}
.bw-hero__title span { color: var(--c-accent); }
.bw-hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,.62);
  max-width: 60ch;
  margin: 0;
}
.bw-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.bw-hero__img {
  width: 100%;
  border-radius: var(--r-sm);
  object-fit: cover;
  aspect-ratio: 16/9;
  filter: brightness(.82);
}

/* split layout — priority pages */
@media (min-width: 700px) {
  .bw-hero--with-img .bw-hero__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* HERO — full-viewport (homepage) */
.bw-hero--full-vp {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  border-bottom: none;
  overflow: hidden;
}
.bw-hero__bg-wrap {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}
.bw-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.28);
  border-radius: 0;
  aspect-ratio: unset;
}
.bw-hero--full-vp .bw-hero__inner {
  position: relative;
  z-index: 2;
  display: block;
  padding-bottom: clamp(3.5rem, 9vw, 7rem);
  padding-top: clamp(6rem, 18vw, 12rem);
  width: 100%;
  background: linear-gradient(to top, #0c0c0c 0%, rgba(12,12,12,.6) 45%, transparent 100%);
}
.bw-hero--full-vp .bw-hero__kicker { margin-bottom: 1.25rem; }
.bw-hero--full-vp .bw-hero__title {
  font-size: clamp(3.5rem, 11vw, 8.5rem);
  font-weight: 800;
  line-height: .93;
  letter-spacing: -.03em;
  margin-bottom: 1.75rem;
  max-width: 14ch;
}
.bw-hero--full-vp .bw-hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 52ch;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.6);
}

/* =============================================
   BUTTONS
   ============================================= */
.bw-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.4rem;
  border-radius: var(--r-sm);
  font-family: var(--ff-mono);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .15s;
  line-height: 1;
}
.bw-btn--primary {
  background: var(--c-accent);
  color: #0c0c0c;
  border-color: var(--c-accent);
}
.bw-btn--primary:hover {
  background: var(--c-accent-d);
  border-color: var(--c-accent-d);
  color: #0c0c0c;
}
.bw-btn--outline {
  background: transparent;
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.22);
}
.bw-btn--outline:hover {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.bw-btn--outline-dark {
  background: transparent;
  color: var(--c-accent);
  border-color: rgba(196,212,175,.35);
}
.bw-btn--outline-dark:hover {
  background: rgba(196,212,175,.07);
  border-color: var(--c-accent);
  color: var(--c-accent);
}

/* =============================================
   SECTION WRAPPER
   ============================================= */
.bw-section { padding: clamp(2rem, 6vw, 4rem) 0; }
.bw-section--alt { background: var(--c-bg-alt); }
.bw-section--dark { background: var(--c-bg); }
.bw-section--dark h2,
.bw-section--dark h3 { color: #fff; }
.bw-section--dark p { color: var(--c-text-mid); }
.bw-section__header { margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.bw-section__title { margin-bottom: .5rem; }
.bw-section__lead {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 65ch;
}
.bw-section__header--split {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =============================================
   CATEGORY CARDS
   ============================================= */
.bw-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.bw-cat-card {
  background: var(--c-bg-alt);
  padding: 1.75rem;
  text-decoration: none;
  color: var(--c-text);
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: background .15s;
}
.bw-cat-card:hover {
  background: var(--c-bg-surf);
  color: var(--c-text);
  text-decoration: none;
}
.bw-cat-card__icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-accent);
}
.bw-cat-card__icon svg { width: 22px; height: 22px; }
.bw-cat-card__title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text);
}
.bw-cat-card__desc {
  font-size: .88rem;
  color: var(--c-text-muted);
  margin: 0;
  line-height: 1.5;
}
.bw-cat-card__arrow {
  margin-top: auto;
  color: var(--c-accent);
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* =============================================
   LISTING CARDS
   ============================================= */
.bw-listing-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.bw-listing-card {
  background: var(--c-bg-alt);
  padding: 1.1rem 1.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem 1rem;
  align-items: start;
  text-decoration: none;
  color: var(--c-text);
  transition: background .12s;
}
.bw-listing-card:hover {
  background: var(--c-bg-surf);
  color: var(--c-text);
  text-decoration: none;
}
.bw-listing-card__body { grid-column: 1; }
.bw-listing-card__meta { grid-column: 2; text-align: right; }
.bw-listing-card__title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .2rem;
  color: var(--c-accent);
}
.bw-listing-card:hover .bw-listing-card__title { text-decoration: underline; }
.bw-listing-card__snippet {
  font-size: .88rem;
  color: var(--c-text-muted);
  margin: 0;
}
.bw-listing-card__date {
  font-size: .72rem;
  color: var(--c-text-muted);
  font-family: var(--ff-mono);
  white-space: nowrap;
  letter-spacing: .03em;
}
.bw-pill {
  display: inline-block;
  font-size: .67rem;
  font-family: var(--ff-mono);
  padding: .18rem .55rem;
  border-radius: 2px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.bw-pill--wine  { background: rgba(196,212,175,.1);   color: var(--c-accent); border: 1px solid rgba(196,212,175,.2); }
.bw-pill--gold  { background: rgba(196,212,175,.07);  color: var(--c-accent); border: 1px solid rgba(196,212,175,.15); }
.bw-pill--teal  { background: rgba(100,196,180,.08);  color: #78c8bc; border: 1px solid rgba(100,196,180,.2); }
.bw-pill--slate { background: rgba(150,160,220,.08);  color: #9090d8; border: 1px solid rgba(150,160,220,.2); }
.bw-listing-card__pills {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  margin-top: .4rem;
}

/* =============================================
   ARTICLE / CONTENT PAGE
   ============================================= */
.bw-article {
  display: grid;
  grid-template-columns: minmax(0,1fr) min(260px, 25vw);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (max-width: 860px) {
  .bw-article { grid-template-columns: 1fr; }
  .bw-article__sidebar { order: -1; }
}
.bw-article__body h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.bw-article__body h3 { margin-top: 2rem; margin-bottom: .75rem; }
.bw-article__body h2:first-child { margin-top: 0; }
.bw-article__body ul,
.bw-article__body ol { margin-bottom: 1.25rem; }
.bw-article__body li { margin-bottom: .4em; color: var(--c-text-mid); }
.bw-article__body p { color: var(--c-text-mid); }
.bw-article__body h2,
.bw-article__body h3,
.bw-article__body h4 { color: var(--c-text); }
.bw-article__body img {
  width: 100%;
  border-radius: var(--r-sm);
  margin: 1.5rem 0;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: brightness(.88);
}
.bw-article__body a { color: var(--c-accent); }

/* Sidebar */
.bw-sidebar__box {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.bw-sidebar__title {
  font-family: var(--ff-mono);
  font-size: .67rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--c-border);
}
.bw-sidebar__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.bw-sidebar__links a {
  font-size: .85rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
}
.bw-sidebar__links a:hover { color: var(--c-accent); text-decoration: underline; }
.bw-sidebar__links svg { width: 14px; height: 14px; flex-shrink: 0; }

/* =============================================
   CALLOUT — site-specific, left-band treatment
   (NOT the ai-slop border-l-4 + bg-tint + bold-label)
   ============================================= */
.bw-callout {
  margin: 1.75rem 0;
  background: linear-gradient(to right, var(--c-accent) 3px, rgba(196,212,175,.04) 3px);
  border: 1px solid rgba(196,212,175,.13);
  border-left: none;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1rem 1.25rem 1rem 1.5rem;
}
.bw-callout p {
  font-style: italic;
  font-size: .95rem;
  color: var(--c-text-mid);
  margin: 0;
}

/* =============================================
   FAQ (expandable — <details>/<summary>)
   ============================================= */
.bw-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.bw-faq {
  overflow: hidden;
  background: var(--c-bg-alt);
}
.bw-faq[open] { background: rgba(196,212,175,.03); }
.bw-faq summary {
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: .97rem;
  font-weight: 500;
  padding: 1rem 1.25rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--c-text);
  user-select: none;
  transition: color .1s;
}
.bw-faq summary:hover { color: var(--c-accent); }
.bw-faq[open] summary { color: var(--c-accent); }
.bw-faq summary::-webkit-details-marker { display: none; }
.bw-faq__chevron {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--c-text-muted);
  transition: transform .2s;
}
.bw-faq[open] .bw-faq__chevron { transform: rotate(180deg); color: var(--c-accent); }
.bw-faq__body {
  padding: 0 1.25rem 1.1rem;
  font-size: .93rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--c-border);
}
.bw-faq__body p { margin-bottom: .6rem; color: var(--c-text-muted); }
.bw-faq__body p:last-child { margin-bottom: 0; }
.bw-faq__body a { color: var(--c-accent); }

/* =============================================
   BREADCRUMB
   ============================================= */
.bw-breadcrumb {
  padding: .75rem 0;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 2rem;
}
.bw-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem .5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .76rem;
  font-family: var(--ff-mono);
  letter-spacing: .04em;
  color: var(--c-text-muted);
}
.bw-breadcrumb li { display: flex; align-items: center; gap: .3rem; }
.bw-breadcrumb a { color: var(--c-text-muted); text-decoration: none; }
.bw-breadcrumb a:hover { color: var(--c-accent); }
.bw-breadcrumb li + li::before { content: "/"; opacity: .3; }

/* =============================================
   PUBDATE / META
   ============================================= */
.bw-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  align-items: center;
  font-size: .75rem;
  font-family: var(--ff-mono);
  letter-spacing: .05em;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
}
.bw-meta time { color: var(--c-text-muted); }
.bw-meta__sep { opacity: .3; }

/* =============================================
   INFOGRAPHIC EMBED SNIPPET
   ============================================= */
.bw-embed-box {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.bw-embed-box p {
  font-size: .78rem;
  font-family: var(--ff-mono);
  color: var(--c-text-muted);
  letter-spacing: .03em;
  margin-bottom: .5rem;
}
.bw-embed-box textarea {
  width: 100%;
  font-family: var(--ff-mono);
  font-size: .74rem;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: .6rem;
  height: 4.5rem;
  resize: none;
  color: var(--c-text-muted);
}

/* =============================================
   STATS BAR
   ============================================= */
.bw-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin: 2rem 0;
}
.bw-stat {
  background: var(--c-bg-alt);
  padding: 1.5rem 1.75rem;
  text-align: center;
}
.bw-stat__num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: .3rem;
  letter-spacing: -.025em;
}
.bw-stat__label {
  font-size: .72rem;
  font-family: var(--ff-mono);
  color: var(--c-text-muted);
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* =============================================
   FOOTER
   ============================================= */
.bw-footer {
  background: #000;
  color: rgba(255,255,255,.45);
  padding: 3.5rem 0 1.75rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.bw-footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(auto-fill, minmax(140px, 1fr));
  gap: 2rem 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.bw-footer__tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  margin-top: .5rem;
  line-height: 1.6;
}
.bw-footer__col-title {
  font-family: var(--ff-mono);
  font-size: .63rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: .75rem;
  opacity: .75;
}
.bw-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.bw-footer__links a {
  font-size: .82rem;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: color .12s;
}
.bw-footer__links a:hover { color: rgba(255,255,255,.8); }
.bw-footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
  font-family: var(--ff-mono);
  letter-spacing: .05em;
  color: rgba(255,255,255,.22);
}

/* =============================================
   SVG INFOGRAPHIC container (inline, dark)
   ============================================= */
.bw-infographic {
  margin: 2rem 0;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--c-bg-alt);
}
.bw-infographic svg { width: 100%; height: auto; display: block; }

/* =============================================
   404 page
   ============================================= */
.bw-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 1.25rem;
}
.bw-404__code {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 20vw, 10rem);
  font-weight: 800;
  color: rgba(255,255,255,.05);
  line-height: 1;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 680px) {
  .bw-nav-links { display: none; }
  .bw-nav-links.bw-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,10,10,.98);
    padding: 1.25rem 1.5rem;
    gap: .75rem;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
  }
  .bw-nav-links.bw-open a { font-size: .82rem; padding: .4rem 0; }
  .bw-nav-toggle { display: block; }
  .bw-footer__grid { grid-template-columns: 1fr 1fr; }
  .bw-listing-card { grid-template-columns: 1fr; }
  .bw-listing-card__meta { text-align: left; }
  .bw-hero--full-vp .bw-hero__title { font-size: clamp(2.75rem, 14vw, 5.5rem); }
}
@media (max-width: 780px) {
  .bw-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .bw-footer__grid { grid-template-columns: 1fr; }
  .bw-cat-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .bw-header, .bw-footer, .bw-hero__actions, .bw-article__sidebar { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
