:root {
  --navy-950: #071a30;
  --navy-900: #0a2642;
  --ink-dark: #0d2238;
  --ink-body: #334b64;
  --ink-light: #f4f5f7;
  --line-light: rgba(16, 36, 56, 0.14);
  --line-mid: rgba(255, 255, 255, 0.16);
  --green: #90ba9f;
  --white: #f8f6f0;
  --white-soft: #f1ede6;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: "Manrope", "Avenir Next", sans-serif;
  color: var(--ink-dark);
  background: var(--white-soft);
}

a { color: inherit; text-decoration: none; }
.page-frame { overflow: hidden; }
.preview-shell { width: min(1680px, calc(100% - 72px)); margin: 0 auto; }

.hero-shell {
  background:
    radial-gradient(circle at 80% 18%, rgba(37, 74, 115, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(7, 26, 48, 0.96), rgba(8, 28, 50, 0.98)),
    var(--navy-950);
  color: var(--ink-light);
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 24px 0 18px;
}

.wordmark {
  font-family: "Archivo", "Manrope", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: none;
}
.topnav { display: flex; justify-content: flex-end; gap: 26px; }
.topnav a {
  color: rgba(244, 245, 247, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.topnav a.active {
  color: #ffffff;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 72px;
  align-items: center;
  padding: 54px 0 34px;
}

.hero-main {
  display: block;
}

.stat-label {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-headline h1,
.statement-block h2,
.platform-card h3,
.section-title {
  margin: 0;
  font-family: "Manrope", "Avenir Next", sans-serif;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.hero-headline h1 {
  max-width: 780px;
  font-size: clamp(3.15rem, 4.65vw, 4.85rem);
  line-height: 0.94;
}

.hero-summary {
  max-width: 520px;
  padding-bottom: 0;
}
.hero-summary p,
.statement-copy,
.contact-copy p,
.platform-card p {
  margin: 0;
  font-size: 0.99rem;
  line-height: 1.72;
}
.hero-summary p { color: rgba(244, 245, 247, 0.84); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.hero-aside {
  display: grid;
  gap: 18px;
  max-width: 430px;
  padding: 0;
}

.hero-aside-copy {
  margin: 0;
  max-width: 430px;
  color: rgba(244, 245, 247, 0.84);
  font-size: 1.03rem;
  line-height: 1.78;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: #f4f1ea; border-color: #f4f1ea; color: var(--ink-dark); }
.button-secondary { background: transparent; border-color: var(--line-mid); color: var(--ink-light); }
.button-outline { background: transparent; border-color: var(--line-light); color: var(--ink-dark); }

.hero-media {
  position: relative;
  height: clamp(320px, 33vw, 460px);
  margin: 10px 0 0;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 18, 30, 0.12), rgba(8, 18, 30, 0.32)),
    url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=1800&q=80') center/cover;
}

.hero-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 48, 0.04), rgba(7, 26, 48, 0.4));
}

.hero-shell-compact .hero-panel {
  padding: 42px 0 46px;
}

.hero-panel-insights {
  align-items: end;
  gap: 56px;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.78fr);
}

.hero-panel-home {
  align-items: end;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
}

.hero-panel-home .hero-headline h1 {
  max-width: 720px;
  font-size: clamp(2.9rem, 4.2vw, 4.15rem);
  line-height: 0.95;
}

.hero-panel-home .hero-aside {
  max-width: 410px;
}

.hero-panel-home .hero-aside-copy {
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-panel-insights .hero-headline h1 {
  max-width: 660px;
  font-size: clamp(2.55rem, 3.7vw, 3.7rem);
  line-height: 0.98;
}

.hero-panel-insights .hero-aside {
  max-width: 390px;
}

.hero-panel-insights .hero-aside-copy {
  font-size: 1rem;
  line-height: 1.72;
}

.light-section { background: var(--white); }
.overview-section,
.partner-section,
.approach-section,
.contact-section {
  border-top: 1px solid rgba(16, 36, 56, 0.08);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 44px;
  padding: 64px 0;
}

.statement-block h2,
.section-title {
  color: var(--ink-dark);
  font-size: clamp(2rem, 2.4vw, 2.3rem);
  line-height: 1.05;
}

.statement-copy {
  margin-top: 14px;
  max-width: 560px;
  color: var(--ink-body);
}

.section-intro-copy {
  margin: 10px 0 0;
  max-width: 620px;
  color: var(--ink-body);
  font-size: 1rem;
  line-height: 1.72;
}

.stats-grid {
  display: grid;
  gap: 42px 36px;
}

.stats-grid-horizontal {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  padding-top: 4px;
  border-top: 1px solid var(--line-light);
}

.stat-item {
  padding: 14px 12px 0 0;
  min-width: 0;
}

.stats-grid-horizontal .stat-item {
  min-height: 96px;
  border-right: 1px solid var(--line-light);
}

.stats-grid-horizontal .stat-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.stat-label {
  color: var(--ink-dark);
  margin-bottom: 6px;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.84rem;
  font-weight: 700;
}

.stat-value {
  margin: 0;
  font-family: "Manrope", "Avenir Next", sans-serif;
  font-size: clamp(1.18rem, 1.35vw, 1.34rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink-dark);
  overflow-wrap: anywhere;
}

.stat-note {
  display: none;
}

.partner-shell { padding: 60px 0 68px; }
.partner-intro { margin-bottom: 24px; }
.partner-intro h2 { font-size: clamp(2.2rem, 3vw, 2.8rem); }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 10px;
  border-top: 1px solid var(--line-light);
}

.platform-card {
  padding-top: 18px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.platform-card-link {
  display: block;
  padding-bottom: 14px;
}

.platform-card-image {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
  transition: transform 220ms ease, filter 220ms ease;
}

.partner-row-image-one {
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80');
}

.partner-row-image-two {
  background-image: url('https://images.unsplash.com/photo-1526628953301-3e589a6a8b74?auto=format&fit=crop&w=1200&q=80');
}

.partner-row-image-three {
  background-image: url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1200&q=80');
}

.platform-card h3 {
  margin-bottom: 10px;
  color: var(--ink-dark);
  font-size: clamp(1.24rem, 1.25vw, 1.32rem);
  line-height: 1.08;
  font-family: "Manrope", "Avenir Next", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  transition: transform 180ms ease, color 180ms ease;
}

.platform-card p,
.contact-copy p {
  color: var(--ink-body);
}

.platform-grid:hover .platform-card {
  opacity: 0.72;
}

.platform-grid:hover .platform-card:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.platform-grid:hover .platform-card:hover .platform-card-image {
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.02);
}

.platform-grid:hover .platform-card:hover h3 {
  transform: translateX(4px);
  color: #091f37;
}

.platform-link-meta {
  display: inline-flex;
  margin-top: 14px;
  color: var(--ink-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-grid-contact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.stats-grid-contact .stat-item {
  min-height: 110px;
  padding: 18px 20px 18px 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.stats-grid-contact .stat-item:nth-child(2n) {
  border-right: 0;
  padding-right: 0;
  padding-left: 20px;
}

.stats-grid-contact .stat-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.stats-grid-contact .stat-label {
  margin-bottom: 10px;
}

.stats-grid-contact .stat-value {
  font-size: clamp(1.02rem, 1.12vw, 1.18rem);
  line-height: 1.18;
}

.insights-preview-shell {
  padding: 60px 0 68px;
}

.insights-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 8px;
  border-top: 1px solid var(--line-light);
}

.insight-preview-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 22px 0;
  min-height: 0;
  border-right: 0;
  border-bottom: 1px solid var(--line-light);
}

.insight-preview-card:last-child {
  border-bottom: 0;
}

.insight-preview-date {
  margin: 2px 0 0;
  color: #6a7f95;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-preview-card h3,
.insight-preview-card p:last-child {
  grid-column: 2;
}

.insight-preview-card h3 {
  margin: 0 0 10px;
  color: var(--ink-dark);
  font-size: clamp(1.24rem, 1.2vw, 1.36rem);
  line-height: 1.12;
  font-family: "Manrope", "Avenir Next", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.insight-preview-card h3 a {
  color: inherit;
}

.insight-preview-card h3 a:hover {
  color: #16385d;
}

.insight-preview-card p:last-child {
  margin: 0;
  color: var(--ink-body);
  font-size: 0.98rem;
  line-height: 1.72;
  max-width: 64ch;
}

.approach-shell {
  padding: 60px 0 68px;
}

.approach-intro {
  margin-bottom: 24px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 8px;
  border-top: 1px solid var(--line-light);
}

.approach-card {
  padding-top: 18px;
}

.approach-label {
  margin: 0 0 10px;
  color: #6a7f95;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.approach-card h3 {
  margin: 0 0 10px;
  color: var(--ink-dark);
  font-size: clamp(1.2rem, 1.2vw, 1.3rem);
  line-height: 1.1;
  font-family: "Manrope", "Avenir Next", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.approach-card p:last-child {
  margin: 0;
  color: var(--ink-body);
  font-size: 0.98rem;
  line-height: 1.72;
  max-width: 34ch;
}

.insights-home-shell {
  padding: 60px 0 68px;
}

.section-head-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.insights-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 8px;
  border-top: 1px solid var(--line-light);
}

.insight-home-card {
  padding-top: 18px;
  min-height: 186px;
  padding-right: 18px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.insight-home-card h3 {
  margin: 0 0 10px;
  color: var(--ink-dark);
  font-size: clamp(1.2rem, 1.2vw, 1.32rem);
  line-height: 1.12;
  font-family: "Manrope", "Avenir Next", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.insight-home-card p:last-child {
  margin: 0;
  color: var(--ink-body);
  font-size: 0.98rem;
  line-height: 1.72;
  max-width: 42ch;
}

.insight-home-card:nth-child(2n) {
  padding-right: 0;
  border-right: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.88fr);
  gap: 48px;
  align-items: start;
  padding: 60px 0 76px;
  border-top: 1px solid var(--line-light);
}

.contact-copy {
  max-width: 540px;
  padding-top: 18px;
}
.contact-copy .section-title { margin-bottom: 10px; }

.contact-form-preview {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: 24px 24px 22px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.5);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form-preview label {
  display: grid;
  gap: 8px;
}

.contact-form-preview span {
  color: var(--ink-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form-preview input,
.contact-form-preview textarea {
  width: 100%;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-dark);
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 14px 16px;
  outline: none;
  transition: border-color 140ms ease, background 140ms ease;
}

.contact-form-preview textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form-preview input:focus,
.contact-form-preview textarea:focus {
  border-color: rgba(13, 34, 56, 0.34);
  background: rgba(255, 255, 255, 0.92);
}

.contact-form-preview .button {
  justify-self: start;
  min-width: 180px;
}

.form-status {
  min-height: 1.25rem;
  color: var(--ink-body);
  font-size: 0.9rem;
  line-height: 1.5;
}

.site-footer {
  background: #06182d;
  color: rgba(244, 245, 247, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
  gap: 64px;
  align-items: start;
  padding: 34px 0 30px;
}

.footer-wordmark {
  display: inline-block;
  font-size: 1.55rem;
  font-family: "Archivo", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.footer-brand p {
  margin: 0;
  max-width: 440px;
  color: rgba(244, 245, 247, 0.68);
  font-size: 0.96rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 40px;
  width: 100%;
  max-width: 440px;
  justify-self: end;
}

.footer-column {
  display: grid;
  gap: 14px;
}

.footer-label {
  color: rgba(244, 245, 247, 0.54);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 12px;
}

.footer-nav a,
.footer-contact a {
  color: rgba(244, 245, 247, 0.94);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 160ms ease, opacity 160ms ease;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-legal-links a:hover {
  color: #ffffff;
}

.footer-contact p {
  margin: 0;
  color: rgba(244, 245, 247, 0.62);
  font-size: 0.86rem;
  line-height: 1.6;
}

.footer-legal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 32px;
  align-items: center;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 245, 247, 0.7);
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-copyright {
  color: rgba(244, 245, 247, 0.64);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-legal a,
.footer-legal span {
  color: rgba(244, 245, 247, 0.7);
}

@media (max-width: 1240px) {
  .hero-panel,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    gap: 30px;
    align-items: start;
  }

  .hero-summary {
    max-width: 560px;
  }

  .hero-aside {
    max-width: 560px;
  }

  .stats-grid-horizontal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 8px;
  }

  .stats-grid-horizontal .stat-item {
    min-height: 0;
    padding: 18px 18px 18px 0;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .stats-grid-horizontal .stat-item:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
    padding-left: 18px;
  }

  .insights-preview-grid {
    grid-template-columns: 1fr;
  }

  .insight-preview-card,
  .insight-preview-card:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .section-head-preview {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    max-width: none;
    justify-self: start;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 24px;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }
}

@media (max-width: 1080px) {
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-grid {
    gap: 20px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .insights-home-grid {
    grid-template-columns: 1fr;
  }

  .insight-home-card {
    min-height: 0;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    padding-bottom: 20px;
  }

  .insight-home-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .approach-shell {
    padding: 56px 0;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 860px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .preview-shell { width: calc(100% - 28px); }
  .topbar { grid-template-columns: 1fr; gap: 18px; padding: 24px 0 18px; }
  .topnav { flex-wrap: wrap; justify-content: flex-start; gap: 14px 20px; }
  .hero-panel { gap: 22px; padding-top: 24px; }
  .hero-headline h1 { font-size: clamp(2.5rem, 12vw, 3.9rem); }
  .hero-summary p,
  .statement-copy,
  .contact-copy p,
  .platform-card p { font-size: 1rem; }
  .button { width: 100%; }
  .hero-media { height: 260px; border-radius: 0 0 16px 16px; }
  .overview-grid,
  .contact-panel { padding: 56px 0; }
  .partner-shell { padding: 56px 0; }
  .footer-shell { padding: 24px 0 30px; }
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
  .footer-legal { gap: 10px 16px; padding-bottom: 22px; }

  .stats-grid,
  .stats-grid-horizontal {
    grid-template-columns: 1fr;
  }

  .stats-grid-horizontal .stat-item,
  .stats-grid-horizontal .stat-item:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    min-height: 0;
    padding: 0 0 16px;
  }

  .stats-grid-horizontal .stat-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .stats-grid-contact {
    grid-template-columns: 1fr;
  }

  .stats-grid-contact .stat-item,
  .stats-grid-contact .stat-item:nth-child(2n) {
    min-height: 0;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .stats-grid-contact .stat-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .stats-grid-contact .stat-item:last-child {
    border-bottom: 0;
  }
}

.article-page-section {
  background:
    linear-gradient(rgba(112, 145, 188, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 145, 188, 0.10) 1px, transparent 1px),
    radial-gradient(circle at 72% 10%, rgba(155, 187, 174, 0.18), transparent 26%),
    radial-gradient(circle at 18% 72%, rgba(120, 149, 193, 0.12), transparent 28%),
    #f5f6f2;
  background-size: 38px 38px, 38px 38px, auto, auto, auto;
  border-top: 1px solid rgba(16, 36, 56, 0.08);
}

.article-page-shell {
  padding: 40px 0 72px;
}

.article-panel {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 40px 38px 44px;
  border: 1px solid rgba(16, 36, 56, 0.08);
  border-radius: 34px;
  background: rgba(248, 246, 240, 0.96);
  box-shadow: 0 18px 48px rgba(9, 26, 45, 0.08);
}

.article-back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: #2c6a57;
  font-size: 0.98rem;
  font-weight: 700;
}

.article-date {
  margin: 0 0 14px;
  color: #34527a;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-title {
  margin: 0 0 28px;
  color: var(--ink-dark);
  font-family: "Manrope", "Avenir Next", sans-serif;
  font-size: clamp(2.45rem, 4vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.article-content-preview {
  color: var(--ink-body);
  font-size: 1.02rem;
  line-height: 1.85;
}

.article-content-preview p {
  margin: 0 0 22px;
}

.article-content-preview h2,
.article-content-preview h3,
.article-content-preview h4,
.article-content-preview h5,
.article-content-preview h6 {
  margin: 34px 0 14px;
  color: var(--ink-dark);
  font-family: "Manrope", "Avenir Next", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.article-content-preview h2 {
  font-size: 1.9rem;
}

.article-content-preview h3 {
  font-size: 1.45rem;
}

.article-content-preview h4,
.article-content-preview h5,
.article-content-preview h6 {
  font-size: 1.15rem;
}

.article-content-preview ul,
.article-content-preview ol {
  margin: 0 0 22px 1.35rem;
  padding: 0;
}

.article-content-preview li {
  margin-bottom: 10px;
}

.article-content-preview strong {
  color: var(--ink-dark);
}

.article-content-preview a {
  color: #16385d;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.article-content-preview blockquote {
  margin: 28px 0;
  padding: 6px 0 6px 20px;
  border-left: 3px solid rgba(28, 68, 109, 0.24);
  color: #405975;
}

.article-content-preview hr {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid rgba(16, 36, 56, 0.10);
}

.article-content-preview table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(16, 36, 56, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.article-content-preview th,
.article-content-preview td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(16, 36, 56, 0.08);
  text-align: left;
  vertical-align: top;
}

.article-content-preview thead th {
  color: var(--ink-dark);
  background: rgba(16, 36, 56, 0.04);
  font-size: 0.92rem;
  font-weight: 800;
}

.article-content-preview tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 760px) {
  .article-page-shell {
    padding: 28px 0 56px;
  }

  .article-panel {
    padding: 30px 24px 34px;
    border-radius: 24px;
  }

  .article-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .article-content-preview table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
