/* 1. 페이지 전체 */
.location-page {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Noto Sans KR', sans-serif;
  color: #333;
}

/* 2. 제목 */
.page-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* 3. 지도 */
.map-container {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.map-image {
  display: block;
  width: 100%;
  height: auto;
}

/* 4. 주소 & 버튼 정렬 */
.address-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.address-text {
  line-height: 1.2;
}
.place-name {
  font-size: 0.9rem;
  color: #777;
}
.address {
  font-size: 1.5rem;
  color: #056acc;
  margin-top: 4px;
}

/* 5. 버튼 그룹 */
.btn-group {
  display: flex;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn i {
  margin-right: 6px;
}
/* 기본 파랑 버튼 */
.btn-primary {
  background-color: #056acc;
  color: #fff;
}
.btn-primary:hover {
  background-color: #045bb5;
}
/* 테두리 버튼 */
.btn-secondary {
  background-color: #fff;
  color: #056acc;
  border: 1px solid #056acc;
}
.btn-secondary:hover {
  background-color: #f0f8ff;
}

/* 6. 구분선 */
.location-page hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 30px 0;
}

/* 7. 정보 리스트 */
.info-list {
  list-style: none;
}
.info-list li {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.info-list li i {
  font-size: 1.2rem;
  color: #056acc;
  margin-right: 12px;
}
.info-list strong {
  width: 90px;
  font-weight: 600;
}
.info-detail {
  color: #555;
}

/* 8. 이용안내 아이콘 */
.icons {
  display: flex;
  gap: 30px;
}
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-item i {
  font-size: 2rem;
  color: #056acc;
}
.icon-item span {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #555;
}
