/* =========================================================
   LM Estatistica Blog - minimal editorial system
   Scope: body.blog-page only
========================================================= */

body.blog-page {
  --blog-bg: #fbf8f4;
  --blog-surface: #fffdf9;
  --blog-ink: #21122f;
  --blog-muted: #6f6378;
  --blog-purple: #7d4bc4;
  --blog-purple-dark: #30124d;
  --blog-rose: #c45a91;
  --blog-coral: #f47c63;
  --blog-line: rgba(73, 38, 96, .14);
  --blog-line-strong: rgba(73, 38, 96, .24);
  --blog-shadow: 0 18px 52px rgba(36, 19, 48, .08);
  --blog-max: 1120px;
  --blog-reading: 760px;
  --blog-wide-reading: 920px;
  --blog-radius: 24px;
  background:
    radial-gradient(circle at 16% 10%, rgba(125,75,196,.10), transparent 26rem),
    radial-gradient(circle at 88% 28%, rgba(244,124,99,.10), transparent 30rem),
    linear-gradient(180deg, #fff 0%, var(--blog-bg) 46%, #fffaf5 100%);
  color: var(--blog-ink);
}

body.blog-page *,
body.blog-page *::before,
body.blog-page *::after { box-sizing: border-box; }
body.blog-page img { max-width: 100%; height: auto; }
body.blog-page a { text-underline-offset: 3px; }

/* Navbar especial do blog */
body.blog-page nav#nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px clamp(16px, 2.4vw, 34px) 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
body.blog-page nav#nav .ni {
  display: flex;
  align-items: center;
  gap: .8rem;
  width: min(100%, 1240px);
  height: 62px;
  margin: 0 auto;
  padding: 0 8px 0 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(29, 11, 47, .78);
  box-shadow: 0 20px 58px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  overflow: visible;
}
body.blog-page nav#nav .logo-text { color: #fff !important; }
body.blog-page nav#nav .nl {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .1rem;
  height: 100%;
  margin-left: auto;
}
body.blog-page nav#nav .nl > li {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
body.blog-page nav#nav .nl > li > a:not(.nc) {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 .55rem;
  border-radius: 999px;
  color: rgba(255,255,255,.84) !important;
  font-size: .76rem;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
body.blog-page nav#nav .nl > li > a:not(.nc):hover,
body.blog-page nav#nav .nl > li > a.act:not(.nc) {
  color: #fff !important;
  background: rgba(255,255,255,.08);
}
body.blog-page nav#nav .nc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .42rem;
  height: 42px;
  min-height: 42px;
  padding: 0 .92rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blog-rose), #7b2fbe) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(123,47,190,.22);
  line-height: 1;
  white-space: nowrap;
}
body.blog-page nav#nav .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 260px;
  padding: .58rem;
  border: 1px solid rgba(73,38,96,.14);
  border-radius: 16px;
  background: rgba(255,253,249,.98);
  box-shadow: 0 22px 58px rgba(36,19,48,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 140;
}
body.blog-page nav#nav .nav-dropdown:hover .nav-dropdown-menu,
body.blog-page nav#nav .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
body.blog-page nav#nav .nav-dropdown-menu a {
  display: block;
  padding: .72rem .82rem;
  border-radius: 11px;
  color: var(--blog-ink) !important;
  font-size: .86rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
body.blog-page nav#nav .nav-dropdown-menu a:hover {
  color: var(--blog-purple-dark) !important;
  background: rgba(125,75,196,.08);
}
body.blog-page .mob-toggle { color: #fff !important; }

/* Primitivos */
.blog-shell,
.post-shell-minimal,
.article-shell {
  width: min(100% - 2rem, var(--blog-max));
  margin: 0 auto;
}
.blog-kicker,
.post-hero__category,
.se-card__category,
.article-related-label,
.lb {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .85rem;
  color: var(--blog-purple);
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .11em;
  line-height: 1.1;
  text-transform: uppercase;
}
.blog-kicker::before,
.post-hero__category::before,
.lb::before {
  content: "";
  width: 1.55rem;
  height: 1px;
  background: currentColor;
  opacity: .58;
}
.blog-kicker--light { color: rgba(255,255,255,.75); }
.blog-btn,
.article-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 820;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.blog-btn:hover,
.article-btn:hover { transform: translateY(-1px); }
.blog-btn--primary,
.article-btn {
  background: linear-gradient(135deg, #8a55c7 0%, #c35f91 50%, var(--blog-coral) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(139,85,199,.18), 0 10px 22px rgba(244,124,99,.10);
}
.blog-btn--ghost,
.article-btn--secondary {
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.blog-text-link {
  display: inline-flex;
  gap: .35rem;
  margin-top: 1rem;
  color: var(--blog-purple-dark);
  font-weight: 820;
  text-decoration: none;
}
.blog-text-link:hover { color: var(--blog-purple); }

/* Home */
.blog-home { padding-bottom: 4.5rem; }
.blog-hero-minimal {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 20%, rgba(244,124,99,.22), transparent 22rem),
    radial-gradient(circle at 18% 70%, rgba(125,75,196,.30), transparent 24rem),
    linear-gradient(135deg, #12051f 0%, #211044 52%, #6f315f 100%);
}
.blog-hero-minimal::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.96) 88%, #fff 100%);
  pointer-events: none;
}
.blog-hero-orb {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(22px);
  opacity: .20;
}
.blog-hero-orb--one { right: 13%; top: 20%; background: var(--blog-coral); }
.blog-hero-orb--two { left: 15%; bottom: 12%; background: var(--blog-purple); }
.blog-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding-top: 112px;
  padding-bottom: 86px;
  text-align: center;
}
.blog-hero-title {
  margin: 0;
  color: #fff;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.8rem, 6.3vw, 6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .96;
}
.blog-hero-title span {
  display: inline-block;
  background: linear-gradient(90deg, #fff 0%, #f7b08f 35%, #d991ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.blog-hero-lead {
  max-width: 690px;
  margin: 1.15rem auto 0;
  color: rgba(255,255,255,.82);
  font-size: 1.12rem;
  line-height: 1.62;
}
.blog-hero-actions,
.blog-cta-actions,
.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.45rem;
}
.blog-featured { padding: 4.2rem 0 2.4rem; }
.blog-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.blog-featured-image {
  display: block;
  overflow: hidden;
  border-radius: var(--blog-radius);
  box-shadow: var(--blog-shadow);
  background: #fff;
}
.blog-featured-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.blog-featured-copy h2,
.blog-section-head h2,
.blog-final-cta h2 {
  margin: 0;
  color: var(--blog-ink);
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.blog-featured-copy p,
.blog-section-head p,
.blog-final-cta p {
  color: var(--blog-muted);
  line-height: 1.68;
}
.blog-published { padding: 2.5rem 0 3.6rem; }
.blog-section-head {
  max-width: 720px;
  margin-bottom: 1.4rem;
}
.blog-article-list {
  display: grid;
  border-top: 1px solid var(--blog-line-strong);
}
.blog-article-row {
  display: grid;
  grid-template-columns: minmax(170px, .28fr) minmax(260px, .56fr) minmax(260px, 1fr) auto;
  gap: 1.35rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--blog-line);
  color: inherit;
  text-decoration: none;
}
.blog-article-row:hover strong,
.blog-article-row:hover em { color: var(--blog-purple); }
.blog-article-meta {
  color: var(--blog-purple);
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.blog-article-row strong {
  color: var(--blog-ink);
  font-size: 1.05rem;
  line-height: 1.25;
}
.blog-article-row span:not(.blog-article-meta) {
  color: var(--blog-muted);
  line-height: 1.52;
}
.blog-article-row em {
  color: var(--blog-purple-dark);
  font-style: normal;
  font-weight: 820;
  white-space: nowrap;
}
.blog-final-cta {
  width: min(100% - 2rem, var(--blog-max));
  margin: 0 auto 1.5rem;
  border-radius: var(--blog-radius);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(244,124,99,.20), transparent 22rem),
    linear-gradient(135deg, #1d0b2f 0%, #3d1d5b 58%, #8e4f80 100%);
  box-shadow: var(--blog-shadow);
}
.blog-final-cta-inner {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 2.2rem;
  padding: clamp(2rem, 4vw, 3rem);
}
.blog-final-cta h2 { color: #fff; }
.blog-final-cta p { margin: 0; color: rgba(255,255,255,.76); }
.blog-final-cta .blog-cta-actions { justify-content: flex-start; }

/* Posts - leitura central minimalista */
body.blog-post-page .article-shell {
  width: min(100% - 2rem, var(--blog-wide-reading));
  padding: 124px 0 4.5rem;
}
body.blog-post-page .article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  align-items: center;
  max-width: var(--blog-wide-reading);
  margin: 0 auto 1rem;
  color: var(--blog-muted);
  font-size: .82rem;
}
body.blog-post-page .article-breadcrumb a {
  color: var(--blog-purple-dark);
  font-weight: 760;
  text-decoration: none;
}
body.blog-post-page .article-breadcrumb strong { color: var(--blog-ink); }
body.blog-post-page .post-hero {
  max-width: var(--blog-wide-reading);
  margin: 0 auto 1.05rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}
body.blog-post-page .post-hero::before {
  content: "";
  display: block;
  width: min(100%, 720px);
  height: 1px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(90deg, transparent, rgba(125,75,196,.36), rgba(244,124,99,.30), transparent);
}
body.blog-post-page .post-hero__content { padding: 1rem 0 1.3rem; }
body.blog-post-page .post-hero__category { justify-content: center; }
body.blog-post-page .post-hero h1 {
  max-width: 850px;
  margin: 0 auto;
  color: var(--blog-ink);
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 4.5vw, 4.05rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}
body.blog-post-page .post-hero__content > p:not(.post-hero__category) {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--blog-muted);
  font-size: 1.06rem;
  line-height: 1.64;
}
body.blog-post-page .post-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}
body.blog-post-page .post-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .34rem .62rem;
  border: 1px solid var(--blog-line);
  border-radius: 999px;
  background: rgba(255,253,249,.64);
  color: var(--blog-purple-dark);
  font-size: .78rem;
  font-weight: 780;
}
body.blog-post-page .article-toc {
  max-width: var(--blog-reading);
  margin: 0 auto 2rem;
  padding: .95rem 0;
  border: 1px solid var(--blog-line);
  border-width: 1px 0;
  background: transparent;
}
body.blog-post-page .article-toc h2 {
  margin: 0 0 .75rem;
  color: var(--blog-muted);
  font-size: .74rem;
  font-weight: 820;
  letter-spacing: .10em;
  text-align: center;
  text-transform: uppercase;
}
body.blog-post-page .article-toc div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .46rem;
}
body.blog-post-page .article-toc a {
  display: inline-flex;
  padding: .42rem .62rem;
  border: 1px solid rgba(125,75,196,.14);
  border-radius: 999px;
  background: rgba(255,253,249,.70);
  color: var(--blog-purple-dark);
  font-size: .82rem;
  font-weight: 740;
  text-decoration: none;
}
body.blog-post-page .article-toc a:hover {
  border-color: rgba(125,75,196,.30);
  color: var(--blog-purple);
}
body.blog-post-page .article-layout {
  display: block;
  max-width: var(--blog-reading);
  margin: 0 auto;
}
body.blog-post-page .article-main { min-width: 0; }
body.blog-post-page .article-prose {
  max-width: var(--blog-reading);
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body.blog-post-page .article-prose h2 {
  margin: 2.65rem 0 .9rem;
  color: var(--blog-ink);
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 400;
  line-height: 1.08;
}
body.blog-post-page .article-prose h2:first-child { margin-top: 0; }
body.blog-post-page .article-prose p,
body.blog-post-page .article-prose li {
  color: #332d3b;
  font-size: 1.02rem;
  line-height: 1.84;
}
body.blog-post-page .article-prose p { margin: 0 0 1.08rem; }
body.blog-post-page .article-prose ul,
body.blog-post-page .article-prose ol {
  margin: 1rem 0 1.45rem;
  padding-left: 1.25rem;
}
body.blog-post-page .article-prose a {
  color: var(--blog-purple-dark);
  font-weight: 760;
}
body.blog-post-page .post-note {
  margin: 1.55rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(125,75,196,.16);
  border-left: 4px solid var(--blog-purple);
  border-radius: 14px;
  background: rgba(246,239,251,.72);
  color: var(--blog-ink);
}
body.blog-post-page .blog-table-scroll {
  overflow-x: auto;
  margin: 1.4rem 0;
  border: 1px solid var(--blog-line);
  border-radius: 14px;
}
body.blog-post-page .blog-table-scroll table { width: 100%; border-collapse: collapse; min-width: 620px; }
body.blog-post-page .blog-table-scroll th { background: rgba(246,239,251,.90); color: var(--blog-ink); }
body.blog-post-page .blog-table-scroll th,
body.blog-post-page .blog-table-scroll td {
  padding: .8rem .9rem;
  border-bottom: 1px solid var(--blog-line);
  text-align: left;
}
body.blog-post-page .article-figure,
body.blog-post-page .article-prose figure {
  margin: 1.8rem 0 2.05rem;
}
body.blog-post-page .article-figure img,
body.blog-post-page .article-prose img {
  display: block;
  width: 100%;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(36,19,48,.08);
}
body.blog-post-page .article-figure figcaption,
body.blog-post-page .article-prose figcaption {
  max-width: 650px;
  margin: .65rem auto 0;
  color: var(--blog-muted);
  font-size: .86rem;
  line-height: 1.5;
  text-align: center;
}
body.blog-post-page .article-related-end {
  max-width: var(--blog-reading);
  margin: 2.15rem auto 0;
  padding-top: 1.35rem;
  border-top: 1px solid var(--blog-line);
}
body.blog-post-page .article-related-end > div { padding: 0; border: 0; }
body.blog-post-page .article-related-label { margin-bottom: .85rem; }
body.blog-post-page .post-leia-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .72rem;
}
body.blog-post-page .post-leia-grid a {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  gap: .42rem;
  padding: .9rem;
  border: 1px solid var(--blog-line);
  border-radius: 14px;
  background: rgba(255,253,249,.62);
  color: inherit;
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
body.blog-post-page .post-leia-grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(125,75,196,.30);
  background: rgba(255,253,249,.92);
}
body.blog-post-page .post-leia-grid span:first-child {
  color: var(--blog-purple);
  font-size: .68rem;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.blog-post-page .post-leia-grid span:nth-child(2) {
  color: var(--blog-ink);
  font-size: .9rem;
  font-weight: 780;
  line-height: 1.35;
}
body.blog-post-page .post-leia-grid span:last-child {
  margin-top: auto;
  color: var(--blog-purple-dark);
  font-size: .8rem;
  font-weight: 820;
}
body.blog-post-page .article-faq {
  max-width: var(--blog-reading);
  margin: 2.25rem auto 0;
  padding-top: 1.45rem;
  border-top: 1px solid var(--blog-line);
}
body.blog-post-page .post-faq-inner { padding: 0; }
body.blog-post-page .sh {
  margin: 0 0 1rem;
  color: var(--blog-ink);
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 400;
  line-height: 1.08;
}
body.blog-post-page .fqg { display: grid; grid-template-columns: 1fr; gap: 0; }
body.blog-post-page .fi {
  border-top: 1px solid var(--blog-line);
  background: transparent;
}
body.blog-post-page .fi:last-child { border-bottom: 1px solid var(--blog-line); }
body.blog-post-page .fq {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem 0;
  color: var(--blog-ink);
  font-weight: 780;
  line-height: 1.45;
  cursor: pointer;
}
body.blog-post-page .fico { color: var(--blog-purple); font-weight: 820; }
body.blog-post-page .fa {
  display: none;
  padding: 0 0 1rem;
  color: var(--blog-muted);
  line-height: 1.68;
}
body.blog-post-page .fi.op .fa { display: block; }
body.blog-post-page .article-final-cta,
body.blog-post-page .post-cta {
  max-width: var(--blog-reading);
  margin: 2rem auto 0;
}
body.blog-post-page .post-cta-box {
  padding: clamp(1.55rem, 4vw, 2.2rem);
  border-radius: 22px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 84% 16%, rgba(244,124,99,.22), transparent 20rem),
    linear-gradient(135deg, #1d0b2f 0%, #3d1d5b 58%, #8e4f80 100%);
  box-shadow: var(--blog-shadow);
}
body.blog-post-page .post-cta-box h3 {
  margin: 0;
  color: #fff;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 400;
  line-height: 1.08;
}
body.blog-post-page .post-cta-box p {
  max-width: 620px;
  margin: .75rem auto 0;
  color: rgba(255,255,255,.76);
  line-height: 1.62;
}

/* Neutraliza estruturas antigas permitidas ainda presentes nos HTMLs */
body.blog-post-page .article-sidebar { display: none; }
body.hub-startup-editorial .se-paths,
body.hub-startup-editorial .se-intent,
body.hub-startup-editorial .se-principle,
body.hub-startup-editorial .se-feature,
body.hub-startup-editorial .se-articles,
body.hub-startup-editorial .se-cta { display: none; }

@media (prefers-reduced-motion: no-preference) {
  .blog-hero-inner,
  .blog-featured-grid,
  .blog-article-row,
  .blog-final-cta,
  body.blog-post-page .post-hero,
  body.blog-post-page .article-toc,
  body.blog-post-page .article-prose {
    animation: blogFadeUp .55s cubic-bezier(.2,.75,.25,1) both;
  }
  @keyframes blogFadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
@media (prefers-reduced-motion: reduce) {
  body.blog-page *,
  body.blog-page *::before,
  body.blog-page *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 980px) {
  body.blog-page nav#nav .nl > li > a:not(.nc) { padding: 0 .42rem; font-size: .72rem; }
  body.blog-page nav#nav .nc { padding: 0 .72rem; }
  .blog-featured-grid,
  .blog-final-cta-inner { grid-template-columns: 1fr; }
  .blog-article-row { grid-template-columns: 1fr; gap: .42rem; }
  body.blog-post-page .post-leia-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body.blog-page nav#nav { padding: 10px .75rem 0; }
  body.blog-page nav#nav .ni { height: 58px; border-radius: 24px; }
  body.blog-page nav#nav .nl.open {
    background: rgba(255,255,255,.96) !important;
    border: 1px solid rgba(80,44,108,.14) !important;
  }
  body.blog-page nav#nav .nl.open a:not(.nc) { color: var(--blog-ink) !important; }
  body.blog-page nav#nav .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: transparent; }
  .blog-hero-minimal { min-height: auto; }
  .blog-hero-inner { padding-top: 100px; padding-bottom: 70px; }
  .blog-hero-title { font-size: clamp(2.8rem, 13vw, 4.1rem); }
  .blog-hero-lead { font-size: 1rem; }
  .blog-hero-actions,
  .blog-cta-actions,
  .article-cta-actions { flex-direction: column; align-items: stretch; }
  .blog-btn,
  .article-btn { width: 100%; }
  .blog-featured { padding-top: 3rem; }
  body.blog-post-page .article-shell { padding-top: 96px; }
  body.blog-post-page .post-hero h1 { font-size: clamp(2.1rem, 10vw, 3rem); }
  body.blog-post-page .article-toc div { justify-content: flex-start; }
}

/* Refinamento visual desktop - hub editorial */
body.blog-page nav#nav .nav-dropdown-menu {
  left: 50%;
  transform: translate(-50%, 6px);
}
body.blog-page nav#nav .nav-dropdown:hover .nav-dropdown-menu,
body.blog-page nav#nav .nav-dropdown:focus-within .nav-dropdown-menu {
  transform: translate(-50%, 0);
}
body.blog-post-page nav#nav {
  position: sticky;
  top: 0;
  padding: 12px clamp(16px, 2.4vw, 34px);
  background: linear-gradient(180deg, rgba(251,248,244,.96), rgba(251,248,244,.88));
  backdrop-filter: blur(16px);
}
body.blog-post-page nav#nav .ni {
  height: 60px;
  background: rgba(29, 11, 47, .92);
}
body.blog-post-page .article-shell { padding-top: 22px; }
body.blog-post-page nav.article-breadcrumb,
body.blog-post-page .article-breadcrumb {
  position: relative;
  inset: auto;
  z-index: auto;
  width: auto;
  margin-bottom: .55rem;
  padding: .25rem 0 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
body.blog-post-page .post-hero { margin-bottom: .8rem; }
body.blog-post-page .post-hero::before { margin-bottom: .95rem; }
body.blog-post-page .post-hero__content { padding: .55rem 0 1rem; }

.blog-hero-minimal {
  min-height: 500px;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 20%, rgba(244,124,99,.22), transparent 20rem),
    radial-gradient(circle at 18% 74%, rgba(125,75,196,.26), transparent 24rem),
    linear-gradient(135deg, #14051f 0%, #24104a 50%, #5d2a68 100%);
}
.blog-hero-minimal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .34;
  background-image: url("data:image/svg+xml,%3Csvg width='1400' height='620' viewBox='0 0 1400 620' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.42' stroke-width='1.2'%3E%3Cpath d='M-70 470C140 350 258 565 470 420C700 263 822 445 1040 296C1190 194 1260 214 1470 88'/%3E%3Cpath d='M-90 385C146 240 280 438 510 286C708 155 872 277 1076 142C1235 37 1328 55 1480-52'/%3E%3Cpath d='M-40 575C188 472 325 660 566 520C764 404 956 472 1158 346C1295 260 1390 282 1485 210'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  pointer-events: none;
}
.blog-hero-minimal::after { height: 72px; }
.blog-hero-inner {
  max-width: 880px;
  padding-top: 110px;
  padding-bottom: 74px;
}
.blog-hero-orb {
  opacity: .16;
  animation: blogOrbDrift 16s ease-in-out infinite alternate;
}
.blog-hero-title { font-size: clamp(3.45rem, 5.7vw, 5.55rem); }
.blog-hero-title span {
  background: linear-gradient(92deg, #fff4d6 0%, #f7a871 34%, #d68cff 72%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.blog-featured { padding-top: 3.7rem; }
.blog-featured-grid { grid-template-columns: minmax(0, .98fr) minmax(0, 1fr); }
.blog-featured-cover {
  position: relative;
  display: grid;
  min-height: 370px;
  align-content: end;
  overflow: hidden;
  padding: 1.55rem;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  color: #fff;
  text-decoration: none;
  background:
    radial-gradient(circle at 78% 24%, rgba(247,168,113,.28), transparent 14rem),
    radial-gradient(circle at 18% 24%, rgba(214,140,255,.24), transparent 15rem),
    linear-gradient(135deg, #1a0928 0%, #321a59 52%, #8b416e 100%);
  box-shadow: 0 24px 62px rgba(37,18,52,.16);
}
.blog-featured-cover::before,
.blog-featured-cover::after,
.blog-card-visual::before,
.blog-card-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.blog-featured-cover::before {
  inset: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
}
.blog-featured-cover::after {
  right: -22%;
  top: 8%;
  width: 78%;
  height: 66%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.blog-featured-cover__label,
.blog-featured-cover__caption {
  position: relative;
  z-index: 1;
}
.blog-featured-cover__label {
  width: fit-content;
  margin-bottom: auto;
  padding: .45rem .7rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.blog-featured-cover__formula {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 6rem;
  color: #fff;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(4.2rem, 8vw, 6.6rem);
  line-height: .86;
}
.blog-featured-cover__caption {
  max-width: 330px;
  margin-top: 1rem;
  color: rgba(255,255,255,.76);
  font-size: .94rem;
  line-height: 1.55;
}

.blog-carousel { position: relative; margin-top: 1.55rem; }
.blog-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 36%);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: .35rem .15rem 1.1rem;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}
.blog-article-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  gap: .72rem;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(73,38,96,.10);
  border-radius: 22px;
  background: rgba(255,253,249,.78);
  box-shadow: 0 18px 44px rgba(36,19,48,.07);
  color: inherit;
  text-decoration: none;
  scroll-snap-align: start;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.blog-article-card:hover {
  transform: translateY(-2px);
  border-color: rgba(125,75,196,.28);
  box-shadow: 0 22px 54px rgba(36,19,48,.11);
}
.blog-card-visual {
  position: relative;
  display: grid;
  min-height: 135px;
  place-items: center;
  overflow: hidden;
  margin-bottom: .25rem;
  border-radius: 17px;
  background: linear-gradient(135deg, #211044 0%, #7d4bc4 58%, #f47c63 100%);
}
.blog-card-visual::before {
  inset: 18px -20px auto auto;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}
.blog-card-visual::after {
  left: 20px;
  right: 20px;
  bottom: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
}
.blog-card-visual span {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.94);
  font-family: 'DM Serif Display', serif;
  font-size: 3.3rem;
  line-height: 1;
}
.blog-card-visual i {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: 42%;
  height: 44px;
  border: 1px solid rgba(255,255,255,.22);
  border-width: 0 0 1px 1px;
  border-radius: 0 0 0 16px;
  transform: skewX(-18deg);
}
.blog-article-card strong {
  color: var(--blog-ink);
  font-size: 1.16rem;
  line-height: 1.22;
}
.blog-article-card > span:not(.blog-card-visual):not(.blog-article-meta) {
  color: var(--blog-muted);
  line-height: 1.56;
}
.blog-article-card em {
  margin-top: auto;
  color: var(--blog-purple-dark);
  font-style: normal;
  font-weight: 840;
}
.blog-cover--ic .blog-card-visual,
.post-leia-grid a:nth-child(2)::before {
  background: linear-gradient(135deg, #24104a 0%, #3d75bd 54%, #d68cff 100%);
}
.blog-cover--media .blog-card-visual,
.post-leia-grid a:nth-child(3)::before {
  background: linear-gradient(135deg, #211044 0%, #8e4f80 54%, #f7a871 100%);
}
.blog-cover--boxplot .blog-card-visual { background: linear-gradient(135deg, #1c1430 0%, #7d4bc4 48%, #56b6a5 100%); }
.blog-cover--math .blog-card-visual { background: linear-gradient(135deg, #170920 0%, #5e2f87 48%, #c45a91 100%); }

body.blog-post-page .article-related-end {
  margin-top: 2.45rem;
  padding-top: 1.55rem;
}
body.blog-post-page .post-leia-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  grid-template-columns: none;
  gap: .9rem;
  overflow-x: auto;
  padding: .2rem .1rem .85rem;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}
body.blog-post-page .post-leia-grid a {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  padding: .9rem;
  border-color: rgba(73,38,96,.10);
  border-radius: 18px;
  background: rgba(255,253,249,.78);
  box-shadow: 0 16px 38px rgba(36,19,48,.06);
  scroll-snap-align: start;
}
body.blog-post-page .post-leia-grid a::before {
  content: "";
  display: block;
  height: 96px;
  margin: 0 0 .75rem;
  border-radius: 14px;
  background:
    radial-gradient(circle at 80% 18%, rgba(247,168,113,.32), transparent 5rem),
    linear-gradient(135deg, #211044 0%, #7d4bc4 58%, #f47c63 100%);
}
body.blog-post-page .post-leia-grid a::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: #fff;
  font-weight: 820;
}
body.blog-post-page .post-leia-grid span:nth-child(2) { font-size: .98rem; }

body.blog-post-page .article-faq {
  margin-top: 2.5rem;
  padding-top: 2rem;
}
body.blog-post-page .post-faq-inner {
  border-top: 0;
  padding: 0;
}
body.blog-post-page .article-faq .lb { margin-bottom: .65rem; }
body.blog-post-page .article-faq .sh { margin-bottom: 1.15rem; }
body.blog-post-page .article-faq .fqg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
}
body.blog-post-page .article-faq .fi {
  padding: 0;
  border-top: 1px solid var(--blog-line);
  cursor: pointer;
}
body.blog-post-page .article-faq .fi:last-child { border-bottom: 1px solid var(--blog-line); }
body.blog-post-page .article-faq .fq {
  align-items: center;
  padding: 1.05rem 0;
  font-size: .98rem;
  font-weight: 650;
}
body.blog-post-page .article-faq .fico {
  display: flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blog-line);
  border-radius: 50%;
  background: rgba(255,253,249,.85);
  color: var(--blog-purple);
  font-size: 15px;
  transition: transform .25s ease, background .2s ease;
}
body.blog-post-page .article-faq .fi.op .fico {
  transform: rotate(45deg);
  background: rgba(125,75,196,.08);
}
body.blog-post-page .article-faq .fa {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  color: var(--blog-muted);
  font-size: .94rem;
  line-height: 1.75;
  transition: max-height .35s ease, margin .3s ease;
}
body.blog-post-page .article-faq .fi.op .fa {
  max-height: 420px;
  margin: 0 0 1rem;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes blogOrbDrift {
    from { transform: translate3d(0,0,0) scale(1); }
    to { transform: translate3d(18px,-12px,0) scale(1.05); }
  }
}
@media (max-width: 980px) {
  .blog-carousel-track { grid-auto-columns: minmax(280px, 72%); }
}
@media (max-width: 760px) {
  body.blog-post-page nav#nav {
    position: sticky;
    padding: 10px .75rem;
  }
  body.blog-post-page .article-shell { padding-top: 18px; }
  .blog-card-visual { min-height: 118px; }
  .blog-featured-cover { min-height: 310px; }
  .blog-carousel-track { grid-auto-columns: minmax(260px, 86%); }
  body.blog-post-page .post-leia-grid { grid-auto-columns: minmax(245px, 86%); }
}


/* Rodada fina: fidelidade ao hero principal, capas premium e sliders sem scrollbar */
.blog-hero-minimal {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 2rem 44px;
  text-align: center;
  background: #1a0a2e;
}
.blog-hero-minimal::before,
.blog-hero-minimal::after { display: none; }
.blog-hero-bg {
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
}
.blog-hero-bg svg { width: 100%; height: 100%; }
.blog-hero-orb { display: none; }
.blog-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
  padding: 0;
}
.blog-kicker.blog-kicker--light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  color: rgba(246,140,101,.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
}
.blog-kicker.blog-kicker--light::before,
.blog-kicker.blog-kicker--light::after {
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(246,140,101,.6);
}
.blog-hero-title {
  max-width: 760px;
  margin: 0 auto 16px;
  color: #fff;
  font-family: 'Cormorant Garamond','DM Serif Display',serif;
  font-size: clamp(2.6rem,5.2vw,4.65rem);
  font-weight: 300;
  line-height: 1.1;
}
.blog-hero-title span {
  font-style: italic;
  background: linear-gradient(135deg,#7B4FBE 0%,#c4608a 50%,#f68c65 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-hero-lead {
  max-width: 700px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,.58);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}
.blog-hero-actions { margin-top: 0; margin-bottom: 0; }
.blog-btn--primary,
.article-btn {
  background: linear-gradient(135deg,#7B4FBE 0%,#c4608a 50%,#f68c65 100%);
}
.blog-btn--ghost,
.article-btn--secondary {
  border-color: rgba(255,255,255,.25);
  background: transparent;
  color: rgba(255,255,255,.78);
}
.blog-btn--ghost:hover,
.article-btn--secondary:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.stat-cover {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 82% 18%, rgba(246,140,101,.28), transparent 10rem),
    radial-gradient(circle at 18% 18%, rgba(123,79,190,.36), transparent 11rem),
    linear-gradient(135deg,#170827 0%,#261148 48%,#713265 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.stat-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 78%);
  opacity: .52;
}
.stat-cover::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  pointer-events: none;
}
.stat-cover-svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
}
.stat-cover-svg text {
  fill: rgba(255,255,255,.88);
  font-family: 'Cormorant Garamond','DM Serif Display',serif;
  font-size: 44px;
  font-weight: 300;
}
.stat-cover-svg .cover-small {
  fill: rgba(255,255,255,.52);
  font-family: 'Inter',sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cover-curve,
.cover-axis,
.cover-marker,
.cover-whisker,
.cover-gridline,
.cover-intervals path,
.cover-dist {
  fill: none;
  stroke: url(#cv-p);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cover-curve-main,
.cover-dist { stroke-width: 2.4; opacity: .96; }
.cover-curve-soft { stroke-width: 1.2; opacity: .46; }
.cover-axis,
.cover-gridline { stroke: rgba(255,255,255,.20); stroke-width: 1; }
.cover-marker,
.cover-whisker,
.cover-intervals path { stroke: rgba(255,255,255,.62); stroke-width: 1.5; }
.cover-marker-soft { opacity: .42; }
.cover-points circle,
.cover-dot { fill: #f68c65; filter: drop-shadow(0 0 8px rgba(246,140,101,.45)); }
.cover-band { fill: rgba(123,79,190,.16); stroke: rgba(255,255,255,.26); stroke-width: 1; }
.cover-band-soft { opacity: .5; }
.cover-box { fill: rgba(255,255,255,.08); stroke: rgba(255,255,255,.56); stroke-width: 1.5; }
.stat-cover--ic { background: radial-gradient(circle at 78% 20%, rgba(104,134,214,.30), transparent 10rem), linear-gradient(135deg,#170827 0%,#25205a 52%,#704c9e 100%); }
.stat-cover--media { background: radial-gradient(circle at 72% 22%, rgba(246,140,101,.28), transparent 10rem), linear-gradient(135deg,#180828 0%,#44214f 52%,#8b416e 100%); }
.stat-cover--boxplot { background: radial-gradient(circle at 76% 20%, rgba(111,181,170,.28), transparent 10rem), linear-gradient(135deg,#171126 0%,#32215c 52%,#287d7a 100%); }
.stat-cover--math { background: radial-gradient(circle at 80% 18%, rgba(196,96,138,.28), transparent 10rem), linear-gradient(135deg,#150720 0%,#331b55 52%,#6b2e72 100%); }

.blog-featured-cover {
  min-height: 390px;
  padding: 1.35rem;
  align-content: stretch;
  gap: 1rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 20%, rgba(246,140,101,.22), transparent 15rem),
    linear-gradient(135deg,#170827 0%,#261148 48%,#713265 100%);
}
.blog-featured-cover::before,
.blog-featured-cover::after { display: none; }
.blog-featured-cover .stat-cover {
  min-height: 250px;
  flex: 1;
  border-radius: 21px;
}
.blog-featured-cover .stat-cover-svg { min-height: 250px; }
.blog-featured-cover__label { margin: 0; }
.blog-featured-cover__formula { display: none; }
.blog-featured-cover__caption {
  max-width: 380px;
  margin-top: 0;
  padding: 0 .25rem .15rem;
}

.blog-slider {
  position: relative;
  margin-top: 1.55rem;
}
.blog-slider-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 24px;
}
.blog-slider-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}
.blog-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(26,10,46,.86);
  color: #fff;
  box-shadow: 0 14px 34px rgba(26,10,46,.18);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background .18s ease, transform .18s ease, opacity .18s ease;
}
.blog-slider-btn:hover { background: rgba(123,79,190,.96); transform: translateY(-50%) scale(1.03); }
.blog-slider-btn--prev { left: -18px; }
.blog-slider-btn--next { right: -18px; }
.blog-article-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-height: 390px;
  padding: 1rem;
  border: 1px solid rgba(123,79,190,.10);
  border-radius: 22px;
  background: rgba(255,253,249,.82);
}
.blog-card-visual {
  min-height: 168px;
  margin-bottom: .35rem;
  background: transparent;
}
.blog-card-visual::before,
.blog-card-visual::after,
.blog-card-visual i { display: none; }
.blog-card-visual span { font-size: inherit; }
.blog-carousel,
.blog-carousel-track { display: none; }
.blog-slider--home .blog-slider-viewport { padding: .25rem .1rem 1.2rem; }
.blog-slider--home .blog-article-card { scroll-snap-align: none; }

body.blog-post-page .article-shell { padding-top: 12px; }
body.blog-post-page .article-breadcrumb,
body.blog-post-page nav.article-breadcrumb { margin-bottom: .25rem; padding-top: 0; }
body.blog-post-page .post-hero { margin-bottom: .35rem; }
body.blog-post-page .post-hero::before { margin-bottom: .55rem; }
body.blog-post-page .post-hero__content { padding: .35rem 0 .72rem; }
body.blog-post-page .post-hero__content > p:not(.post-hero__category) { margin-top: .75rem; }
body.blog-post-page .post-hero__meta { margin-top: .75rem; }
body.blog-post-page .article-toc { margin-bottom: 1.65rem; }

body.blog-post-page .article-related-end {
  margin-top: 1.85rem;
  padding-top: 1.2rem;
}
body.blog-post-page .post-leia-slider { margin-top: .7rem; }
body.blog-post-page .post-leia-slider .blog-slider-viewport { border-radius: 20px; }
body.blog-post-page .post-leia-grid {
  display: flex;
  grid-auto-flow: initial;
  grid-template-columns: none;
  gap: .85rem;
  overflow: visible;
  padding: 0;
  scroll-snap-type: none;
  scrollbar-width: none;
}
body.blog-post-page .post-leia-grid::-webkit-scrollbar { display: none; }
body.blog-post-page .post-leia-grid a {
  flex: 0 0 calc((100% - 1.7rem) / 3);
  min-height: 250px;
  padding: .85rem;
  border-radius: 18px;
  background: rgba(255,253,249,.84);
}
body.blog-post-page .post-leia-grid a::before,
body.blog-post-page .post-leia-grid a::after { display: none; }
body.blog-post-page .post-leia-grid .stat-cover {
  height: 112px;
  margin: 0 0 .72rem;
  border-radius: 14px;
}
body.blog-post-page .post-leia-grid .stat-cover-svg { min-height: 112px; }
body.blog-post-page .post-leia-grid .stat-cover-svg text { font-size: 36px; }
body.blog-post-page .post-leia-grid .stat-cover-svg .cover-small { font-size: 11px; }
body.blog-post-page .post-leia-grid span:first-child:not(.stat-cover) { color: var(--blog-purple); }
body.blog-post-page .article-faq {
  margin-top: 1.45rem;
  padding-top: 1.25rem;
}
body.blog-post-page .article-faq .sh { margin-bottom: .8rem; }

@media (max-width: 980px) {
  .blog-article-card { flex-basis: calc((100% - 1rem) / 2); }
  body.blog-post-page .post-leia-grid a { flex-basis: calc((100% - .85rem) / 2); }
}
@media (max-width: 760px) {
  .blog-hero-minimal { min-height: auto; padding: 104px 1.25rem 64px; }
  .blog-slider-btn { width: 38px; height: 38px; }
  .blog-slider-btn--prev { left: 6px; }
  .blog-slider-btn--next { right: 6px; }
  .blog-article-card,
  body.blog-post-page .post-leia-grid a { flex-basis: 86%; }
}
/* Cores locais das capas para evitar dependência entre SVGs inline clonados */
.stat-cover-svg .cover-curve,
.stat-cover-svg .cover-dist { stroke: rgba(246,140,101,.92); }
.stat-cover-svg .cover-curve-soft { stroke: rgba(196,96,138,.52); }
.stat-cover-svg .cover-band { fill: rgba(123,79,190,.16); stroke: rgba(255,255,255,.26); }
.stat-cover-svg .cover-axis,
.stat-cover-svg .cover-gridline { stroke: rgba(255,255,255,.20); }
.stat-cover-svg .cover-marker,
.stat-cover-svg .cover-whisker,
.stat-cover-svg .cover-intervals path { stroke: rgba(255,255,255,.62); }
