/*
Theme Name: Founderswire
Theme URI:
Author: pascalpizzy
Description: A business intelligence WordPress theme — editorial, serif-forward, financial press aesthetic.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: founderswire
*/

/* ===================== CSS VARIABLES ===================== */
:root {
  --fw-ink:       hsl(0, 0%, 5%);
  --fw-paper:     hsl(48, 27%, 96%);
  --fw-cream:     hsl(40, 25%, 90%);
  --fw-wire:      hsl(350, 78%, 43%);
  --fw-wire-dark: hsl(350, 84%, 33%);
  --fw-steel:     hsl(0, 0%, 24%);
  --fw-mid:       hsl(60, 4%, 38%);
  --fw-rule:      hsl(40, 14%, 81%);
  --fw-gold:      hsl(47, 86%, 38%);
  --max-content:  1280px;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--fw-paper);
  color: var(--fw-ink);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
input { font-family: inherit; }

/* ===================== LAYOUT ===================== */
.content-wrap {
  max-width: var(--max-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ===================== TICKER ===================== */
.fw-ticker {
  background: var(--fw-ink);
  color: var(--fw-paper);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.07em;
  height: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
}
.fw-ticker__label {
  background: var(--fw-wire);
  color: white;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 10px;
  flex-shrink: 0;
}
.fw-ticker__track {
  display: flex;
  gap: 48px;
  padding: 0 24px;
  white-space: nowrap;
  opacity: 0.9;
  animation: ticker-scroll 40s linear infinite;
}
.fw-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fw-ticker__item.up   { color: #34d399; }
.fw-ticker__item.down { color: var(--fw-wire); }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================== HEADER ===================== */
.fw-header {
  border-bottom: 1px solid var(--fw-rule);
  background: var(--fw-paper);
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}
.fw-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 112px;
  gap: 16px;
}
.fw-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.fw-header__nav-right { justify-content: flex-end; }
.fw-header__nav-btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fw-steel);
  transition: color 0.15s;
}
.fw-header__nav-btn:hover { color: var(--fw-wire); }
.fw-header__subscribe {
  background: var(--fw-wire);
  color: white;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.15s;
}
.fw-header__subscribe:hover { background: var(--fw-wire-dark); }
.fw-header__logo {
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.fw-header__logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fw-header__logo-wires {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fw-header__logo-wires span:nth-child(1) { display: block; height: 2px; width: 18px; background: var(--fw-wire); }
.fw-header__logo-wires span:nth-child(2) { display: block; height: 2px; width: 12px; background: var(--fw-wire); }
.fw-header__logo-wires span:nth-child(3) { display: block; height: 2px; width: 6px;  background: var(--fw-wire); }
.fw-header__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fw-ink);
}
.fw-header__logo-text em {
  font-style: italic;
  color: var(--fw-wire);
}
.fw-header__logo-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fw-mid);
}

/* Edition bar */
.fw-edition-bar {
  border-bottom: 3px solid var(--fw-ink);
  border-top: 1px solid var(--fw-rule);
  background: var(--fw-paper);
  width: 100%;
}
.fw-edition-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
}
.fw-edition-bar__cats { display: flex; align-items: center; flex-wrap: wrap; }
.fw-edition-bar__cat {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 4px 16px;
  border-right: 1px solid var(--fw-rule);
  white-space: nowrap;
  color: var(--fw-steel);
  transition: color 0.15s;
  display: inline-block;
}
.fw-edition-bar__cat:first-child { padding-left: 0; }
.fw-edition-bar__cat:last-child { border-right: none; }
.fw-edition-bar__cat:hover,
.fw-edition-bar__cat.is-active { color: var(--fw-wire); }
.fw-edition-bar__date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--fw-mid);
  letter-spacing: 0.07em;
}

/* ===================== SECTION HEADER ===================== */
.fw-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--fw-ink);
}
.fw-section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fw-wire);
  font-weight: 500;
}
.fw-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.fw-section-more {
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fw-wire);
  display: flex;
  align-items: center;
  gap: 4px;
}
.fw-section-more:hover { text-decoration: underline; }

/* ===================== HERO ===================== */
.fw-hero {
  padding-top: 36px;
  border-bottom: 2px solid var(--fw-ink);
  margin-bottom: 40px;
}
.fw-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 480px;
}
.fw-hero__text {
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fw-hero__badge-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.fw-badge {
  display: inline-block;
  background: var(--fw-wire);
  color: white;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 2px 8px;
  font-weight: 500;
}
.fw-badge-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fw-mid);
}
.fw-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fw-ink);
  margin-bottom: 20px;
  max-width: 560px;
  transition: color 0.15s;
}
.fw-hero__title:hover { color: var(--fw-wire); }
.fw-hero__deck {
  font-size: 17px;
  color: var(--fw-steel);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 24px;
  font-weight: 300;
}
.fw-hero__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.fw-hero__author { font-size: 12px; font-weight: 500; color: var(--fw-ink); }
.fw-hero__author span { color: var(--fw-wire); }
.fw-hero__time { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--fw-mid); }
.fw-hero__read {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--fw-mid);
  border-left: 1px solid var(--fw-rule);
  padding-left: 16px;
}
.fw-hero__img-wrap { padding-bottom: 32px; }
.fw-hero__img {
  width: 100%;
  height: 340px;
  overflow: hidden;
  background: var(--fw-cream);
}
.fw-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.fw-hero__img:hover img { transform: scale(1.03); }
.fw-hero__caption { font-size: 12px; color: var(--fw-mid); margin-top: 8px; font-style: italic; }

@media (min-width: 1024px) {
  .fw-hero__grid { grid-template-columns: 1fr 380px; }
  .fw-hero__text { padding-right: 40px; border-right: 1px solid var(--fw-rule); }
  .fw-hero__img-wrap { padding-left: 32px; }
}

/* ===================== ARTICLE CARDS ===================== */
.fw-article-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .fw-article-cards { grid-template-columns: repeat(3, 1fr); } }

.fw-card { display: block; }
.fw-card__img {
  width: 100%;
  height: 208px;
  overflow: hidden;
  background: var(--fw-cream);
  margin-bottom: 14px;
}
.fw-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.fw-card:hover .fw-card__img img { transform: scale(1.05); }
.fw-card__cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fw-wire);
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.fw-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--fw-ink);
  transition: color 0.15s;
}
.fw-card:hover .fw-card__title { color: var(--fw-wire); }
.fw-card__deck { font-size: 13.5px; color: var(--fw-steel); line-height: 1.6; margin-bottom: 12px; font-weight: 300; }
.fw-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--fw-mid);
}
.fw-card__meta-sep { color: var(--fw-rule); }

/* ===================== DATA STRIP ===================== */
.fw-data-strip {
  background: var(--fw-ink);
  color: var(--fw-paper);
  margin: 0 -24px 48px;
  padding: 0 24px;
}
.fw-data-strip__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) { .fw-data-strip__inner { grid-template-columns: 220px 1fr; } }
.fw-data-strip__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fw-wire);
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
.fw-data-strip__heading {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}
.fw-data-strip__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (min-width: 768px) { .fw-data-strip__stats { grid-template-columns: repeat(4, 1fr); } }
.fw-data-strip__stat { padding: 0 24px; border-left: 1px solid rgba(255,255,255,0.15); }
.fw-data-strip__stat:first-child { padding-left: 0; border-left: none; }
.fw-data-strip__num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--fw-wire);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.fw-data-strip__desc { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.4; }

/* ===================== FEATURE SPLIT ===================== */
.fw-feature-split {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--fw-rule);
  margin-bottom: 48px;
}
@media (min-width: 1024px) { .fw-feature-split { grid-template-columns: 1fr 1fr; } }
.fw-feature-split__main {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--fw-ink);
  display: block;
}
.fw-feature-split__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.7s, transform 0.7s;
  position: absolute;
  inset: 0;
}
.fw-feature-split__main:hover img { opacity: 0.5; transform: scale(1.05); }
.fw-feature-split__main-content {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.fw-feature-split__tag {
  display: inline-block;
  background: var(--fw-wire);
  color: white;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 2px 8px;
  margin-bottom: 12px;
}
.fw-feature-split__title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.fw-feature-split__deck { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 16px; }
.fw-feature-split__meta { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.6); }
.fw-feature-split__side {
  border-left: 1px solid var(--fw-rule);
  display: flex;
  flex-direction: column;
}
.fw-feature-split__side-item {
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 20px;
  align-items: start;
  padding: 24px 28px;
  border-bottom: 1px solid var(--fw-rule);
  transition: background 0.15s;
}
.fw-feature-split__side-item:last-child { border-bottom: none; }
.fw-feature-split__side-item:hover { background: var(--fw-cream); }
.fw-feature-split__side-cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fw-wire);
  margin-bottom: 6px;
  display: block;
}
.fw-feature-split__side-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--fw-ink);
  margin-bottom: 6px;
  transition: color 0.15s;
}
.fw-feature-split__side-item:hover .fw-feature-split__side-title { color: var(--fw-wire); }
.fw-feature-split__side-meta { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--fw-mid); }
.fw-feature-split__side-thumb {
  width: 100px;
  height: 72px;
  overflow: hidden;
  background: var(--fw-cream);
}
.fw-feature-split__side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.fw-feature-split__side-item:hover .fw-feature-split__side-thumb img { transform: scale(1.1); }

/* ===================== OPINION + MOST READ ===================== */
.fw-bottom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 1024px) { .fw-bottom-grid { grid-template-columns: 1fr 300px; } }
.fw-opinion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) { .fw-opinion-grid { grid-template-columns: 1fr 1fr; } }
.fw-opinion-card { border-top: 3px solid var(--fw-wire); padding-top: 16px; }
.fw-opinion-card__author { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.fw-opinion-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--fw-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--fw-ink);
  flex-shrink: 0;
}
.fw-opinion-card__name { font-size: 13px; font-weight: 600; color: var(--fw-ink); }
.fw-opinion-card__role { font-size: 11px; color: var(--fw-mid); margin-top: 2px; }
.fw-opinion-card__quote-link { text-decoration: none; display: block; }
.fw-opinion-card__quote-link:hover .fw-opinion-card__quote { color: var(--fw-wire); }
.fw-opinion-card__quote {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.4;
  color: var(--fw-ink);
  margin-bottom: 10px;
}
.fw-opinion-card__sub { font-size: 13px; color: var(--fw-steel); line-height: 1.6; }

/* MOST READ */
.fw-most-read__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--fw-ink);
  margin-bottom: 20px;
}
.fw-most-read-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--fw-rule);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fw-most-read-list__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
  font-weight: 500;
  color: var(--fw-rule);
  line-height: 1;
  flex-shrink: 0;
  width: 20px;
}
.fw-most-read-list a {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--fw-ink);
  transition: color 0.15s;
}
.fw-most-read-list a:hover { color: var(--fw-wire); }

/* ===================== NEWSLETTER ===================== */
.fw-newsletter {
  background: var(--fw-cream);
  border: 1px solid var(--fw-rule);
  border-left: 4px solid var(--fw-wire);
  padding: 28px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) { .fw-newsletter { grid-template-columns: 1fr auto; } }
.fw-newsletter__title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.fw-newsletter__sub { font-size: 13px; color: var(--fw-steel); }
.fw-newsletter__form { display: flex; }
.fw-newsletter__input {
  padding: 10px 16px;
  border: 1px solid var(--fw-rule);
  background: white;
  font-size: 13px;
  width: 240px;
  outline: none;
}
.fw-newsletter__input:focus { border-color: var(--fw-ink); }
.fw-newsletter__btn {
  background: var(--fw-ink);
  color: white;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.fw-newsletter__btn:hover { background: var(--fw-wire); }

/* ===================== SECTORS ===================== */
.fw-sectors { margin-bottom: 48px; }
.fw-sectors__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--fw-rule);
  border: 1px solid var(--fw-rule);
}
@media (min-width: 768px) { .fw-sectors__grid { grid-template-columns: repeat(4, 1fr); } }
.fw-sector-card {
  background: var(--fw-paper);
  padding: 20px;
  transition: background 0.15s;
  display: block;
}
.fw-sector-card:hover { background: var(--fw-cream); }
.fw-sector-card__icon { font-size: 20px; margin-bottom: 10px; }
.fw-sector-card__name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.fw-sector-card__count { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--fw-mid); letter-spacing: 0.06em; }

/* ===================== SINGLE POST ===================== */
.fw-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--fw-wire);
  z-index: 200;
  width: 0;
  transition: width 0.1s linear;
}
.fw-breadcrumb { border-bottom: 1px solid var(--fw-rule); background: var(--fw-paper); }
.fw-breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--fw-mid);
  letter-spacing: 0.06em;
  padding: 10px 0;
}
.fw-breadcrumb__inner a:hover { color: var(--fw-wire); }
.fw-breadcrumb__sep { color: var(--fw-rule); }

.fw-article-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  padding-top: 48px;
  padding-bottom: 80px;
}
@media (min-width: 1024px) { .fw-article-wrap { grid-template-columns: 1fr 320px; } }

.fw-article-header { max-width: 680px; margin-bottom: 32px; }
.fw-article-header__badge-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.fw-article-header__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fw-ink);
  margin-bottom: 20px;
  max-width: 620px;
}
.fw-article-header__deck {
  font-size: 18px;
  color: var(--fw-steel);
  line-height: 1.6;
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--fw-rule);
}
.fw-article-header__byline { display: flex; align-items: center; flex-wrap: wrap; margin-bottom: 8px; }
.fw-article-header__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 24px;
  padding-right: 24px;
  border-right: 1px solid var(--fw-rule);
}
.fw-article-header__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--fw-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}
.fw-article-header__author-name { font-size: 13px; font-weight: 500; color: var(--fw-wire); }
.fw-article-header__author-role { font-size: 11px; color: var(--fw-mid); margin-top: 2px; }
.fw-article-header__meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.fw-article-header__meta span { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--fw-mid); }
.fw-article-header__share {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--fw-rule);
}
.fw-article-header__share-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fw-mid);
  margin-right: 4px;
}
.fw-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--fw-rule);
  font-size: 12px;
  font-weight: 500;
  color: var(--fw-steel);
  transition: all 0.15s;
  background: none;
  cursor: pointer;
}
.fw-share-btn:hover { border-color: var(--fw-ink); background: var(--fw-cream); color: var(--fw-ink); }

.fw-article-image { max-width: 680px; margin-bottom: 32px; }
.fw-article-image__wrap { width: 100%; height: 400px; overflow: hidden; background: var(--fw-cream); }
.fw-article-image__wrap img { width: 100%; height: 100%; object-fit: cover; }
.fw-article-image__caption {
  font-size: 12px;
  color: var(--fw-mid);
  margin-top: 8px;
  font-style: italic;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--fw-rule);
  margin-bottom: 32px;
}

/* Article prose */
.article-prose { max-width: 680px; }
.article-prose p {
  font-size: 17px;
  line-height: 1.75;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 300;
}
.article-prose p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  margin-right: 8px;
  margin-top: 6px;
  color: var(--fw-ink);
}
.article-prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  padding-top: 32px;
  border-top: 2px solid var(--fw-ink);
}
.article-prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}
.article-prose strong { font-weight: 600; }
.article-prose ul { list-style: disc; padding-left: 24px; margin-bottom: 24px; }
.article-prose ol { list-style: decimal; padding-left: 24px; margin-bottom: 24px; }
.article-prose li { font-size: 17px; line-height: 1.75; color: #1a1a1a; margin-bottom: 8px; font-weight: 300; }
.article-prose blockquote,
.article-prose .pullquote {
  border-left: 4px solid var(--fw-wire);
  padding: 20px 28px;
  margin: 40px 0;
  background: var(--fw-cream);
}
.article-prose blockquote p,
.article-prose .pullquote p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 12px;
}
.article-prose blockquote p::first-letter,
.article-prose .pullquote p::first-letter {
  font-size: inherit !important;
  float: none !important;
  line-height: inherit !important;
  margin: 0 !important;
}
.article-prose cite {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fw-mid);
  font-style: normal;
}

/* Article tags */
.fw-article-tags { max-width: 680px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--fw-rule); }
.fw-article-tags__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fw-mid);
  display: block;
  margin-bottom: 12px;
}
.fw-tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--fw-rule);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--fw-steel);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: border-color 0.15s, color 0.15s;
}
.fw-tag:hover { border-color: var(--fw-ink); color: var(--fw-ink); }

/* Author card */
.fw-author-card {
  max-width: 680px;
  margin-top: 48px;
  padding: 28px;
  background: var(--fw-cream);
  border-left: 4px solid var(--fw-ink);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
}
.fw-author-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--fw-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
}
.fw-author-card__name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; }
.fw-author-card__role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fw-mid);
  margin-bottom: 10px;
}
.fw-author-card__bio { font-size: 13px; color: var(--fw-steel); line-height: 1.6; }

/* Related articles */
.fw-related { max-width: 680px; margin-top: 56px; padding-top: 24px; border-top: 2px solid var(--fw-ink); }
.fw-related__header {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.fw-related__all {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fw-wire);
}
.fw-related__item {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--fw-rule);
  align-items: start;
}
.fw-related__cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fw-wire);
  display: block;
  margin-bottom: 6px;
}
.fw-related__title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--fw-ink);
  transition: color 0.15s;
}
.fw-related__item:hover .fw-related__title { color: var(--fw-wire); }
.fw-related__meta { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--fw-mid); margin-top: 4px; }
.fw-related__thumb { width: 80px; height: 56px; overflow: hidden; background: var(--fw-cream); }
.fw-related__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ===================== SIDEBAR ===================== */
.fw-sidebar__sticky { position: sticky; top: 180px; }
.fw-sidebar__section { margin-bottom: 40px; }
.fw-sidebar__title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--fw-ink);
  margin-bottom: 16px;
}
.fw-toc-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--fw-rule);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.fw-toc-list li:last-child { border-bottom: none; }
.fw-toc-list__num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--fw-mid); flex-shrink: 0; }
.fw-toc-list__text { font-size: 12px; color: var(--fw-steel); line-height: 1.4; }
.fw-sidebar__newsletter {
  background: var(--fw-ink);
  color: var(--fw-paper);
  padding: 24px;
  margin-bottom: 40px;
}
.fw-sidebar__newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 12px;
}
.fw-sidebar__newsletter-sub { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 16px; }
.fw-sidebar__newsletter input {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 13px;
  margin-bottom: 8px;
  outline: none;
}
.fw-sidebar__newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.fw-sidebar__newsletter input:focus { border-color: var(--fw-wire); }
.fw-sidebar__newsletter button {
  width: 100%;
  padding: 10px;
  background: var(--fw-wire);
  color: white;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
  font-family: inherit;
}
.fw-sidebar__newsletter button:hover { background: var(--fw-wire-dark); }
.fw-trending li {
  padding: 12px 0;
  border-bottom: 1px solid var(--fw-rule);
}
.fw-trending li:last-child { border-bottom: none; }
.fw-trending__link { display: flex; gap: 12px; text-decoration: none; }
.fw-trending__num {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fw-rule);
  flex-shrink: 0;
  width: 24px;
  line-height: 1;
  padding-top: 2px;
}
.fw-trending__title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--fw-ink);
  transition: color 0.15s;
}
.fw-trending__link:hover .fw-trending__title { color: var(--fw-wire); }
.fw-trending__cat { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--fw-mid); margin-top: 4px; }

/* ===================== FOOTER ===================== */
.fw-footer { background: var(--fw-ink); color: var(--fw-paper); margin-top: 32px; width: 100%; }
.fw-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 48px 0;
}
@media (min-width: 768px) { .fw-footer__grid { grid-template-columns: 280px 1fr 1fr 1fr; } }
.fw-footer__logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--fw-paper);
  display: block;
}
.fw-footer__logo-name span { color: var(--fw-wire); }
.fw-footer__logo-rule {
  width: 100%;
  height: 1px;
  margin: 8px 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
}
.fw-footer__logo-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.fw-footer__about { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-top: 16px; }
.fw-footer__col-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.fw-footer__links li { margin-bottom: 10px; }
.fw-footer__links a { font-size: 13px; color: rgba(255,255,255,0.7); transition: color 0.15s; }
.fw-footer__links a:hover { color: var(--fw-wire); }
.fw-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
}
.fw-footer__bottom span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

/* ===================== ARCHIVE ===================== */
.fw-archive { padding-top: 48px; padding-bottom: 80px; }
.fw-archive__hero {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--fw-ink);
}
.fw-archive__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fw-wire);
  display: block;
  margin-bottom: 8px;
}
.fw-archive__title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.fw-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .fw-archive__grid { grid-template-columns: repeat(3, 1fr); } }

/* ===================== 404 ===================== */
.fw-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}
.fw-404__num {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 700;
  color: var(--fw-cream);
  line-height: 1;
  margin-bottom: 24px;
}
.fw-404__title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 600; margin-bottom: 12px; }
.fw-404__sub { font-size: 15px; color: var(--fw-steel); margin-bottom: 32px; }
.fw-404__btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--fw-wire);
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.15s;
}
.fw-404__btn:hover { background: var(--fw-wire-dark); }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease both; }

/* ===================== PAGINATION ===================== */
.fw-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}
.fw-pagination a,
.fw-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--fw-rule);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--fw-steel);
  transition: all 0.15s;
}
.fw-pagination a:hover { border-color: var(--fw-ink); color: var(--fw-ink); background: var(--fw-cream); }
.fw-pagination .current { background: var(--fw-ink); color: white; border-color: var(--fw-ink); }


/* ============================================================
   MOBILE RESPONSIVE  (max-width: 767px unless noted)
   ============================================================ */

/* ── Tighten outer padding on very small phones ── */
@media (max-width: 479px) {
  .content-wrap { padding-left: 16px; padding-right: 16px; }
  .fw-data-strip { margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
}

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

/* ── MOBILE MENU (slides in from LEFT) ── */
.fw-mobile-menu { display: none; position: fixed; inset: 0; z-index: 9999; }
.fw-mobile-menu.is-open { display: block; }
.fw-mobile-menu__backdrop { position: absolute; inset: 0; background: rgba(10,14,20,.5); }
.fw-mobile-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--fw-paper);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 4px 0 28px rgba(0,0,0,.18);
  animation: fw-slide-left .25s ease;
}
@keyframes fw-slide-left { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.fw-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--fw-rule);
}
.fw-mobile-menu__logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fw-ink);
  letter-spacing: -.01em;
  text-decoration: none;
}
.fw-mobile-menu__logo em { font-style: italic; color: var(--fw-wire); }
.fw-mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--fw-muted);
  padding: 4px;
  line-height: 1;
}
.fw-mobile-menu__nav { display: flex; flex-direction: column; flex: 1; padding: 8px 0; }
.fw-mobile-menu__nav a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fw-ink);
  padding: 16px 24px;
  border-bottom: 1px solid var(--fw-rule);
  text-decoration: none;
  transition: color .2s, background .2s;
}
.fw-mobile-menu__nav a:hover { color: var(--fw-wire); background: rgba(0,0,0,.03); }
.fw-mobile-menu__subscribe {
  display: block;
  margin: 20px 24px 28px;
  background: var(--fw-wire);
  color: #fff;
  text-align: center;
  padding: 13px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
}
.fw-mobile-menu__subscribe:hover { background: var(--fw-wire-dark); color: #fff; }

/* ── HEADER: logo left + subscribe right on mobile ── */
@media (max-width: 767px) {
  /* Switch from 3-col grid to simple flex row */
  .fw-header__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 60px;
    gap: 0;
  }

  /* Hide the left nav (Startups / Funding / Markets) */
  .fw-header__nav:not(.fw-header__nav-right) { display: none; }

  /* Logo fills all available space — force block-level flex so flex:1 works reliably */
  .fw-header__logo {
    display: flex;
    flex: 1;
    text-align: left;
    align-items: flex-start;
    min-width: 0;
  }
  .fw-header__logo-wires { display: none; }
  .fw-header__logo-text  { font-size: 20px; }
  .fw-header__logo-sub   { display: none; }

  /* Right nav: hide Opinion + Analysis links, keep Subscribe visible */
  .fw-header__nav-right {
    flex-shrink: 0;
    gap: 0;
    justify-content: flex-end;
  }
  .fw-header__nav-right .fw-header__nav-btn { display: none; }
  .fw-header__nav-right .fw-header__subscribe { display: none; }
  .fw-hamburger { display: flex; }
}

/* ── EDITION BAR: horizontal scroll, hide date ── */
@media (max-width: 767px) {
  /* Bar itself clips any overflow */
  .fw-edition-bar { overflow: hidden; }

  /* Inner row stays in one line */
  .fw-edition-bar__inner {
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  /* The nav gets flex:1 + min-width:0 so it's bounded by its parent,
     then overflow-x:auto creates the actual scroll */
  .fw-edition-bar__cats {
    flex: 1;
    min-width: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
  }
  .fw-edition-bar__cats::-webkit-scrollbar { display: none; }

  /* Each tab must not shrink or wrap */
  .fw-edition-bar__cat {
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* Hide the date — no room on mobile */
  .fw-edition-bar__date { display: none; }
}

/* ── HERO ── */
@media (max-width: 767px) {
  .fw-hero { padding-top: 20px; }
  .fw-hero__img { height: 220px; }
  .fw-hero__deck { font-size: 15px; }
  .fw-hero__caption { display: none; }
}

/* ── SECTION HEADERS ── */
@media (max-width: 767px) {
  .fw-section-title { font-size: 17px; }
  .fw-section-more { display: none; }
}

/* ── ARTICLE CARDS ── */
@media (max-width: 767px) {
  .fw-card__img { height: 180px; }
  .fw-card__deck { display: none; }
}

/* ── DATA STRIP ── */
@media (max-width: 767px) {
  .fw-data-strip__inner { gap: 24px; padding: 24px 0; }
  .fw-data-strip__num { font-size: 26px; }
  .fw-data-strip__stat { padding: 0 10px; }
  .fw-data-strip__stat:first-child { padding-left: 0; }
}

/* ── FEATURE SPLIT ── */
@media (max-width: 767px) {
  .fw-feature-split__main { min-height: 280px; }
  .fw-feature-split__title { font-size: 22px; }
  .fw-feature-split__side-item {
    grid-template-columns: 1fr 80px;
    gap: 12px;
    padding: 14px 16px;
  }
}

/* ── OPINION CARDS ── */
@media (max-width: 767px) {
  .fw-opinion-card__quote { font-size: 16px; }
  .fw-opinion-card__sub { display: none; }
}

/* ── NEWSLETTER ── */
@media (max-width: 767px) {
  .fw-newsletter { padding: 20px 16px; }
  .fw-newsletter__form { flex-direction: column; }
  .fw-newsletter__input { width: 100%; }
  .fw-newsletter__btn { width: 100%; text-align: center; }
}

/* ── SECTORS ── */
@media (max-width: 479px) {
  .fw-sector-card { padding: 14px; }
  .fw-sector-card__icon { font-size: 16px; }
  .fw-sector-card__name { font-size: 13px; }
}

/* ── FOOTER ── */
@media (max-width: 767px) {
  .fw-footer__grid { padding: 32px 0; gap: 24px; }
  .fw-footer__bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ── BREADCRUMB ── */
@media (max-width: 767px) {
  .fw-breadcrumb__inner { font-size: 10px; gap: 4px; }
}

/* ── SINGLE: article header ── */
@media (max-width: 767px) {
  .fw-article-wrap { padding-top: 20px; padding-bottom: 48px; gap: 32px; }
  .fw-article-header { margin-bottom: 20px; }
  .fw-article-header__deck { font-size: 16px; }
  .fw-article-header__byline { flex-direction: column; align-items: flex-start; gap: 10px; }
  .fw-article-header__author { margin-right: 0; padding-right: 0; border-right: none; }
  .fw-article-header__share { gap: 6px; padding-top: 12px; margin-top: 12px; }
  .fw-share-btn { padding: 5px 8px; font-size: 11px; gap: 4px; }
  .fw-article-image__wrap { height: 210px; }
  .fw-article-image__caption { font-size: 11px; margin-bottom: 20px; padding-bottom: 16px; }
  .article-prose p { font-size: 16px; line-height: 1.7; }
  .article-prose p:first-of-type::first-letter { font-size: 50px; margin-right: 6px; }
  .article-prose h2 { font-size: 22px; margin-top: 36px; padding-top: 24px; }
  .article-prose h3 { font-size: 18px; }
  .article-prose blockquote p,
  .article-prose .pullquote p { font-size: 18px; }
  .fw-author-card { grid-template-columns: 48px 1fr; gap: 14px; padding: 18px; }
  .fw-author-card__avatar { width: 48px; height: 48px; font-size: 18px; }
  .fw-author-card__name { font-size: 16px; }
  .fw-related__header { font-size: 17px; }
  .fw-related__title { font-size: 14px; }
  .fw-article-tags { margin-top: 28px; }
}

/* ── SIDEBAR: disable sticky on non-desktop ── */
@media (max-width: 1023px) {
  .fw-sidebar__sticky { position: static; }
}

/* ── ARCHIVE ── */
@media (max-width: 767px) {
  .fw-archive { padding-top: 20px; padding-bottom: 48px; }
  .fw-archive__title { font-size: 26px; }
}

/* ── 404 ── */
@media (max-width: 767px) {
  .fw-404 { padding: 48px 16px; }
  .fw-404__num { font-size: 80px; }
  .fw-404__title { font-size: 24px; }
}
