/* ── Doctors page ── */
html, body { color: var(--text); background: var(--white); }
#content { padding: 94px 0 80px; }
.doctors-loading { color: #9ca3af; font-size: .85rem; text-align: center; padding: 60px 0; }
.doctors-grid { --bs-gutter-x: 0; --bs-gutter-y: 0; margin: -10px; margin-bottom: 56px; }
.doctors-grid > .col { padding: 10px; display: flex; }
.doctors-wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; width: 100%; }

.section-header { margin-bottom: 36px; max-width: 620px; }
.section-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; display: block; }
.section-title { font-size: 2rem; font-weight: 700; color: var(--text); line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 14px; }
.section-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

.doctor-card { background: var(--white); border-radius: 14px; padding: 28px 20px; text-align: center; border: 1px solid var(--border); box-shadow: 0 1px 4px rgba(0,0,0,0.05), 0 2px 8px rgba(0,0,0,0.04); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; position: relative; overflow: hidden; width: 100%; display: flex; flex-direction: column; align-items: center; }
.doctor-card::before { content: ''; position: absolute; inset: 0; background: rgba(232,137,28,0.07); opacity: 0; transition: opacity 0.25s; }
.doctor-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: rgba(232,137,28,0.25); }
.doctor-card:hover::before { opacity: 1; }
.doctor-photo-wrap { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px; position: relative; border: 2.5px solid var(--orange); box-shadow: 0 0 0 5px var(--orange-lt); flex-shrink: 0; overflow: hidden; }
.doctor-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
/* Same solid brand orange as every other default (no-photo) avatar in the
   app, white initials — matches .patient-avatar/.profile-avatar-lg in the
   SPA instead of a random per-doctor color, and no longer shifts to a
   different shade on card hover (.doctor-photo-wrap's ring used to). */
.doctor-initials { width: 100%; height: 100%; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: white; background: var(--orange); }
.doctor-name   { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.doctor-role   { font-size: 0.74rem; color: var(--orange); font-weight: 600; margin-bottom: 3px; }
.doctor-degree { font-size: 0.7rem; color: var(--muted); margin-bottom: 12px; flex: 1; }
.doctor-schedule { display: inline-flex; align-items: center; gap: 5px; font-size: 0.7rem; color: #374151; background: var(--light); border-radius: 999px; padding: 5px 12px; font-weight: 500; border: 1px solid var(--border); white-space: nowrap; }
.doctor-schedule svg { width: 11px; height: 11px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Book CTA banner */
.doctors-cta { background: #FFFBEB; border: 1px solid #FDE68A; border-radius: 16px; padding: 40px 48px; }
.doctors-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.doctors-cta-title { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.doctors-cta-sub { font-size: 0.82rem; color: var(--muted); line-height: 1.6; max-width: 480px; }
.cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 32px; background: var(--orange); color: #fff; font-size: 0.92rem; font-weight: 600; border-radius: 8px; border: none; transition: opacity 0.25s ease, transform 0.25s ease; cursor: pointer; white-space: nowrap; }
.cta-btn:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }
.cta-btn:focus-visible { outline: 2px solid var(--orange-dk); outline-offset: 2px; }

@media (max-width: 991.98px) {
  #content { padding: 94px 0 56px; }
  .doctors-wrap { padding: 0 24px; }
  .doctors-cta { padding: 28px 24px; }
  .doctors-cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 480px) {
  .doctors-wrap { padding: 0 18px; }
  .section-title { font-size: 1.5rem; }
}
