/* ════════════════════════════════════════════════════
   속초피크 — Accommodation List (aco_new.css)
════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Noto+Sans+KR:wght@300;400;500;600;700&display=swap');

:root {
  --navy:      #0d1b2a;
  --navy2:     #1a2e45;
  --navy3:     #243d58;
  --gold:      #c8963a;
  --gold-lt:   #e8b96a;
  --cream:     #f7f3ee;
  --white:     #ffffff;
  --grey1:     #f0ecea;
  --grey2:     #ddd8d3;
  --grey4:     #9e9890;
  --grey6:     #5a5550;
  --radius:    16px;
  --shadow:    0 4px 24px rgba(13,27,42,.12);
  --shadow-lg: 0 12px 48px rgba(13,27,42,.22);
}

.sk-page {
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--cream);
  min-height: 100vh;
}

/* ══════════════════════════════════════════
   히어로 — 새 스타일 (분할 레이아웃)
══════════════════════════════════════════ */
.sk-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--navy);
  display: flex;
}

/* 왼쪽 텍스트 패널 */
.sk-hero__text {
  position: relative; z-index: 3;
  width: 44%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  background: var(--navy);
}
.sk-hero__text::after {
  content: '';
  position: absolute;
  right: -60px; top: 0; bottom: 0;
  width: 120px;
  background: var(--navy);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 2;
}

.sk-hero__eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .2em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sk-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.sk-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -.02em;
}
.sk-hero__title em {
  display: block;
  color: var(--gold-lt);
  font-style: italic;
  font-weight: 400;
  font-size: .75em;
}

.sk-hero__sub {
  font-size: .88rem;
  color: rgba(255,255,255,.62);
  line-height: 1.9;
  margin: 0 0 32px;
}

.sk-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: transparent;
  border: 1px solid rgba(200,150,58,.5);
  border-radius: 40px;
  color: var(--gold-lt);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  transition: all .3s;
  width: fit-content;
}
.sk-hero__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.sk-hero__cta svg { transition: transform .3s; }
.sk-hero__cta:hover svg { transform: translateX(4px); }

/* 오른쪽 이미지 */
.sk-hero__img-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.sk-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: sk-zoom 8s ease-out forwards;
  filter: brightness(.75);
}
@keyframes sk-zoom { to { transform: scale(1); } }

/* 이미지 위 통계 카드 */
.sk-hero__stats {
  position: absolute;
  bottom: 28px; left: 28px;
  display: flex;
  gap: 12px;
  z-index: 5;
}
.sk-hero__stat {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 12px 18px;
  text-align: center;
  color: var(--white);
}
.sk-hero__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  display: block;
  color: var(--gold-lt);
  white-space: nowrap;
}
.sk-hero__stat-label {
  font-size: .65rem;
  letter-spacing: .08em;
  opacity: .7;
  display: block;
  margin-top: 4px;
}

/* 장식 선 */
.sk-hero__deco {
  position: absolute;
  top: 28px; right: 28px; z-index: 5;
  width: 80px; height: 80px;
  border: 1px solid rgba(200,150,58,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sk-hero__deco::before {
  content: '';
  position: absolute;
  width: 56px; height: 56px;
  border: 1px solid rgba(200,150,58,.25);
  border-radius: 50%;
}
.sk-hero__deco span {
  font-size: .58rem;
  letter-spacing: .12em;
  color: var(--gold-lt);
  writing-mode: vertical-rl;
  opacity: .8;
}

/* ══ 카테고리 탭 ══ */
.sk-tabs-wrap {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey2);
  box-shadow: 0 2px 12px rgba(13,27,42,.08);
}
.sk-tabs {
  display: flex;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 20px;
  max-width: 1240px; margin: 0 auto;
}
.sk-tabs::-webkit-scrollbar { display: none; }
.sk-tab {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 13px 18px; flex-shrink: 0;
  border-bottom: 2.5px solid transparent;
  text-decoration: none; color: var(--grey4);
  font-size: .72rem; font-weight: 500;
  transition: all .2s; white-space: nowrap;
}
.sk-tab img { width: 26px; height: 26px; object-fit: contain; opacity: .4; transition: opacity .2s; }
.sk-tab:hover, .sk-tab.is-active { color: var(--navy); border-bottom-color: var(--gold); }
.sk-tab:hover img, .sk-tab.is-active img { opacity: 1; }

/* 탭 로딩 스켈레톤 */
.sk-tab-skeleton {
  display: flex; align-items: center; gap: 20px; padding: 13px 0;
}
.sk-tab-skeleton__item {
  display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 18px;
}
.sk-tab-skeleton__icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: sk-shimmer 1.4s infinite;
}
.sk-tab-skeleton__label {
  width: 28px; height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: sk-shimmer 1.4s infinite;
}
@keyframes sk-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ══ 본문 ══ */
.sk-body {
  max-width: 1240px; margin: 0 auto; padding: 48px 20px 100px;
}

/* 섹션 헤더 */
.sk-section-hd { margin-bottom: 36px; }
.sk-section-hd h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700;
  color: var(--navy); margin: 0 0 6px;
}
.sk-section-hd p {
  font-size: .88rem; color: var(--grey4); line-height: 1.7;
  max-width: 560px; margin: 0;
}
.sk-section-hd__count {
  display: inline-block; margin-top: 8px;
  font-size: .78rem; color: var(--gold); font-weight: 600; letter-spacing: .04em;
}

/* 상단 바 */
.sk-topbar {
  display: flex; justify-content: flex-end; align-items: center;
  gap: 8px; margin-bottom: 24px; position: relative;
}
.sk-topbar .btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 16px; border-radius: 8px;
  font-size: .78rem; font-weight: 500;
  font-family: 'Noto Sans KR', sans-serif;
  border: 1.5px solid var(--grey2);
  background: var(--white); color: var(--grey6);
  cursor: pointer; transition: all .2s;
}
.sk-topbar .btn:hover { border-color: var(--navy); color: var(--navy); }

.more_opt.is_list_btn {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--white); border: 1px solid var(--grey2);
  border-radius: 10px; list-style: none; padding: 8px 0;
  box-shadow: var(--shadow-lg); z-index: 200; min-width: 130px;
}
.more_opt.is_list_btn li button {
  width: 100%; padding: 10px 18px; background: none; border: none;
  text-align: left; cursor: pointer;
  font-size: .82rem; color: var(--grey6);
  font-family: 'Noto Sans KR', sans-serif; transition: background .15s;
}
.more_opt.is_list_btn li button:hover { background: var(--grey1); color: var(--navy); }

/* ════════════════════════════════════
   카드 그리드
════════════════════════════════════ */
.sk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  list-style: none; padding: 0; margin: 0;
}
.sk-grid > li { min-width: 0; }

.sk-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  position: relative;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .3s ease;
}
.sk-card.in { opacity: 1; transform: translateY(0); }
.sk-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

/* 슬라이더 영역 */
.sk-card__swiper-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--grey2);
  flex-shrink: 0;
}
.sk-card__swiper-wrap .swiper {
  height: 100%;
  width: 100%;
}
.sk-card__swiper-wrap .swiper-slide {
  height: 220px;
  overflow: hidden;
}
.sk-card__swiper-wrap .swiper-slide a {
  display: block;
  width: 100%; height: 100%;
}
.sk-card__swiper-wrap .swiper-slide img {
  width: 100%; height: 220px;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.sk-card:hover .sk-card__swiper-wrap .swiper-slide img {
  transform: scale(1.04);
}

/* ── 슬라이더 버튼 (위치 수정) ── */
.sk-card__swiper-wrap .swiper-button-next,
.sk-card__swiper-wrap .swiper-button-prev {
  position: absolute;
  /* 버튼 세로 중앙 — swiper 기본값 덮어쓰기 */
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: 0 !important;
  /* 크기 */
  width: 30px !important;
  height: 30px !important;
  background: rgba(255,255,255,.92) !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.18) !important;
  color: var(--navy) !important;
  opacity: 0;
  transition: opacity .2s;
  z-index: 10;
}
.sk-card__swiper-wrap .swiper-button-prev { left: 10px !important; }
.sk-card__swiper-wrap .swiper-button-next { right: 10px !important; }
.sk-card:hover .sk-card__swiper-wrap .swiper-button-next,
.sk-card:hover .sk-card__swiper-wrap .swiper-button-prev { opacity: 1; }
.sk-card__swiper-wrap .swiper-button-next::after,
.sk-card__swiper-wrap .swiper-button-prev::after {
  font-size: .65rem !important;
  font-weight: 800 !important;
  color: var(--navy);
}
.sk-card__swiper-wrap .swiper-pagination {
  bottom: 8px !important;
}
.sk-card__swiper-wrap .swiper-pagination-bullet {
  background: rgba(255,255,255,.6);
  opacity: 1;
}
.sk-card__swiper-wrap .swiper-pagination-bullet-active {
  background: var(--white);
  transform: scale(1.2);
}

/* NEW 뱃지 */
.sk-card__new {
  position: absolute; top: 12px; left: 12px; z-index: 10;
  background: var(--navy); color: var(--gold);
  font-size: .6rem; font-weight: 700; letter-spacing: .1em;
  padding: 4px 10px; border-radius: 20px; text-transform: uppercase;
}

/* 찜 버튼 */
.sk-card__wish {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: all .2s; text-decoration: none;
}
.sk-card__wish svg { fill: transparent; stroke: #555; stroke-width: 1.8; transition: all .2s; }
.sk-card__wish:hover svg { fill: var(--gold); stroke: var(--gold); }

/* 카드 바디 */
.sk-card__body {
  padding: 18px 20px 22px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1; text-decoration: none; color: inherit;
}
.sk-card__cat {
  font-size: .68rem; font-weight: 600; color: var(--gold);
  letter-spacing: .1em; text-transform: uppercase;
}
.sk-card__name-row {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 8px;
}
.sk-card__name {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  line-height: 1.4; margin: 0; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.sk-card__rating {
  display: flex; align-items: center; gap: 3px;
  font-size: .78rem; font-weight: 600; color: var(--grey6);
  white-space: nowrap; flex-shrink: 0;
}
.sk-card__rating i { color: #f4b942; font-size: .76rem; }

.sk-card__intro {
  display: flex; flex-direction: column; gap: 3px;
}
.sk-card__intro span {
  font-size: .78rem; color: var(--grey4); line-height: 1.5;
}
.sk-card__intro span.sk-review {
  color: var(--grey6);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: .92rem;
  border-left: 2px solid var(--gold);
  padding-left: 8px; margin-top: 4px;
}

.sk-card__price {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--grey1);
  display: flex; align-items: baseline; gap: 4px;
}
.sk-card__price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--navy);
}
.sk-card__price-unit { font-size: .76rem; color: var(--grey4); }
.sk-card__price-label { font-size: .7rem; color: var(--grey4); margin-left: auto; }

/* 스켈레톤 카드 */
.sk-card-skeleton {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.sk-card-skeleton__img {
  height: 220px;
  background: linear-gradient(90deg,#eee 25%,#f5f5f5 50%,#eee 75%);
  background-size: 200% 100%;
  animation: sk-shimmer 1.4s infinite;
}
.sk-card-skeleton__body { padding: 18px 20px; }
.sk-card-skeleton__line {
  height: 12px; border-radius: 6px; margin-bottom: 10px;
  background: linear-gradient(90deg,#eee 25%,#f5f5f5 50%,#eee 75%);
  background-size: 200% 100%;
  animation: sk-shimmer 1.4s infinite;
}
.sk-card-skeleton__line--sm { width: 60%; }
.sk-card-skeleton__line--lg { width: 90%; }

/* 빈 상태 */
.sk-empty {
  grid-column: 1/-1; text-align: center;
  padding: 80px 20px; color: var(--grey4);
}
.sk-empty i { font-size: 3rem; display: block; margin-bottom: 16px; opacity: .25; }
.sk-empty p { font-size: .9rem; }

/* 플로팅 버튼 */
.sk-fab {
  position: fixed; bottom: 28px; right: 28px;
  display: flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 14px 22px; border-radius: 50px;
  font-size: .88rem; font-weight: 700;
  font-family: 'Noto Sans KR', sans-serif;
  box-shadow: 0 6px 24px rgba(13,27,42,.35);
  text-decoration: none; transition: all .25s; z-index: 200;
}
.sk-fab:hover {
  background: var(--gold); transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(200,150,58,.45);
}

/* 페이지네이션 */
.sk-body .pg_wrap { margin-top: 56px; display: flex; justify-content: center; }

/* ══ 반응형 ══ */
@media (max-width: 960px) {
  .sk-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .sk-hero { height: auto; flex-direction: column; }
  .sk-hero__text { width: 100%; padding: 48px 32px; }
  .sk-hero__text::after { display: none; }
  .sk-hero__img-wrap { height: 260px; flex: none; width: 100%; }
}
@media (max-width: 560px) {
  .sk-grid { grid-template-columns: 1fr; gap: 16px; }
  .sk-hero__text { padding: 36px 20px; }
  .sk-hero__stats { gap: 8px; left: 16px; bottom: 16px; }
  .sk-body { padding: 32px 14px 90px; }
  .sk-fab { bottom: 18px; right: 14px; padding: 12px 18px; }
}

/* ════════════════════════════════════
   검색창 — sticky 헤더 아래 고정
════════════════════════════════════ */
#sk-sch-wrap {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
  transform: translateY(-10px) !important;
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s !important;
  /* 그누보드 기본값 리셋 */
  width: auto !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  display: block !important;
  text-align: left !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
}
#sk-sch-wrap.is-open {
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear 0s !important;
}

/* ════════════════════════════════════
   검색 백드롭 — 전체화면 독립 레이어
════════════════════════════════════ */
#sk-sch-backdrop {
  position: fixed !important;
  top: 0 !important; left: 0 !important;
  right: 0 !important; bottom: 0 !important;
  width: 100vw !important; height: 100vh !important;
  background: rgba(13,27,42,.45) !important;
  backdrop-filter: blur(3px) !important;
  -webkit-backdrop-filter: blur(3px) !important;
  z-index: 99998 !important;
  visibility: hidden !important;
  opacity: 0 !important;
  transition: opacity .25s ease, visibility 0s linear .25s !important;
  pointer-events: none !important;
  border: none !important; border-radius: 0 !important;
  padding: 0 !important; margin: 0 !important; box-shadow: none !important;
}
#sk-sch-backdrop.is-open {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transition: opacity .25s ease, visibility 0s linear 0s !important;
}

#sk-sch-wrap .sk-sch-box {
  position: relative !important;
  max-width: 680px !important;
  margin: 14px auto 0 !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 48px rgba(13,27,42,.28) !important;
  padding: 22px 26px !important;
  z-index: 1 !important;
  width: auto !important;
  height: auto !important;
  max-height: none !important;
  border: none !important;
  text-align: left !important;
  overflow: visible !important;
}

#sk-sch-wrap .sk-sch-inner {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

#sk-sch-wrap .sk-sch-sel {
  padding: 10px 12px !important;
  border: 1.5px solid #ddd8d3 !important;
  border-radius: 8px !important;
  font-size: .82rem !important;
  font-family: 'Noto Sans KR', sans-serif !important;
  color: #5a5550 !important;
  background: #ffffff !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
  outline: none !important;
  transition: border-color .2s !important;
  box-shadow: none !important;
  height: auto !important;
  width: auto !important;
}
#sk-sch-wrap .sk-sch-sel:focus { border-color: #0d1b2a !important; }

#sk-sch-wrap .sk-sch-bar {
  flex: 1 !important;
  display: flex !important;
  border: 1.5px solid #ddd8d3 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  transition: border-color .2s !important;
  background: #ffffff !important;
  height: auto !important;
}
#sk-sch-wrap .sk-sch-bar:focus-within { border-color: #0d1b2a !important; }

#sk-sch-wrap .sk-sch-input {
  flex: 1 !important;
  padding: 10px 14px !important;
  border: none !important;
  outline: none !important;
  font-size: .88rem !important;
  font-family: 'Noto Sans KR', sans-serif !important;
  color: #0d1b2a !important;
  background: transparent !important;
  box-shadow: none !important;
  height: auto !important;
  width: auto !important;
  border-radius: 0 !important;
}
#sk-sch-wrap .sk-sch-input::placeholder { color: #9e9890 !important; }

#sk-sch-wrap .sk-sch-btn {
  padding: 0 18px !important;
  background: #0d1b2a !important;
  border: none !important;
  color: #ffffff !important;
  cursor: pointer !important;
  font-size: .9rem !important;
  transition: background .2s !important;
  height: auto !important;
  border-radius: 0 !important;
}
#sk-sch-wrap .sk-sch-btn:hover { background: #1a2e45 !important; }

#sk-sch-wrap .sk-sch-cls {
  width: 38px !important; height: 38px !important;
  border-radius: 50% !important;
  background: #f0ecea !important;
  border: none !important;
  color: #5a5550 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: all .2s !important;
  font-size: .9rem !important;
}
#sk-sch-wrap .sk-sch-cls:hover { background: #ddd8d3 !important; color: #0d1b2a !important; }

@media (max-width: 560px) {
  #sk-sch-wrap .sk-sch-box { margin: 8px 12px 0 !important; padding: 16px !important; }
  #sk-sch-wrap .sk-sch-inner { flex-wrap: wrap !important; gap: 8px !important; }
  #sk-sch-wrap .sk-sch-sel { width: 100% !important; }
  #sk-sch-wrap .sk-sch-bar { width: 100% !important; flex: none !important; }
}

/* ════════════════════════════════════
   Swiper 버튼 위치 — 완전 리셋
════════════════════════════════════ */
.sk-card__swiper-wrap .swiper-button-prev,
.sk-card__swiper-wrap .swiper-button-next {
  position: absolute !important;
  top: 50% !important;
  bottom: auto !important;
  margin-top: -15px !important;   /* 버튼 높이 절반: 30px / 2 */
  width: 30px !important;
  height: 30px !important;
  background: rgba(255,255,255,.92) !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.18) !important;
  opacity: 0;
  transition: opacity .2s;
  z-index: 10;
  transform: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.sk-card__swiper-wrap .swiper-button-prev { left: 10px !important; right: auto !important; }
.sk-card__swiper-wrap .swiper-button-next { right: 10px !important; left: auto !important; }

.sk-card:hover .sk-card__swiper-wrap .swiper-button-prev,
.sk-card:hover .sk-card__swiper-wrap .swiper-button-next { opacity: 1; }

.sk-card__swiper-wrap .swiper-button-prev::after,
.sk-card__swiper-wrap .swiper-button-next::after {
  font-size: .6rem !important;
  font-weight: 900 !important;
  color: #0d1b2a !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ════════════════════════════════════
   관리자 체크박스 — 카드 좌상단 오버레이
════════════════════════════════════ */
.sk-card__chk-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  cursor: pointer;
  display: block;
  line-height: 1;
}

.sk-card__chk {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}

.sk-card__chk-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(255,255,255,.85);
  border: 2px solid rgba(255,255,255,.6);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: all .18s;
  backdrop-filter: blur(4px);
}
.sk-card__chk-box i {
  font-size: .65rem;
  color: #fff;
  opacity: 0;
  transition: opacity .15s;
}

/* 체크됐을 때 */
.sk-card__chk:checked + .sk-card__chk-box {
  background: #0d1b2a;
  border-color: #0d1b2a;
  box-shadow: 0 2px 8px rgba(13,27,42,.4);
}
.sk-card__chk:checked + .sk-card__chk-box i {
  opacity: 1;
}

/* 호버 */
.sk-card__chk-wrap:hover .sk-card__chk-box {
  background: rgba(255,255,255,.95);
  border-color: #0d1b2a;
}

/* ════════════════════════════════════════════════════
   로컬 파트너 배너 — 숙박 입점 전용 (이미지2 스타일)
   기존 aco_list.css 하단에 추가
════════════════════════════════════════════════════ */

.lm-partner-banner {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom:100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(120deg, #0d1117 0%, #1a0a0a 45%, #3d0c0c 75%, #1a0a0a 100%);
    min-height: 180px;
  }
  
  /* 내부 레이아웃 */
  .lm-partner-banner__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 44px 56px;
  }
  
  /* 왼쪽 텍스트 */
  .lm-partner-banner__left {
    flex: 1;
    min-width: 0;
  }
  
  .lm-partner-banner__eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    color: rgba(255,255,255,.45);
    margin: 0 0 14px;
    text-transform: uppercase;
  }
  
  .lm-partner-banner__title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 12px;
    letter-spacing: -.02em;
  }
  
  .lm-partner-banner__desc {
    font-size: .84rem;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin: 0;
    max-width: 360px;
  }
  
  /* 오른쪽 액션 영역 */
  .lm-partner-banner__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    flex-shrink: 0;
  }
  
  /* 필 뱃지 행 */
  .lm-partner-banner__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
  }
  
  .lm-partner-banner__pills span {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    font-size: .75rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    white-space: nowrap;
    backdrop-filter: blur(4px);
    font-family: 'Noto Sans KR', sans-serif;
  }
  
  /* CTA 버튼 */
  .lm-partner-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    background: #e53935;
    color: #ffffff;
    font-size: .9rem;
    font-weight: 700;
    font-family: 'Noto Sans KR', sans-serif;
    text-decoration: none;
    letter-spacing: .02em;
    box-shadow: 0 6px 24px rgba(229,57,53,.45);
    transition: all .25s ease;
    white-space: nowrap;
  }
  .lm-partner-banner__btn:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(229,57,53,.55);
    color: #ffffff;
  }
  .lm-partner-banner__btn svg {
    transition: transform .2s;
  }
  .lm-partner-banner__btn:hover svg {
    transform: translateX(4px);
  }
  
  /* ── 배경 장식 원 ── */
  .lm-partner-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }
  .lm-pb-circle {
    position: absolute;
    border-radius: 50%;
    opacity: .18;
  }
  .lm-pb-circle--1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #e53935 0%, transparent 70%);
    right: -80px; top: -120px;
  }
  .lm-pb-circle--2 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, #ff6f60 0%, transparent 70%);
    right: 200px; bottom: -80px;
    opacity: .12;
  }
  .lm-pb-circle--3 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, #ffffff 0%, transparent 70%);
    left: 40%; top: -60px;
    opacity: .04;
  }
  
  /* ── 반응형 ── */
  @media (max-width: 860px) {
    .lm-partner-banner__inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 28px;
      padding: 36px 32px;
    }
    .lm-partner-banner__right {
      align-items: flex-start;
      width: 100%;
    }
    .lm-partner-banner__pills {
      justify-content: flex-start;
    }
  }
  @media (max-width: 480px) {
    .lm-partner-banner {
      border-radius: 14px;
      margin: 40px 14px 0;
    }
    .lm-partner-banner__inner {
      padding: 28px 22px;
    }
    .lm-partner-banner__title {
      font-size: 1.5rem;
    }
    .lm-partner-banner__pills span {
      font-size: .7rem;
      padding: 6px 12px;
    }
    .lm-partner-banner__btn {
      width: 100%;
      justify-content: center;
      padding: 13px 24px;
    }
  }

