.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content-page {
  background: var(--asc-bg-elev);
}

.content-hero,
.article-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(56% 90% at 88% -10%, rgba(154, 91, 194, 0.16), transparent 62%),
    radial-gradient(40% 70% at 4% 110%, rgba(92, 33, 120, 0.09), transparent 60%),
    linear-gradient(180deg, #FAF7FD 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--asc-divider);
}
/* textura pontilhada sutil, esvaindo para baixo — padrão de todos os cabeçalhos de conteúdo */
.content-hero::before,
.article-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 1px, rgba(92, 33, 120, 0.14) 1px, transparent 1.6px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 72%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 72%);
  pointer-events: none;
}
.content-hero-inner,
.article-header-inner {
  position: relative;
}

.content-hero {
  padding: 84px 0 72px;
}

/* .content-hero-inner segue a grade do .container; largura de leitura fica nos elementos */

.content-hero h1,
.article-header h1 {
  margin: 18px 0 0;
  color: var(--asc-fg-strong);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: var(--asc-fw-black);
  max-width: 920px;
}

.content-hero p,
.article-header p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--asc-fg-muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
}

.search-form {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  max-width: 720px;
}

.search-form input {
  flex: 1;
  min-width: 0;
  height: 52px;
  border: 1px solid var(--asc-border);
  border-radius: 12px;
  padding: 0 16px;
  color: var(--asc-fg);
  background: #fff;
  font: inherit;
  outline: none;
}

.search-form input:focus {
  border-color: var(--asc-purple-300);
  box-shadow: 0 0 0 4px var(--asc-focus-ring);
}

.content-section {
  padding: 72px 0 96px;
}

.blog-shell,
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 32px;
}

.blog-main,
.article-main {
  min-width: 0;
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head-row h2 {
  margin: 0;
  color: var(--asc-fg-strong);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-head-row p {
  margin: 8px 0 0;
  color: var(--asc-fg-muted);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.post-card,
.material-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  border: 1px solid var(--asc-divider);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--asc-shadow-sm);
}

.post-card {
  overflow: hidden;
}

.post-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.post-card-cover {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--asc-bg-subtle);
  overflow: hidden;
}

.post-card-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.post-card:hover .post-card-cover img {
  transform: scale(1.025);
}

.material-card {
  min-height: 100%;
  padding: 0;
  overflow: hidden;
}

.material-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.material-cover {
  display: block;
  aspect-ratio: 1024 / 437;
  background: var(--asc-bg-subtle);
  overflow: hidden;
}

.material-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.material-card:hover .material-cover img {
  transform: scale(1.025);
}

.post-card-meta,
.article-meta,
.material-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--asc-fg-subtle);
  font-size: 13px;
  font-weight: var(--asc-fw-medium);
}

.post-card h2,
.material-card h2 {
  margin: 18px 0 0;
  color: var(--asc-fg-strong);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  overflow-wrap: anywhere;
}

.post-card p {
  margin: 14px 0 0;
  color: var(--asc-fg-muted);
  line-height: 1.55;
}
.material-card p {
  margin: 14px 0 0;
  color: var(--asc-fg-muted);
  line-height: 1.55;
  padding-bottom: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag-row span,
.tag-row a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--asc-purple-50);
  color: var(--asc-purple-700);
  font-size: 12px;
  font-weight: var(--asc-fw-bold);
}

.tag-row a:hover {
  background: var(--asc-purple-100);
  color: var(--asc-purple-800);
}

.read-more,
.material-card .btn {
  margin-top: auto;
}

.material-card .btn {
  width: 100%;
  justify-content: center;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--asc-purple-700);
  font-weight: var(--asc-fw-bold);
  padding-top: 24px;
}

.pagination {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  margin-top: 34px;
  overflow-x: auto;
  padding-bottom: 4px;
  justify-content: center;
}

.pagination a,
.pagination-ellipsis {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--asc-border);
  border-radius: 8px;
  color: var(--asc-fg);
  font-size: 13px;
  font-weight: var(--asc-fw-bold);
}

.pagination .pagination-arrow {
  width: 28px;
  border-color: transparent;
  color: var(--asc-fg-muted);
  font-size: 20px;
  line-height: 1;
}

.pagination .pagination-arrow:hover {
  background: var(--asc-bg-subtle);
  color: var(--asc-purple-700);
}

.pagination .pagination-arrow[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.35;
}

.pagination-ellipsis {
  width: 26px;
  border-color: transparent;
  color: var(--asc-fg-subtle);
}

.pagination a[aria-current="page"] {
  background: var(--asc-purple-600);
  border-color: var(--asc-purple-600);
  color: #fff;
}

.empty-state {
  max-width: 680px;
  padding: 36px;
  border: 1px solid var(--asc-divider);
  border-radius: 8px;
  background: var(--asc-bg-subtle);
}

.empty-state h2 {
  margin: 0;
}

.empty-state p {
  color: var(--asc-fg-muted);
  margin-bottom: 24px;
}

.article-header {
  padding: 72px 0 56px;
}

.article-header-inner {
  max-width: 920px;
}

.back-link {
  display: inline-flex;
  color: var(--asc-purple-700);
  font-weight: var(--asc-fw-bold);
  margin-bottom: 18px;
}

.article-header .tag-row {
  margin-top: 24px;
}

.article-body {
  max-width: 820px;
  padding-top: 56px;
  padding-bottom: 96px;
}

.legal-intro {
  display: grid;
  gap: 8px;
  margin: 0 0 34px;
}

.legal-intro p {
  margin: 0;
}

.legal-intro-kicker {
  color: var(--asc-fg-strong);
  font-size: 17px;
}

.legal-intro-title {
  color: var(--asc-fg-strong);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  font-weight: var(--asc-fw-black);
}

.legal-intro-subtitle {
  margin-top: 6px;
  color: var(--asc-fg);
  font-size: 18px;
  line-height: 1.45;
}

.legal-note {
  margin: 48px 0;
  padding: 24px 28px 8px 20px;
  border: 1px solid rgba(92, 33, 120, 0.18);
  border-left: 5px solid var(--asc-purple-600);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, var(--asc-purple-50) 100%);
  box-shadow: var(--asc-shadow-sm);
}

.legal-note p {
  margin: 0;
  color: var(--asc-fg-strong);
  font-weight: var(--asc-fw-bold);
  line-height: 1.55;
}

.article-shell {
  padding-top: 40px;
  padding-bottom: 96px;
}

.article-shell .article-body {
  max-width: none;
  padding-top: 28px;
  padding-bottom: 0;
}

.article-cover {
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--asc-bg-subtle);
  box-shadow: var(--asc-shadow-sm);
}

.article-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
}

.sidebar-panel {
  padding: 22px;
  border: 1px solid var(--asc-divider);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--asc-shadow-sm);
}

.sidebar-panel h2 {
  margin: 0 0 16px;
  color: var(--asc-fg-strong);
  font-size: 20px;
  line-height: 1.2;
}

.category-list {
  display: grid;
  gap: 8px;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--asc-fg);
  font-size: 14px;
  font-weight: var(--asc-fw-bold);
}

.category-list a:hover,
.category-list a[aria-current="page"] {
  border-color: var(--asc-purple-200);
  background: var(--asc-purple-50);
  color: var(--asc-purple-700);
}

.category-list strong {
  min-width: 28px;
  color: var(--asc-fg-subtle);
  text-align: right;
  font-size: 12px;
}

.newsletter-panel p {
  margin: 0 0 16px;
  color: var(--asc-fg-muted);
  font-size: 14px;
  line-height: 1.55;
}

.newsletter-form {
  display: grid;
  gap: 10px;
}

.newsletter-form input {
  width: 100%;
  min-width: 0;
  height: 48px;
  border: 1px solid var(--asc-border);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--asc-fg);
  background: #fff;
  font: inherit;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--asc-purple-300);
  box-shadow: 0 0 0 4px var(--asc-focus-ring);
}

.newsletter-form .btn {
  width: 100%;
  justify-content: center;
}

.share-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--asc-divider);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--asc-shadow-sm);
}

.share-box > span {
  color: var(--asc-fg-strong);
  font-weight: var(--asc-fw-bold);
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.share-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--asc-border);
  border-radius: 8px;
  color: var(--asc-purple-700);
}

.share-actions a:hover {
  border-color: var(--asc-purple-300);
  background: var(--asc-purple-50);
}

.share-actions svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.related-posts {
  margin-top: 72px;
}

.related-posts .section-head-row {
  margin-bottom: 20px;
}

.related-grid .post-card {
  min-height: 250px;
}

.updates-list {
  display: grid;
  gap: 18px;
}

.update-card {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  border: 1px solid var(--asc-divider);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--asc-shadow-sm);
  overflow: hidden;
}

.update-card-cover {
  display: block;
  min-height: 170px;
  background: var(--asc-bg-subtle);
}

.update-card-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.update-card:hover .update-card-cover img {
  transform: scale(1.025);
}

.update-card-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px;
}

.update-card time {
  color: var(--asc-fg-subtle);
  font-size: 13px;
  font-weight: var(--asc-fw-bold);
}

.update-card h2 {
  margin: 10px 0 0;
  color: var(--asc-fg-strong);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
}

.update-card h2 a {
  color: inherit;
}

.update-card p {
  margin: 12px 0 0;
  color: var(--asc-fg-muted);
  line-height: 1.55;
}

.update-card .read-more {
  width: fit-content;
}

.update-article {
  max-width: 980px;
  padding-top: 46px;
  padding-bottom: 96px;
}

.update-body {
  max-width: none;
  padding: 0;
}

.update-accordion {
  margin: 18px 0;
  border: 1px solid var(--asc-divider);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--asc-shadow-sm);
  overflow: hidden;
}

.update-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 60px;
  padding: 16px 54px 16px 22px;
  color: var(--asc-fg-strong);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.25;
  font-weight: var(--asc-fw-medium);
  cursor: pointer;
  list-style: none;
}

.update-accordion-title {
  display: block;
  min-width: 0;
}

.update-accordion-title strong {
  font-weight: inherit;
}

.update-accordion summary::-webkit-details-marker {
  display: none;
}

.update-accordion summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--asc-purple-700);
  border-bottom: 2px solid var(--asc-purple-700);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.update-accordion[open] summary {
  border-bottom: 1px solid var(--asc-divider);
}

.update-accordion[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.update-accordion-content {
  padding: 26px 28px 10px;
}

.update-caption {
  margin-top: -22px !important;
  color: var(--asc-fg-subtle) !important;
  font-size: 14px !important;
  text-align: center;
}

.update-figure {
  overflow: hidden;
  border: 1px solid var(--asc-divider);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--asc-shadow-sm);
}

.update-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.update-table-wrap {
  overflow-x: auto;
  margin: 34px 0;
}

.update-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.update-table-wrap td {
  padding: 18px;
  border: 1px solid var(--asc-divider);
  vertical-align: middle;
}

.update-table-wrap td:first-child {
  width: 38%;
}

.update-table-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.update-table-wrap p {
  margin-bottom: 14px;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  color: var(--asc-fg-strong);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 38px 0 12px;
}

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

.article-body h3 {
  font-size: 24px;
}

.article-body p,
.article-body li {
  color: var(--asc-fg);
  font-size: 18px;
  line-height: 1.75;
}

.article-body p {
  margin: 0 0 20px;
}

.article-body ul {
  margin: 0 0 24px;
  padding-left: 24px;
}

.article-body a {
  color: var(--asc-purple-700);
  font-weight: var(--asc-fw-bold);
}

.article-body figure {
  margin: 34px 0;
}

.article-body figure img,
.article-body p img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.article-body code {
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--asc-bg-subtle);
  color: var(--asc-purple-700);
}

.article-body pre {
  overflow-x: auto;
  padding: 18px;
  border-radius: 8px;
  background: var(--asc-ink-900);
  color: #fff;
}

/* ---------- 404 ---------- */
.error-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 96px 0;
  background-color: #5c2178;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.error-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(92, 33, 120, 0.35) 0%, rgba(92, 33, 120, 0.1) 50%, rgba(92, 33, 120, 0.45) 100%);
}

.error-hero .hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  filter: blur(80px) saturate(1.6);
}

.error-hero .aurora-blob {
  position: absolute;
  border-radius: 50%;
}

.error-hero .aurora-blob--1 {
  width: 75%;
  height: 130%;
  top: 0;
  left: -5%;
  background: radial-gradient(ellipse at 40% 50%, #9A5BC2 0%, #7A37A4 30%, #5C2178 55%, transparent 75%);
  opacity: 0.85;
}

.error-hero .aurora-blob--2 {
  width: 70%;
  height: 110%;
  top: -5%;
  right: 0;
  background: radial-gradient(ellipse at 60% 45%, #BD8AD9 0%, #9A5BC2 35%, #5C2178 60%, transparent 80%);
  opacity: 0.65;
}

.error-hero .aurora-blob--3 {
  width: 60%;
  height: 100%;
  bottom: -10%;
  left: 20%;
  background: radial-gradient(ellipse at 50% 60%, #5C2178 0%, #4A1A62 40%, #240C30 65%, transparent 82%);
  opacity: 0.9;
}

.error-hero .aurora-blob--4 {
  width: 45%;
  height: 80%;
  top: 5%;
  left: 10%;
  background: radial-gradient(ellipse at 45% 40%, #D8B7EB 0%, #BD8AD9 30%, #9A5BC2 55%, transparent 78%);
  opacity: 0.45;
}

.error-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.error-hero .eyebrow {
  color: var(--asc-lilac-400);
}

.error-code {
  margin: 18px 0 0;
  font-family: var(--asc-font-display);
  font-weight: var(--asc-fw-black);
  font-size: clamp(96px, 18vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #D8B7EB 55%, #BD8AD9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.error-hero h1 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.02em;
}

.error-lead {
  max-width: 520px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

@media (max-width: 680px) {
  .error-hero {
    padding: 64px 0;
  }

  .error-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .blog-shell,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .post-grid,
  .material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .content-hero,
  .article-header {
    padding: 56px 0 44px;
  }

  .search-form {
    flex-direction: column;
  }

  .search-form .btn {
    width: 100%;
    justify-content: center;
  }

  .post-grid,
  .material-grid {
    grid-template-columns: 1fr;
  }

  .article-body {
    padding-top: 38px;
  }

  .article-shell {
    padding-top: 28px;
  }

  .share-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .share-actions {
    justify-content: flex-start;
  }

  .update-card {
    grid-template-columns: 1fr;
  }

  .update-card-cover {
    min-height: 0;
    aspect-ratio: 16 / 7;
  }

  .update-table-wrap table,
  .update-table-wrap tbody,
  .update-table-wrap tr,
  .update-table-wrap td {
    display: block;
    width: 100%;
  }

  .update-table-wrap td:first-child {
    width: 100%;
  }
}

/* ─────────── Cabeçalho premium de páginas de conteúdo (padrão) ─────────── */
html {
  scroll-behavior: smooth;
}

/* barra de acento acima do eyebrow (opcional, ver materiais-ricos) */
.content-hero-accent {
  display: block;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9A5BC2, #5C2178);
  margin-bottom: 18px;
}

.content-hero h1 em,
.article-header h1 em {
  font-style: normal;
  background: linear-gradient(92deg, #9A5BC2 0%, #7A2FD0 55%, #5C2178 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.content-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
.content-hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--asc-border);
  box-shadow: 0 2px 8px rgba(36, 12, 48, 0.05);
  color: var(--asc-fg-muted);
  font-size: 14px;
}
.content-hero-chips li b {
  color: var(--asc-purple-700, #5C2178);
  font-weight: 700;
}

.content-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}
.content-hero-note {
  color: var(--asc-fg-muted);
  font-size: 14px;
}

/* entrada única e discreta (sem loops) */
.content-hero-inner > *,
.article-header-inner > * {
  animation: chFadeUp 0.6s ease both;
}
.content-hero-inner > *:nth-child(1),
.article-header-inner > *:nth-child(1) { animation-delay: 0.04s; }
.content-hero-inner > *:nth-child(2),
.article-header-inner > *:nth-child(2) { animation-delay: 0.1s; }
.content-hero-inner > *:nth-child(3),
.article-header-inner > *:nth-child(3) { animation-delay: 0.16s; }
.content-hero-inner > *:nth-child(4),
.article-header-inner > *:nth-child(4) { animation-delay: 0.22s; }
.content-hero-inner > *:nth-child(5),
.article-header-inner > *:nth-child(5) { animation-delay: 0.28s; }
.content-hero-inner > *:nth-child(6),
.article-header-inner > *:nth-child(6) { animation-delay: 0.34s; }

@keyframes chFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .content-hero *,
  .content-hero ::before,
  .content-hero ::after,
  .article-header *,
  .article-header ::before,
  .article-header ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  html {
    scroll-behavior: auto;
  }
}
