.page-main {
  background: #f7f8fb;
  color: var(--color-text);
}

.page-hero {
  padding: 150px 0 70px;
  background: rgb(18, 38, 83);
  color: #ffffff;
}

.page-eyebrow {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 300;
}

.page-title {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.page-intro {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.8;
}

.page-section {
  padding: 70px 0;
}

.page-section.alt {
  background: #ffffff;
}

.page-section h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.25;
}

.page-section p {
  color: var(--color-text-secondary);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

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

.page-card {
  padding: 26px;
  border: 1px solid rgba(18, 38, 83, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.page-card h3 {
  margin-bottom: 12px;
  color: var(--color-text);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.35;
}

.page-card p,
.page-card li {
  color: var(--color-text-secondary);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

.page-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.page-card .page-link {
  margin-top: 16px;
}

.article-index-grid {
  align-items: stretch;
}

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

.doctor-summary-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.doctor-summary-card h3 a {
  color: var(--color-text);
}

.doctor-card-photo,
.doctor-profile-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #eef1f6;
  object-fit: cover;
}

.doctor-card-photo {
  aspect-ratio: 2 / 3;
}

.doctor-card-body {
  min-width: 0;
}

.doctor-card-body ul {
  margin-top: 14px;
}

.doctor-profile-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.doctor-profile-figure {
  margin: 0;
}

.doctor-profile-figure figcaption {
  margin-top: 12px;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.doctor-credential-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-card-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(18, 38, 83, 0.62);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.article-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.article-body {
  max-width: 980px;
}

.article-body > p {
  max-width: 860px;
}

.article-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding-left: 22px;
  color: var(--color-text-secondary);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
}

.note-box {
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(18, 38, 83, 0.14);
  border-left: 4px solid rgb(18, 38, 83);
  border-radius: 8px;
  background: rgba(18, 38, 83, 0.045);
  color: var(--color-text-secondary);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

.note-box strong {
  color: rgb(18, 38, 83);
  font-weight: 500;
}

.fact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.fact-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(18, 38, 83, 0.1);
}

.fact-row strong {
  color: rgb(18, 38, 83);
  font-weight: 500;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-item {
  padding: 24px 26px;
  border: 1px solid rgba(18, 38, 83, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.faq-item h3 {
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 500;
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.page-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(18, 38, 83, 0.22);
  border-radius: 8px;
  color: rgb(18, 38, 83);
  font-size: 15px;
  font-weight: 400;
}

.page-link.primary {
  border-color: rgb(18, 38, 83);
  background: rgb(18, 38, 83);
  color: #ffffff;
}

.page-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: var(--color-text-secondary);
  font-size: 15px;
}

.page-footer-nav a {
  color: rgb(18, 38, 83);
}

@media (max-width: 900px) {
  .page-hero {
    padding: 128px 0 58px;
  }

  .page-grid,
  .page-grid.two {
    grid-template-columns: 1fr;
  }

  .doctor-index-grid,
  .doctor-credential-list {
    grid-template-columns: 1fr;
  }

  .doctor-profile-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .page-title {
    font-size: 38px;
  }

  .page-intro {
    font-size: 17px;
  }

  .page-section {
    padding: 54px 0;
  }

  .page-card,
  .faq-item {
    padding: 22px;
  }

  .article-list {
    font-size: 16px;
  }

  .doctor-summary-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .doctor-summary-card .page-link {
    width: 100%;
    justify-content: center;
  }
}
