/* ==========================================================================
   Preventive care article readability + niceness
   ========================================================================== */
.preventive-article-section {
  padding: var(--space-9) 0;
  background: linear-gradient(180deg, #eff8fd 0%, #eaf5fb 100%);
}

.preventive-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: start;
}

.preventive-article-main {
  color: var(--aim-text);
}

.preventive-section-title,
.preventive-subsection-title {
  font-size: clamp(2rem, 2.3vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--aim-blue);
  margin-bottom: 1rem;
}

.preventive-section-intro,
.preventive-personal-block p {
  font-size: 1.12rem;
  line-height: 1.82;
  color: var(--aim-text);
  max-width: 64ch;
}

.preventive-section-intro {
  margin-bottom: 2rem;
}

.preventive-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.preventive-topic-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(103, 170, 211, 0.18);
  border-radius: 1.6rem;
  padding: 1.3rem 1.45rem;
  box-shadow: 0 14px 28px rgba(8, 45, 99, 0.05);
  position: relative;
  overflow: hidden;
}

.preventive-topic-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--aim-sage), rgba(122, 143, 81, 0.3));
}

.preventive-topic-card h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0 0 0.55rem;
  color: var(--aim-blue);
  font-weight: 600;
  padding-left: 0.15rem;
}

.preventive-topic-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--aim-text);
}

.preventive-personal-block {
  background: rgba(255,255,255,0.55);
  border-radius: 1.7rem;
  padding: 1.65rem 1.7rem;
  border: 1px solid rgba(103, 170, 211, 0.16);
}

.preventive-personal-block p + p {
  margin-top: 0.8rem;
}

.preventive-article-sidebar {
  position: relative;
}

.preventive-side-card {
  position: sticky;
  top: 108px;
  background: #fff;
  border-radius: 1.9rem;
  padding: 2rem;
  border: 1px solid rgba(103, 170, 211, 0.18);
  box-shadow: 0 18px 40px rgba(8, 45, 99, 0.07);
}

.preventive-side-title {
  font-size: 1.6rem;
  line-height: 1.12;
  margin-bottom: 0.9rem;
  color: var(--aim-blue);
}

.preventive-side-copy {
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--aim-text);
  margin-bottom: 1.2rem;
}

.preventive-side-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.preventive-side-btn.secondary {
  margin-bottom: 0;
}

.preventive-side-divider {
  border: none;
  border-top: 1px solid var(--aim-border);
  margin: 1.4rem 0;
}

.preventive-side-eyebrow {
  margin-bottom: 0.85rem;
}

.preventive-related-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.preventive-related-links a {
  color: var(--aim-blue);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}

.preventive-related-links a:hover {
  color: var(--aim-sage);
}

@media (max-width: 980px) {
  .preventive-article-layout {
    grid-template-columns: 1fr;
  }
  .preventive-side-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .preventive-topic-grid {
    grid-template-columns: 1fr;
  }

  .preventive-section-title,
  .preventive-subsection-title {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .preventive-section-intro,
  .preventive-personal-block p,
  .preventive-topic-card p,
  .preventive-side-copy,
  .preventive-related-links a {
    font-size: 1rem;
  }

  .preventive-topic-card h3,
  .preventive-side-title {
    font-size: 1.28rem;
  }
}
