/* ============================================================================
   NEWS — lista de noticias (/news) e leitura de artigo (/news/:slug)
   Apenas layout e composicao de cena; componentes vem do site.css.
   ========================================================================== */

/* ---- hero da lista ---------------------------------------------------------- */
.news-hero {
  position: relative;
  z-index: 1;
  min-height: min(49rem, 82svh);
  overflow-x: clip;
  overflow-y: visible;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: end;
  padding-top: clamp(8rem, 14vw, 11rem);
}
.news-hero-scene {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-color: #071d1a;
  background-image: url('/img/art/home-map.jpg');
  background-size: cover;
  background-position: center 42%;
  filter: saturate(1.18) contrast(1.05);
}
.news-hero-scene::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 84% at 78% 43%, rgba(8, 78, 67, .16), transparent 72%),
    linear-gradient(90deg, rgba(2, 22, 20, .92) 0%, rgba(3, 27, 24, .75) 43%, rgba(12, 22, 15, .25) 78%),
    linear-gradient(0deg, #061a18 0%, transparent 42%, rgba(2, 16, 15, .52) 100%);
}
.news-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(5, 41, 36, .28), transparent 45%),
    radial-gradient(48rem 22rem at 70% 60%, rgba(238, 192, 106, .12), transparent 72%);
}
.news-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: clamp(7rem, 18vh, 11rem);
  pointer-events: none;
  background: linear-gradient(to top, #061a18, transparent);
}
.news-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, .75fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}
.news-hero-copy {
  display: grid;
  justify-items: start;
  gap: 1.2rem;
}
h1.news-hero-title {
  max-width: 9ch;
  font-size: clamp(4rem, 8.5vw, 7.5rem);
  line-height: .84;
  letter-spacing: -.035em;
  text-shadow: 0 7px 36px rgba(0, 0, 0, .55);
}
.news-hero .lead {
  max-width: 39rem;
  color: rgba(247, 241, 220, .82);
  text-wrap: balance;
}
.news-hero-mark {
  position: relative;
  display: grid;
  gap: .4rem;
  padding: 1.55rem 1.7rem 1.45rem;
  border: 1px solid rgba(238, 192, 106, .42);
  border-radius: 4px 22px 4px 22px;
  background: linear-gradient(145deg, rgba(4, 50, 44, .78), rgba(3, 28, 25, .72));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28), inset 0 0 30px rgba(238, 192, 106, .04);
  backdrop-filter: blur(11px);
  transform: rotate(-2deg);
}
.news-hero-mark::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(238, 192, 106, .16);
  pointer-events: none;
}
.news-hero-mark span,
.news-hero-mark small {
  position: relative;
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.news-hero-mark strong {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: .95;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text-main);
}
.news-hero-mark small { color: rgba(247, 241, 220, .62); }

/* ---- filtro por categoria ---------------------------------------------------- */
.news-filter-shell {
  position: relative;
  z-index: 3;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  min-height: 5.4rem;
  margin-bottom: -2.7rem;
  padding: 1rem 1.25rem 1rem 1.5rem;
  border: 1px solid rgba(79, 188, 173, .28);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(8, 49, 44, .96), rgba(4, 28, 26, .96));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .34), inset 0 1px rgba(255, 255, 255, .04);
  backdrop-filter: blur(18px);
}
.news-filter-label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  white-space: nowrap;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(247, 241, 220, .7);
}
.news-live-dot {
  width: .55rem;
  height: .55rem;
  flex: none;
  border-radius: 50%;
  background: #5ee3b0;
  box-shadow: 0 0 0 5px rgba(94, 227, 176, .09), 0 0 16px rgba(94, 227, 176, .52);
  animation: news-live 2.4s ease-in-out infinite;
}
@keyframes news-live {
  50% { opacity: .55; box-shadow: 0 0 0 8px rgba(94, 227, 176, 0), 0 0 9px rgba(94, 227, 176, .25); }
}
.news-filter {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .45rem;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: .58rem .95rem;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(247, 241, 220, .66);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.filter-chip:hover {
  color: var(--gold-200);
  border-color: rgba(238, 192, 106, .25);
  background: rgba(255, 255, 255, .035);
  transform: translateY(-1px);
}
.filter-chip.is-active {
  color: #172012;
  border-color: var(--gold-500);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 8px 22px -11px rgba(238, 192, 106, .8);
}

/* ---- lista ------------------------------------------------------------------ */
.news-list {
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding: clamp(7.5rem, 12vw, 10rem) 0 clamp(5rem, 9vw, 7rem);
  background: #061a18;
}
.news-list::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(58rem 32rem at 2% 20%, rgba(32, 128, 112, .12), transparent 70%),
    radial-gradient(48rem 30rem at 98% 70%, rgba(188, 135, 37, .1), transparent 72%);
}
.news-list-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .68fr);
  align-items: end;
  gap: 2rem 5rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.8rem);
  padding-bottom: 1.7rem;
  border-bottom: 1px solid rgba(238, 192, 106, .2);
}
.news-list-heading > div { display: grid; gap: .75rem; }
.news-list-heading .h-section {
  max-width: 15ch;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: .96;
}
.news-list-heading p {
  color: var(--text-muted);
  line-height: 1.75;
}
.news-grid--page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
}
.news-grid--page .news-card {
  overflow: hidden;
  border-color: rgba(87, 185, 170, .18);
  background: linear-gradient(155deg, rgba(12, 49, 44, .94), rgba(7, 31, 28, .98));
  box-shadow: 0 22px 55px rgba(0, 0, 0, .2);
}
.news-grid--page .news-card:hover {
  border-color: rgba(238, 192, 106, .44);
  box-shadow: 0 28px 65px rgba(0, 0, 0, .35);
}
.news-grid--page .news-cover-art {
  transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
}
.news-grid--page .news-card:hover .news-cover-art {
  transform: scale(1.045);
  filter: saturate(1.14) contrast(1.04);
}
.news-grid--page .news-body { padding: 1.45rem; }
.news-grid--page .news-title { font-size: clamp(1.15rem, 1.7vw, 1.45rem); }
.news-grid--page .news-card--featured,
.news-grid--page .news-card:first-child {
  grid-column: span 2;
  border-color: rgba(238, 192, 106, .34);
  background: linear-gradient(145deg, rgba(22, 66, 57, .98), rgba(8, 34, 30, .98));
}
.news-grid--page .news-card--featured .news-cover,
.news-grid--page .news-card:first-child .news-cover { aspect-ratio: 20 / 8.4; }
.news-grid--page .news-card--featured .news-body,
.news-grid--page .news-card:first-child .news-body { padding: clamp(1.5rem, 3vw, 2rem); }
.news-grid--page .news-card--featured .news-title,
.news-grid--page .news-card:first-child .news-title {
  max-width: 19ch;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.02;
}
.news-grid--page .news-card:nth-child(4):last-child { grid-column: span 2; }
.news-grid--page .news-card:only-child {
  grid-column: 1 / -1;
  width: min(47rem, 100%);
}
.news-grid--page .news-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  border: 1px dashed rgba(238, 192, 106, .35);
  border-radius: var(--radius-lg);
  background: rgba(16, 58, 50, .38);
}

/* encerramento da lista: convite para a jornada */
.news-endcap {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1rem;
  border-top: 1px solid rgba(238, 192, 106, .16);
}
.news-endcap p {
  color: var(--text-muted);
  max-width: 44rem;
}
.news-endcap-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: .2rem;
}

/* ---- heroi editorial do artigo ---------------------------------------------------- */
.article-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(8rem, 14vw, 11rem);
  padding-bottom: clamp(5.5rem, 11vw, 8.5rem);
}
/* a faixa larga reusa a arte tematica .news-cover--<categoria> do site.css */
.article-hero .article-hero-art {
  position: absolute;
  inset: 0;
  z-index: -3;
  aspect-ratio: auto;
  height: 100%;
  border-radius: 0;
}
.article-hero-ridge {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: clamp(70px, 10vw, 130px);
}
/* penumbra no topo (legibilidade sob o header) e ao redor do titulo */
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(70% 90% at 50% 42%, rgba(16, 9, 3, .42), transparent 75%),
    linear-gradient(to bottom, rgba(16, 9, 3, .74), rgba(16, 9, 3, .2) 38%, transparent 62%);
}
/* o heroi desagua no pergaminho */
.article-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(110px, 20vh, 200px);
  background: linear-gradient(to top, var(--ink-900) 12%, rgba(23, 14, 6, .6) 55%, transparent);
  z-index: -1;
  pointer-events: none;
}

.article-hero-inner {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1.05rem;
}
.article-crumb {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-400);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}
.article-crumb:hover { color: var(--gold-200); }
.article-crumb svg { transition: transform .2s ease; }
.article-crumb:hover svg { transform: translateX(-4px); }

h1.article-title {
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  max-width: 24ch;
  text-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}
.article-meta-dot {
  width: 5px; height: 5px;
  background: var(--gold-500);
  transform: rotate(45deg);
  flex: none;
}

/* ---- corpo: pergaminho de leitura --------------------------------------------------- */
.article-body {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(1rem, 3vw, 2rem);
}
.article-parchment {
  position: relative;
  width: min(53rem, 100%);
  margin-inline: auto;
  /* sobe sobre o heroi para costurar as duas cenas */
  margin-top: clamp(-4.5rem, -8vw, -2.5rem);
  padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.25rem, 5vw, 3.8rem) clamp(1.9rem, 4.5vw, 3.2rem);
}
.article-seal {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .35));
}

.article-prose {
  max-width: 72ch;
  margin-inline: auto;
  font-size: clamp(1.05rem, .4vw + 1rem, 1.15rem);
  line-height: 1.75;
}
.article-prose > :first-child { margin-top: 0; }
.article-prose p { margin: 0 0 1.15em; }
.article-prose p:last-child { margin-bottom: 0; }
.article-prose strong { color: #1f1708; }
.article-prose h2,
.article-prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #4a3413;
  margin: 2em 0 .7em;
}
.article-prose h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  padding-bottom: .35em;
  border-bottom: 1px solid rgba(138, 106, 47, .3);
}
.article-prose h3 { font-size: clamp(1.05rem, 2vw, 1.2rem); }
.article-prose ul,
.article-prose ol {
  margin: 0 0 1.15em;
  padding-left: 1.4em;
}
.article-prose li { margin-bottom: .45em; }
.article-prose blockquote {
  margin: 1.4em 0;
  padding: .2em 0 .2em 1.1em;
  border-left: 3px solid rgba(138, 106, 47, .45);
  font-style: italic;
  color: #4a3a1e;
}
.article-prose hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(138, 106, 47, .5), transparent);
  margin: 2rem auto;
}
.article-prose img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
  border-radius: 8px;
}
.article-prose iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 1.6rem 0;
  border: 1px solid rgba(92, 67, 25, .35);
  border-radius: 8px;
  background: #000;
}
.article-prose pre {
  overflow-x: auto;
  margin: 1.4rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(92, 67, 25, .25);
  border-radius: 8px;
  background: rgba(74, 52, 19, .08);
  font-family: ui-monospace, Consolas, monospace;
  font-size: .88em;
  line-height: 1.6;
}
.article-prose code { font-family: ui-monospace, Consolas, monospace; }
/* capitular na abertura da cronica */
.article-prose > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.3em;
  line-height: .78;
  float: left;
  padding: .1em .14em 0 0;
  color: #8a6a2f;
}

/* ---- rodape do artigo ------------------------------------------------------------------ */
.article-endcap {
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 3vw, 2rem);
}
.article-endcap-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: .9rem;
}
.article-endcap-text {
  color: var(--text-muted);
  max-width: 40rem;
}
.article-endcap-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.8rem;
  margin-top: .4rem;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.article-back:hover { color: var(--gold-200); }
.article-back svg { transition: transform .2s ease; }
.article-back:hover svg { transform: translateX(-4px); }

/* ---- motas de luz dos cenarios ----------------------------------------------------------- */
.news-motes circle {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation: news-mote 8s ease-in-out infinite;
}
.news-motes circle:nth-child(2n) { animation-duration: 10s; animation-delay: 1.6s; }
.news-motes circle:nth-child(3n) { animation-delay: 3.4s; }
@keyframes news-mote {
  0%   { transform: translateY(10px); opacity: 0; }
  30%  { opacity: .85; }
  70%  { opacity: .3; }
  100% { transform: translateY(-26px); opacity: 0; }
}

/* ---- responsivo ---------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .news-hero { min-height: 44rem; }
  .news-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, .55fr);
    gap: 2.5rem;
  }
  .news-filter-shell {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.2rem;
  }
  .news-filter { justify-content: flex-start; }
  .news-list-heading { gap: 2rem; }
  .news-grid--page { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-grid--page .news-card:nth-child(4):last-child { grid-column: auto; }
}

@media (max-width: 720px) {
  .news-hero {
    min-height: auto;
    padding-top: 8.5rem;
  }
  .news-hero-scene { background-position: 62% center; }
  .news-hero-scene::after {
    background:
      linear-gradient(90deg, rgba(2, 22, 20, .9), rgba(3, 27, 24, .58)),
      linear-gradient(0deg, #061a18 0%, transparent 55%, rgba(2, 16, 15, .55) 100%);
  }
  .news-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.7rem;
  }
  .news-hero-mark {
    width: min(22rem, 86%);
    justify-self: end;
    padding: 1.2rem 1.35rem;
  }
  .news-hero-mark strong { font-size: 2.35rem; }
  .news-list-heading { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  h1.news-hero-title {
    font-size: clamp(3.2rem, 14.5vw, 4rem);
    letter-spacing: -.045em;
  }
  .news-hero .lead { font-size: 1rem; }
  .news-filter-shell {
    width: calc(100% - 2rem);
    margin-bottom: -3.4rem;
    padding: 1rem;
  }
  .news-filter {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: .15rem;
    scrollbar-width: none;
  }
  .news-filter::-webkit-scrollbar { display: none; }
  .filter-chip {
    flex: none;
    min-height: 2.35rem;
    padding: .45rem .78rem;
    font-size: .68rem;
  }
  .news-list { padding-top: 8rem; }
  .news-list-heading .h-section { font-size: clamp(2rem, 11vw, 3rem); }
  .news-grid--page { grid-template-columns: 1fr; }
  .news-grid--page .news-card--featured,
  .news-grid--page .news-card:first-child,
  .news-grid--page .news-card:nth-child(4):last-child,
  .news-grid--page .news-card:only-child { grid-column: auto; }
  .news-grid--page .news-card:only-child { width: 100%; }
  .news-grid--page .news-card--featured .news-cover,
  .news-grid--page .news-card:first-child .news-cover { aspect-ratio: 16 / 9; }
  .news-grid--page .news-card--featured .news-title,
  .news-grid--page .news-card:first-child .news-title { font-size: 1.5rem; }
}
@media (max-width: 520px) {
  .news-hero-mark { display: none; }
  .news-hero-inner { padding-bottom: 3.2rem; }
  .news-endcap-actions { width: 100%; }
  .news-endcap-actions .btn { flex: 1 1 100%; }
  .article-endcap-actions { width: 100%; flex-direction: column-reverse; }
  .article-endcap-actions .btn { width: 100%; }
}

/* ---- movimento reduzido ---------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .news-live-dot { animation: none; }
  .news-grid--page .news-cover-art { transition: none; }
  .news-grid--page .news-card:hover .news-cover-art { transform: none; }
  .news-motes circle {
    animation: none;
    opacity: .5;
    transform: none;
  }
}

/* ---- refatoracao de densidade -------------------------------------------- */
.news-hero {
  min-height: 10rem;
  padding-top: 4.625rem;
}
.news-hero::after { height: 4rem; }
.news-hero-inner {
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 10rem;
  gap: 0;
  padding-bottom: 0;
}
.news-hero-copy { gap: var(--space-2); max-width: 46rem; }
h1.news-hero-title {
  max-width: none;
  font-size: var(--type-page-title);
  line-height: 1.02;
  letter-spacing: 0;
}
.news-hero .lead { font-size: var(--type-body); line-height: 1.55; }
.news-hero-mark { display: none; }
.news-filter-shell {
  min-height: var(--control-height);
  margin: var(--space-4) 0 0;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius);
  box-shadow: none;
}
.filter-chip {
  min-height: 2rem;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius);
}
.news-list { padding: var(--space-6) 0 var(--space-16); }
.news-list-heading {
  gap: var(--space-4) var(--space-8);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
}
.news-list-heading > div { gap: var(--space-2); }
.news-list-heading .h-section {
  max-width: none;
  font-size: var(--type-section-title);
  line-height: 1.2;
}
.news-list-heading p { line-height: 1.55; }
.news-grid--page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.news-grid--page .news-card,
.news-grid--page .news-card--featured,
.news-grid--page .news-card:first-child {
  grid-column: auto;
  border-color: rgba(255, 212, 90, .12);
  border-radius: var(--radius);
  background: rgba(8, 39, 33, .8);
  box-shadow: none;
}
.news-grid--page .news-card:nth-child(4):last-child,
.news-grid--page .news-card:only-child {
  grid-column: auto;
  width: auto;
}
.news-grid--page .news-card:hover {
  transform: none;
  border-color: rgba(255, 212, 90, .28);
  box-shadow: none;
}
.news-grid--page .news-cover,
.news-grid--page .news-card--featured .news-cover,
.news-grid--page .news-card:first-child .news-cover { aspect-ratio: 16 / 7; }
.news-grid--page .news-body,
.news-grid--page .news-card--featured .news-body,
.news-grid--page .news-card:first-child .news-body { padding: var(--space-4); }
.news-grid--page .news-title,
.news-grid--page .news-card--featured .news-title,
.news-grid--page .news-card:first-child .news-title {
  max-width: none;
  font-family: var(--font-body);
  font-size: var(--type-card-title);
  line-height: 1.25;
}
.news-endcap {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  gap: var(--space-3);
}

@media (max-width: 760px) {
  .news-hero { min-height: 9rem; padding-top: 4.625rem; }
  .news-hero-inner { min-height: 9rem; }
  .news-filter-shell {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-2);
  }
  .news-filter {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .news-filter::-webkit-scrollbar { display: none; }
  .filter-chip { flex: none; }
  .news-list-heading { grid-template-columns: 1fr; }
  .news-grid--page { grid-template-columns: 1fr; }
}

/* Mantem o HTML ja carregado pelo servidor atual alinhado ao novo layout. */
.news-hero-inner,
.news-filter-shell,
.news-list-heading .kicker { display: none; }
