/* =====================================================================
   KTZ — style.css
   Paleta monocromática: preto, cinzas e branco. Nenhuma outra cor.
   Todas as imagens passam por grayscale, o que mantém o site mono
   mesmo quando a foto enviada for colorida.
   ===================================================================== */

:root {
  --p0: #0a0a0a;   /* preto */
  --p1: #1c1c1c;
  --c7: #3a3a3a;
  --c5: #6b6b6b;
  --c4: #8a8a8a;
  --c3: #a9a9a9;
  --c2: #d6d6d6;
  --c1: #ebebeb;
  --c0: #f5f5f5;
  --w:  #ffffff;

  --fonte: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fonte-marca: "bettoni-variable", "Inter", sans-serif;

  --wrap: 1200px;
  --estreito: 760px;
  --gutter: clamp(16px, 4vw, 32px);
  --raio: 6px;
  --sombra: 0 1px 2px rgba(0,0,0,.06), 0 8px 24px -12px rgba(0,0,0,.18);
  --topo-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--topo-h) + 16px); }
html, body { overflow-x: clip; }

/* Barra de rolagem discreta: fina, cinza-claro, sem trilho visível */
html { scrollbar-width: thin; scrollbar-color: var(--c2) transparent; scrollbar-gutter: stable; }
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--c2); border-radius: 999px; border: 1px solid var(--w); }
::-webkit-scrollbar-thumb:hover { background: var(--c3); }
::-webkit-scrollbar-corner { background: transparent; }
.tabela-wrap { scrollbar-width: thin; scrollbar-color: var(--c2) transparent; }
body {
  margin: 0;
  font-family: var(--fonte);
  font-size: 17px;
  line-height: 1.6;
  color: var(--p0);
  background: var(--w);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
img { filter: grayscale(100%); background: var(--c1); }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--p0); outline-offset: 3px; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(30px, 4.5vw, 48px); }
h2 { font-size: clamp(22px, 3vw, 30px); }
h3 { font-size: 20px; }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--p0); color: var(--w); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-estreito { max-width: calc(var(--estreito) + 2 * var(--gutter)); }
.sr-only, .pular {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.pular:focus { position: fixed; top: 8px; left: 8px; width: auto; height: auto; margin: 0; padding: 10px 16px; clip: auto;
  background: var(--p0); color: var(--w); z-index: 1000; border-radius: var(--raio); }

/* ---------------------------------------------------------------
   Marca
   --------------------------------------------------------------- */
.logo {
  font-family: var(--fonte-marca);
  font-variation-settings: "opsz" 0, "wght" 110;
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--p0);
  text-decoration: none !important;
}
.logo-rodape { color: var(--w); font-size: 40px; }

/* ---------------------------------------------------------------
   Topo
   --------------------------------------------------------------- */
.topo {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(0) blur(8px);
  border-bottom: 1px solid var(--c1);
}
.topo-in { display: flex; align-items: center; gap: 24px; min-height: var(--topo-h); }
.menu { flex: 1; }
.menu > ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: nowrap; gap: 0 2px; align-items: center; min-width: 0; }
.menu li { position: relative; }
.menu a {
  display: inline-block; padding: 8px 10px; white-space: nowrap;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em;
  color: var(--c7); border-radius: 4px;
}
.menu a:hover { color: var(--p0); background: var(--c0); text-decoration: none; }
.menu .tem-sub { display: flex; align-items: center; }
.sub-toggle {
  border: 0; background: none; padding: 8px 6px; margin-left: -8px; color: var(--c7);
}
.sub-toggle span { display: block; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .2s; }
.sub-toggle[aria-expanded="true"] span { transform: rotate(-135deg); }
.menu .sub {
  list-style: none; margin: 0; padding: 8px; min-width: 200px;
  position: absolute; top: 100%; left: 0;
  background: var(--w); border: 1px solid var(--c1); border-radius: var(--raio); box-shadow: var(--sombra);
  display: none; z-index: 10;
}
/* ponte invisível entre o item e o submenu: o mouse pode descer sem o menu fechar */
.menu .sub::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.menu > ul > li { padding-bottom: 0; }
.menu .sub a { display: block; text-transform: none; letter-spacing: 0; font-size: 14px; font-weight: 500; padding: 8px 10px; }
.menu li:hover > .sub, .menu li:focus-within > .sub, .menu .sub.aberto { display: block; }
.topo-acoes { display: flex; gap: 4px; margin-left: auto; }
.btn-icone { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 0; background: none; color: var(--p0); border-radius: 50%; }
.btn-icone:hover { background: var(--c0); }
.btn-menu { display: none; }

/* ---------------------------------------------------------------
   Componentes
   --------------------------------------------------------------- */
.rotulo, .rotulo-simples {
  display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--c5); margin-bottom: 10px;
}
.rotulo { padding-bottom: 2px; border-bottom: 1.5px solid var(--p0); color: var(--p0); }
.rotulo:hover { text-decoration: none; color: var(--c5); border-color: var(--c5); }
.meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 13px; color: var(--c5); }
.meta a { font-weight: 600; color: var(--p0); }
.meta time::before, .meta span::before { content: "·"; margin-right: 12px; color: var(--c3); }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips a {
  display: inline-block; padding: 6px 14px; border: 1px solid var(--c2); border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--c7); background: var(--w);
}
.chips a:hover { background: var(--p0); color: var(--w); border-color: var(--p0); text-decoration: none; }
.link-seta { font-weight: 600; font-size: 15px; }
.link-seta::after { content: " →"; }

/* Cards */
.grade { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 28px; }
.card { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.card-img { display: block; overflow: hidden; border-radius: var(--raio); aspect-ratio: 16 / 9; background: var(--c1); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.03); }
.card-corpo { display: flex; flex-direction: column; gap: 6px; }
.card-corpo .rotulo { margin-bottom: 2px; align-self: flex-start; }
.card-titulo { font-size: 20px; margin: 0; }
.card-titulo a:hover { text-decoration: underline; }
.card-resumo { font-size: 15px; color: var(--c5); margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card .meta { margin-top: 4px; }

/* Seções */
.secao { margin: 56px 0; }
.secao-cab { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 12px 24px; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--p0); }
.secao-cab h2 { margin: 0; }

/* ---------------------------------------------------------------
   Home
   --------------------------------------------------------------- */
.home-h1 {
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--c5);
  margin: 22px 0 18px; padding-bottom: 14px; border-bottom: 1px solid var(--c1);
}
.destaque { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; align-items: center; margin-bottom: 24px; }
.destaque-img { display: block; overflow: hidden; border-radius: var(--raio); aspect-ratio: 16 / 9; }
.destaque-img img { width: 100%; height: 100%; object-fit: cover; }
.destaque-titulo { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 14px; }
.destaque-sub { font-size: 17px; color: var(--c5); margin-bottom: 18px; }

.autor-faixa {
  display: grid; grid-template-columns: 160px 1fr; gap: 32px; align-items: center;
  margin: 64px 0; padding: 36px; background: var(--c0); border-radius: var(--raio);
}
.autor-faixa h2 { font-size: 28px; margin-bottom: 6px; }
.autor-foto img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; }
.autor-cargo { font-size: 14px; font-weight: 600; color: var(--c5); margin-bottom: 10px; }

/* ---------------------------------------------------------------
   Listagens
   --------------------------------------------------------------- */
.trilha { margin: 20px 0 24px; font-size: 13px; color: var(--c5); }
.trilha ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 0; }
.trilha li + li::before { content: "/"; margin: 0 8px; color: var(--c3); }
.trilha a:hover { color: var(--p0); }
.trilha [aria-current] { color: var(--p0); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 46ch; }
.lista-cab { margin-bottom: 36px; padding-bottom: 28px; border-bottom: 2px solid var(--p0); }
.lista-cab h1 { margin-bottom: 14px; }
.lista-total { font-size: 14px; color: var(--c5); margin: 16px 0 0; }
.autor-cab { display: grid; grid-template-columns: 180px 1fr; gap: 32px; align-items: center; margin-top: 8px; }
.autor-cab-foto { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; }
.autor-bio { font-size: 18px; color: var(--c7); max-width: 70ch; }
.redes { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.redes a { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--c2); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--p0); }
.redes a:hover { background: var(--p0); color: var(--w); border-color: var(--p0); text-decoration: none; }
.rodape .redes a { border-color: var(--c7); color: var(--w); }
.rodape .redes a:hover { background: var(--w); color: var(--p0); border-color: var(--w); }
.autores-grade { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 8px; }
.autor-card { display: flex; gap: 18px; padding: 24px; background: var(--c0); border-radius: var(--raio); }
.autor-card > a, .autor-inicial { flex: 0 0 96px; }
.autor-card img, .autor-inicial { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.autor-inicial { display: inline-flex; align-items: center; justify-content: center; background: var(--p0); color: var(--w); font-size: 40px; font-weight: 800; }
.autor-card h2 { font-size: 20px; margin-bottom: 4px; }
.autor-card p { font-size: 14px; margin-bottom: 8px; }
.post-autor .autor-inicial { width: 44px; height: 44px; font-size: 20px; flex-basis: 44px; }
@media (max-width: 1000px) { .autores-grade { grid-template-columns: 1fr; } }
.busca-form { display: flex; gap: 8px; max-width: 560px; margin: 8px 0 4px; }
.busca-form input { flex: 1; min-width: 0; padding: 12px 16px; font: inherit; border: 1.5px solid var(--c2); border-radius: var(--raio); background: var(--w); }
.busca-form input:focus { border-color: var(--p0); outline: none; }
.busca-form button { padding: 12px 22px; border: 0; border-radius: var(--raio); background: var(--p0); color: var(--w); font-weight: 600; }
.busca-form button:hover { background: var(--c7); }
.vazio { padding: 48px 0; color: var(--c5); text-align: center; }
.vazio a { font-weight: 600; color: var(--p0); }
.paginacao { margin: 48px 0; }
.paginacao ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.paginacao a, .paginacao span { display: inline-block; min-width: 40px; padding: 8px 12px; text-align: center; border: 1px solid var(--c2); border-radius: var(--raio); font-size: 14px; font-weight: 600; }
.paginacao a:hover { background: var(--p0); color: var(--w); border-color: var(--p0); text-decoration: none; }
.paginacao [aria-current] { background: var(--p0); color: var(--w); border-color: var(--p0); }

/* ---------------------------------------------------------------
   Post
   --------------------------------------------------------------- */
.progresso { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; pointer-events: none; }
.progresso span { display: block; height: 100%; width: 0; background: var(--p0); transition: width .1s linear; }
.post-cab { margin-bottom: 32px; }
.post-cab h1 { margin-bottom: 16px; }
.post-sub { font-size: clamp(18px, 2vw, 21px); line-height: 1.5; color: var(--c5); margin-bottom: 24px; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 32px; padding-top: 20px; border-top: 1px solid var(--c1); }
.post-autor { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--c5); }
.post-autor img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.post-autor strong { color: var(--p0); font-weight: 700; }
.post-autor small { display: block; font-size: 12px; }
.post-datas { display: flex; flex-wrap: wrap; gap: 8px 24px; margin: 0; font-size: 13px; color: var(--c5); }
.post-datas div { display: flex; gap: 6px; }
.post-datas dt { font-weight: 600; }
.post-datas dt::after { content: ":"; }
.post-datas dd { margin: 0; }
.post-capa { margin: 0 auto 40px; }
.post-capa img { width: 100%; border-radius: var(--raio); }
.post-capa figcaption, .figura figcaption { font-size: 13px; color: var(--c5); margin-top: 10px; }
.credito { color: var(--c4); }

.sumario { margin: 0 0 36px; padding: 20px 24px; background: var(--c0); border-left: 3px solid var(--p0); border-radius: 0 var(--raio) var(--raio) 0; }
.sumario-titulo { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--c5); margin-bottom: 8px; }
.sumario ol { margin: 0; padding-left: 20px; font-size: 15px; }
.sumario li { margin: 4px 0; }
.sumario a { font-weight: 500; }

.post-corpo { font-size: 19px; line-height: 1.75; }
.post-corpo > * + * { margin-top: 1.2em; }
.post-corpo h2 { font-size: clamp(24px, 2.6vw, 30px); margin: 2em 0 .6em; padding-top: .6em; border-top: 1px solid var(--c1); }
.post-corpo h3 { font-size: 22px; margin: 1.6em 0 .5em; }
.post-corpo p { margin: 0; }
.post-corpo strong { font-weight: 700; color: var(--p0); }
.post-corpo a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--c3); }
.post-corpo a:hover { text-decoration-color: var(--p0); }
.post-corpo ul, .post-corpo ol { padding-left: 1.4em; }
.post-corpo li { margin: .4em 0; }
.post-corpo li::marker { color: var(--c5); font-weight: 600; }
.post-corpo blockquote { margin: 2em 0; padding: 4px 0 4px 28px; border-left: 3px solid var(--p0); font-size: 23px; line-height: 1.45; font-weight: 500; letter-spacing: -0.01em; }
.post-corpo blockquote p { margin: 0; }
.post-corpo blockquote cite { display: block; margin-top: 12px; font-size: 14px; font-style: normal; font-weight: 600; color: var(--c5); }
.post-corpo blockquote cite::before { content: "— "; }
.destaque-box { margin: 2em 0; padding: 22px 26px; background: var(--c0); border-radius: var(--raio); font-size: 17px; }
.destaque-box p { margin: 0; }
.figura { margin: 2em 0; }
.figura img { width: 100%; border-radius: var(--raio); }
.tabela-wrap { overflow-x: auto; margin: 2em 0; -webkit-overflow-scrolling: touch; }
.post-corpo table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.45; }
.post-corpo caption { caption-side: top; text-align: left; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--c5); padding-bottom: 10px; }
.post-corpo th, .post-corpo td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--c1); }
.post-corpo th { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; background: var(--p0); color: var(--w); border-bottom: 0; }
.post-corpo tbody tr:nth-child(even) { background: var(--c0); }
.post-corpo td:first-child { font-weight: 600; }
.faq { margin: 2.5em 0 0; }
.faq details { border-top: 1px solid var(--c1); }
.faq details:last-child { border-bottom: 1px solid var(--c1); }
.faq summary { padding: 18px 40px 18px 0; font-size: 18px; font-weight: 600; cursor: pointer; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 26px; font-weight: 300; color: var(--c5); }
.faq details[open] summary::after { content: "–"; }
.faq-resposta { padding: 0 0 20px; font-size: 17px; color: var(--c7); }
.faq-resposta p { margin: 0 0 .8em; }

.fontes { margin-top: 48px; font-size: 14px; color: var(--c5); }
.fontes h2 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--c5); }
.fontes ul { padding-left: 18px; }
.fontes a { text-decoration: underline; }

.post-rodape { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--c1); }
.tags { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tags a { display: inline-block; padding: 6px 12px; background: var(--c0); border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--c7); }
.tags a:hover { background: var(--p0); color: var(--w); text-decoration: none; }
.compartilhar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 36px; }
.compartilhar > span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--c5); margin-right: 8px; }
.compartilhar a, .compartilhar button { padding: 8px 14px; border: 1px solid var(--c2); border-radius: 999px; background: var(--w); font-size: 13px; font-weight: 600; color: var(--p0); }
.compartilhar a:hover, .compartilhar button:hover { background: var(--p0); color: var(--w); border-color: var(--p0); text-decoration: none; }
.compartilhar button.ok { background: var(--c7); color: var(--w); border-color: var(--c7); }
.autor-box { display: grid; grid-template-columns: 96px 1fr; gap: 24px; padding: 28px; background: var(--c0); border-radius: var(--raio); }
.autor-box img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.autor-box-nome { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.autor-box p:last-of-type { margin-bottom: 0; }
.relacionados { margin-top: 72px; }

/* ---------------------------------------------------------------
   Rodapé
   --------------------------------------------------------------- */
.rodape { margin-top: 96px; background: var(--p0); color: var(--c2); }
.rodape a:hover { color: var(--w); }
.rodape-editorias { padding-top: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--c7); }
.rodape-editorias-grade { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 28px 24px; }
.rodape-editoria-nome { display: block; font-size: 15px; font-weight: 700; color: var(--w); margin-bottom: 8px; }
.rodape-editoria ul { list-style: none; margin: 0; padding: 0; }
.rodape-editoria li { margin: 4px 0; font-size: 14px; color: var(--c3); }
.rodape-editoria li a:hover { color: var(--w); }
.rodape-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-top: 40px; padding-bottom: 40px; }
.rodape-nome { font-weight: 600; color: var(--w); margin: 14px 0 6px; }
.rodape-desc { font-size: 14px; color: var(--c3); max-width: 46ch; }
.rodape-titulo { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--c4); margin-bottom: 14px; }
.rodape-col ul { list-style: none; margin: 0; padding: 0; }
.rodape-col li { margin: 6px 0; font-size: 15px; }
.rodape-col ul ul { padding-left: 14px; margin-top: 4px; }
.rodape-col ul ul li { font-size: 14px; color: var(--c3); }
.rodape-base { padding-top: 20px; padding-bottom: 28px; border-top: 1px solid var(--c7); font-size: 13px; color: var(--c4); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; }
.rodape-base p { margin: 0; }

/* ---------------------------------------------------------------
   Responsivo
   --------------------------------------------------------------- */
@media (max-width: 1000px) {
  .grade { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .destaque { grid-template-columns: 1fr; gap: 20px; }
  .rodape-grid { grid-template-columns: 1fr 1fr; }
  .rodape-editorias-grade { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
/* menu hambúrguer entra cedo: com 10 editorias, o menu horizontal só cabe em telas largas */
@media (max-width: 1180px) {
  .btn-menu { display: inline-flex; }
  .menu { position: fixed; inset: var(--topo-h) 0 0 0; background: var(--w); overflow-y: auto; padding: 12px var(--gutter) 40px; display: none; z-index: 90; }
  .menu.aberto { display: block; }
  .menu > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .menu > ul > li { border-bottom: 1px solid var(--c1); }
  .menu a { display: block; padding: 14px 4px; font-size: 15px; white-space: normal; }
  .menu .tem-sub { flex-wrap: wrap; }
  .menu .tem-sub > a { flex: 1; }
  .sub-toggle { margin: 0; padding: 14px; }
  .menu .sub { position: static; display: none; border: 0; box-shadow: none; padding: 0 0 8px 16px; width: 100%; }
  .menu .sub.aberto { display: block; }
  .menu li:hover > .sub:not(.aberto) { display: none; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .grade { grid-template-columns: 1fr; gap: 28px; }
  .autor-faixa, .autor-cab, .autor-box { grid-template-columns: 1fr; }
  .autor-faixa { padding: 24px; }
  .autor-foto img, .autor-cab-foto { width: 120px; height: 120px; }
  .post-corpo { font-size: 17.5px; }
  .post-corpo blockquote { font-size: 20px; padding-left: 18px; }
  .rodape-grid { grid-template-columns: 1fr; gap: 28px; }
  .rodape-editorias-grade { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trilha [aria-current] { max-width: 24ch; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card-img img, .progresso span, .sub-toggle span { transition: none; }
}
@media print {
  .topo, .rodape, .compartilhar, .relacionados, .progresso, .sumario { display: none !important; }
  body { font-size: 12pt; }
  a::after { content: " (" attr(href) ")"; font-size: 90%; color: #555; }
}
