/* ============================================================
   FATO ABERTO BR — style.css v2
   Paleta: #FDFDF5 · #2C2D27 · #979991 · #FFD63E
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --off-white:  #FDFDF5;
  --black:      #2C2D27;
  --gray:       #979991;
  --yellow:     #FFD63E;
  --yellow-dk:  #E8BF20;
  --white:      #FFFFFF;
  --gray-lt:    #E8E8E2;
  --gray-md:    #C5C5BF;
  --gray-dk:    #5A5A55;
  --black-lt:   #3D3E38;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-ui:   'Inter', system-ui, sans-serif;

  --container: 1200px;
  --gap: 28px;
  --radius: 3px;

  --shadow-sm: 0 2px 8px rgba(44,45,39,.08);
  --shadow-md: 0 6px 24px rgba(44,45,39,.12);
  --shadow-lg: 0 16px 48px rgba(44,45,39,.18);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  background: var(--off-white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-ui); border: none; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--black);
  border-bottom: 2px solid var(--yellow);
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar__left {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.topbar__breaking {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}
.topbar__breaking-label {
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 2px 7px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.topbar__breaking-text {
  font-size: 12px;
  color: var(--off-white);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar__right { margin-left: auto; }
.topbar__painel {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: .06em;
  transition: color .2s;
  white-space: nowrap;
}
.topbar__painel:hover { color: var(--yellow); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-lt);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-shrink: 0;
}
.logo__fato {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 26px;
  color: var(--black);
  letter-spacing: -.02em;
  line-height: 1;
}
.logo__aberto {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 26px;
  color: var(--yellow-dk);
  letter-spacing: -.02em;
  line-height: 1;
}
.logo__br {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: .08em;
  margin-left: 4px;
  align-self: flex-start;
  margin-top: 4px;
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.main-nav__item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-dk);
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: all .2s;
  white-space: nowrap;
}
.main-nav__item:hover { color: var(--black); background: var(--gray-lt); }
.main-nav__item.active {
  color: var(--black);
  background: var(--yellow);
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all .25s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero-placeholder.jpg');
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1.03); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(44,45,39,.92) 0%,
    rgba(44,45,39,.7) 55%,
    rgba(44,45,39,.2) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px 56px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: end;
}
.hero__content { max-width: 580px; }
.hero__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.hero__cat {
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 3px 10px;
  border-radius: 2px;
}
.hero__dot { color: rgba(255,255,255,.3); }
.hero__time { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500; }
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 480px;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: all .2s;
}
.hero__btn::after { content: '→'; }
.hero__btn:hover {
  background: var(--yellow-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,214,62,.35);
}

/* ASIDE do hero (minicards) */
.hero__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-minicard {
  background: rgba(253,253,245,.06);
  border: 1px solid rgba(253,253,245,.12);
  border-left: 3px solid var(--yellow);
  backdrop-filter: blur(8px);
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: background .2s;
  cursor: pointer;
}
.hero-minicard:hover { background: rgba(253,253,245,.12); }
.hero-minicard__cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}
.hero-minicard__title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

/* Radar badge flutuante */
.hero__radar-badge {
  position: absolute;
  bottom: 20px;
  right: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(44,45,39,.8);
  border: 1px solid rgba(255,214,62,.3);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
}
.radar-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--black);
}
.stats-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 72px;
  flex-wrap: wrap;
}
.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 36px;
  gap: 2px;
}
.stats-bar__num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.stats-bar__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
}
.stats-bar__div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1);
}
.stats-bar__div--grow { width: auto; flex: 1; background: none; }

/* Radar na stats bar */
.stats-bar__radar {
  padding: 12px 0 12px 28px;
  border-left: 1px solid rgba(255,255,255,.1);
  max-width: 420px;
}
.stats-bar__radar-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.stats-bar__radar-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.radar-loading {
  font-size: 11px;
  color: var(--gray);
}
.stats-radar-item {
  font-size: 11px;
  color: rgba(253,253,245,.65);
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stats-radar-item strong {
  color: var(--yellow);
  font-weight: 600;
  margin-right: 4px;
}

/* ============================================================
   MAIN / CONTENT GRID
   ============================================================ */
.site-main { padding: 48px 0 64px; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--gap);
  margin-bottom: 60px;
  align-items: start;
}

/* ---------- SECTION LABEL ---------- */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.section-label span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}
.section-label__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--yellow), transparent);
}

/* ============================================================
   FEED (lista de matérias)
   ============================================================ */
.feed { display: flex; flex-direction: column; gap: 0; }
.feed-empty {
  padding: 40px 0;
  text-align: center;
  color: var(--gray);
  font-size: 14px;
}
.feed-empty p { margin-bottom: 16px; }

/* FEED ITEM */
.feed-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-lt);
  transition: background .15s;
}
.feed-item:first-child { padding-top: 0; }
.feed-item:last-child  { border-bottom: none; }
.feed-item:hover .feed-item__title { color: var(--yellow-dk); }

.feed-item__thumb {
  width: 140px;
  height: 100px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-lt);
  flex-shrink: 0;
  position: relative;
}
.feed-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.feed-item:hover .feed-item__thumb img { transform: scale(1.05); }
.feed-item__thumb-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--gray-md);
}
.feed-item__body { display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.feed-item__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.feed-item__cat {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 2px 7px;
  border-radius: 2px;
}
.feed-item__time { font-size: 11px; color: var(--gray); }
.feed-item__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
  transition: color .2s;
}
.feed-item__lead {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-dk);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feed-item__autor {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.col-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 80px; }

.widget {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  overflow: hidden;
}
.widget--radar { border-top: 3px solid var(--yellow); }

.widget__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-lt);
}
.widget__icon {
  font-size: 14px;
  color: var(--yellow-dk);
  font-style: normal;
}
.widget__head h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  flex: 1;
}
.badge-ia {
  background: var(--black);
  color: var(--yellow);
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: .08em;
}
.widget__desc {
  font-size: 11px;
  color: var(--gray);
  padding: 10px 16px 4px;
  line-height: 1.5;
}
.widget__empty { font-size: 12px; color: var(--gray); padding: 16px; }

/* RADAR FEED */
.radar-feed { padding: 8px 0; display: flex; flex-direction: column; }
.radar-item {
  padding: 10px 16px;
  border-left: 3px solid transparent;
  transition: background .15s;
  cursor: pointer;
}
.radar-item:hover {
  background: var(--off-white);
  border-left-color: var(--yellow);
}
.radar-item--loading { opacity: .5; }
.radar-item__src {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow-dk);
  margin-bottom: 3px;
}
.radar-item__title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
}
.skeleton {
  height: 14px;
  background: var(--gray-lt);
  border-radius: 2px;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.btn-refresh {
  display: block;
  width: 100%;
  background: none;
  border-top: 1px solid var(--gray-lt);
  padding: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  transition: all .2s;
  text-align: center;
  letter-spacing: .04em;
}
.btn-refresh:hover { background: var(--off-white); color: var(--black); }

/* RANKED LIST */
.ranked-list { padding: 8px 0; }
.ranked-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 16px;
  transition: background .15s;
}
.ranked-item:hover { background: var(--off-white); }
.ranked-item__num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--gray-lt);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}
.ranked-item:hover .ranked-item__num { color: var(--yellow); }
.ranked-item__title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
}

/* CAT PILLS */
.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 16px; }
.cat-pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--black);
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  padding: 5px 12px;
  border-radius: 20px;
  transition: all .2s;
}
.cat-pill:hover { background: var(--yellow); border-color: var(--yellow); }

/* ============================================================
   CARDS GRID
   ============================================================ */
.cards-section { padding-top: 16px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: var(--gap);
}

/* CARD */
.card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-lt);
  position: relative;
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.card:hover .card__img { transform: scale(1.05); }
.card__img-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--gray-md);
}
.card__body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card__cat {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  align-self: flex-start;
}
.card__title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  transition: color .2s;
}
.card:hover .card__title { color: var(--yellow-dk); }
.card__lead {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-dk);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid var(--gray-lt);
}
.card__autor { font-size: 11px; font-weight: 600; color: var(--gray-dk); }
.card__time  { font-size: 10px; color: var(--gray); }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  padding: 11px 24px;
  border-radius: var(--radius);
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.btn-yellow:hover {
  background: var(--yellow-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,214,62,.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); color: var(--off-white); }
.footer__top { padding: 56px 0 40px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer__brand .logo { margin-bottom: 16px; }
.logo--footer .logo__fato   { font-size: 22px; color: var(--off-white); }
.logo--footer .logo__aberto { font-size: 22px; color: var(--yellow); }
.logo--footer .logo__br     { color: var(--gray); }
.footer__brand p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 280px;
  margin-bottom: 12px;
}
.footer__domain {
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: .05em;
}
.footer__col h4 {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--off-white);
  margin-bottom: 18px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col a {
  font-size: 13px;
  color: var(--gray);
  transition: color .2s;
}
.footer__col a:hover { color: var(--yellow); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
}
.footer__bottom p {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__aside { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .col-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .col-sidebar .widget { flex: 1 1 280px; }
  .stats-bar__inner { flex-wrap: wrap; padding: 16px 24px; gap: 0; }
  .stats-bar__item { padding: 8px 20px; }
  .stats-bar__radar { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--off-white);
    border-bottom: 2px solid var(--yellow);
    padding: 12px;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .main-nav.open .main-nav__item { padding: 10px 14px; }
  .hero { min-height: 440px; }
  .hero__title { font-size: 28px; }
  .feed-item { grid-template-columns: 100px 1fr; gap: 14px; }
  .feed-item__thumb { width: 100px; height: 72px; }
  .feed-item__title { font-size: 15px; }
  .stats-bar__item { padding: 10px 16px; }
  .footer__grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .topbar__left { display: none; }
  .hero__btn { width: 100%; justify-content: center; }
  .feed-item { grid-template-columns: 1fr; }
  .feed-item__thumb { width: 100%; height: 180px; }
}

/* ============================================================
   PÁGINAS DE EDITORIA
   ============================================================ */

/* HERO DA EDITORIA */
.ed-hero {
  background: var(--black);
  padding: 48px 0 40px;
  border-bottom: 3px solid var(--yellow);
}
.ed-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.ed-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.ed-hero__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: var(--off-white);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.ed-hero__desc {
  font-size: 15px;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.ed-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
}
.ed-hero__count { color: var(--yellow); }
.ed-hero__sep   { color: var(--gray); }
.ed-hero__back  {
  color: var(--gray);
  transition: color .2s;
}
.ed-hero__back:hover { color: var(--off-white); }

/* ESTADO VAZIO DA EDITORIA */
.ed-empty {
  text-align: center;
  padding: 80px 24px;
  max-width: 480px;
  margin: 0 auto;
}
.ed-empty__icon {
  font-size: 56px;
  margin-bottom: 20px;
  opacity: .4;
}
.ed-empty__title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.ed-empty__desc {
  font-size: 14px;
  color: var(--gray-dk);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* MANCHETE PRINCIPAL DA EDITORIA */
.ed-hero-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 8px;
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  overflow: hidden;
}
.ed-hero-img {
  height: 320px;
  overflow: hidden;
  background: var(--gray-lt);
  position: relative;
}
.ed-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ed-hero-img-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: var(--gray-md);
}
.ed-hero-body {
  padding: 28px 28px 28px 0;
  display: flex;
  flex-direction: column;
}
.ed-hero-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 12px;
  display: block;
  transition: color .2s;
}
.ed-hero-title:hover { color: var(--yellow-dk); }
.ed-hero-lead {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-dk);
  flex: 1;
  margin-bottom: 16px;
}

/* Loading feed */
.feed-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  color: var(--gray);
  font-size: 13px;
}
.spinner-cat {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-lt);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 768px) {
  .ed-hero-story { grid-template-columns: 1fr; }
  .ed-hero-img   { height: 220px; }
  .ed-hero-body  { padding: 20px; }
  .ed-hero__title { font-size: 32px; }
}

/* stats bar: texto em vez de número */
.stats-bar__num--text {
  font-size:18px !important;
  letter-spacing:.02em;
}

/* stats bar: ícone SVG */
.stats-bar__icon {
  color:var(--yellow);
  flex-shrink:0;
}
.stats-bar__item {
  display:flex;
  align-items:center;
  gap:12px;
}

/* ── Estado vazio público (sem botão) ── */
.feed-empty--public {
  padding: 60px 0;
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  font-style: italic;
}
.feed-empty--public p { margin: 0; }
.ed-empty__soon {
  display: block;
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
  margin-top: 8px;
}
