/* ========================================
   ARTICLES.CSS — Sistema editorial How
   ======================================== */

:root {
  --ink: #0A0A0A;
  --ink-soft: #141414;
  --paper: #F5F4ED;
  --paper-soft: #EDECDF;
  --paper-dark: #E3E1D2;
  --neon: #DAFF00;
  --neon-dim: #C5E700;
  --mute: #8E8E85;
  --mute-dark: #5A5A50;
  --whats: #25D366;
  --whats-hover: #1FB855;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;

  --container: 1400px;
  --read-col: 720px;
  --radius: 28px;
  --radius-sm: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 2.5rem; }
.read-col { max-width: var(--read-col); margin: 0 auto; padding: 0 1.5rem; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

img { max-width: 100%; height: auto; display: block; }

/* ========================================
   NAV (igual ao site principal)
   ======================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245,244,237,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10,10,10,0.06);
  transition: padding 0.3s;
}

nav.dark {
  background: rgba(10,10,10,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
nav.dark .nav-links a { color: var(--paper); }

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo img {
  height: 28px;
  width: auto;
  display: block;
}
.logo .logo-light { display: none; }
nav.dark .logo .logo-dark { display: none; }
nav.dark .logo .logo-light { display: block; }

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  font-size: 0.92rem;
}
.nav-links a {
  color: var(--ink);
  opacity: 0.7;
  font-weight: 500;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

.nav-cta {
  background: var(--ink);
  color: var(--neon) !important;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  opacity: 1 !important;
  font-size: 0.88rem;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { transform: scale(1.04); }
nav.dark .nav-cta { background: var(--neon); color: var(--ink) !important; }

/* ========================================
   WHATSAPP STICKY
   ======================================== */
.whats-sticky {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 99;
  background: var(--whats);
  color: white;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 12px 32px rgba(37,211,102,0.35), 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.25s, box-shadow 0.25s;
}
.whats-sticky:hover {
  transform: translateY(-2px) scale(1.04);
  background: var(--whats-hover);
}
.whats-sticky svg { width: 20px; height: 20px; }

/* ========================================
   PROGRESS BAR (apenas em artigos)
   ======================================== */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--neon);
  z-index: 101;
  transition: width 0.05s linear;
}

/* ========================================
   LISTAGEM /artigos.html
   ======================================== */
.list-page { background: var(--ink); color: var(--paper); }

.list-hero {
  padding: 11rem 0 5rem;
  border-bottom: 1px solid rgba(245,244,237,0.08);
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--neon);
}

.list-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  font-variation-settings: 'wdth' 92, 'opsz' 96;
}

.list-hero p {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-style: italic;
  max-width: 60ch;
  color: var(--mute);
  line-height: 1.5;
  font-variation-settings: 'opsz' 28, 'SOFT' 30;
}

/* Featured */
.featured {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(245,244,237,0.08);
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
  background: var(--ink-soft);
  border: 1px solid rgba(245,244,237,0.06);
  border-radius: var(--radius);
  padding: 3rem;
  transition: border-color 0.3s, transform 0.3s;
}

.featured-card:hover {
  border-color: var(--neon);
  transform: translateY(-4px);
}

.featured-visual {
  aspect-ratio: 4 / 3;
  background: var(--neon);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}

.featured-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(10,10,10,0.15) 0%, transparent 60%);
}

.featured-visual-text {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variation-settings: 'wdth' 88;
  position: relative;
  z-index: 2;
}

.featured-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1.5rem;
}
.featured-meta .dot {
  width: 6px;
  height: 6px;
  background: var(--neon);
  border-radius: 50%;
}

.featured-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
  font-variation-settings: 'wdth' 95, 'opsz' 50;
}

.featured-card .lede {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--mute);
  margin-bottom: 2rem;
  font-style: italic;
  font-variation-settings: 'opsz' 24;
}

.featured-card .read-link {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--neon);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Lista cronológica */
.articles-list {
  padding: 5rem 0 9rem;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(245,244,237,0.08);
}

.article-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 3rem;
  align-items: baseline;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(245,244,237,0.08);
  transition: padding 0.3s;
}
.article-row:hover { padding-left: 1.5rem; }

.article-date {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--mute);
  text-transform: uppercase;
}

.article-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-series {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon);
}

.article-row h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
  font-variation-settings: 'wdth' 95, 'opsz' 36;
  transition: color 0.2s;
}
.article-row:hover h3 { color: var(--neon); }

.article-row p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--mute);
  max-width: 65ch;
  font-style: italic;
  line-height: 1.5;
}

.article-arrow {
  font-size: 1.5rem;
  color: var(--mute);
  transition: color 0.2s, transform 0.2s;
}
.article-row:hover .article-arrow { color: var(--neon); transform: translateX(6px); }

/* ========================================
   ARTIGO INDIVIDUAL
   ======================================== */
.article-page { background: var(--paper); color: var(--ink); }

.article-hero {
  padding: 8rem 0 4rem;
  position: relative;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mute-dark);
  margin-bottom: 3rem;
  transition: color 0.2s;
}
.breadcrumb:hover { color: var(--ink); }

.article-kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
  padding: 0.45rem 1rem;
  background: var(--ink);
  color: var(--neon);
  border-radius: 999px;
}

.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 2rem;
  font-variation-settings: 'wdth' 95, 'opsz' 72;
  max-width: 22ch;
}

.article-lede {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.45;
  color: var(--mute-dark);
  font-style: italic;
  max-width: 50ch;
  margin-bottom: 3.5rem;
  font-variation-settings: 'opsz' 28, 'SOFT' 30;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10,10,10,0.1);
  font-family: var(--font-display);
}

.article-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.article-meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.article-meta-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* Conteúdo */
.article-body {
  padding: 3rem 0 5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.75;
  color: var(--ink);
  font-variation-settings: 'opsz' 18, 'SOFT' 30;
}

.article-body p {
  margin-bottom: 1.6rem;
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 4rem auto 1.5rem;
  max-width: 65ch;
  padding: 0 1.5rem;
  font-variation-settings: 'wdth' 95, 'opsz' 40;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 3rem auto 1rem;
  max-width: 65ch;
  padding: 0 1.5rem;
  font-variation-settings: 'wdth' 95;
}

.article-body strong { font-weight: 700; color: var(--ink); }
.article-body em { font-style: italic; }

.article-body ul, .article-body ol {
  max-width: 65ch;
  margin: 0 auto 1.6rem;
  padding: 0 1.5rem 0 3.5rem;
}
.article-body li {
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

/* Drop cap apenas no primeiro parágrafo */
.article-body > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 5em;
  font-weight: 800;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.1em 0 -0.05em;
  color: var(--ink);
  font-variation-settings: 'wdth' 95;
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink);
  border-left: 4px solid var(--neon);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 3rem auto;
  max-width: 60ch;
  font-variation-settings: 'wdth' 95;
}

/* CTA inline */
.cta-inline {
  max-width: 65ch;
  margin: 4rem auto;
  padding: 2.5rem 2.5rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  font-family: var(--font-display);
}

.cta-inline h4 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  font-variation-settings: 'wdth' 95;
}

.cta-inline p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--mute);
  margin: 0 0 1.5rem;
  padding: 0;
  max-width: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--neon); color: var(--ink); }
.btn-primary:hover { background: var(--neon-dim); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Share */
.article-share {
  max-width: 65ch;
  margin: 4rem auto 2rem;
  padding: 2.5rem 1.5rem;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}

.share-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute-dark);
  margin-bottom: 1.25rem;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.share-btn:hover { background: var(--ink); color: var(--neon); }
.share-btn svg { width: 16px; height: 16px; }

/* Author footer */
.article-author {
  max-width: 65ch;
  margin: 0 auto 4rem;
  padding: 2.5rem 1.5rem 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: start;
  border-top: 1px solid rgba(10,10,10,0.1);
}

.author-photo {
  width: 160px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink);
  flex-shrink: 0;
  position: relative;
}
.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

/* Fallback antigo (caso ainda exista em algum artigo sem foto) */
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}

.author-info {
  padding-top: 0.5rem;
}

.author-info .author-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.author-info h5 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
  font-variation-settings: 'wdth' 95;
  line-height: 1.1;
}

.author-info p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--mute-dark);
  line-height: 1.6;
  margin: 0 0 1rem;
  padding: 0;
  max-width: none;
}

.author-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.5rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.author-links a {
  color: var(--ink);
  opacity: 0.65;
  transition: opacity 0.2s;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.author-links a:hover { opacity: 1; }

/* Artigos relacionados */
.related {
  background: var(--paper-soft);
  padding: 6rem 0;
  border-top: 1px solid rgba(10,10,10,0.08);
}

.related h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 3rem;
  font-variation-settings: 'wdth' 95;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.related-card {
  display: block;
  background: var(--paper);
  border: 1px solid rgba(10,10,10,0.08);
  padding: 2rem;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, transform 0.2s;
}
.related-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.related-card-meta {
  display: flex;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1rem;
}

.related-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-variation-settings: 'wdth' 95;
  color: var(--ink);
}

/* CTA final */
.article-cta-final {
  background: var(--ink);
  color: var(--paper);
  padding: 7rem 0;
  text-align: center;
}

.article-cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  font-variation-settings: 'wdth' 90, 'opsz' 80;
}

.article-cta-final p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: var(--mute);
  max-width: 55ch;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

/* ========================================
   FOOTER
   ======================================== */
footer.site-footer {
  background: var(--ink-soft);
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(245,244,237,0.05);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,244,237,0.05);
}

.footer-brand .logo { display: inline-block; margin-bottom: 1.5rem; }
.footer-brand .logo img { height: 48px; }
.footer-brand .logo .logo-dark { display: none; }
.footer-brand .logo .logo-light { display: block; }
.footer-brand .tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--paper);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.footer-brand .descritor { color: var(--mute); font-size: 0.92rem; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1.25rem;
}

.footer-col a, .footer-col p {
  color: var(--mute);
  font-size: 0.93rem;
  display: block;
  margin-bottom: 0.6rem;
  line-height: 1.55;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--paper); }
.footer-col strong { color: var(--paper); font-weight: 600; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--mute);
}
.footer-bottom .signature {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -0.01em;
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .featured-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { padding: 0 1.5rem; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: inline-block; }

  .list-hero { padding: 7rem 0 3rem; }
  .featured, .articles-list, .article-hero, .related, .article-cta-final { padding: 4rem 0; }
  .article-hero { padding-top: 6rem; }

  .article-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 2rem 0;
  }
  .article-row:hover { padding-left: 0; }
  .article-arrow { display: none; }

  .article-body { padding: 2rem 0 3rem; font-size: 1.05rem; }
  .article-body > p:first-of-type::first-letter { font-size: 4em; }

  .cta-inline { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .whats-sticky { padding: 0.85rem 1.2rem; font-size: 0.9rem; bottom: 1.25rem; right: 1.25rem; }
  .whats-sticky .label { display: none; }

  .article-author { grid-template-columns: 1fr; gap: 1.5rem; }
  .author-photo { width: 140px; height: 190px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}
