/* ================= Enjoy (Facilities) ================= */
/* 시설안내*/
.facility-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
}

.chip{
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#f3f4f6;
  color:#111827;
  white-space:nowrap;
  font-family: var(--font-body);
}

.chip-dark{
  background:#111827;
  color:#fff;
  border-color:#111827;
}

.facility-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  margin-top:14px;
}

.facility-media{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#f3f4f6;
}

.facility-media img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}

.bullet{
  margin:0;
  padding-left:18px;
  line-height:1.75;
}

.bullet li{ margin:4px 0; }

.facility-note{
  margin-top:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(229,231,235,.7);
  background:#f8fafc;
  font-size:13px;
  line-height:1.7;
}

@media (max-width: 960px){
  .facility-grid{
    grid-template-columns:1fr;
  }
  .facility-media img{
    height:240px;
  }
}

/* ================= Enjoy: Facility Gallery Slider ================= */
.gallery-slider{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#0b1220;
}

.gallery-track{
  display:flex;
  width:100%;
  height:420px;
  transition:transform .55s ease;
}

.gallery-slide{
  min-width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  cursor:zoom-in;
}

/* 좌우 버튼 */
.gbtn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:50;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(0,0,0,.25);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  pointer-events:auto;
  font-size:26px;
  line-height:1;
}

.gbtn.prev{ left:12px; }
.gbtn.next{ right:12px; }
.gbtn:hover{ background:rgba(0,0,0,.40); }

/* 도트 */
.gallery-dots{
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:60;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
}

.gallery-dots button{
  width:9px;
  height:9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(255,255,255,.18);
  padding:0;
  cursor:pointer;
}

.gallery-dots button.active{
  background:rgba(255,255,255,.95);
}

/* 모바일 사진 세로 늘리기 */
@media (max-width: 760px){
  .gallery-track{
    height: 300px;
  }
}

/* 캠핑장 지도 css */
.map-image-wrap{
  margin-top:14px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
}

.map-image{
  width:100%;
  height:auto;
  display:block;
}