.__about .one {
  padding-bottom: 20px;
}

.area-filter {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.__tab2 {
  margin-bottom: 10px;
}


.copy-icon {
  width: 12px;
  height: 12px;
  cursor: pointer;
  vertical-align: middle;
}

.copy-icon:hover {
  opacity: 0.7;
}

/* 앵커 위치 조정 - 상단에 100px 여백 추가 */
#area-filter {
  scroll-margin-top: 100px;
}

/* 리로딩후 상단여백 */
#area-filter::before {
  content: '';
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}


/* 지역별 필터 스타일 */
.area-filter {
  margin-bottom: 20px;
}

.area-filter .__tab-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-filter .__tab-area li {
  background: #f5f5f5;
  border-radius: 20px;
  overflow: hidden;
}

.area-filter .__tab-area li a {
  display: block;
  padding: 12px 16px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.area-filter .__tab-area li:hover a,
.area-filter .__tab-area li.active a {
  background: #4199d7;
  color: white;
}

/* 가까운 지점찾기 버튼 - 항상 하늘색 유지 */
.area-filter .__tab-area li.location-finder a {
  background: #4199d7;
  color: white;
}

.area-filter .__tab-area li.location-finder:hover a {
  background: #3aa4ee;
  color: white;
}

.__maps {
  display: flex;
  gap: 20px;
}

.__maps .txt {
  width: 50%;
}

.__maps .txt .box:hover,
.__maps .txt .box.active {
  background: #4199d7 url(/images/map-on.png) no-repeat 29px 50%;
}

.__maps .txt .box {
  display: block;
  padding: 20px 50px 20px 90px;
  background: #f9f9f9 url(/images/map-off.png) no-repeat 29px 50%;
  border-top: 1px solid #ddd;
  position: relative;
  cursor: pointer;
}

.__maps .area {
  width: 50%;
  display: flex;
  flex-direction: column;
  height: 620px;
  /* 전체 높이 설정 */
}

.__maps .area .map-top {
  flex: 65;
  /* 상단 65% */
}

.__maps .area .map-bottom {
  flex: 35;
  /* 하단 35% */
  border-top: 1px solid #ddd;
  background-color: #f9f9f9;
  overflow-y: auto;
}

.__maps .area .map-bottom .bottom-content {
  padding: 20px;
}

.__maps .area .map-bottom .bottom-content h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 16px;
}

.__maps .area .map-bottom .bottom-content p {
  margin: 0;
  line-height: 1.5;
  font-size: 15px;
}

/* bottom-content 내부 스타일 */
.__maps .area .map-bottom .bottom-content .title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.__maps .area .map-bottom .bottom-content .title-row h4 {
  margin: 0;
  color: #333;
  font-size: 16px;
}

.__maps .area .map-bottom .bottom-content .intro-btn {
  background: #4199d7;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.__maps .area .map-bottom .bottom-content .intro-btn:hover {
  background: #3aa4ee;
}

/* 지점소개 버튼을 링크처럼 보이게 하는 스타일 */
.__maps .area .map-bottom .bottom-content .intro-btn,
.naver-infowindow .intro-link {
  background: #4199d7;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.naver-infowindow .intro-link {
  padding: 4px 8px;
  font-size: 12px;
  background: transparent;
  color: #4199d7;
  border: 1px solid #4199d7;
  border-radius: 15px;
}

.naver-infowindow .intro-link:hover {
  background: #4199d7;
  color: white;
}



.__maps .area .map-bottom .bottom-content .phone-number {
  color: #4199d7;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease;
}

.__maps .area .map-bottom .bottom-content .phone-number:hover {
  color: #3aa4ee;
  text-decoration: underline;
}

/* info-list 스타일 */
.__maps .area .map-bottom .bottom-content .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.__maps .area .map-bottom .bottom-content .info-list li {
  margin: 8px 0;
  padding: 0;
  line-height: 1.5;
  font-size: 15px;
}

.__maps .area .map-bottom .bottom-content .info-list li.address {
  color: #888;
  cursor: pointer;
  transition: color 0.2s ease;
}

.__maps .area .map-bottom .bottom-content .info-list li.address:hover {
  color: #4199d7;
  text-decoration: underline;
}

.__maps .area .map-bottom .bottom-content .info-list li.business-info {
  color: #888;
}

/* 네이버 맵 정보창 스타일 */
.naver-infowindow {
  padding: 10px;
  min-width: 200px;
}

.naver-infowindow h4 {
  margin: 0 0 8px 0;
  color: #333;
}

.naver-infowindow p {
  margin: 0 0 8px 0;
  font-size: 13px;
  color: #666;
}

.naver-infowindow .business-num {
  margin: 0 0 4px 0;
  font-size: 12px;
  color: #888;
}

.naver-infowindow .business-holiday {
  margin: 0 0 8px 0;
  font-size: 12px;
  color: #888;
}

.naver-infowindow .button-area {
  text-align: center;
  margin-top: 8px;
}

.naver-infowindow .intro-link {
  color: #4199d7;
  text-decoration: none;
  font-size: 12px;
}

.naver-infowindow .copy-btn {
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding: 4px 8px;
  font-size: 11px;
  cursor: pointer;
  border-radius: 3px;
}

/* 사용자 위치 마커 스타일 */
.user-location-marker {
  width: 20px;
  height: 20px;
  background: #FF4444;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* 모달 스타일은 ../css/branch-modal.css로 분리됨 */

/* 모달 관련 CSS는 ../css/branch-modal.css로 분리됨 */

/* SNS 스타일 */
.__sns {
  text-align: center;
}

.__sns .sns-list {
  display: inline-flex;
  gap: 15px;
  align-items: center;
}

.__sns .sns-link {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.__sns .sns-link:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.__sns .sns-link img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* 모달 관련 SNS, 캐러셀, 로딩 스타일도 ../css/branch-modal.css로 분리됨 */

@media screen and (max-width: 1024px) {
  .__maps .area .map-bottom .bottom-content .title-row h4 {
    font-size: 15px;
  }

  .__maps .area .map-bottom .bottom-content .info-list li {
    font-size: 13px;
  }

  .__maps .area .map-bottom .bottom-content .intro-btn {
    padding: 6px 10px;
    font-size: 13px;
  }

  .__maps .txt {
    height: 620px;
  }

  .__maps .txt .box {
    padding: 15px 30px 15px 90px
  }

  /* 태블릿 모달 관련 CSS는 ../css/branch-modal.css로 분리됨 */

}

@media screen and (max-width: 768px) {
  #map {
    margin-top: 5px;
  }

  #content {
    margin: 0 20px;
  }

  .__maps {
    flex-direction: column;
    /* 모바일에서는 세로 배치 */
    gap: 15px;
  }

  .__maps .txt {
    width: 100%;
    order: 2;
    /* 아래쪽으로 이동 */
  }

  .__maps .txt .box {
    padding: 10px 20px 10px 50px;
    background: #f9f9f9 url(/images/map-off.png) no-repeat 12px 50%;
  }

  .__maps .txt .box:hover,
  .__maps .txt .box.active {
    background: #4199d7 url(/images/map-on.png) no-repeat 12px 50%;
  }

  .__maps .area {
    width: 100%;
    height: 420px;
    /* 모바일에서는 높이 조정 */
    order: 1;
    /* 위쪽으로 이동 */
  }

  .__maps .area .map-bottom .bottom-content {
    padding: 10px;
  }

  .area-filter .__tab-area {
    gap: 5px;
    justify-content: center;
  }

  .area-filter .__tab-area li a {
    padding: 6px 12px;
    font-size: 12px;
  }

  .__maps .txt {
    width: 100%;
    max-height: 300px;
  }

  .__maps .area {
    width: 100%;
  }

  .__maps .area .map-bottom .bottom-content .title-row h4 {
    font-size: 13px;
  }

  .__maps .area .map-bottom .bottom-content .info-list li {
    font-size: 12px;
  }

  .__maps .area .map-bottom .bottom-content .intro-btn {
    padding: 4px 8px;
    font-size: 12px;
  }

  /* 모바일 모달 관련 CSS는 ../css/branch-modal.css로 분리됨 */

  /* 모바일 SNS 스타일 */
  .__sns .sns-list {
    gap: 12px;
  }

  .__sns .sns-link img {
    width: 36px;
    height: 36px;
  }

  /* 모바일 모달 관련 CSS (테이블 SNS, 주소 행, 캐러셀 등)도 ../css/branch-modal.css로 분리됨 */
}

@media screen and (max-width: 600px) {
  /* 600px 모달 관련 CSS는 ../css/branch-modal.css로 분리됨 */
}