/*
Theme Name: Top People Brasil Editorial
Theme URI: https://toppeoplebrasil.com/
Description: Child theme editorial do Newspaper para o Top People Brasil.
Author: Top People Brasil
Version: 1.5.0
Template: Newspaper
Text Domain: top-people-brasil
*/

:root {
  --tp-pink: #ec008c;
  --tp-pink-dark: #b8006c;
  --tp-black: #111111;
  --tp-ink: #1d1d1f;
  --tp-muted: #707070;
  --tp-line: #e6e6e8;
  --tp-paper: #ffffff;
  --tp-soft: #f6f6f8;
  --tp-radius: 18px;
  --tp-shadow: 0 12px 34px rgba(17, 17, 17, .09);
  --tp-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--tp-ink);
  background: var(--tp-paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--tp-pink); }
button, input { font: inherit; }

.tp-container {
  width: min(var(--tp-width), calc(100% - 40px));
  margin-inline: auto;
}

/* Cabeçalho */
.tp-topbar {
  background: var(--tp-black);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tp-topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.tp-topbar-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.tp-topbar-dot {
  width: 8px;
  height: 8px;
  background: var(--tp-pink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(236, 0, 140, .15);
}
.tp-header {
  background: #fff;
  border-bottom: 1px solid var(--tp-line);
  position: relative;
  z-index: 50;
}
.tp-header-main {
  min-height: 108px;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 22px;
}
.tp-logo {
  justify-self: center;
  display: block;
  line-height: 0;
}
.tp-logo img { width: 300px; max-height: 92px; display: block; }
.tp-icon-button {
  width: 48px;
  height: 48px;
  border: 1px solid #dadade;
  border-radius: 50%;
  background: #fff;
  color: var(--tp-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s ease;
}
.tp-icon-button:hover { border-color: var(--tp-pink); color: var(--tp-pink); transform: translateY(-1px); }
.tp-icon-button svg { width: 22px; height: 22px; }

.tp-nav-wrap { background: var(--tp-black); }
.tp-nav-row {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.tp-main-nav { min-width: 0; flex: 1; }
.tp-main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}
.tp-main-nav ul::-webkit-scrollbar { display: none; }
.tp-main-nav li { flex: 0 0 auto; }
.tp-main-nav a {
  color: #fff;
  display: block;
  padding: 18px 14px 15px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
}
.tp-main-nav a:hover,
.tp-main-nav .current-menu-item > a,
.tp-main-nav .current-category-ancestor > a { color: #fff; border-bottom-color: var(--tp-pink); }
.tp-social-mini { color: #fff; font-size: 12px; font-weight: 800; white-space: nowrap; }

/* Busca */
.tp-search-panel {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,.94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.tp-search-panel.is-open { display: flex; }
.tp-search-box { width: min(720px, 100%); position: relative; }
.tp-search-box form { display: flex; gap: 10px; }
.tp-search-box input[type="search"] {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 20px 26px;
  font-size: 20px;
  outline: none;
}
.tp-search-submit {
  border: 0;
  background: var(--tp-pink);
  color: #fff;
  border-radius: 999px;
  padding: 0 26px;
  font-weight: 900;
  cursor: pointer;
}
.tp-search-close { position: absolute; right: 0; top: -64px; border-color: rgba(255,255,255,.35); color: #fff; background: transparent; }

/* Menu móvel */
.tp-mobile-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(370px, 88vw);
  background: #111;
  z-index: 9998;
  transform: translateX(-105%);
  transition: transform .28s ease;
  padding: 26px 24px;
  color: #fff;
  overflow-y: auto;
}
.tp-mobile-drawer.is-open { transform: translateX(0); }
.tp-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 9997; display: none; }
.tp-drawer-overlay.is-open { display: block; }
.tp-mobile-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.tp-mobile-drawer-logo { width: 190px; }
.tp-mobile-drawer .tp-icon-button { color: #fff; border-color: rgba(255,255,255,.25); background: transparent; }
.tp-mobile-drawer ul { list-style: none; padding: 0; margin: 0; }
.tp-mobile-drawer li { border-bottom: 1px solid rgba(255,255,255,.12); }
.tp-mobile-drawer a { color: #fff; display: block; padding: 17px 2px; font-size: 17px; font-weight: 800; }

/* Faixa em alta */
.tp-trending { background: #fff; border-bottom: 1px solid var(--tp-line); }
.tp-trending-inner { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px; min-height: 54px; }
.tp-trending-label {
  background: var(--tp-pink);
  color: #fff;
  padding: 10px 15px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
}
.tp-trending-track { min-width: 0; overflow: hidden; }
.tp-trending-list { display: flex; align-items: center; gap: 28px; width: max-content; animation: tpTicker 36s linear infinite; }
.tp-trending-list:hover { animation-play-state: paused; }
.tp-trending-item { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 13px; white-space: nowrap; }
.tp-trending-item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--tp-pink); }
@keyframes tpTicker { to { transform: translateX(-50%); } }

/* Home */
.tp-main { padding: 42px 0 70px; }
.tp-section { margin-top: 64px; }
.tp-section:first-child { margin-top: 0; }
.tp-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 4px solid var(--tp-black);
}
.tp-section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: .95;
  letter-spacing: -.035em;
  color: var(--tp-black);
}
.tp-section-link { font-size: 12px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }

.tp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .85fr);
  gap: 18px;
}
.tp-hero-primary,
.tp-hero-secondary {
  position: relative;
  overflow: hidden;
  background: var(--tp-black);
  color: #fff;
  border-radius: var(--tp-radius);
}
.tp-hero-primary { min-height: 570px; }
.tp-hero-secondary { min-height: 276px; }
.tp-hero-side { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; }
.tp-cover-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.tp-hero-primary:hover .tp-cover-image,
.tp-hero-secondary:hover .tp-cover-image,
.tp-card:hover .tp-card-image { transform: scale(1.035); }
.tp-cover-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.03) 25%, rgba(0,0,0,.88) 100%); }
.tp-hero-content { position: absolute; inset: auto 0 0; padding: 34px; z-index: 2; }
.tp-hero-secondary .tp-hero-content { padding: 24px; }
.tp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tp-pink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tp-kicker::before { content: ""; width: 28px; height: 4px; background: currentColor; border-radius: 999px; }
.tp-hero-content .tp-kicker { color: #ff8bce; }
.tp-hero-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: .94;
  letter-spacing: -.045em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.tp-hero-secondary .tp-hero-title { font-size: clamp(24px, 2.6vw, 34px); line-height: 1; }
.tp-hero-meta { margin-top: 15px; color: rgba(255,255,255,.75); font-size: 12px; font-weight: 700; }

.tp-latest-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 42px; }
.tp-news-list { display: grid; gap: 0; }
.tp-news-row {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--tp-line);
}
.tp-news-thumb { aspect-ratio: 16/10; overflow: hidden; border-radius: 12px; background: #eee; }
.tp-news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.tp-news-row:hover .tp-news-thumb img { transform: scale(1.04); }
.tp-news-title {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -.025em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.tp-excerpt { margin: 0 0 13px; color: #5c5c61; font-size: 15px; line-height: 1.55; }
.tp-meta { color: #77777c; font-size: 12px; font-weight: 700; }

.tp-sidebar-card { background: var(--tp-black); color: #fff; border-radius: var(--tp-radius); padding: 26px; position: sticky; top: 18px; }
.tp-sidebar-title { margin: 0 0 20px; font-size: 18px; font-weight: 950; text-transform: uppercase; letter-spacing: .06em; }
.tp-ranking { counter-reset: rank; list-style: none; padding: 0; margin: 0; }
.tp-ranking li { counter-increment: rank; display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.15); }
.tp-ranking li::before { content: counter(rank, decimal-leading-zero); color: var(--tp-pink); font-size: 22px; font-weight: 950; }
.tp-ranking a { color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 18px; line-height: 1.15; }

.tp-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.tp-card { min-width: 0; }
.tp-card-media { aspect-ratio: 16/10; overflow: hidden; border-radius: 14px; background: #eee; position: relative; }
.tp-card-image { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.tp-card-body { padding-top: 14px; }
.tp-card-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.06;
  letter-spacing: -.02em;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.tp-category-band { background: var(--tp-soft); padding: 54px 0; margin-top: 70px; }
.tp-category-band + .tp-category-band { margin-top: 0; }


/* Camadas e textos: proteção contra conflitos do Newspaper/tagDiv */
.tp-hero-primary > a,
.tp-hero-secondary > a {
  position: relative;
  z-index: 1;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-height: inherit;
  color: #fff !important;
  overflow: hidden;
  border-radius: inherit;
  isolation: isolate;
}
.tp-cover-image { z-index: 0; }
.tp-cover-shade { z-index: 1; pointer-events: none; }
.tp-hero-content {
  position: relative;
  inset: auto;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  color: #fff !important;
}
.tp-hero-title,
.tp-hero-title a,
.tp-news-title,
.tp-news-title a,
.tp-card-title,
.tp-card-title a,
.tp-ranking a {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-height: none !important;
  height: auto !important;
  overflow: visible !important;
  white-space: normal !important;
  text-overflow: clip !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  -webkit-box-orient: initial !important;
  transform: none !important;
}
.tp-hero-title,
.tp-hero-title a { color: #fff !important; }
.tp-card,
.tp-card-body,
.tp-news-row,
.tp-news-row > div { min-width: 0; overflow: visible; }
.tp-card-media,
.tp-news-thumb { display: block !important; }
.tp-card-body { position: relative; z-index: 2; background: transparent; }
.tp-card-title { margin-top: 2px; }
.tp-related .tp-card-title { font-size: 20px; line-height: 1.12; }

/* Arquivos */
.tp-page-header { padding: 42px 0 26px; border-bottom: 1px solid var(--tp-line); }
.tp-page-title { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 6vw, 76px); line-height: .95; letter-spacing: -.04em; }
.tp-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px 22px; padding: 42px 0 70px; }
.tp-pagination { display: flex; justify-content: center; gap: 8px; padding: 10px 0 70px; }
.tp-pagination .page-numbers { min-width: 42px; height: 42px; border: 1px solid var(--tp-line); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; }
.tp-pagination .current, .tp-pagination a:hover { background: var(--tp-pink); color: #fff; border-color: var(--tp-pink); }

/* Post */
.tp-article { padding: 48px 0 80px; }
.tp-article-header { max-width: 930px; margin: 0 auto 30px; }
.tp-breadcrumbs { color: #777; font-size: 12px; font-weight: 800; margin-bottom: 20px; }
.tp-article-title {
  margin: 0;
  color: var(--tp-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.2vw, 90px);
  line-height: .92;
  letter-spacing: -.05em;
  text-wrap: balance;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
.tp-article-deck { margin: 22px 0 0; color: #59595f; font-size: clamp(18px, 2.3vw, 25px); line-height: 1.3; }
.tp-article-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 22px; color: #727277; font-size: 13px; font-weight: 700; }
.tp-featured { width: min(1120px, calc(100% - 40px)); margin: 34px auto; }
.tp-featured img { width: 100%; max-height: 680px; object-fit: cover; border-radius: var(--tp-radius); display: block; }
.tp-caption { color: #777; font-size: 12px; margin-top: 8px; }
.tp-article-body { max-width: 760px; margin: 0 auto; font-family: Georgia, "Times New Roman", serif; font-size: 20px; line-height: 1.78; }
.tp-article-body > * { max-width: 100%; }
.tp-article-body h2, .tp-article-body h3 { color: var(--tp-black); line-height: 1.08; letter-spacing: -.02em; margin: 1.8em 0 .65em; }
.tp-article-body h2 { font-size: 38px; }
.tp-article-body h3 { font-size: 30px; }
.tp-article-body a { color: var(--tp-pink-dark); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.tp-article-body blockquote { margin: 1.6em 0; padding: 18px 0 18px 26px; border-left: 6px solid var(--tp-pink); font-size: 1.25em; line-height: 1.45; }
.tp-article-body img { border-radius: 12px; }
.tp-tags { max-width: 760px; margin: 32px auto 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tp-tags a { background: var(--tp-soft); border-radius: 999px; padding: 9px 13px; font-size: 12px; font-weight: 800; }
.tp-related { padding: 0 0 74px; }

/* Página */
.tp-page-content { max-width: 900px; margin: 0 auto; padding: 50px 20px 80px; font-family: Georgia, "Times New Roman", serif; font-size: 19px; line-height: 1.75; }

/* Rodapé */
.tp-footer { background: var(--tp-black); color: #fff; padding: 46px 0 28px; margin-top: 0; }
.tp-footer-inner { text-align: center; }
.tp-footer-logo { width: 280px; max-width: 78vw; display: block; margin: 0 auto 24px; }
.tp-copyright { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 700; }

/* Utilidades */
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.tp-empty { padding: 60px 0; text-align: center; color: var(--tp-muted); }

@media (max-width: 1024px) {
  .tp-container { width: min(100% - 32px, var(--tp-width)); }
  .tp-hero-grid { grid-template-columns: 1fr; }
  .tp-hero-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .tp-hero-secondary { min-height: 320px; }
  .tp-latest-layout { grid-template-columns: 1fr; }
  .tp-sidebar-card { position: static; }
  .tp-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tp-archive-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 700px) {
  .tp-container { width: min(100% - 28px, var(--tp-width)); }
  .tp-topbar-inner { min-height: 32px; justify-content: center; }
  .tp-topbar-inner > :last-child { display: none; }
  .tp-header-main { min-height: 92px; grid-template-columns: 46px 1fr 46px; gap: 8px; }
  .tp-logo img { width: 230px; max-width: 100%; max-height: 78px; }
  .tp-icon-button { width: 42px; height: 42px; }
  .tp-nav-wrap { display: none; }
  .tp-trending-inner { grid-template-columns: auto minmax(0,1fr); gap: 10px; min-height: 52px; }
  .tp-trending-label { padding: 9px 12px; }
  .tp-main { padding-top: 24px; }
  .tp-section { margin-top: 48px; }
  .tp-section-head { align-items: center; border-bottom-width: 3px; }
  .tp-section-title { font-size: 38px; }
  .tp-section-link { font-size: 10px; }
  .tp-hero-primary { min-height: 440px; }
  .tp-hero-side { grid-template-columns: 1fr; }
  .tp-hero-secondary { min-height: 270px; }
  .tp-hero-content { padding: 20px; }
  .tp-hero-title { font-size: clamp(29px, 8.2vw, 40px); line-height: 1.02; letter-spacing: -.035em; }
  .tp-hero-secondary .tp-hero-title { font-size: clamp(22px, 6.2vw, 28px); line-height: 1.06; }
  .tp-news-row { grid-template-columns: 122px minmax(0,1fr); gap: 14px; padding-bottom: 18px; margin-bottom: 18px; align-items: start; }
  .tp-news-thumb { aspect-ratio: 4/3; }
  .tp-news-title { font-size: 21px; line-height: 1.05; margin-bottom: 8px; text-wrap: auto; }
  .tp-excerpt { display: none; }
  .tp-meta { font-size: 10px; }
  .tp-card-grid { grid-template-columns: 1fr; gap: 26px; }
  .tp-card-title { font-size: 22px; line-height: 1.1; }
  .tp-category-band { padding: 42px 0; margin-top: 50px; }
  .tp-archive-grid { grid-template-columns: 1fr 1fr; gap: 24px 14px; }
  .tp-page-header { padding: 32px 0 20px; }
  .tp-page-title { font-size: 46px; }
  .tp-article { padding-top: 30px; }
  .tp-article-header { padding: 0 14px; }
  .tp-article-title { font-size: clamp(43px, 12vw, 62px); line-height: .94; }
  .tp-featured { width: calc(100% - 28px); margin: 28px auto; }
  .tp-article-body { padding: 0 18px; font-size: 18px; line-height: 1.7; }
  .tp-article-body h2 { font-size: 31px; }
  .tp-tags { padding: 0 18px; }
  .tp-related .tp-card-grid { grid-template-columns: 1fr; gap: 18px; }
  .tp-related .tp-card {
    display: grid;
    grid-template-columns: 124px minmax(0,1fr);
    gap: 14px;
    align-items: start;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--tp-line);
  }
  .tp-related .tp-card-media { aspect-ratio: 4/3; border-radius: 10px; }
  .tp-related .tp-card-body { padding-top: 0; }
  .tp-related .tp-card-title { font-size: 19px; line-height: 1.12; }
  .tp-related .tp-kicker { margin-bottom: 7px; font-size: 10px; }
  .tp-related .tp-kicker::before { width: 18px; height: 3px; }
  .tp-footer { padding-top: 38px; }
  .tp-footer-logo { width: 245px; }
}

@media (max-width: 440px) {
  .tp-header-main { grid-template-columns: 42px minmax(0,1fr) 42px; }
  .tp-logo img { width: 205px; }
  .tp-hero-primary { min-height: 410px; }
  .tp-hero-title { font-size: 29px; line-height: 1.03; }
  .tp-news-row { grid-template-columns: 105px minmax(0,1fr); }
  .tp-news-title { font-size: 19px; }
  .tp-card-grid, .tp-archive-grid { grid-template-columns: 1fr; }
  .tp-card-title { font-size: 21px; line-height: 1.12; }
  .tp-search-box form { flex-direction: column; }
  .tp-search-submit { min-height: 52px; }
}


@media (max-width: 380px) {
  .tp-hero-primary { min-height: 390px; }
  .tp-hero-title { font-size: 26px; }
  .tp-hero-secondary .tp-hero-title { font-size: 21px; }
  .tp-related .tp-card { grid-template-columns: 105px minmax(0,1fr); gap: 12px; }
  .tp-related .tp-card-title { font-size: 18px; }
}


/* ==========================================================
   Correções v1.3 — textos visíveis, sem sobreposição ou corte
   ========================================================== */
body.tp-site .tp-hero-primary,
body.tp-site .tp-hero-secondary {
  isolation: isolate !important;
  contain: paint !important;
}
body.tp-site .tp-hero-primary > a,
body.tp-site .tp-hero-secondary > a {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  width: 100% !important;
  height: 100% !important;
  min-height: inherit !important;
  overflow: hidden !important;
  color: #fff !important;
}
body.tp-site .tp-cover-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
body.tp-site .tp-cover-shade {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 18%, rgba(0,0,0,.22) 48%, rgba(0,0,0,.94) 100%) !important;
}
body.tp-site .tp-hero-content {
  position: relative !important;
  inset: auto !important;
  z-index: 3 !important;
  display: block !important;
  width: 100% !important;
  margin-top: auto !important;
  color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
body.tp-site .tp-hero-title,
body.tp-site .tp-hero-title a,
body.tp-site .tp-news-title,
body.tp-site .tp-news-title a,
body.tp-site .tp-card-title,
body.tp-site .tp-card-title a,
body.tp-site .tp-related .tp-card-title,
body.tp-site .tp-related .tp-card-title a {
  position: relative !important;
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
  white-space: normal !important;
  text-overflow: clip !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  -webkit-box-orient: initial !important;
  transform: none !important;
}
body.tp-site .tp-hero-title,
body.tp-site .tp-hero-title a {
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.72) !important;
}
body.tp-site .tp-card-body,
body.tp-site .tp-news-row > div {
  position: relative !important;
  z-index: 2 !important;
  min-width: 0 !important;
  width: 100% !important;
  overflow: visible !important;
}
body.tp-site .tp-card-media,
body.tp-site .tp-news-thumb {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
}

@media (max-width: 700px) {
  body.tp-site .tp-hero-content { padding: 22px 20px !important; }
  body.tp-site .tp-hero-title {
    font-size: clamp(28px, 8vw, 38px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.025em !important;
  }
  body.tp-site .tp-hero-secondary .tp-hero-title {
    font-size: clamp(22px, 6.4vw, 28px) !important;
    line-height: 1.06 !important;
  }

  /* Últimas notícias: imagem em cima, texto inteiro embaixo. */
  body.tp-site .tp-news-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 13px !important;
    width: 100% !important;
    align-items: start !important;
    overflow: visible !important;
  }
  body.tp-site .tp-news-thumb {
    aspect-ratio: 16 / 10 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }
  body.tp-site .tp-news-title,
  body.tp-site .tp-news-title a {
    font-size: 23px !important;
    line-height: 1.12 !important;
    letter-spacing: -.015em !important;
    margin: 0 0 9px !important;
  }

  /* Blocos de editoria e Leia também: uma matéria por linha. */
  body.tp-site .tp-card-grid,
  body.tp-site .tp-related .tp-card-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px !important;
    width: 100% !important;
  }
  body.tp-site .tp-card,
  body.tp-site .tp-related .tp-card {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 0 22px !important;
    overflow: visible !important;
    border-bottom: 1px solid var(--tp-line) !important;
  }
  body.tp-site .tp-card-media,
  body.tp-site .tp-related .tp-card-media {
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }
  body.tp-site .tp-card-body,
  body.tp-site .tp-related .tp-card-body {
    display: block !important;
    width: 100% !important;
    padding: 13px 0 0 !important;
  }
  body.tp-site .tp-card-title,
  body.tp-site .tp-card-title a,
  body.tp-site .tp-related .tp-card-title,
  body.tp-site .tp-related .tp-card-title a {
    font-size: 22px !important;
    line-height: 1.13 !important;
    letter-spacing: -.015em !important;
    margin: 0 0 8px !important;
  }
  body.tp-site .tp-related .tp-section-title {
    font-size: 38px !important;
    line-height: 1 !important;
  }
}

@media (max-width: 440px) {
  body.tp-site .tp-news-title,
  body.tp-site .tp-news-title a,
  body.tp-site .tp-card-title,
  body.tp-site .tp-card-title a,
  body.tp-site .tp-related .tp-card-title,
  body.tp-site .tp-related .tp-card-title a {
    font-size: 21px !important;
    line-height: 1.14 !important;
  }
}

/* Build v1.4.0 — 20260716210332 */
