#center-appointment-wrap {
  padding: 50px 0;
}

/* 히어로 섹션 스타일 */
.hero_area {
  position: relative;
  width: 100%;
  height: 400px;
  background: url('../../img/sub/appointment_hero_bg.webp') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero_text_box {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero_title {
  color: #fff;
  font-size: 65px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 교수님 정보 섹션 */
.appointment_section {
  padding: 60px 0;
}

.prof_info_flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.prof_image_box {
  flex: 0 0 320px;
}

.prof_img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.prof_schedule_box {
  flex: 1;
}

.sub_title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.schedule_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  text-align: center;
}

.schedule_table th,
.schedule_table td {
  border: 1px solid #e0e0e0;
  padding: 12px;
  font-size: 16px;
}

.schedule_table thead th {
  background-color: #f8f9fa;
  font-weight: 600;
  width: calc(100% / 7);
}

.schedule_table tbody th {
  background-color: #f8f9fa;
  width: 80px;
}

.schedule_dot {
  color: #e74c3c;
  font-size: 18px;
}

.sat_text {
  font-size: 14px;
  color: #666;
}

.prof_meta_list {
  list-style: none;
  padding: 0;
}

.prof_meta_list li {
  font-size: 17px;
  margin-bottom: 10px;
  color: #444;
}

.prof_meta_list strong {
  color: #2c3e50;
}

.prof_meta_list strong span {
  font-size: 10px;
  display: inline-block;
  transform: translateY(-2px);
}

/* 병원 진료시간 박스 */
.hospital_time_box {
  background-color: #555;
  padding: 30px;
  border-radius: 4px;
  color: #fff;
}

.time_content {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
  margin-bottom: 15px;
}

.time_icon_title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.time_details {
  display: flex;
  gap: 40px;
}

.time_details p {
  font-size: 18px;
  margin: 0;
}

.time_details span {
  display: inline-block;
  margin-right: 15px;
  font-weight: 300;
}

.time_notice {
  font-size: 13px;
  color: #ccc;
  text-align: right;
  margin: 0;
}

/* 예약 및 상담 안내 섹션 */
.contact_info_section {
  padding-bottom: 80px;
}

.section_title {
  font-size: 28px;
  border-left: 5px solid #005bac;
  padding-left: 15px;
  margin-bottom: 30px;
}

.contact_list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact_list li {
  background: #fdfdfd;
  border: 1px solid #eee;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
}

.contact_label {
  font-weight: 600;
  color: #333;
}

.contact_value {
  font-size: 20px;
  color: #005bac;
  font-weight: 700;
  text-decoration: none;
}

.contact_link_btn {
  display: inline-block;
  padding: 10px 20px;
  background: #005bac;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.contact_link_btn:hover {
  background: #004481;
}

/* 모바일 대응 */
@media screen and (max-width: 767px) {
  .hero_area {
    height: 400px;
  }

  .hero_title {
    font-size: 28px;
  }

  .prof_info_flex {
    flex-direction: column;
  }

  .prof_image_box {
    flex: 0 0 auto;
    width: 100%;
  }

  .time_content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .time_icon_title {
    border-right: none;
    padding-right: 0;
  }

  .time_details {
    flex-direction: column;
    gap: 10px;
  }

  .contact_list {
    grid-template-columns: 1fr;
  }
}