/* About doctor — mobile-first */
.about-doctor-section {
  background: linear-gradient(180deg, #fff 0%, #fdf6f9 100%);
  overflow: hidden;
}

.about-doctor-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

@media (min-width: 992px) {
  .about-doctor-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
}

.about-doctor-content {
  min-width: 0;
}

.about-doctor-content .h-sub {
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-doctor-title {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 600;
  color: #333;
}

.about-doctor-lead {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 16px;
  color: #444;
}

.about-doctor-bio p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 14px;
  color: #555;
}

.about-doctor-bio a {
  color: #e54282;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-doctor-cta {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

@media (min-width: 576px) {
  .about-doctor-cta {
    width: auto;
  }
}

/* Highlights — horizontal scroll on small screens */
.about-doctor-highlights {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.about-doctor-highlights::-webkit-scrollbar {
  height: 4px;
}

.about-doctor-highlights::-webkit-scrollbar-thumb {
  background: rgba(229, 66, 130, 0.35);
  border-radius: 4px;
}

.about-doctor-highlight {
  flex: 0 0 min(82vw, 260px);
  scroll-snap-align: start;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-left: 3px solid #e54282;
}

.about-doctor-highlight-num {
  flex-shrink: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #e54282;
  font-family: "Poppins", sans-serif;
}

.about-doctor-highlight-text {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  color: #333;
  font-family: "Poppins", sans-serif;
}

@media (min-width: 992px) {
  .about-doctor-highlights--mobile {
    display: none;
  }
}

.about-doctor-aside {
  min-width: 0;
}

.about-doctor-photo {
  display: none;
  margin-bottom: 20px;
  text-align: center;
}

.about-doctor-photo img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(229, 66, 130, 0.15);
}

@media (min-width: 992px) {
  .about-doctor-photo {
    display: block;
  }

  .about-doctor-highlights--desktop {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: visible;
  }

  .about-doctor-highlights--desktop .about-doctor-highlight {
    flex: none;
    width: 100%;
    max-width: none;
    padding: 20px 22px;
  }

  .about-doctor-highlights--desktop .about-doctor-highlight-num {
    font-size: 2.5rem;
  }

  .about-doctor-highlights--desktop .about-doctor-highlight-text {
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  .about-doctor-highlights--desktop {
    display: none;
  }

  .about-doctor-aside {
    display: none;
  }
}

@media (max-width: 767px) {
  .about-doctor-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .about-doctor-content {
    text-align: left;
  }
}
