#center-location-wrap {
  padding: 40px 0 80px;
}

.section_title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
}

/* 히어로 섹션 스타일 */
.hero_area {
  position: relative;
  width: 100%;
  height: 400px;
  background: url('../../img/sub/location_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);
}

/* 지도 영역 */
.kakao_map {
  width: 100%;
  height: 450px;
  background: #eee;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.location_section .root_daum_roughmap_landing {
  width: 100% !important;
}

.location_section .root_daum_roughmap .wrap_map {
  height: 450px !important;
}

.map_btn_box {
  margin-top: 15px;
  display: flex;
  justify-content: flex-start;
}

.naver_map_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #03c75a;
  color: #03c75a;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.2s;
}

.naver_map_btn:hover {
  background: #03c75a;
  color: #fff;
}

.icon_naver {
  background: #03c75a;
  color: #fff;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  border-radius: 2px;
}

/* 교통 정보 영역 */
.location_section {
  margin-top: 60px;
}

.transport_group {
  margin-bottom: 50px;
}

.transport_title {
  font-size: 22px;
  font-weight: 700;
  color: #005bac;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sub_transport {
  margin-top: 30px;
}

.sub_transport h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
  padding-left: 10px;
  border-left: 3px solid #333;
}

.transport_content {
  padding-left: 13px;
}

.point_text {
  font-size: 17px;
  color: #444;
}

/* 배지 스타일 */
.line_badge {
  padding: 2px 8px;
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  margin-right: 4px;
}

.line_2 {
  background: #3cb44a;
}

.line_sillim {
  background: #6789ca;
}

/* 버스 리스트 스타일 */
.bus_list {
  list-style: none;
  padding: 0;
}

.bus_list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}

.bus_type {
  flex: 0 0 45px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  border-radius: 3px;
}

.type_branch {
  background: #5bb034;
}

/* 지선 */
.type_main {
  background: #2b5ab1;
}

/* 간선 */
.type_general {
  background: #607d8b;
}

/* 일반 */
.type_airport {
  background: #00bcd4;
}

/* 공항 */
.type_village {
  background: #9e7b61;
}

/* 마을 */

.bus_list p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

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

  .location_section {
    padding: 15px;
  }

  .bus_list li {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
  }

  .bus_type {
    width: 60px;
    flex: 0 0 30px;
  }

  .transport_title {
    font-size: 19px;
  }
}