@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
body, ul, li, p, h1, h2, h3, h4, figure, blockquote, table {
  margin: 0;
  padding: 0;
  list-style: none;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
figure { margin: 0; }

/* === DESIGN TOKENS === */
:root {
  --dark-bg: #20212B;
  --darker-bg: #282A35;
  --accent-green: #4DFA7B;
  --accent-blue: #40b7fc;
  --accent-purple: #7C5076;
  --accent-pink: #c97cbf;
  --nav-text: #40b7fc;

  /* Light theme — blog content */
  --blog-bg: #f4f4f0;
  --article-bg: #ffffff;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a6a;
  --text-muted: #888;
  --border-color: #e2e2e2;
  --callout-bg: #edf6ff;
  --callout-border: #40b7fc;
}

/* === BODY === */
body {
  background-color: var(--blog-bg);
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
}

/* ===========================
   NAV — dark, igual ao site principal
=========================== */
.nav {
  background: var(--dark-bg);
  height: 97px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.pink_home {
  height: 97px;
  background-color: var(--accent-purple);
  width: 8px;
  flex-shrink: 0;
}

.logo {
  margin: auto 30px;
}
.logo > img { height: 38px; }

.logo_small {
  display: none;
  margin: auto 16px;
}
.logo_small > img { height: 32px; }

.barra-nav {
  flex: 1;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.item_menu_parent {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  height: 100%;
  margin: 0;
  padding: 0;
}

.item_menu a {
  font-family: 'Fira Code', monospace;
  font-weight: 500;
  font-size: 12px;
  color: var(--accent-blue);
  padding: 8px 16px;
  margin: 0 4px;
  border-top: 2px solid transparent;
  display: block;
  transition: border-color 0.15s, background 0.15s;
}

.item_menu:hover a {
  border-top: 2px solid var(--accent-pink);
  background: var(--darker-bg);
}

.item_menu.selected a {
  border-top: 2px solid var(--accent-purple);
  background: var(--darker-bg);
}

.menu-abrir,
.menu-fechar {
  display: none;
}

/* Overlay quando menu mobile está aberto */
.menu-ativo::after {
  content: "";
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

/* ===========================
   FOOTER — dark, igual ao site principal
=========================== */
.footer {
  background: var(--dark-bg);
  height: 33px;
}

.footer_links {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 20px;
}

.footer_links a {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: #436FA4;
  transition: color 0.15s;
}

.footer_links a:hover { color: var(--accent-pink); }

.footer_links span {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: #436FA4;
}

/* ===========================
   BLOG MAIN WRAPPER
=========================== */
.blog-main {
  min-height: calc(100vh - 97px - 33px);
}

/* ===========================
   BLOG INDEX
=========================== */
.blog-index-hero {
  background: var(--darker-bg);
  padding: 48px 24px 40px;
  text-align: center;
}

.blog-index-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.blog-index-hero p {
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  color: #999;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 24px;
}

.blog-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.blog-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  margin-bottom: 48px;
}

/* ===========================
   BLOG SECTION HEADING
=========================== */
.blog-section-heading {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
}

.blog-section-heading__label {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-green);
}

.blog-section-heading__desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}

/* ===========================
   BLOG CTA BANNER (índice)
=========================== */
.blog-cta-banner {
  background: var(--darker-bg);
  border-top: 3px solid var(--accent-green);
  margin-top: 40px;
}

.blog-cta-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.blog-cta-banner__text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #ccc;
  margin: 0;
}

@media (max-width: 600px) {
  .blog-cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .blog-section-heading {
    flex-direction: column;
    gap: 4px;
  }
}

/* ===========================
   BLOG CARD (índice)
=========================== */
.blog-card {
  background: var(--article-bg);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.blog-card-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--darker-bg);
  display: block;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category-pill {
  display: inline-block;
  background: var(--accent-green);
  color: var(--text-primary);
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px 4px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.blog-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 18px;
}

.blog-card-meta {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.blog-card-link {
  display: inline-block;
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: 0.04em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.15s;
}

.blog-card-link:hover { color: var(--accent-purple); }

/* ===========================
   ARTICLE PAGE
=========================== */
.article-hero {
  width: 100%;
  overflow: hidden;
  max-height: 440px;
  background: var(--darker-bg);
}

.article-hero img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  will-change: transform;
}

.article-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* Breadcrumb */
.breadcrumb {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--text-muted);
  padding: 22px 0 0;
  display: flex;
  gap: 6px;
  align-items: center;
}

.breadcrumb a {
  color: var(--accent-blue);
  transition: color 0.15s;
}

.breadcrumb a:hover { color: var(--accent-purple); }

/* Article header */
.article-header {
  padding: 32px 0 30px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.article-header .category-pill { margin-bottom: 18px; }

.article-header h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.article-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 20px;
}

.article-meta {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-meta .separator { color: var(--border-color); }

/* ===========================
   ARTICLE BODY — tipografia de leitura
=========================== */
.article-body section {
  margin-bottom: 8px;
}

.article-body p {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 22px;
}

p.lead {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 3px solid var(--accent-green);
}

.article-body h2 {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.22;
  color: var(--text-primary);
  margin: 52px 0 14px;
  letter-spacing: -0.01em;
}

.article-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 32px 0 12px;
}

.article-body ul,
.article-body ol {
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
  margin: 0 0 22px 24px;
}

.article-body li { margin-bottom: 8px; }

/* Callout box */
.callout {
  background: var(--callout-bg);
  border-left: 4px solid var(--accent-blue);
  padding: 18px 22px;
  margin: 28px 0;
  border-radius: 0 3px 3px 0;
}

.callout p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.callout strong { color: var(--text-primary); }

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.stat-card {
  background: var(--darker-bg);
  padding: 22px 16px;
  border-radius: 3px;
  text-align: center;
}

.stat-card .stat-value {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-green);
  display: block;
  margin-bottom: 8px;
}

.stat-card .stat-label {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: #aaa;
  line-height: 1.5;
}

/* Table */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}

.article-body th {
  background: var(--darker-bg);
  color: var(--accent-green);
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-align: left;
}

.article-body td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

.article-body tr:last-child td { border-bottom: none; }
.article-body tr:nth-child(even) td { background: #fafafa; }

/* CTA box */
.cta-box {
  background: var(--darker-bg);
  color: #fff;
  padding: 44px 40px;
  border-radius: 3px;
  margin: 60px 0 0;
  text-align: center;
  border-top: 4px solid var(--accent-green);
}

.cta-box h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 12px;
}

.cta-box p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-button {
  display: inline-block;
  background: var(--accent-green);
  color: var(--text-primary);
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  transition: opacity 0.15s;
}

.cta-button:hover { opacity: 0.88; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .logo { display: none; }
  .logo_small { display: block; }

  .menu-abrir {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    width: 44px;
    height: 97px;
    padding: 10px;
    border: none;
    cursor: pointer;
    background: transparent;
  }

  .barra-nav {
    background: var(--dark-bg);
    width: 90%;
    max-width: 300px;
    position: fixed;
    z-index: 100;
    top: 0;
    right: -90%;
    bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    transition: right 0.3s ease-out;
  }

  .menu-fechar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 20px 16px 0;
    padding: 10px;
    border: none;
    cursor: pointer;
    background: transparent;
  }

  .item_menu_parent {
    margin-top: 12px;
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .item_menu a {
    border-top: none;
    border-left: 2px solid transparent;
    padding: 14px 24px;
    margin: 0;
    width: 100%;
  }

  .item_menu:hover a {
    border-top: none;
    border-left: 2px solid var(--accent-pink);
  }

  .item_menu.selected a {
    border-top: none;
    border-left: 2px solid var(--accent-purple);
  }

  .menu-ativo .barra-nav { right: 0; }
}

@media (max-width: 600px) {
  .article-hero img { height: 300px; will-change: auto; }

  .article-header h1 { font-size: 24px; }

  .article-subtitle { font-size: 16px; }

  .article-body p { font-size: 16px; }

  p.lead { font-size: 17px; }

  .article-body h2 { font-size: 22px; }

  .cta-box { padding: 28px 20px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===========================
   NEWSPAPER INDEX — Masthead
=========================== */
.news-masthead {
  background: var(--dark-bg);
  padding: 14px 24px 70px;
  overflow: hidden;
}

.masthead-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.masthead-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0;
}

.masthead-date,
.masthead-edition {
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.masthead-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.masthead-wordmark-wrap {
  position: absolute;
    top: 150px;
  display: flex;
  align-items: center;
  line-height: 1;
}

.masthead-ghost {
  font-family: 'Playfair Display', serif;
  font-size: clamp(64px, 11vw, 118px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.07);
  letter-spacing: -0.01em;
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
  margin-right: -0.05em;
}

.masthead-brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 800;
  color: var(--accent-green);
  letter-spacing: -0.02em;
  line-height: 1;
}

.masthead-tagline-row {
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: right;
  flex-shrink: 0;
  margin-left: auto;
  align-self: flex-end;
  margin-top: 10px;
}

/* ===========================
   NEWSPAPER INDEX — Editoria Bar
=========================== */
.editoria-bar {
  background: var(--text-primary);
  position: sticky;
  top: 97px;
  z-index: 50;
  border-bottom: 2px solid var(--accent-green);
}

.editoria-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}

.editoria-bar__inner::-webkit-scrollbar { display: none; }

.editoria-bar__sep {
  width: 1px;
  background: #3a3a4a;
  margin: 10px 0;
  flex-shrink: 0;
}

.editoria-btn {
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
  line-height: 1;
}

.editoria-btn:hover { color: #ccc; }

.editoria-btn.active {
  color: var(--accent-green);
  border-bottom-color: var(--accent-green);
}

/* ===========================
   NEWSPAPER INDEX — Editoria Tags
=========================== */
.editoria-tag {
  display: inline-block;
  font-family: 'Fira Code', monospace;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 9px 4px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.editoria-tag--cotidiano      { background: #e8550a; color: #fff; }
.editoria-tag--criatividade   { background: var(--accent-green); color: var(--text-primary); }
.editoria-tag--tech           { background: var(--accent-blue); color: var(--text-primary); }
.editoria-tag--estilo         { background: var(--accent-pink); color: #fff; }
.editoria-tag--cultura        { background: var(--accent-purple); color: #fff; }

/* ===========================
   NEWSPAPER INDEX — Utility
=========================== */
.edtr-hidden { display: none !important; }

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.news-section { /* empty rule, exists for JS targeting */ }

.section-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 36px 0 22px;
  border-top: 2px solid var(--text-primary);
  padding-top: 8px;
}

.section-rule__label {
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-primary);
  white-space: nowrap;
}

.section-rule__line {
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

/* ===========================
   NEWSPAPER INDEX — Featured
=========================== */
.featured-article {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 0;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.featured-thumb {
  display: block;
  overflow: hidden;
  background: var(--darker-bg);
  aspect-ratio: 4 / 3;
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-article:hover .featured-thumb img { transform: scale(1.03); }

.featured-body {
  display: flex;
  flex-direction: column;
  padding-top: 6px;
}

.featured-kicker {
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.13;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.featured-title a {
  color: inherit;
  transition: opacity 0.15s;
}

.featured-title a:hover { opacity: 0.65; }

.featured-excerpt {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex: 1;
}

.featured-meta {
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}

.featured-link {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: 0.04em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.15s;
}

.featured-link:hover { color: var(--accent-purple); }

/* ===========================
   NEWSPAPER INDEX — Four Strip
=========================== */
.four-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
}

.strip-card--empty {
  background: repeating-linear-gradient(
    -45deg,
    #f8f8f5,
    #f8f8f5 6px,
    #f0f0ec 6px,
    #f0f0ec 12px
  );
  cursor: default;
  min-height: 140px;
}

.strip-card--empty:hover { background: repeating-linear-gradient(
    -45deg,
    #f8f8f5,
    #f8f8f5 6px,
    #f0f0ec 6px,
    #f0f0ec 12px
  );
}

.strip-card {
  background: var(--article-bg);
  display: flex;
  flex-direction: column;
  transition: background 0.15s;
}

.strip-card:hover { background: #f0f0ec; }

.strip-card-thumb {
  display: block;
  overflow: hidden;
  background: var(--darker-bg);
  aspect-ratio: 16 / 9;
}

.strip-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.strip-card:hover .strip-card-thumb img { transform: scale(1.05); }

.strip-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--border-color);
}

.strip-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  flex: 1;
  margin-bottom: 10px;
}

.strip-card-title a {
  color: inherit;
  transition: opacity 0.15s;
}

.strip-card-title a:hover { opacity: 0.65; }

.strip-card-meta {
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  color: var(--text-muted);
  display: flex;
  gap: 6px;
  align-items: center;
}

/* ===========================
   NEWSPAPER INDEX — Simple Listing
=========================== */
.news-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
  margin-bottom: 0;
}

.news-list-card {
  background: var(--article-bg);
  display: flex;
  gap: 0;
  flex-direction: column;
  transition: background 0.15s;
}

.news-list-card:hover { background: #f0f0ec; }

.news-list-thumb {
  display: block;
  overflow: hidden;
  background: var(--darker-bg);
  aspect-ratio: 16 / 7;
  flex-shrink: 0;
}

.news-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-list-card:hover .news-list-thumb img { transform: scale(1.05); }

.news-list-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--border-color);
}

.news-list-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  flex: 1;
  margin-bottom: 10px;
}

.news-list-title a {
  color: inherit;
  transition: opacity 0.15s;
}

.news-list-title a:hover { opacity: 0.65; }

.news-list-meta {
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  color: var(--text-muted);
}

/* ===========================
   NEWSPAPER INDEX — Simple list
=========================== */
.news-simple-list {
  list-style: none;
  margin: 0 0 56px;
  padding: 0;
}

.news-simple-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-color);
}

.news-simple-item:first-child {
  border-top: 1px solid var(--border-color);
}

.news-simple-item .editoria-tag {
  flex-shrink: 0;
  margin-bottom: 0;
}

.news-simple-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  flex: 1;
}

.news-simple-title a {
  color: inherit;
  transition: opacity 0.15s;
}

.news-simple-title a:hover { opacity: 0.65; }

.news-simple-meta {
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===========================
   NEWSPAPER INDEX — Four Strip promoted (single card)
=========================== */
.four-strip--single {
  display: block;
  background: none;
  border: none;
}

.four-strip--single .strip-card {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 44px;
  align-items: start;
  background: transparent;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.four-strip--single .strip-card:hover { background: transparent; }

.four-strip--single .strip-card-thumb { aspect-ratio: 4 / 3; }

.four-strip--single .strip-card-body {
  padding: 6px 0 0;
  border-top: none;
}

.four-strip--single .strip-card-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.four-strip--single .strip-card-meta { font-size: 10px; }

/* ===========================
   NEWSPAPER INDEX — Cotidiano filter: Mais artigos vira Em evidência
=========================== */
.label-cotidiano { display: none; }
.label-cultura { display: none; }

body[data-filter="cotidiano"] #section-strip .label-default { display: none; }
body[data-filter="cotidiano"] #section-strip .label-cotidiano { display: inline; }

body[data-filter="cotidiano"] #section-grid .label-default { display: none; }
body[data-filter="cotidiano"] #section-grid .label-cotidiano { display: inline; }

body[data-filter="cultura"] #section-strip .label-default { display: none; }
body[data-filter="cultura"] #section-strip .label-cultura { display: inline; }

#section-cultura-evidencia { display: none; }
body[data-filter="cultura"] #section-cultura-evidencia { display: block; }

.four-strip--three { grid-template-columns: repeat(3, 1fr); }
body[data-filter="cotidiano"] #section-grid .news-list-grid {
  grid-template-columns: repeat(3, 1fr);
}
body[data-filter="cotidiano"] #section-grid .news-list-thumb {
  aspect-ratio: 16 / 9;
}

/* ===========================
   NEWSPAPER INDEX — Responsive
=========================== */
@media (max-width: 900px) {
  .featured-article {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .four-strip--single .strip-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .four-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editoria-bar { top: 0; }
}

@media (max-width: 600px) {
  .masthead-wordmark { font-size: 38px; }

  .masthead-meta-row { flex-direction: column; gap: 4px; text-align: center; }

  .four-strip {
    grid-template-columns: 1fr;
  }

  .news-list-grid {
    grid-template-columns: 1fr;
  }

  .news-simple-item {
    flex-wrap: wrap;
    gap: 8px;
  }

  .news-simple-meta {
    width: 100%;
    padding-left: 0;
  }
}
