/* ===========================================================
   5ideasfor.com  -  Editorial 2026
   Warm minimalism, oversized serif, bento grid, dark accents.
   =========================================================== */

:root {
  /* Palette */
  --bg: #f4efe4;          /* warm cream */
  --bg-deep: #ece6d4;     /* darker cream */
  --surface: #fffcf3;     /* paper white */
  --ink: #14110d;         /* near-black warm */
  --ink-soft: #4a463f;
  --muted: #87827b;
  --border: #e1d8c4;
  --border-strong: #c9bfa6;
  --accent: #d44a25;      /* terracotta */
  --accent-deep: #b03a1c;
  --accent-soft: #fbeee6;
  --highlight: #f3c34c;   /* warm yellow */

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", "Charter", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* System */
  --maxw: 1320px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 0 rgba(20, 17, 13, 0.04);
  --shadow: 0 1px 0 rgba(20, 17, 13, 0.04), 0 14px 32px -20px rgba(20, 17, 13, 0.22);
  --shadow-lift: 0 2px 0 rgba(20, 17, 13, 0.05), 0 28px 56px -24px rgba(20, 17, 13, 0.32);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--accent); }
button { font-family: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== Scroll progress (CSS scroll-timeline) ========== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 200;
  animation: progress-fill linear;
  animation-timeline: scroll(root);
}
@keyframes progress-fill {
  to { transform: scaleX(1); }
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 228, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 32px;
}
.logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 80;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.logo em, .logo span {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
nav.primary {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
nav.primary a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
nav.primary a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
nav.primary a:hover { color: var(--ink); }
nav.primary a:hover::after { transform: scaleX(1); }
.header-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 28px;
  border-left: 1px solid var(--border);
}

/* ========== Editorial Hero ========== */
.editorial-hero {
  padding: 88px 0 64px;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.display-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(60px, 13vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin: 20px 0 0;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
}
.display-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero-lede {
  margin: 36px 0 0;
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 660px;
  font-weight: 400;
}
.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border-strong);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.hero-meta strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  font-size: 17px;
  margin-right: 4px;
  font-variation-settings: "opsz" 144, "WONK" 1;
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong); }

/* ========== Section ========== */
.section {
  padding: 56px 0;
}
.section-mark {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  column-gap: 36px;
  row-gap: 12px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-strong);
  margin-bottom: 40px;
}
.section-numeral {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(64px, 9vw, 124px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.section-info h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  color: var(--ink);
}
.section-info p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 480px;
}
.section-count {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========== Bento Grid ========== */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.bento .b-card.span-2 { grid-column: span 2; }
.bento .b-card.span-3 { grid-column: span 3; }
.bento .b-card.span-4 { grid-column: span 4; }

/* Asymmetric: 1 feature card + 2 mini stacked */
.bento-asym {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
}
.b-card-pair {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 22px;
}

/* ========== Card base ========== */
.b-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
  animation: cardIn 0.6s var(--ease) backwards;
}
.b-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: var(--border-strong);
  color: var(--ink);
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.bento .b-card:nth-child(1), .bento-asym > *:nth-child(1) { animation-delay: 0.04s; }
.bento .b-card:nth-child(2), .bento-asym > *:nth-child(2) { animation-delay: 0.12s; }
.bento .b-card:nth-child(3) { animation-delay: 0.20s; }
.b-card-pair > *:nth-child(1) { animation-delay: 0.18s; }
.b-card-pair > *:nth-child(2) { animation-delay: 0.26s; }

.b-card .b-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-deep);
}
.b-card .b-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.b-card:hover .b-thumb img { transform: scale(1.06); }
.b-thumb .b-num {
  position: absolute;
  top: 14px;
  left: 16px;
  background: rgba(255, 252, 243, 0.95);
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-variation-settings: "opsz" 144, "WONK" 1;
}
.b-card .b-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.b-card .b-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.b-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.012em;
  margin: 0 0 14px;
  color: var(--ink);
}
.b-card .b-excerpt {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.b-card .b-meta {
  margin-top: auto;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.b-card .arrow {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}
.b-card:hover .arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
  transform: translate(2px, -2px);
}

/* Feature card variant (asymmetric layout, large) */
.b-card-feature .b-thumb { aspect-ratio: 4 / 3; }
.b-card-feature .b-body { padding: 30px 34px 34px; }
.b-card-feature h3 {
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.12;
  font-weight: 500;
  margin-bottom: 16px;
}
.b-card-feature .b-excerpt {
  font-size: 16px;
  -webkit-line-clamp: 3;
}

/* Mini card variant: full-bleed editorial (image fills card, text overlay) */
.b-card-mini {
  flex-direction: column;
  position: relative;
  min-height: 200px;
  isolation: isolate;
}
.b-card-mini > .b-thumb {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  flex: initial;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.b-card-mini > .b-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b-card-mini > .b-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 17, 13, 0) 0%,
    rgba(20, 17, 13, 0) 30%,
    rgba(20, 17, 13, 0.45) 60%,
    rgba(20, 17, 13, 0.92) 100%);
  pointer-events: none;
  z-index: 1;
}
.b-card-mini > .b-thumb .b-num {
  z-index: 2;
}
.b-card-mini > .b-body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 24px 26px 22px;
  background: transparent;
  flex: initial;
  color: #fffcf3;
}
.b-card-mini > .b-body .b-tag {
  color: #f3c34c;
  margin-bottom: 10px;
}
.b-card-mini > .b-body h3 {
  color: #fffcf3;
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: -0.012em;
  margin: 0 0 14px;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.b-card-mini > .b-body .b-meta {
  color: rgba(255, 252, 243, 0.72);
}
.b-card-mini > .b-body .arrow {
  border-color: rgba(255, 252, 243, 0.35);
  color: #fffcf3;
  background: rgba(255, 252, 243, 0.08);
  width: 30px;
  height: 30px;
  font-size: 13px;
  backdrop-filter: blur(6px);
}
.b-card-mini:hover > .b-body .arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #fffcf3;
  transform: translate(2px, -2px);
}

/* Span-3 cards (Travel, Money) - more prominent */
.bento .b-card.span-3 .b-thumb { aspect-ratio: 16 / 9; }
.bento .b-card.span-3 h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
  margin-bottom: 14px;
}
.bento .b-card.span-3 .b-body { padding: 26px 30px 30px; }
.bento .b-card.span-3 .b-excerpt { -webkit-line-clamp: 2; font-size: 15px; }

/* ========== Pull Quote ========== */
.pullquote {
  margin: 80px auto 40px;
  max-width: 980px;
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.pullquote::before {
  content: "\201C";
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 120px;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  opacity: 0.85;
}
.pullquote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1;
}
.pullquote cite {
  display: block;
  margin-top: 28px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========== CTA band ========== */
.cta-band {
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  margin: 56px 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: 0.45;
  pointer-events: none;
  filter: blur(20px);
}
.cta-band::after {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--highlight) 0%, transparent 70%);
  opacity: 0.18;
  pointer-events: none;
  filter: blur(30px);
}
.cta-band > * { position: relative; }
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
}
.cta-band h2 em {
  color: var(--highlight);
  font-style: italic;
  font-variation-settings: "opsz" 144, "WONK" 1;
}
.cta-band p {
  margin: 16px 0 0;
  color: rgba(255, 252, 243, 0.7);
  font-size: 15px;
  max-width: 420px;
}
.cta-form {
  display: flex;
  background: var(--surface);
  border-radius: 999px;
  padding: 6px;
  align-items: center;
}
.cta-form input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 15px;
  padding: 0 18px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.cta-form input::placeholder { color: var(--muted); }
.cta-form button {
  border: 0;
  background: var(--accent);
  color: var(--surface);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cta-form button:hover { background: var(--accent-deep); }

/* ========== Footer ========== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 252, 243, 0.75);
  padding: 88px 0 110px;
  margin-top: 72px;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
}
.site-footer .brand-block .logo { color: var(--surface); font-size: 28px; }
.site-footer .brand-block .logo em { color: var(--highlight); }
.site-footer .brand-block p {
  margin: 16px 0 0;
  font-size: 14px;
  max-width: 360px;
  line-height: 1.6;
  color: rgba(255, 252, 243, 0.6);
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 252, 243, 0.45);
  margin: 0 0 18px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer ul a {
  color: rgba(255, 252, 243, 0.85);
  font-size: 14px;
}
.site-footer ul a:hover { color: var(--highlight); }
.site-footer .footer-bottom {
  grid-column: 1 / -1;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 252, 243, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 252, 243, 0.45);
}
/* Backward compat for article-page footer */
.site-footer .footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

/* ========== Ad slots ========== */
.ad-slot {
  margin: 36px auto;
  text-align: center;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ad-slot::before {
  content: "Sponsored";
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  opacity: 0.7;
}
.ad-slot.sidebar-ad { min-height: 600px; margin: 0; }

.sticky-bottom-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 252, 243, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 8px 0 6px;
  text-align: center;
}
.sticky-bottom-wrap .close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s ease;
}
.sticky-bottom-wrap .close:hover { background: var(--border); }
.sticky-bottom-wrap.hidden { display: none; }

/* ========== Article page ========== */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  padding: 48px 0 64px;
}
.article-body {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 60px 68px;
  box-shadow: var(--shadow);
}
.article-body .byline {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 22px;
}
.article-body h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.article-body .lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  font-variation-settings: "opsz" 144, "WONK" 1;
}
.article-body h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 42px 0 14px;
  color: var(--ink);
}
.article-body p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
}
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body ul, .article-body ol { padding-left: 22px; }

.article-hero {
  margin: 0 0 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--bg-deep);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }

aside.sidebar { position: relative; }
.sidebar-sticky { position: sticky; top: 110px; }

/* ========== Responsive ========== */
@media (max-width: 1100px) {
  .bento-asym { grid-template-columns: 1fr; }
  .b-card-pair { grid-auto-rows: auto; grid-template-columns: repeat(3, 1fr); }
  .b-card-mini { min-height: 220px; }
  .bento .b-card.span-3 { grid-column: span 6; }
  .bento .b-card.span-2 { grid-column: span 3; }
  .article-layout { grid-template-columns: 1fr; }
  aside.sidebar { display: none; }
  .site-footer .container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-band { grid-template-columns: 1fr; gap: 28px; padding: 48px 36px; }
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .site-header .container { padding-top: 14px; padding-bottom: 14px; gap: 14px; }
  .header-meta { display: none; }
  nav.primary { gap: 14px; }
  nav.primary a { font-size: 12px; }
  .editorial-hero { padding: 48px 0 32px; }
  .hero-meta { gap: 10px; }
  .section { padding: 36px 0; }
  .section-mark { grid-template-columns: auto 1fr; gap: 18px; }
  .section-count { grid-column: 1 / -1; }
  .bento { grid-template-columns: 1fr; }
  .bento .b-card.span-2,
  .bento .b-card.span-3,
  .bento .b-card.span-4 { grid-column: span 1; }
  .b-card-pair { grid-template-columns: 1fr; }
  .article-body { padding: 36px 24px; }
  .pullquote { margin: 48px auto 24px; padding: 0 22px; }
  .pullquote::before { font-size: 80px; }
  .cta-band { padding: 36px 24px; border-radius: var(--radius-lg); }
  .site-footer { padding: 56px 0 100px; }
  .site-footer .container { grid-template-columns: 1fr; gap: 36px; }
  .ad-slot.sidebar-ad { display: none; }
}
