@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;0,800;0,900;1,500;1,700;1,900&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0c0a09;
  --paper: #efe7d5;
  --paper-2: #e7ddc7;
  --paper-line: #d6cbb4;
  --ruby: #6b4a2f;
  --ruby-bright: #8a6038;
  --cream: #f1ebe2;
  --cream-dim: #c5b8a6;
  --muted: #968a78;
  --muted-dark: #6a5d4d;
  --ink-text: #1f1a15;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--ink-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--ink);
  color: var(--cream-dim);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 32px;
}
.top-bar span:nth-child(2) { color: var(--ruby-bright); font-family: 'Lora', serif; font-style: italic; letter-spacing: 0.04em; text-transform: none; font-size: 13px; }
.top-bar span, .top-bar a { white-space: nowrap; }
.top-bar a { color: var(--cream-dim); transition: color .2s; }
.top-bar a:hover { color: #fff; }

/* ── NAV ── */
nav {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 66px;
  border-bottom: 2px solid var(--ruby);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  font-style: italic;
  color: var(--ruby-bright);
  letter-spacing: 0.02em;
}
.nav-edition {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  white-space: nowrap;
  transition: color .2s;
}
.nav-edition:hover { color: var(--ruby-bright); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--cream-dim);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; border-color: var(--ruby); }

/* ════════════════════════════════════
   HOME — CAPA / COVER
════════════════════════════════════ */
.cover {
  position: relative;
  min-height: calc(100vh - 68px);
  background: #0c0a09 url('assets/cuco.png') center 35% / cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2.8rem) clamp(1.5rem, 4.5vw, 4.5rem) clamp(1.8rem, 3vw, 3rem);
  overflow: hidden;
}
/* legibility gradients over the photo */
.cover::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,10,9,.78) 0%, rgba(12,10,9,.28) 20%, rgba(12,10,9,0) 40%),
    linear-gradient(0deg, rgba(12,10,9,.86) 0%, rgba(12,10,9,.30) 26%, rgba(12,10,9,0) 50%),
    linear-gradient(90deg, rgba(12,10,9,.55) 0%, rgba(12,10,9,0) 34%, rgba(12,10,9,0) 64%, rgba(12,10,9,.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.cover > * { position: relative; z-index: 2; }

/* ── masthead ── */
.cover-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.cover-topline .ct-vol { color: var(--ruby-bright); font-weight: 600; }
.cover-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: normal;
  font-size: clamp(5rem, 16.5vw, 15rem);
  line-height: 0.86;
  letter-spacing: -0.015em;
  text-align: center;
  color: #fff;
  margin: 0.1rem 0 0;
  text-shadow: 0 4px 50px rgba(0,0,0,.55);
}
.cover-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.3vw, 1.8rem);
  text-align: center;
  color: rgba(255,255,255,.92);
  margin-top: 0.2rem;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}

/* ── lower zone: feature (left) + cover lines (right) ── */
.cover-lower {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.cover-feature { display: flex; flex-direction: column; align-items: flex-start; max-width: 30ch; }
.cf-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ruby-bright);
  margin-bottom: 0.7rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.cf-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.98;
  color: #fff;
  text-shadow: 0 3px 22px rgba(0,0,0,.6);
}
.cf-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: rgba(255,255,255,.85);
  margin-top: 0.6rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.cf-cta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin-top: 1.2rem;
  border-bottom: 2px solid var(--ruby-bright);
  padding-bottom: 3px;
  transition: gap .2s;
}
.cover-feature:hover .cf-cta { border-color: #fff; }

.cover-lines { display: flex; flex-direction: column; }
.cover-line {
  display: block;
  border-top: 1px solid rgba(255,255,255,.24);
  padding: 0.8rem 0;
  transition: padding-left .2s;
}
.cover-line:last-child { border-bottom: 1px solid rgba(255,255,255,.24); }
.cover-line:hover { padding-left: 0.5rem; }
.cl-cat {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ruby-bright);
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.cl-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.22rem;
  line-height: 1.16;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}

/* ── bottom bar: barcode + price ── */
.cover-foot {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
.cover-foot .ed {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.cover-barcode {
  width: 118px; height: 46px;
  background: repeating-linear-gradient(90deg, #0c0a09 0 2px, #fff 2px 4px, #0c0a09 4px 5px, #fff 5px 8px, #0c0a09 8px 10px, #fff 10px 11px, #0c0a09 11px 13px, #fff 13px 16px);
  border: 3px solid #fff;
}

/* ════════════════════════════════════
   HOME — GRADE DE ENSAIOS
════════════════════════════════════ */
.essays-wrap { max-width: 1240px; margin: 0 auto; padding: clamp(3rem,5vw,4.5rem) 2rem 4rem; }
.essays-title {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ruby);
  border-bottom: 1px solid var(--paper-line);
  padding-bottom: 0.9rem;
  margin-bottom: 0;
}
.essay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.essay-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: 1.9rem 1.8rem 1.7rem;
  border-top: 2px solid var(--ink);
  border-right: 1px solid var(--paper-line);
  transition: background .2s;
}
.essay-card:nth-child(3n) { border-right: none; }
.essay-card:hover { background: var(--paper-2); }
.essay-card .cat {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ruby);
  margin-bottom: 0.9rem;
}
.essay-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.16;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.essay-card .sub {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--muted-dark);
  font-size: 0.98rem;
  margin-bottom: 0.9rem;
}
.essay-card .excerpt {
  font-family: 'Lora', serif;
  font-size: 0.96rem;
  color: var(--muted-dark);
  line-height: 1.65;
  margin-bottom: 1.3rem;
  flex: 1;
}
.essay-card .more {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ruby);
  border-top: 1px solid var(--paper-line);
  padding-top: 0.9rem;
}
.essay-card .more span { color: var(--muted); font-weight: 400; }

/* ════════════════════════════════════
   DELÍRIOS CURTOS
════════════════════════════════════ */
.delirios-sec {
  background: linear-gradient(rgba(10,2,4,.5), rgba(10,2,4,.5)), #1a0608 url('assets/delirios-bg.jpg') center / cover;
  color: var(--cream);
  padding: clamp(3rem,5vw,4.5rem) 2rem 5rem;
  border-top: 2px solid var(--ruby);
}
.delirios-inner { max-width: 1240px; margin: 0 auto; }
.delirios-head { text-align: center; margin-bottom: 3rem; }
.delirios-head h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.delirios-head p {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f0c8cf;
  margin-top: 0.5rem;
}
.delirios-grid { column-count: 3; column-gap: 1.6rem; }
.delirio {
  break-inside: avoid;
  margin: 0 0 1.6rem;
  background: rgba(10,5,5,.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  border-top: 4px solid var(--ruby-bright);
  border-radius: 3px;
  padding: 2.8rem 1.7rem 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 44px -20px rgba(0,0,0,.85), inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.delirio:hover {
  transform: translateY(-5px);
  border-color: var(--ruby-bright);
  box-shadow: 0 28px 52px -16px rgba(0,0,0,.9), 0 0 0 1px rgba(212,23,47,.4);
}
.delirio::before {
  content: '“';
  position: absolute;
  top: 0.4rem;
  left: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--ruby);
  opacity: .32;
  line-height: 1;
  pointer-events: none;
}
.delirio-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--ruby-bright);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.delirio blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.32rem;
  line-height: 1.48;
  color: var(--cream);
  position: relative;
  z-index: 1;
}
.delirio figcaption {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.5rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,.14);
  position: relative;
  z-index: 1;
}

/* poemas/textos longos — destaque cheio, fora da grade de citações curtas */
.delirios-poems { display: flex; flex-direction: column; gap: 2.2rem; margin-top: 2.4rem; }
.delirio-poem {
  position: relative;
  padding: 2.2rem clamp(1.4rem, 6vw, 4.5rem) 2.4rem;
  border-top: 1px solid var(--ruby);
  border-bottom: 1px solid var(--ruby);
  text-align: center;
}
.delirio-poem::before {
  content: '✦';
  display: block;
  font-size: 1rem;
  color: #f0c8cf;
  margin-bottom: 1.2rem;
}
.delirio-poem .delirio-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
}
.delirio-poem blockquote {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  line-height: 1.95;
  color: var(--cream-dim);
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
  max-width: 640px;
  margin: 0 auto;
}
.delirio-poem figcaption {
  margin-top: 1.8rem;
  padding-top: 0;
  border-top: none;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ════════════════════════════════════
   ARTIGO — LEITURA (modelo jornal)
════════════════════════════════════ */
.article-head {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.4rem,4vw,3.6rem) 2rem 0;
}
.art-masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.art-masthead .am-left,
.art-masthead .am-right {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ruby);
  flex: 1;
}
.art-masthead .am-right { text-align: right; }
.art-masthead .am-orn { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--ruby); }
.am-rule { height: 1px; background: var(--paper-line); margin: 0.9rem 0 1.8rem; }

.article-head .kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ruby);
}
.article-head h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0.8rem auto 0.9rem;
  max-width: 14ch;
  text-wrap: balance;
}
.article-head .sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: var(--muted-dark);
  margin-bottom: 1.4rem;
}
.article-head .byline {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-head .byline strong { color: var(--ink); font-weight: 600; }
.am-doublerule { max-width: 1080px; margin: 1.6rem auto 0; }
.am-doublerule span { display: block; }
.am-doublerule span:first-child { height: 4px; background: var(--ruby); }
.am-doublerule span:last-child { height: 1px; background: var(--paper-line); margin-top: 3px; }

/* share bar */
.share-bar {
  max-width: 1080px;
  margin: 1.4rem auto 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.share-bar .share-icon {
  width: 34px; height: 34px;
  border: 1px solid var(--paper-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.share-bar .share-icon:hover { border-color: var(--ruby); color: #fff; background: var(--ruby); }

/* corpo do artigo */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.4rem,4vw,3.4rem) 2rem 5rem;
}
.article-body p {
  font-family: 'Lora', serif;
  font-size: 1.16rem;
  line-height: 1.85;
  color: var(--ink-text);
  margin-bottom: 1.5rem;
  text-align: justify;
  hyphens: auto;
}
.article-body .drop-cap::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 5.4rem;
  font-weight: 900;
  float: left;
  line-height: 0.72;
  margin: 0.07em 0.11em 0 0;
  color: var(--ruby);
}
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  margin: 2.8rem 0 1.1rem;
  padding-top: 1.4rem;
  position: relative;
}
.article-body h2::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--ruby);
}
.article-body blockquote {
  margin: 2.8rem -2rem;
  padding: 1.8rem 2rem;
  border-top: 3px solid var(--ruby);
  border-bottom: 3px solid var(--ruby);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-style: italic;
  line-height: 1.36;
  text-align: center;
  color: var(--ink);
}
.article-body blockquote small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ruby);
  margin-top: 1rem;
}
.article-body strong { font-weight: 600; }
.article-body a { color: var(--ruby); text-decoration: underline; text-underline-offset: 3px; }
.article-end {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--ruby);
  margin: 2.5rem 0 1rem;
}
.article-share-cta {
  text-align: center;
  border-top: 1px solid var(--paper-line);
  padding-top: 2rem;
  margin-top: 2rem;
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--muted-dark);
}
.article-share-cta strong { display: block; font-family: 'Inter', sans-serif; font-size: 1.05rem; color: var(--ruby); margin-top: 0.4rem; letter-spacing: 0.02em; }

/* ════════════════════════════════════
   SOBRE
════════════════════════════════════ */
.about-hero {
  background:
    linear-gradient(rgba(12,4,6,.58), rgba(12,4,6,.72)),
    #1a0608 url('assets/sobre-bg.jpg') center / cover no-repeat;
  color: var(--cream);
  text-align: center;
  padding: clamp(4rem,8vw,6.5rem) 2rem;
  border-bottom: 2px solid var(--ruby);
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  font-style: italic;
  color: var(--ruby-bright);
  margin-bottom: 1rem;
  text-align: center;
}
.about-hero p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream-dim);
  max-width: 500px;
  margin: 0 auto;
}
.about-body { max-width: 780px; margin: 0 auto; padding: clamp(3rem,5vw,4rem) 2rem; }
.about-body h2 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin: 2.6rem 0 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--paper-line);
}
.about-body h2:first-child { margin-top: 0; }
.about-body p { font-family: 'Lora', serif; font-size: 1.08rem; color: var(--ink-text); line-height: 1.8; margin-bottom: 1rem; }
.about-body strong { color: var(--ruby); font-weight: 600; }

/* ════════════════════════════════════
   PÁGINA DE ENSAIOS (arquivo)
════════════════════════════════════ */
.ensaios-hero {
  background:
    linear-gradient(rgba(10,2,4,.62), rgba(10,2,4,.72)),
    #1a0608 url('assets/ensaios-bg.jpg') center / cover no-repeat;
  color: var(--cream);
  text-align: center;
  padding: clamp(3.5rem,7vw,5.5rem) 2rem clamp(3rem,5vw,4rem);
  border-bottom: 2px solid var(--ruby);
}
.ensaios-hero .eh-kicker {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  text-transform: uppercase;
  color: #f0c8cf;
  font-weight: 600;
}
.ensaios-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 900;
  color: #fff;
  margin: 0.7rem 0 0.6rem;
}
.ensaios-hero .eh-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: var(--cream-dim);
  max-width: 540px;
  margin: 0 auto;
}
.ensaios-hero .eh-sub span { color: #f0c8cf; font-style: normal; }

/* botão ver todos (home) */
.ver-todos {
  display: inline-block;
  margin-top: 2.4rem;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9b1b2e;
  border: 1px solid #9b1b2e;
  padding: 0.85rem 1.6rem;
  border-radius: 2px;
  transition: background .2s, color .2s;
}
.ver-todos:hover { background: #9b1b2e; color: #fff; }

/* ── FOOTER ── */
footer {
  position: relative;
  background:
    linear-gradient(rgba(12,4,6,.72), rgba(10,3,5,.8)),
    #1a0608 url('assets/sobre-bg.jpg') center / cover no-repeat;
  color: var(--cream-dim);
  text-align: center;
  padding: 2.4rem 2rem;
  font-size: 11px;
  border-top: 2px solid var(--ruby);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
footer .footer-logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
}
/* home: rodapé preto liso */
.home-page footer {
  background: var(--ink);
  border-top: 2px solid var(--ruby);
}
.home-page footer .footer-logo { text-shadow: none; }

/* ════════════════════════════════════
   RESPONSIVO
════════════════════════════════════ */
@media (max-width: 960px) {
  .essay-grid { grid-template-columns: 1fr 1fr; }
  .essay-card:nth-child(3n) { border-right: 1px solid var(--paper-line); }
  .essay-card:nth-child(2n) { border-right: none; }
  .delirios-grid { column-count: 2; }
}
@media (max-width: 600px) {
  .top-bar { padding: 6px 1rem; font-size: 10px; }
  .top-bar span:first-child { display: none; }
  nav { padding: 0 1rem; }
  .nav-logo { font-size: 1.9rem; }
  .nav-links { gap: 1rem; }
  .cover { padding: 2rem 1.3rem 2.2rem; }
  .essay-grid { grid-template-columns: 1fr; }
  .essay-card, .essay-card:nth-child(2n) { border-right: none; }
  .delirios-grid { column-count: 1; }
  .article-body blockquote { margin-left: -1rem; margin-right: -1rem; }
}

/* ── FOTO/HERO DENTRO DO ARTIGO ── */
.art-hero { margin: 0 0 2.4rem; }
.art-hero img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--paper-line);
}
.art-hero figcaption {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--muted);
  padding-top: 0.55rem;
}

/* ── FOTOS AO LADO DO ARTIGO ── */
.article-body::after { content: ""; display: table; clear: both; }
.art-side {
  width: 43%;
  margin-bottom: 1.4rem;
}
.art-side.right { float: right; clear: right; margin-left: 2rem; margin-top: 0.5rem; }
.art-side.left  { float: left;  clear: left;  margin-right: 2rem; margin-top: 0.5rem; }
.art-side img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--paper-line);
  border-radius: 2px;
}
.art-side figcaption {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.74rem;
  font-style: italic;
  color: var(--muted);
  padding-top: 0.45rem;
  line-height: 1.4;
}
.article-end { clear: both; }
@media (max-width: 680px) {
  .art-side, .art-side.left, .art-side.right {
    float: none; width: 100%; margin: 1.4rem 0;
  }
}
