/* breadcrumb.css */

/* 상단 브레드크럼 */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  /* 모바일에서 줄 바꿈 허용 */
  align-items: center;
  font-size: 14px;
  font-family: 'Noto Sans', sans-serif;
  background: #fff;
  padding: 10px;
  border: 1px solid #d1d1d1;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.breadcrumb span.separator {
  margin: 0 5px;
  color: #555;
}

.breadcrumb .current {
  font-weight: bold;
  color: #000;
}

/* 모바일 대응: 글씨 작게, 간격 좁게 */
@media (max-width: 600px) {
  .breadcrumb {
    font-size: 12px;
    padding: 8px 10px;
  }

  .breadcrumb span.separator {
    margin: 0 3px;
  }
}

.tot_count {
  line-height: 58px;
  height: 58px;
  background: #f5f5f5;
  border: 1px solid #d1d1d1;

}

.district {
  display: inline-block;
  width: 23%;
  /* 4개씩 배치, 여백 포함 */
  margin: 0.5%;
  box-sizing: border-box;
}

.city-box {
    border: 1px solid #d1d1d1;
    border-bottom: 0;
    background: #fff;
    padding: 10px 15px;
    font-size: 18px;
    margin-top: 15px;
}

.region-wrap {
    position: relative;
    padding: 10px;
    background: #fff;
    border: 1px solid #afafaf;
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

.district {
    width: 23%;
    margin-bottom: 6px;
}

.district a {
    color: #333;
    text-decoration: none;
}

.district a:hover {
    text-decoration: underline;
}
