/* Premium Doctors Spotlight Hub Component Styles - Ultra-Smooth Liquid Transitions */
.doctors-section {
  position: relative;
  background: linear-gradient(180deg, #F8FAFC 0%, #F0F9FF 50%, #F8FAFC 100%);
  border-top: 1px solid var(--border-subtle);
  padding: 90px 0;
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 10px auto 0 auto;
  text-align: center;
}

/* Master Spotlight Hub Container */
.doctors-spotlight-hub {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  margin-top: 45px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

/* Left Doctor Roster Navigation Sidebar */
.spotlight-roster-sidebar {
  background: #F8FAFC;
  border-right: 1px solid var(--border-subtle);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}

.roster-header-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  margin-bottom: 4px;
}

.spotlight-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-list-item:hover {
  background: #FFFFFF;
  border-color: rgba(0, 102, 204, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.spotlight-list-item.active {
  background: #FFFFFF;
  border-color: #0066CC;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.roster-thumb-frame {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: #EBF8FF;
  border: 2px solid var(--border-subtle);
  flex-shrink: 0;
  transition: border-color 0.25s ease;
}

.spotlight-list-item.active .roster-thumb-frame {
  border-color: #0066CC;
}

.roster-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.roster-doc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.roster-doc-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--text-heading);
  line-height: 1.2;
}

.spotlight-list-item.active .roster-doc-name {
  color: #0066CC;
}

.roster-doc-dept {
  font-size: 0.78rem;
  color: #005229;
  font-weight: 700;
}

/* Right Main Stage Feature Panel - Liquid Stacked Cards */
.spotlight-main-stage {
  position: relative;
  padding: 40px;
  min-height: 490px;
  background: #FFFFFF;
  overflow: hidden;
}

.spotlight-stage-card {
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: center;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
  z-index: 1;
  will-change: opacity, transform;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-stage-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 10;
}

.stage-content-col {
  display: flex;
  flex-direction: column;
}

.stage-dept-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 102, 204, 0.1);
  border: 1px solid rgba(0, 102, 204, 0.25);
  color: #0066CC;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 16px;
}

.stage-doc-name {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 6px;
}

.stage-doc-qual {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #005229;
  margin-bottom: 12px;
}

.stage-doc-spec {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 24px;
}

.stage-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.stage-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
}

.highlight-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(120, 192, 67, 0.15);
  border: 1px solid rgba(120, 192, 67, 0.4);
  color: #78C043;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.stage-opd-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  background: #F1F5F9;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  width: fit-content;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
}

.stage-opd-row svg {
  width: 18px;
  height: 18px;
  color: #0066CC;
}

.stage-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stage Doctor Photo Showcase */
.stage-photo-col {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #E0F2FE 0%, #F1F5F9 100%);
  border: 1px solid rgba(0, 102, 204, 0.15);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.12);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-stage-card.active .stage-photo-col {
  transform: scale(1);
}

.spotlight-stage-card:not(.active) .stage-photo-col {
  transform: scale(0.96);
}

.stage-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (max-width: 1024px) {
  .doctors-spotlight-hub { grid-template-columns: 1fr; }
  .spotlight-roster-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: row;
    overflow-x: auto;
    padding: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .spotlight-list-item { flex-shrink: 0; }
  .spotlight-main-stage {
    min-height: auto;
    padding: 24px;
  }
  .spotlight-stage-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    display: none;
  }
  .spotlight-stage-card.active {
    display: grid;
  }
  .stage-photo-col {
    height: 300px;
    order: -1;
  }
}

@media (max-width: 640px) {
  .doctors-section { padding: 50px 0; }
  .spotlight-main-stage { padding: 18px; }
  .stage-doc-name { font-size: 1.5rem; }
  .stage-doc-qual { font-size: 0.95rem; }
  .stage-photo-col { height: 260px; }
  .stage-actions-row { flex-direction: column; }
  .stage-actions-row .btn { width: 100%; text-align: center; }
}
