:root {
  --article-bg: #f7f5ef;
  --article-paper: #fffdfa;
  --article-ink: #172c3d;
  --article-muted: #586875;
  --article-line: #dce3e4;
  --article-blue: #1f5c72;
  --article-blue-dark: #153f50;
  --article-blue-soft: #e7f2f4;
  --article-coral: #d9684c;
  --article-coral-soft: #fae7df;
  --article-gold: #bc8724;
  --article-gold-soft: #fff3cf;
  --article-green: #34735b;
  --article-green-soft: #e4f1e9;
  --article-shadow: 0 18px 48px rgba(29, 50, 59, 0.09);
  --article-radius: 20px;
  --article-reading-width: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--article-bg);
  color: var(--article-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--article-blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--article-blue-dark);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #f0a927;
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: var(--article-ink);
  color: #fff;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  border-bottom: 1px solid rgba(23, 44, 61, 0.1);
  background: rgba(255, 253, 250, 0.96);
}

.site-header__inner,
.site-footer__inner,
.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--article-ink);
  text-decoration: none;
}

.brand img {
  display: block;
  border-radius: 12px;
}

.brand__name {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__section {
  padding-left: 0.65rem;
  border-left: 1px solid var(--article-line);
  color: var(--article-muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.site-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  color: var(--article-ink);
  text-decoration: none;
}

.breadcrumbs {
  padding: 1.25rem 0 0;
  font-size: 0.8rem;
  color: var(--article-muted);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  color: #9aa6ab;
}

.breadcrumbs a {
  color: inherit;
}

.article-header {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0 3rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--article-coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-header h1 {
  max-width: 850px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 7vw, 5.4rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.article-deck {
  max-width: 760px;
  margin: 1.5rem auto 0;
  color: #405560;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.62;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1.4rem;
  margin-top: 1.4rem;
  color: var(--article-muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.article-byline span:not(:first-child)::before {
  content: "·";
  margin-right: 1.4rem;
}

.process-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin: 3.25rem 0 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(31, 92, 114, 0.16);
  border-radius: 28px;
  background: linear-gradient(135deg, #edf6f7, #fffaf0 54%, #fbece6);
  box-shadow: var(--article-shadow);
  text-align: left;
}

.process-card {
  min-height: 156px;
  padding: 1.2rem;
  border: 1px solid rgba(23, 44, 61, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
}

.process-card strong {
  display: block;
  margin: 0.25rem 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.process-label {
  display: block;
  color: var(--article-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-line {
  display: block;
  width: 74%;
  height: 7px;
  margin: 0.55rem 0;
  border-radius: 10px;
  background: #d9e6e8;
}

.paper-line--wide { width: 92%; }
.paper-line--short { width: 58%; }

.word-chip,
.mini-game {
  display: inline-block;
  margin: 0.65rem 0.3rem 0 0;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.word-chip {
  background: var(--article-gold-soft);
  color: #6b4b0d;
}

.mini-game {
  background: var(--article-green-soft);
  color: #245441;
}

.process-arrow {
  color: var(--article-coral);
  font-size: 1.9rem;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, var(--article-reading-width));
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-bottom: 5rem;
}

.table-of-contents {
  position: sticky;
  top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--article-line);
  border-radius: 16px;
  background: rgba(255, 253, 250, 0.82);
  font-size: 0.79rem;
  line-height: 1.45;
}

.table-of-contents__title {
  margin: 0 0 0.7rem;
  color: var(--article-ink);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-of-contents ol {
  display: grid;
  gap: 0.42rem;
  margin: 0;
  padding-left: 1.15rem;
}

.table-of-contents a {
  color: var(--article-muted);
  text-decoration: none;
}

.article-body {
  min-width: 0;
}

.article-body > section {
  margin: 0 0 4.2rem;
}

.article-body h2 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.article-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  line-height: 1.35;
}

.article-body p {
  margin: 0 0 1.2rem;
}

.answer-box,
.note-box,
.source-box,
.checklist-card {
  margin: 1.65rem 0;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border-radius: var(--article-radius);
}

.answer-box {
  border: 1px solid #c7dfd3;
  background: var(--article-green-soft);
}

.answer-box__label,
.source-box__title {
  margin: 0 0 0.8rem !important;
  color: var(--article-green);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.steps-inline {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.35rem;
}

.note-box {
  border-left: 5px solid var(--article-gold);
  background: var(--article-gold-soft);
}

.note-box p {
  margin: 0.3rem 0 0;
}

.table-wrap {
  max-width: 100%;
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--article-line);
  border-radius: 16px;
  background: var(--article-paper);
}

table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  font-size: 0.88rem;
  line-height: 1.45;
}

th,
td {
  padding: 0.95rem;
  border-bottom: 1px solid var(--article-line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--article-blue-soft);
  color: var(--article-blue-dark);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.activity-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  margin: 1rem 0;
  padding: 1.35rem;
  border: 1px solid var(--article-line);
  border-radius: 16px;
  background: var(--article-paper);
}

.activity-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 !important;
  place-items: center;
  border-radius: 50%;
  background: var(--article-coral-soft);
  color: #9d412b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 750;
}

.activity-card p:last-child {
  margin-bottom: 0;
}

.activity-check {
  color: var(--article-muted);
  font-size: 0.88rem;
}

.example-card {
  margin: 1.5rem 0;
  overflow: hidden;
  border: 1px solid #c8dadd;
  border-radius: 22px;
  background: var(--article-paper);
  box-shadow: var(--article-shadow);
}

.example-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 1.25rem;
  background: var(--article-blue-soft);
}

.example-card__list span {
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(31, 92, 114, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--article-blue-dark);
  font-weight: 800;
}

.example-card__steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: example-step;
}

.example-card__steps li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
  position: relative;
  padding: 1rem 1.25rem 1rem 3.7rem;
  border-bottom: 1px solid var(--article-line);
  counter-increment: example-step;
}

.example-card__steps li:last-child {
  border-bottom: 0;
}

.example-card__steps li::before {
  content: counter(example-step);
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--article-ink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.example-card__steps span {
  color: var(--article-muted);
  font-size: 0.9rem;
}

.timeline {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0;
}

.timeline div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 13px;
  background: var(--article-paper);
  box-shadow: inset 4px 0 0 var(--article-coral);
}

.timeline span {
  color: var(--article-muted);
}

.source-box {
  border: 1px solid #ccdce9;
  background: #eef5fa;
  font-size: 0.86rem;
}

.source-box__title {
  color: var(--article-blue);
}

.source-box ul {
  margin: 0;
  padding-left: 1.2rem;
}

.mistake-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.mistake-list li {
  padding: 1rem 1rem 1rem 2.9rem;
  position: relative;
  border-bottom: 1px solid var(--article-line);
}

.mistake-list li::before {
  content: "×";
  position: absolute;
  left: 0.8rem;
  color: var(--article-coral);
  font-size: 1.35rem;
  font-weight: 800;
}

.product-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 26px;
  background: var(--article-ink);
  color: #fff;
  box-shadow: var(--article-shadow);
}

.product-section .eyebrow {
  color: #ffb39f;
}

.product-section h2 {
  color: #fff;
}

.product-section__copy > p:not(.eyebrow) {
  color: #d9e2e7;
}

.article-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.35rem 0 0.75rem;
  padding: 0.82rem 1.05rem;
  border-radius: 11px;
  background: #fff;
  color: var(--article-ink);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.article-cta:hover {
  background: var(--article-gold-soft);
  color: var(--article-ink);
}

.product-section__note {
  margin-bottom: 0 !important;
  font-size: 0.78rem;
}

.product-section__flow {
  display: grid;
  gap: 0.75rem;
}

.product-section__flow div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.product-section__flow span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--article-coral);
  font-weight: 850;
}

.product-section__flow p {
  margin: 0;
  color: #d9e2e7;
  font-size: 0.82rem;
  line-height: 1.45;
}

.product-section__flow strong {
  color: #fff;
}

.checklist-card {
  border: 1px solid #c7dfd3;
  background: var(--article-green-soft);
}

.checklist-card h3 {
  margin-top: 1.3rem;
}

.checklist-card h3:first-child {
  margin-top: 0;
}

.checklist {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid var(--article-green);
  border-radius: 4px;
  background: #fff;
}

.faq-list {
  border-top: 1px solid var(--article-line);
}

.faq-list details {
  border-bottom: 1px solid var(--article-line);
}

.faq-list summary {
  padding: 1rem 2.2rem 1rem 0;
  position: relative;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 0.85rem;
  right: 0;
  color: var(--article-coral);
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding-right: 2rem;
}

.related-links {
  padding-top: 2rem;
  border-top: 1px solid var(--article-line);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.related-grid a {
  min-height: 150px;
  padding: 1rem;
  border: 1px solid var(--article-line);
  border-radius: 14px;
  background: var(--article-paper);
  color: var(--article-ink);
  text-decoration: none;
}

.related-grid a:hover {
  border-color: var(--article-blue);
  box-shadow: 0 10px 24px rgba(29, 50, 59, 0.08);
}

.related-grid span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--article-coral);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-grid strong {
  line-height: 1.4;
}

.final-note {
  padding: 2rem 0 0;
  border-top: 1px solid var(--article-line);
}

.text-cta {
  display: inline-block;
  font-weight: 850;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(23, 44, 61, 0.12);
  background: var(--article-paper);
  color: var(--article-muted);
  font-size: 0.82rem;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
  font-weight: 750;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .table-of-contents {
    position: static;
    max-width: var(--article-reading-width);
    margin: 0 auto;
    columns: 2;
  }

  .article-body {
    width: min(100%, var(--article-reading-width));
    margin: 0 auto;
  }

  .process-visual {
    grid-template-columns: 1fr;
  }

  .process-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .brand__section,
  .site-nav {
    display: none;
  }

  .article-header {
    padding-top: 2.8rem;
    text-align: left;
  }

  .article-header h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .article-deck {
    font-size: 1.03rem;
  }

  .article-byline {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.15rem;
  }

  .article-byline span:not(:first-child)::before {
    content: none;
  }

  .process-visual {
    margin-top: 2rem;
  }

  .table-of-contents {
    columns: 1;
  }

  .article-body > section {
    margin-bottom: 3.4rem;
  }

  .activity-card {
    grid-template-columns: 38px 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }

  .activity-number {
    width: 34px;
    height: 34px;
  }

  .timeline div,
  .product-section,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .timeline div {
    gap: 0.2rem;
  }

  .article-cta {
    width: 100%;
  }

  .site-footer__inner {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .site-header,
  .site-footer,
  .breadcrumbs,
  .table-of-contents,
  .process-visual,
  .product-section,
  .related-links,
  .final-note {
    display: none !important;
  }

  .article-layout {
    display: block;
  }

  .article-header {
    padding: 1rem 0 2rem;
  }

  .article-header h1 {
    font-size: 30pt;
  }

  .article-body > section {
    break-inside: avoid;
  }

  .checklist-card {
    border: 1px solid #777;
    background: #fff;
  }
}
/* Persistent editorial conversion CTA */
body:has(.editorial-sticky-cta) {
  padding-bottom: 96px;
}

.editorial-sticky-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.1rem;
  left: 1.25rem;
  z-index: 90;
  pointer-events: none;
}

.editorial-sticky-cta__inner {
  display: flex;
  width: min(880px, 100%);
  min-height: 66px;
  margin: 0 auto;
  padding: 0.5rem 0.55rem 0.5rem 1.15rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(18, 38, 52, 0.98),
      rgba(24, 53, 67, 0.96)
    );
  box-shadow:
    0 20px 50px rgba(15, 31, 42, 0.28),
    0 4px 14px rgba(15, 31, 42, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  pointer-events: auto;
}

.editorial-sticky-cta__copy {
  display: grid;
  min-width: 0;
  gap: 0.05rem;
}

.editorial-sticky-cta__copy strong {
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.94rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.editorial-sticky-cta__copy span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.editorial-sticky-cta__button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 1.3rem;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      #f47a58 0%,
      #db5639 100%
    );
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  box-shadow:
    0 9px 22px rgba(217, 86, 57, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition:
    transform 160ms ease,
    filter 160ms ease,
    box-shadow 160ms ease;
}

.editorial-sticky-cta__button::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  transition: transform 160ms ease;
}

.editorial-sticky-cta__button:hover {
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow:
    0 13px 28px rgba(217, 86, 57, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.editorial-sticky-cta__button:hover::after {
  transform: translateX(3px);
}

.editorial-sticky-cta__button:active {
  transform: translateY(0) scale(0.99);
}

.editorial-sticky-cta__button:focus-visible {
  outline: 3px solid #ffd166;
  outline-offset: 4px;
}

@media (max-width: 680px) {
  body:has(.editorial-sticky-cta) {
    padding-bottom: 84px;
  }

  .editorial-sticky-cta {
    right: 0.75rem;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    left: 0.75rem;
  }

  .editorial-sticky-cta__inner {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .editorial-sticky-cta__copy {
    display: none;
  }

  .editorial-sticky-cta__button {
    width: 100%;
    min-height: 56px;
    padding: 0.8rem 1rem;
    border-radius: 17px;
    font-size: 0.94rem;
    white-space: nowrap;
    box-shadow:
      0 15px 34px rgba(217, 86, 57, 0.4),
      0 4px 12px rgba(23, 44, 61, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }
}

@media (max-width: 390px) {
  .editorial-sticky-cta {
    right: 0.6rem;
    left: 0.6rem;
  }

  .editorial-sticky-cta__button {
    min-height: 54px;
    padding-right: 0.7rem;
    padding-left: 0.7rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 350px) {
  .editorial-sticky-cta__button {
    font-size: 0.8rem;
  }
}

@media print {
  .editorial-sticky-cta {
    display: none !important;
  }

  body:has(.editorial-sticky-cta) {
    padding-bottom: 0;
  }
}

/* Editorial article visual figures */
.article-visual {
  width: 100%;
  margin: clamp(2rem, 5vw, 3.75rem) 0;
}

.article-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(23, 44, 61, 0.12);
  border-radius: 24px;
  background: rgba(23, 44, 61, 0.04);
  box-shadow:
    0 24px 55px rgba(23, 44, 61, 0.14),
    0 4px 14px rgba(23, 44, 61, 0.08);
}

.article-visual figcaption {
  max-width: 680px;
  margin: 0.8rem auto 0;
  color: var(--article-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 680px) {
  .article-visual {
    margin: 2rem 0 2.5rem;
  }

  .article-visual img {
    border-radius: 18px;
    box-shadow:
      0 16px 36px rgba(23, 44, 61, 0.13),
      0 3px 10px rgba(23, 44, 61, 0.07);
  }

  .article-visual figcaption {
    margin-top: 0.65rem;
    padding: 0 0.35rem;
    font-size: 0.78rem;
  }
}

@media print {
  .article-visual img {
    box-shadow: none;
  }
}
