/* ── 히어로 ── */
.doctor-hero {
  position: relative;
  height: 380px;
  background: linear-gradient(135deg, #05306b 0%, #0a4fa8 55%, #1e90d8 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.doctor-hero::before {
  content: 'UROLOGY';
  position: absolute; left: -20px; top: 50%; transform: translateY(-50%);
  font-size: 180px; font-weight: 900; color: rgba(255,255,255,0.04);
  letter-spacing: -5px; white-space: nowrap; pointer-events: none;
}
.doctor-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,48,107,0.6) 0%, transparent 100%);
}
.doctor-hero-content { position: relative; z-index: 1; color: #fff; }
.doctor-hero-label {
  font-size: 13px; font-weight: 700; letter-spacing: 3px;
  color: rgba(255,255,255,0.6); margin-bottom: 16px;
}
.doctor-hero-content h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 900;
  color: #fff; margin-bottom: 16px; line-height: 1.1;
}
.doctor-hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.8;
}

/* ── 의료진 섹션 ── */
.doctors-section { background: var(--white); padding: 80px 0; }
.doctors-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ── 카드 ── */
.doctor-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  padding: 60px 0;
}
.doctor-card.reverse {
  grid-template-columns: 1fr 340px;
}
.doctor-card.reverse .doctor-photo-col { order: 2; }
.doctor-card.reverse .doctor-info-col  { order: 1; }

/* 사진 컬럼 */
.doctor-photo-col { display: flex; flex-direction: column; gap: 24px; }
.doctor-photo {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(10,79,168,0.18);
  position: relative; background: var(--bg-section);
}
.doctor-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  display: block;
}
.doctor-photo-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(10,79,168,0.9); backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 6px;
}
.doctor-num {
  color: #fff; font-weight: 800; font-size: 13px; letter-spacing: 2px;
}

/* 이름 플레이트 */
.doctor-name-plate {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
}
.doctor-title {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--primary); margin-bottom: 8px; text-transform: uppercase;
}
.doctor-name-plate h2 {
  font-size: 28px; font-weight: 900; color: var(--text-dark); line-height: 1.2;
}
.doctor-name-plate h2 span { color: var(--primary); }
.doctor-univ {
  margin-top: 8px; font-size: 14px; color: var(--text-muted); font-weight: 500;
}

/* 정보 컬럼 */
.doctor-info-col { display: flex; flex-direction: column; gap: 36px; padding-top: 8px; }

.doctor-section {}
.doctor-section-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 800; color: var(--text-dark);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 18px;
}
.doctor-section-icon { font-size: 18px; }

.doctor-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.doctor-list li {
  font-size: 15px; color: var(--text-mid);
  padding-left: 18px; position: relative; line-height: 1.6;
}
.doctor-list li::before {
  content: '·';
  position: absolute; left: 0;
  color: var(--primary); font-weight: 900; font-size: 18px; line-height: 1.2;
}

/* 구분선 */
.doctor-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── CTA ── */
.doctor-cta {
  background: linear-gradient(135deg, #05306b 0%, #0a4fa8 100%);
  padding: 80px 40px; text-align: center;
}
.doctor-cta-inner { max-width: 600px; margin: 0 auto; }
.doctor-cta-sub {
  font-size: 13px; font-weight: 700; letter-spacing: 3px;
  color: rgba(255,255,255,0.55); margin-bottom: 16px;
}
.doctor-cta h2 {
  font-size: clamp(22px, 3vw, 32px); font-weight: 900;
  color: #fff; margin-bottom: 16px; line-height: 1.3;
}
.doctor-cta p { font-size: 16px; color: rgba(255,255,255,0.72); margin-bottom: 32px; }
.doctor-cta-btn {
  display: inline-block;
  background: #fff; color: var(--primary);
  font-size: 16px; font-weight: 800;
  padding: 16px 48px; border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.doctor-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── 반응형 ── */
@media (max-width: 900px) {
  .doctor-card, .doctor-card.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .doctor-card.reverse .doctor-photo-col { order: 1; }
  .doctor-card.reverse .doctor-info-col  { order: 2; }
  .doctor-photo { aspect-ratio: 4/3; }
  .doctors-inner { padding: 0 20px; }
}
@media (max-width: 480px) {
  .doctor-hero { height: 280px; }
  .doctor-card { padding: 40px 0; }
}