.article-page {
  max-width: 1180px;
  margin: 24px auto 48px;
  padding: 0 18px;
  color: #353535;
}

.article-breadcrumbs {
  margin: 0 0 16px;
  color: #687277;
  font-size: 0.92rem;
}

.article-breadcrumbs a {
  color: #168daa;
}

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

.article-main,
.article-sidebar,
.health-hub {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(35, 54, 64, 0.08);
}

.article-main {
  overflow: hidden;
}

.article-hero {
  position: relative;
}

.article-hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.article-hero-copy {
  padding: 30px 34px 20px;
}

.article-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #168daa;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-page h1 {
  margin: 0 0 14px;
  color: #30343b;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.article-deck {
  margin-bottom: 0;
  color: #586268;
  font-size: 1.18rem;
  line-height: 1.65;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 0 34px 22px;
  color: #727b80;
  font-size: 0.88rem;
}

.article-content {
  padding: 0 34px 38px;
  font-size: 1.04rem;
  line-height: 1.78;
}

.article-content h2 {
  margin: 42px 0 14px;
  color: #30343b;
  font-size: 1.85rem;
  line-height: 1.25;
}

.article-content h3 {
  margin: 28px 0 10px;
  color: #3d4549;
  font-size: 1.3rem;
  line-height: 1.35;
}

.article-content p,
.article-content li {
  color: #454d51;
}

.article-content ul,
.article-content ol {
  padding-left: 1.4rem;
}

.article-content li + li {
  margin-top: 8px;
}

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

.article-figure img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.article-figure figcaption {
  margin-top: 9px;
  color: #70797e;
  font-size: 0.86rem;
  line-height: 1.45;
}

.article-callout {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 5px solid #57c9e8;
  border-radius: 0 8px 8px 0;
  background: #eef9fc;
}

.article-callout.warning {
  border-left-color: #e4a543;
  background: #fff8e9;
}

.article-callout.urgent {
  border-left-color: #d9534f;
  background: #fff1f0;
}

.article-callout p:last-child,
.article-callout ul:last-child {
  margin-bottom: 0;
}

.article-cta {
  margin: 30px 0;
  padding: 24px;
  border: 1px solid #d9eef3;
  border-radius: 10px;
  background: linear-gradient(135deg, #f4fbfd, #fff);
  text-align: center;
}

.article-cta p {
  margin-bottom: 14px;
}

.article-cta-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 7px;
  background: #168daa;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  transition: background-color 0.16s ease, transform 0.16s ease;
}

.article-cta-button:hover,
.article-cta-button:focus {
  background: #11748c;
  transform: translateY(-1px);
}

.article-source-list a {
  overflow-wrap: anywhere;
}

.article-disclaimer {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid #e6ebed;
  color: #687277;
  font-size: 0.9rem;
}

.article-sidebar {
  position: sticky;
  top: 16px;
  padding: 22px;
}

.article-sidebar h2 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.article-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-sidebar li + li {
  margin-top: 10px;
}

.article-sidebar a {
  color: #168daa;
}

.health-hub {
  padding: 34px;
}

.health-hub-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.health-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.health-card {
  overflow: hidden;
  border: 1px solid #e2eaed;
  border-radius: 10px;
  background: #fff;
}

.health-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.health-card-body {
  padding: 20px;
}

.health-card h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.health-card a {
  color: #168daa;
}

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

  .article-sidebar {
    position: static;
  }

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

@media (max-width: 575.98px) {
  .article-page {
    margin-top: 54px;
    padding: 0 10px;
  }

  .article-hero-copy,
  .article-content,
  .health-hub {
    padding-left: 20px;
    padding-right: 20px;
  }

  .article-meta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .article-content {
    font-size: 1rem;
  }

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

  .article-cta {
    padding: 20px 16px;
  }

  .article-cta-button {
    width: 100%;
  }
}
