/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #FAFAF8;
  color: #111111;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TOKENS ===== */
:root {
  --red: #C41230;
  --red-dark: #9B0E26;
  --black: #111111;
  --graphite: #2C2C2C;
  --mid: #555555;
  --light: #888888;
  --rule: #D8D8D4;
  --rule-light: #EBEBEA;
  --bg: #FAFAF8;
  --bg-warm: #F4F3EF;
  --bg-dark: #141414;
  --gold: #A8894A;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: repeating-linear-gradient(
    -45deg,
    #E0DFDB,
    #E0DFDB 1px,
    #EDECEA 1px,
    #EDECEA 9px
  );
  color: #999;
  font-size: 11px;
  font-family: var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
  line-height: 1.5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
}
.img-wrap { position: relative; overflow: hidden; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--black);
  color: #AAAAAA;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #2A2A2A;
}
.top-bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 36px;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-date { color: #777; }
.top-bar-tagline { color: #999; border-left: 1px solid #333; padding-left: 20px; }
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-links { display: flex; align-items: center; gap: 16px; }
.top-bar-links a {
  color: #AAAAAA;
  transition: color 0.2s;
  font-size: 11px;
}
.top-bar-links a:hover { color: #fff; }
.top-bar-links a.highlight {
  color: var(--red);
  font-weight: 600;
}
.top-bar-links a.highlight:hover { color: #e52040; }
.top-bar-socials { display: flex; align-items: center; gap: 12px; border-left: 1px solid #333; padding-left: 20px; }
.top-bar-socials a {
  color: #666;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
  transition: color 0.2s;
}
.top-bar-socials a:hover { color: #fff; }
.top-bar-search-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  margin-left: 8px;
  transition: color 0.2s;
  border-left: 1px solid #333;
  padding-left: 20px;
}
.top-bar-search-btn:hover { color: #fff; }
.top-bar-search-btn svg { width: 14px; height: 14px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--bg);
  padding: 0 24px;
  border-bottom: 2px solid var(--black);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 0 18px;
  gap: 24px;
}
.header-left { display: flex; align-items: center; gap: 16px; }
.header-right { display: flex; align-items: center; gap: 16px; justify-content: flex-end; }

.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; cursor: pointer; flex-shrink: 0;
}
.hamburger span {
  display: block; height: 1.5px; background: var(--black);
  transition: all 0.3s;
}
.hamburger:hover span { background: var(--red); }

.site-logo {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.logo-em {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2px;
}
.logo-main {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-evidencia { color: var(--black); }
.logo-rule {
  width: 100%;
  height: 2px;
  background: var(--red);
  margin-top: 6px;
}
.logo-sub {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 6px;
}

.btn-subscribe {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-subscribe:hover { background: var(--red-dark); }

.header-search {
  display: flex; align-items: center; gap: 8px;
  color: var(--mid); font-size: 12px; cursor: pointer;
  transition: color 0.2s;
  border: 1px solid var(--rule);
  padding: 8px 14px;
}
.header-search:hover { color: var(--black); border-color: var(--black); }
.header-search svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== MAIN NAV ===== */
.main-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-inner a {
  display: block;
  padding: 13px 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--graphite);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-inner a:hover { color: var(--red); }
.nav-inner a.active { color: var(--red); border-bottom-color: var(--red); }
.nav-inner a.nav-tv {
  color: var(--mid);
  border-left: 1px solid var(--rule);
  margin-left: auto;
}
.nav-inner a.nav-tv:hover { color: var(--red); }

/* ===== HERO ===== */
.hero {
  max-width: 1320px;
  margin: 40px auto;
  padding: 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 40px;
}
.hero-main {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.hero-img-wrap .img-placeholder {
  font-size: 12px;
  gap: 6px;
}
.hero-category {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 18px;
  margin-bottom: 10px;
}
.hero-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 14px;
  text-wrap: pretty;
}
.hero-title:hover { color: var(--red); cursor: pointer; }
.hero-standfirst {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--graphite);
  margin-bottom: 16px;
  text-wrap: pretty;
  border-left: 3px solid var(--rule);
  padding-left: 16px;
}
.hero-meta {
  font-size: 11px;
  color: var(--light);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-meta-dot { color: var(--rule); }
.hero-meta a { color: var(--mid); font-weight: 600; transition: color 0.2s; }
.hero-meta a:hover { color: var(--red); }

/* Secondary column */
.hero-secondary {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--rule);
  padding-left: 32px;
}
.sec-story {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-light);
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 14px;
  align-items: start;
}
.sec-story:first-child { padding-top: 0; }
.sec-story:last-child { border-bottom: none; padding-bottom: 0; }
.sec-img {
  width: 90px;
  height: 68px;
  flex-shrink: 0;
  position: relative;
}
.sec-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 7px;
  display: block;
}
.sec-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
  text-wrap: pretty;
  transition: color 0.2s;
  cursor: pointer;
}
.sec-title:hover { color: var(--red); }
.sec-meta { font-size: 10.5px; color: var(--light); margin-top: 8px; }

/* Quick highlights strip */
.highlights-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-bottom: 3px solid var(--black);
}
.highlight-item {
  padding: 16px 20px;
  border-right: 1px solid var(--rule);
  transition: background 0.2s;
  cursor: pointer;
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: var(--bg-warm); }
.highlight-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.highlight-label::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1.5px;
  background: var(--red);
}
.highlight-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--black);
  text-wrap: pretty;
}

/* ===== SECTION HEADER ===== */
.section-hdr {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--black);
}
.section-hdr-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
}
.section-hdr-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.section-hdr-link {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.section-hdr-link:hover { color: var(--red-dark); }
.section-hdr-link::after { content: '→'; }

/* ===== COLUNISTAS ===== */
.colunistas-section {
  background: var(--bg-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 48px 0;
  margin: 0 0 56px;
}
.colunistas-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.colunistas-grid {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.colunistas-grid::-webkit-scrollbar { display: none; }
.colunista-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 32px;
  border-right: 1px solid var(--rule);
  flex: 1;
  min-width: 160px;
  transition: background 0.2s;
  cursor: pointer;
}
.colunista-card:last-child { border-right: none; }
.colunista-card:hover { background: rgba(0,0,0,0.03); }
.colunista-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--rule);
  flex-shrink: 0;
  margin-bottom: 14px;
  background: #E0DFDB;
}
.colunista-avatar-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: #999;
}
.colunista-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.colunista-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.2;
}
.colunista-blurb {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.5;
}

/* ===== EDITORIAL GRID ===== */
.editorial-section {
  max-width: 1320px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.editorial-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.ed-block { }
.ed-block-hdr {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--black);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ed-block-more {
  font-size: 10px;
  color: var(--light);
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: color 0.2s;
}
.ed-block-more:hover { color: var(--red); }
.ed-main-story { margin-bottom: 18px; }
.ed-main-img {
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
  margin-bottom: 14px;
}
.ed-main-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 7px;
  display: block;
}
.ed-main-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.2s;
  text-wrap: pretty;
}
.ed-main-title:hover { color: var(--red); }
.ed-main-desc {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.6;
}
.ed-mini {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--rule-light);
  align-items: start;
}
.ed-mini-img { width: 72px; height: 54px; position: relative; }
.ed-mini-cat {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
  display: block;
}
.ed-mini-title {
  font-family: var(--serif);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
  cursor: pointer;
  transition: color 0.2s;
}
.ed-mini-title:hover { color: var(--red); }
.ed-mini-date { font-size: 10px; color: var(--light); margin-top: 5px; }

/* ===== EM EVIDÊNCIA SPECIAL ===== */
.em-evidencia-section {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: #F7F5F0;
  padding: 56px 0;
  margin-bottom: 64px;
}
.em-evidencia-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.em-ev-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.em-ev-main { }
.em-ev-main-img {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  margin-bottom: 20px;
}
.em-ev-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 5px 12px;
  margin-bottom: 14px;
}
.em-ev-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.12;
  color: var(--black);
  margin-bottom: 14px;
  cursor: pointer;
  transition: color 0.2s;
  text-wrap: pretty;
}
.em-ev-title:hover { color: var(--red); }
.em-ev-desc {
  font-size: 16px;
  color: var(--graphite);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
  text-wrap: pretty;
}
.em-ev-meta { font-size: 11px; color: var(--light); }
.em-ev-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 4px;
}
.em-ev-side-hdr {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
}
.em-ev-side-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-light);
  cursor: pointer;
}
.em-ev-side-item:last-child { border-bottom: none; }
.em-ev-side-cat {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
  display: block;
}
.em-ev-side-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  transition: color 0.2s;
  text-wrap: pretty;
}
.em-ev-side-item:hover .em-ev-side-title { color: var(--red); }
.em-ev-side-meta { font-size: 10px; color: var(--light); margin-top: 7px; }

/* ===== OPINIÃO ===== */
.opiniao-section {
  max-width: 1320px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.opiniao-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}
.opiniao-card {
  padding: 28px 28px;
  border-right: 1px solid var(--rule);
  transition: background 0.2s;
  cursor: pointer;
  background: #fff;
}
.opiniao-card:last-child { border-right: none; }
.opiniao-card:hover { background: var(--bg-warm); }
.opiniao-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.opiniao-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #E0DFDB;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: #999;
  flex-shrink: 0;
  border: 1.5px solid var(--rule);
}
.opiniao-author-info { }
.opiniao-author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}
.opiniao-author-role {
  font-size: 10.5px;
  color: var(--light);
  letter-spacing: 0.04em;
}
.opiniao-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 10px;
  text-wrap: pretty;
}
.opiniao-excerpt {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.opiniao-date { font-size: 10.5px; color: var(--light); }
.opiniao-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-light);
  text-align: center;
}
.btn-outline {
  display: inline-block;
  padding: 11px 28px;
  border: 1.5px solid var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--black); color: #fff; }

/* ===== TV ===== */
.tv-section {
  background: var(--bg-dark);
  padding: 64px 0;
  margin-bottom: 64px;
}
.tv-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.tv-section .section-hdr-title { color: #fff; }
.tv-section .section-hdr { border-bottom-color: var(--red); }
.tv-section .section-hdr-sub { color: #666; }
.tv-section .section-hdr-link { color: #999; }
.tv-section .section-hdr-link:hover { color: var(--red); }
.tv-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}
.tv-main-video {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}
.tv-main-video .img-placeholder {
  background-image: repeating-linear-gradient(
    -45deg, #1a1a1a, #1a1a1a 1px, #222 1px, #222 9px
  );
  color: #444;
}
.tv-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(196,18,48,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.tv-main-video:hover .tv-play-btn {
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.08);
}
.tv-play-btn svg { width: 24px; height: 24px; fill: #fff; margin-left: 4px; }
.tv-main-info { padding-top: 18px; }
.tv-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}
.tv-main-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
}
.tv-main-title:hover { color: #ddd; }
.tv-main-desc { font-size: 14px; color: #888; line-height: 1.6; margin-bottom: 16px; }
.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid #444;
  color: #ccc;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn-youtube:hover { border-color: var(--red); color: var(--red); }
.tv-sidebar { display: flex; flex-direction: column; gap: 0; }
.tv-ep {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #222;
  cursor: pointer;
  align-items: start;
}
.tv-ep:first-child { padding-top: 0; }
.tv-ep:last-child { border-bottom: none; }
.tv-ep-img { width: 120px; height: 70px; position: relative; }
.tv-ep-img .img-placeholder { background-image: repeating-linear-gradient(-45deg,#1a1a1a,#1a1a1a 1px,#222 1px,#222 9px); color: #444; }
.tv-ep-num { font-size: 10px; color: #555; margin-bottom: 5px; display: block; letter-spacing: 0.08em; font-weight: 500; }
.tv-ep-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: #ccc;
  line-height: 1.35;
  transition: color 0.2s;
}
.tv-ep:hover .tv-ep-title { color: #fff; }
.tv-ep-date { font-size: 10px; color: #555; margin-top: 6px; }

/* ===== EDIÇÕES ===== */
.edicoes-section {
  max-width: 1320px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.edicoes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.edicao-card {
  cursor: pointer;
  transition: transform 0.2s;
}
.edicao-card:hover { transform: translateY(-4px); }
.edicao-cover {
  aspect-ratio: 3/4;
  position: relative;
  margin-bottom: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  overflow: hidden;
}
.edicao-cover-inner {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  padding: 16px;
}
.edicao-cover-placeholder {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg,#D8D7D3,#D8D7D3 1px,#E5E4E0 1px,#E5E4E0 9px);
}
.edicao-num {
  position: relative;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
  z-index: 1;
}
.edicao-cover-title {
  position: relative;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.25;
  z-index: 1;
}
.edicao-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.edicao-date { font-size: 11px; color: var(--light); margin-bottom: 10px; }
.btn-edicao {
  display: block;
  width: 100%;
  padding: 8px;
  border: 1px solid var(--rule);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--mid);
  transition: all 0.2s;
}
.btn-edicao:hover { border-color: var(--red); color: var(--red); }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  border-top: 2px solid var(--black);
  border-bottom: 1px solid var(--rule);
  background: #fff;
  padding: 64px 24px;
  margin-bottom: 0;
}
.newsletter-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.nl-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.nl-eyebrow::before, .nl-eyebrow::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  max-width: 60px;
  background: var(--red);
  opacity: 0.4;
}
.nl-title {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 14px;
  text-wrap: pretty;
}
.nl-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 32px;
}
.nl-form { display: flex; flex-direction: column; gap: 14px; }
.nl-input-row {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--rule);
  overflow: hidden;
  transition: border-color 0.2s;
}
.nl-input-row:focus-within { border-color: var(--black); }
.nl-input {
  flex: 1;
  padding: 14px 20px;
  font-size: 14px;
  font-family: var(--sans);
  border: none;
  outline: none;
  background: var(--bg);
  color: var(--black);
}
.nl-input::placeholder { color: var(--light); }
.nl-btn {
  padding: 14px 28px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.nl-btn:hover { background: var(--red-dark); }
.nl-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}
.nl-check input[type="checkbox"] {
  width: 14px; height: 14px; margin-top: 2px; flex-shrink: 0;
  accent-color: var(--red);
}
.nl-check label {
  font-size: 11.5px;
  color: var(--light);
  line-height: 1.5;
  cursor: pointer;
}
.nl-check label a { color: var(--mid); text-decoration: underline; }

/* ===== FOOTER ===== */
.site-footer {
  background: #101010;
  color: #888;
  padding: 60px 24px 0;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 320px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #222;
}
.footer-brand { }
.footer-logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.footer-logo-em {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin: 16px 0 24px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  border: 1px solid #2A2A2A;
  padding: 7px 12px;
  transition: all 0.2s;
}
.footer-social-link:hover { color: #fff; border-color: #555; }
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #222;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: #666;
  transition: color 0.2s;
}
.footer-links a:hover { color: #ccc; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #444;
  gap: 16px;
}
.footer-bottom a { color: #444; transition: color 0.2s; }
.footer-bottom a:hover { color: #888; }
.footer-bottom-links { display: flex; gap: 20px; }

/* ===== MOBILE NAV ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 320px;
  background: #fff;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
}
.drawer-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--mid);
  font-size: 22px;
  transition: color 0.2s;
}
.drawer-close:hover { color: var(--red); }
.drawer-nav { padding: 8px 0; }
.drawer-nav a {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--graphite);
  border-bottom: 1px solid var(--rule-light);
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
}
.drawer-nav a:hover { color: var(--red); background: var(--bg-warm); }
.drawer-subscribe {
  margin: 20px 24px;
  padding: 14px;
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-box {
  width: 100%;
  max-width: 720px;
  padding: 0 24px;
}
.search-input-row {
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 3px solid var(--red);
}
.search-input {
  flex: 1;
  padding: 20px 24px;
  font-size: 22px;
  font-family: var(--serif);
  border: none;
  outline: none;
  color: var(--black);
}
.search-input::placeholder { color: #bbb; }
.search-close {
  padding: 20px 20px;
  color: var(--mid);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
}
.search-close:hover { color: var(--red); }
.search-hint {
  margin-top: 20px;
  font-size: 12px;
  color: #666;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--sans);
}

/* ===== SCROLL TICKER ===== */
.ticker-bar {
  background: var(--red);
  padding: 0;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.ticker-label {
  background: var(--red-dark);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  z-index: 1;
}
.ticker-track {
  display: flex;
  animation: ticker 40s linear infinite;
  gap: 0;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  height: 36px;
  border-right: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}
.ticker-item::before {
  content: '►';
  font-size: 7px;
  margin-right: 10px;
  opacity: 0.6;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== UTILITIES ===== */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .editorial-blocks { grid-template-columns: 1fr 1fr; }
  .edicoes-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-secondary { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 28px; }
  .highlights-strip { grid-template-columns: repeat(2, 1fr); }
  .em-ev-grid { grid-template-columns: 1fr; }
  .opiniao-grid { grid-template-columns: 1fr 1fr; }
  .tv-grid { grid-template-columns: 1fr; }
  .edicoes-grid { grid-template-columns: repeat(3, 1fr); }
  .top-bar-tagline { display: none; }
}
@media (max-width: 700px) {
  .top-bar { display: none; }
  .editorial-blocks { grid-template-columns: 1fr; }
  .opiniao-grid { grid-template-columns: 1fr; }
  .edicoes-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 30px; }
  .highlights-strip { grid-template-columns: 1fr 1fr; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .logo-main { font-size: 28px; }
  .logo-sub { display: none; }
  .header-right .btn-subscribe { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .colunista-card { min-width: 140px; padding: 20px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .nl-input-row { flex-direction: column; }
  .nl-btn { width: 100%; }
  .em-ev-title { font-size: 26px; }
}


/* ===== ARTICLE PAGE ===== */
.article-page {
  background: var(--bg);
}
.article-hero {
  max-width: 980px;
  margin: 54px auto 30px;
  padding: 0 24px;
}
.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.article-kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
}
.article-title {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--black);
  text-wrap: pretty;
  margin-bottom: 24px;
}
.article-standfirst {
  font-size: 21px;
  line-height: 1.65;
  color: var(--graphite);
  font-weight: 300;
  text-wrap: pretty;
  border-left: 4px solid var(--red);
  padding-left: 22px;
  margin-bottom: 28px;
}
.article-meta-panel {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 26px;
  align-items: center;
}
.article-author-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 800;
  color: var(--red);
  background: #fff;
  flex-shrink: 0;
}
.article-byline {
  font-size: 13px;
  color: var(--black);
}
.article-author-role {
  font-size: 11px;
  color: var(--light);
  margin-top: 2px;
}
.article-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  justify-content: flex-end;
  font-size: 11px;
  color: var(--light);
}
.article-meta-list span {
  white-space: nowrap;
}
.article-main-figure {
  max-width: 1180px;
  margin: 0 auto 44px;
  padding: 0 24px;
}
.article-main-image {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  border-bottom: 4px solid var(--black);
}
.article-main-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0 0;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--light);
}
.article-main-figure figcaption strong {
  color: var(--mid);
  font-weight: 600;
  white-space: nowrap;
}
.article-shell {
  max-width: 1120px;
  margin: 0 auto 66px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 150px minmax(0, 760px);
  gap: 52px;
  align-items: start;
}
.article-share {
  position: sticky;
  top: 72px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}
.article-share span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 4px;
}
.article-share a {
  border: 1px solid var(--rule);
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite);
  background: #fff;
  transition: all 0.2s;
}
.article-share a:hover {
  border-color: var(--red);
  color: var(--red);
}
.article-content {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.82;
  color: #1c1c1c;
}
.article-content p {
  margin-bottom: 28px;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 38px 0 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.article-tags a {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--rule);
  padding: 7px 10px;
  color: var(--mid);
  background: #fff;
}
.article-credit-box {
  font-family: var(--sans);
  background: var(--bg-warm);
  border-left: 3px solid var(--red);
  padding: 18px 20px;
  margin: 28px 0;
}
.article-credit-box div {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.article-credit-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--mid);
}
.article-author-card {
  margin-top: 36px;
  border: 1px solid var(--rule);
  background: #fff;
  padding: 24px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  font-family: var(--sans);
}
.article-author-avatar-large {
  width: 70px;
  height: 70px;
  font-size: 22px;
}
.article-author-card h2 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 8px;
}
.article-author-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--mid);
}
.related-section {
  max-width: 1320px;
  margin: 0 auto 70px;
  padding: 0 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
  background: #fff;
}
.related-card {
  padding: 24px;
  border-right: 1px solid var(--rule);
}
.related-card:last-child { border-right: none; }
.related-card span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.related-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
  margin: 10px 0;
}
.related-card p {
  font-size: 11px;
  color: var(--light);
}

/* ===== PUBLICATION ADMIN MODEL ===== */
.publication-admin-page {
  max-width: 1320px;
  margin: 0 auto 70px;
  padding: 0 24px;
}
.publication-admin-hero {
  max-width: 760px;
  margin: 54px 0 34px;
}
.publication-admin-hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  margin-bottom: 16px;
}
.publication-admin-hero p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--mid);
}
.publication-form-shell {
  background: #fff;
  border: 1px solid var(--rule);
  border-bottom: 4px solid var(--black);
}
.publication-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
}
.publication-form-main,
.publication-form-side {
  padding: 28px;
}
.publication-form-side {
  border-left: 1px solid var(--rule);
  background: var(--bg-warm);
}
.publication-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 18px;
}
.publication-form-grid input,
.publication-form-grid textarea {
  width: 100%;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--black);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  padding: 13px 14px;
  outline: none;
}
.publication-form-grid textarea {
  min-height: 100px;
  resize: vertical;
}
.publication-form-grid .textarea-large {
  min-height: 240px;
}
.publication-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.publication-box {
  border: 1px solid var(--rule);
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
}
.publication-box h2 {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 18px;
}
.publication-box-seo {
  border-top: 4px solid var(--red);
}
.publication-box p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--mid);
}

@media (max-width: 900px) {
  .article-meta-panel,
  .article-shell,
  .publication-form-grid {
    grid-template-columns: 1fr;
  }
  .article-meta-list {
    justify-content: flex-start;
  }
  .article-share {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .article-share span {
    width: 100%;
  }
  .related-grid,
  .publication-two-cols {
    grid-template-columns: 1fr;
  }
  .publication-form-side {
    border-left: none;
    border-top: 1px solid var(--rule);
  }
}

@media (max-width: 700px) {
  .article-hero {
    margin-top: 34px;
  }
  .article-title {
    letter-spacing: -0.03em;
  }
  .article-standfirst {
    font-size: 17px;
    padding-left: 16px;
  }
  .article-main-figure figcaption {
    flex-direction: column;
    gap: 4px;
  }
  .article-content {
    font-size: 18px;
    line-height: 1.75;
  }
  .article-author-card {
    grid-template-columns: 1fr;
  }
}


/* ===== SISTEMA / ADMIN PASSADA 3 ===== */
.system-page,.article-system-page{max-width:1320px;margin:0 auto;padding:48px 24px 72px}.system-hero{border-bottom:2px solid var(--black);padding-bottom:28px;margin-bottom:28px}.system-kicker{display:inline-block;font-size:10px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--red);margin-bottom:12px}.system-hero h1,.columnist-profile h1,.article-system-header h1{font-family:var(--serif);font-size:46px;line-height:1.08;letter-spacing:-.02em;margin-bottom:14px}.system-hero p,.columnist-profile p,.article-system-header p{font-size:17px;line-height:1.7;color:var(--graphite);max-width:820px}.system-filter-card{background:#fff;border:1px solid var(--rule);padding:18px;margin-bottom:28px}.system-filter-form{display:grid;grid-template-columns:1fr 260px 140px;gap:12px}.system-filter-form input,.system-filter-form select,.system-filter-form button,.admin-form input,.admin-form textarea,.admin-form select{font-family:var(--sans);font-size:14px;border:1px solid var(--rule);background:#fff;padding:12px 14px;color:var(--black)}.system-filter-form button,.admin-submit,.admin-btn{background:var(--black);color:#fff;border:0;font-weight:700;text-transform:uppercase;letter-spacing:.08em;font-size:11px;text-align:center}.opinion-system-grid,.columnists-system-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.opinion-system-card,.columnist-system-card{background:#fff;border:1px solid var(--rule);transition:background .2s,transform .2s}.opinion-system-card:hover,.columnist-system-card:hover{background:var(--bg-warm);transform:translateY(-2px)}.opinion-system-link,.columnist-system-card a{display:block;padding:24px}.opinion-system-author{display:flex;align-items:center;gap:12px;margin-bottom:16px}.opinion-system-avatar,.columnist-system-photo,.columnist-profile-photo{width:54px;height:54px;border-radius:50%;background:var(--bg-warm);border:1px solid var(--rule);display:flex;align-items:center;justify-content:center;font-family:var(--serif);font-weight:800;color:var(--red)}.opinion-system-author strong{display:block;font-size:13px}.opinion-system-author span,.columnist-system-card span{display:block;font-size:11px;color:var(--light);margin-top:3px}.opinion-system-card h2,.columnist-system-card h2{font-family:var(--serif);font-size:22px;line-height:1.25;margin-bottom:10px}.opinion-system-card p,.columnist-system-card p{font-size:14px;line-height:1.65;color:var(--mid)}.opinion-system-card time{display:block;font-size:11px;color:var(--light);margin-top:14px}.system-empty{grid-column:1/-1;border:1px solid var(--rule);background:#fff;padding:28px;text-align:center;color:var(--mid)}.columnist-profile{display:grid;grid-template-columns:140px 1fr;gap:28px;align-items:center;border-bottom:2px solid var(--black);padding-bottom:34px;margin-bottom:30px}.columnist-profile-photo{width:140px;height:140px;font-size:44px}.columnist-profile-heading{margin-top:0}.article-system-wrap{max-width:880px;margin:0 auto}.article-system-header{border-bottom:1px solid var(--rule);padding-bottom:24px;margin-bottom:28px}.article-system-byline{display:flex;flex-wrap:wrap;gap:10px 14px;margin-top:18px;font-size:12px;color:var(--light)}.article-system-byline a{font-weight:700;color:var(--red)}.article-system-figure{margin:0 0 30px}.article-system-figure img{width:100%;height:auto}.article-system-figure figcaption{font-size:11px;color:var(--light);margin-top:8px}.article-system-content p{font-family:var(--serif);font-size:21px;line-height:1.78;margin-bottom:24px;color:#1f1f1f}.article-author-box{display:flex;gap:14px;align-items:center;border-top:2px solid var(--black);margin-top:38px;padding-top:20px}.article-author-box strong{display:block}.article-author-box span{display:block;color:var(--mid);font-size:13px;line-height:1.5;margin-top:4px}.admin-body{background:#f4f3ef;color:#111}.admin-shell{max-width:1180px;margin:0 auto;padding:34px 22px 70px}.admin-top{display:flex;justify-content:space-between;gap:20px;align-items:flex-end;border-bottom:2px solid #111;padding-bottom:20px;margin-bottom:22px}.admin-top span{font-size:10px;text-transform:uppercase;letter-spacing:.16em;color:var(--red);font-weight:800}.admin-top h1{font-family:var(--serif);font-size:38px;line-height:1.1}.admin-top nav{display:flex;gap:10px;flex-wrap:wrap}.admin-top nav a,.admin-btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;background:#111;color:#fff;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.admin-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-bottom:20px}.admin-card{background:#fff;border:1px solid var(--rule);padding:24px}.admin-card strong{display:block;font-family:var(--serif);font-size:42px;color:var(--red)}.admin-card span{display:block;font-size:13px;color:var(--mid)}.admin-panel,.admin-form{background:#fff;border:1px solid var(--rule);padding:24px}.admin-panel-head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:18px}.admin-panel-head h2{font-family:var(--serif);font-size:24px}.admin-actions-row{display:flex;gap:12px;flex-wrap:wrap}.admin-table{width:100%;border-collapse:collapse;font-size:13px}.admin-table th{text-align:left;font-size:10px;text-transform:uppercase;letter-spacing:.12em;color:var(--light);border-bottom:1px solid var(--rule);padding:10px}.admin-table td{border-bottom:1px solid var(--rule-light);padding:12px 10px;vertical-align:top}.admin-table-actions{display:flex;gap:10px;justify-content:flex-end}.admin-table-actions a{color:var(--red);font-weight:700}.admin-form{display:grid;grid-template-columns:1fr 1fr;gap:16px}.admin-form-wide{grid-template-columns:1fr 1fr}.admin-form label{display:flex;flex-direction:column;gap:7px;font-size:12px;font-weight:800;color:var(--graphite)}.admin-form textarea{resize:vertical}.admin-form label:has(textarea),.admin-form .admin-check,.admin-submit{grid-column:1/-1}.admin-check{flex-direction:row!important;align-items:center}.admin-submit{padding:14px 20px;cursor:pointer}.admin-submit:hover,.admin-btn:hover,.admin-top nav a:hover{background:var(--red)}
@media(max-width:800px){.system-filter-form,.opinion-system-grid,.columnists-system-grid,.admin-cards,.admin-form,.admin-form-wide{grid-template-columns:1fr}.system-hero h1,.columnist-profile h1,.article-system-header h1{font-size:32px}.columnist-profile{grid-template-columns:1fr}.admin-top{align-items:flex-start;flex-direction:column}.admin-table{display:block;overflow-x:auto}.article-system-content p{font-size:18px}.columnist-profile-photo{width:100px;height:100px;font-size:32px}}

/* ===== ADMIN LOGIN / PASSADA 4 ===== */
.admin-login-shell{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:32px;background:#f4f3ef}.admin-login-card{width:100%;max-width:440px;background:#fff;border:1px solid var(--rule);padding:34px;box-shadow:0 18px 60px rgba(0,0,0,.08)}.admin-login-kicker{display:block;font-size:10px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:var(--red);margin-bottom:10px}.admin-login-card h1{font-family:var(--serif);font-size:34px;line-height:1.08;margin-bottom:12px}.admin-login-card p{font-size:14px;line-height:1.6;color:var(--mid);margin-bottom:22px}.admin-login-form{display:grid;gap:14px}.admin-login-form label{display:grid;gap:7px;font-size:12px;font-weight:800;color:var(--graphite)}.admin-login-form input{font-family:var(--sans);font-size:15px;border:1px solid var(--rule);background:#fff;padding:13px 14px;color:var(--black)}.admin-login-form button{padding:14px 20px;background:#111;color:#fff;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.1em}.admin-login-form button:hover{background:var(--red)}.admin-alert{background:#fff1f3;border:1px solid #f0b7c1;color:#8b1026;padding:12px 14px;font-size:13px;margin-bottom:16px}.admin-user-line{font-size:12px!important;color:var(--mid)!important;margin-top:8px;text-transform:none!important;letter-spacing:0!important;font-weight:500!important}.admin-table-actions form{display:inline}.admin-table-actions button{color:var(--red);font-weight:700;font-size:13px;background:transparent;border:0;padding:0;cursor:pointer;font-family:var(--sans)}.admin-table-actions button:hover{text-decoration:underline}.admin-status-list{display:grid;gap:10px}.admin-status-ok,.admin-status-error{padding:14px 16px;border:1px solid var(--rule);background:#fff;font-size:14px}.admin-status-ok strong{color:#177245}.admin-status-error strong{color:#a20f2c}

/* ===== PASSADA 5 — MATÉRIAS GERAIS ===== */
.admin-cards-three { grid-template-columns: repeat(3, 1fr); }
.admin-filter-panel { margin-bottom: 18px; }
.admin-filter-form { display: grid; grid-template-columns: 1fr 220px 180px 130px; gap: 10px; }
.admin-filter-form input,
.admin-filter-form select,
.admin-filter-form button { font-family: var(--sans); font-size: 14px; border: 1px solid var(--rule); background: #fff; padding: 12px 14px; color: var(--black); }
.admin-filter-form button { background: var(--black); color: #fff; border: 0; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.admin-filter-form button:hover { background: var(--red); }
.news-system-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.news-system-card { background: #fff; border: 1px solid var(--rule); transition: background .2s, transform .2s; }
.news-system-card:hover { background: var(--bg-warm); transform: translateY(-2px); }
.news-system-card a { display: block; padding: 22px; }
.news-system-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; margin-bottom: 16px; background: var(--bg-warm); }
.news-system-card span { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.news-system-card h2 { font-family: var(--serif); font-size: 24px; line-height: 1.18; margin-bottom: 10px; color: var(--black); }
.news-system-card p { font-size: 14px; line-height: 1.65; color: var(--mid); }
.news-system-card time { display: block; margin-top: 14px; font-size: 11px; color: var(--light); }
.article-credit-box { align-items: flex-start; }
.article-credit-box div { width: 100%; }
@media(max-width:900px){.admin-cards-three,.admin-filter-form,.news-system-grid{grid-template-columns:1fr}.admin-table-actions{justify-content:flex-start;flex-wrap:wrap}}

/* ===== PASSADA 6 — OPERAÇÃO EDITORIAL ===== */
.admin-cards-four { grid-template-columns: repeat(4, 1fr); }
.archive-page { padding-top: 48px; }
.edicao-cover img { width: 100%; height: 100%; object-fit: cover; }
.edition-single { max-width: 980px; margin: 54px auto 80px; padding: 0 24px; }
.edition-single .single-article-header { border-bottom: 2px solid var(--black); padding-bottom: 26px; margin-bottom: 26px; }
.edition-single .single-kicker { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.edition-single h1 { font-family: var(--serif); font-size: clamp(36px, 5vw, 64px); line-height: 1.05; letter-spacing: -.03em; margin-bottom: 16px; }
.edition-single .single-standfirst { font-size: 18px; line-height: 1.7; color: var(--graphite); max-width: 820px; }
.edition-single .single-meta { display: flex; gap: 10px; flex-wrap: wrap; color: var(--light); font-size: 12px; margin-top: 16px; }
.edition-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.single-main-image img { width: 100%; height: auto; box-shadow: 0 12px 40px rgba(0,0,0,.13); }
@media(max-width:900px){.admin-cards-four{grid-template-columns:1fr 1fr}}
@media(max-width:700px){.admin-cards-four{grid-template-columns:1fr}.edition-single{margin-top:34px}.edition-single h1{font-size:34px}}
/* Fotos reais nos cards de colunistas e opinião */
.colunista-avatar-img,
.opiniao-avatar-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}
.admin-feedback {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid currentColor;
  font-size: 15px;
  line-height: 1.45;
}

.admin-feedback strong {
  flex: 0 0 auto;
  font-size: 16px;
}

.admin-feedback--success {
  color: #08764a;
  background: #eaf9f1;
}

.admin-feedback--error {
  color: #a6082a;
  background: #fff0f3;
}

@media (max-width: 720px) {
  .admin-feedback {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
