/* ============================================
   SPECIALTY DETAIL PAGE STYLES
   ============================================ */

/* ============================================
   SPECIALTY HERO SECTION
   ============================================ */

.specialty-hero {
  background: #FBE285;
  padding: 100px 0 80px;
}

.specialty-hero--red {
  background: #D6EBFF;
}

.specialty-hero--pink {
  background: #B8D4F1;
}

.specialty-hero--purple {
  background: #F0BCE9;
}

.specialty-hero--blue {
  background: #D6EBFF;
}

.specialty-hero--cyan {
  background: #B8D4F1;
}

.specialty-hero--green {
  background: #F0BCE9;
}

.specialty-hero__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.specialty-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  margin-bottom: 32px;
}

.specialty-hero__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.specialty-hero__title {
  font-size: 48px;
  font-weight: 700;
  color: #253745;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.specialty-hero__description {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}


/* ============================================
   SPECIALTY CONTENT SECTION
   ============================================ */

.specialty-content {
  background: #ffffff;
  padding: 80px 0;
}

.specialty-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.specialty-content__box {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.specialty-content__title {
  font-size: 32px;
  font-weight: 700;
  color: #253745;
  margin-bottom: 24px;
  line-height: 1.2;
}

.specialty-content__subtitle {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 32px;
}

.specialty-content__text p {
  font-size: 17px;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 24px;
}

.specialty-content__text p:last-child {
  margin-bottom: 0;
}

.specialty-features {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.specialty-features li {
  font-size: 17px;
  color: #4a4a4a;
  line-height: 1.8;
  padding-left: 32px;
  margin-bottom: 16px;
  position: relative;
}

.specialty-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #253745;
  border-radius: 50%;
}

.specialty-features li:last-child {
  margin-bottom: 0;
}

/* Doctor Cards */
.doctor-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-fast);
}

.doctor-card:last-child {
  margin-bottom: 0;
}

.doctor-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.doctor-card__header {
  margin-bottom: 16px;
}

.doctor-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.doctor-card__name {
  font-size: 20px;
  font-weight: 700;
  color: #253745;
  margin: 0;
  line-height: 1.3;
}

.doctor-card__specialty {
  font-size: 15px;
  color: #737373;
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
}

.doctor-card__schedule {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #fafafa;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
}

.schedule-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #253745;
  border-radius: 8px;
  color: #ffffff;
}

.schedule-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.schedule-label {
  font-size: 14px;
  font-weight: 600;
  color: #253745;
  margin: 0;
  line-height: 1.4;
}

.schedule-time {
  font-size: 16px;
  font-weight: 400;
  color: #253745;
  margin: 0;
  line-height: 1.5;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .specialty-content__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 780px) {
  .specialty-hero {
    padding: 60px 0 50px;
  }

  .specialty-hero__icon {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
  }

  .specialty-hero__icon img {
    width: 60px;
    height: 60px;
  }

  .specialty-hero__title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .specialty-hero__description {
    font-size: 16px;
  }

  .specialty-content {
    padding: 60px 0;
  }

  .specialty-content__box {
    padding: 36px 28px;
  }

  .specialty-content__title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .specialty-content__text p,
  .specialty-features li {
    font-size: 16px;
  }

  .doctor-card {
    padding: 20px;
  }

  .doctor-card__name {
    font-size: 18px;
  }

  .doctor-card__specialty {
    font-size: 14px;
  }

  .schedule-time {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .specialty-hero {
    padding: 40px 0 30px;
  }

  .specialty-hero__icon {
    width: 80px;
    height: 80px;
  }

  .specialty-hero__icon img {
    width: 50px;
    height: 50px;
  }

  .specialty-hero__title {
    font-size: 28px;
  }

  .specialty-hero__description {
    font-size: 15px;
  }

  .specialty-content {
    padding: 40px 0;
  }

  .specialty-content__box {
    padding: 28px 20px;
  }

  .specialty-content__title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .specialty-content__subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .specialty-content__text p,
  .specialty-features li {
    font-size: 15px;
  }

  .specialty-features li {
    padding-left: 24px;
  }

  .doctor-card {
    padding: 18px;
  }

  .doctor-card__name {
    font-size: 17px;
  }

  .doctor-card__specialty {
    font-size: 13px;
  }

  .doctor-card__schedule {
    padding: 14px;
  }

  .schedule-icon {
    width: 36px;
    height: 36px;
  }

  .schedule-label {
    font-size: 13px;
  }

  .schedule-time {
    font-size: 14px;
  }
}
