/* ============================================================
   한울 소상공인지원센터 (theme/06) - 보조 CSS
   브랜드 팔레트: #004DC8(블루) #00B4CD(청록) #355B94(딥블루)
                 #0B5B66(딥청록) #16a07c(그린)
   ============================================================ */

:root {
  --c-blue: #004DC8;
  --c-cyan: #00B4CD;
  --c-navy: #355B94;
  --c-deep: #0B5B66;
  --c-green: #16a07c;
  --c-ink: #13315c;
  --area-max: 1280px;
  --area-pad: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; max-width: 100%; word-break: keep-all; }
img { max-width: 100%; }

/* ---------- 레이아웃: full / area ---------- */
/* full = 좌우 풀 배경, area = 중앙 제한 콘텐츠 */
.full { width: 100%; }
.ws-area {
  width: 100%;
  max-width: var(--area-max);
  margin-inline: auto;
  padding-inline: var(--area-pad);
}
@media (min-width: 1440px) {
  .ws-area { max-width: 1320px; }
}

/* min-width:0 가드 (Tailwind CDN grid 안전장치) */
main .swiper, main .swiper-slide, .quick-card > *, .notice-card,
.news-card, .tv-side, .service-item { min-width: 0; }

/* ---------- Skip link ---------- */
.ws-skip {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  z-index: 200; background: var(--c-blue); color: #fff;
  padding: 10px 18px; border-radius: 0 0 10px 10px; font-size: .9rem; font-weight: 700;
  transition: top .2s;
}
.ws-skip:focus { top: 0; }

/* ---------- Header ---------- */
.header-bar { position: sticky; top: 0; z-index: 80; transition: box-shadow .25s; }
.header-bar.is-stuck { box-shadow: 0 6px 24px -14px rgba(15,40,80,.35); }

.logo-mark { background: linear-gradient(135deg, var(--c-blue), var(--c-cyan)); }

.util-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 8px; border-radius: 8px; color: #64748b; transition: color .15s, background .15s;
}
.util-btn:hover { color: var(--c-blue); background: #eef4ff; }
.util-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border: 1px solid #e2e8f0; border-radius: 6px; color: #64748b;
  transition: .15s;
}
.util-icon:hover { border-color: var(--c-blue); color: var(--c-blue); }
.util-sep { width: 1px; height: 12px; background: #e2e8f0; margin-inline: 4px; }

.gnb-link {
  display: inline-block; padding: 10px 14px; border-radius: 10px;
  font-size: .98rem; font-weight: 700; color: #1f3a5f; position: relative; transition: color .15s;
}
.gnb-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 3px;
  background: var(--c-blue); border-radius: 3px; transform: scaleX(0); transform-origin: left;
  transition: transform .22s;
}
.gnb-link:hover { color: var(--c-blue); }
.gnb-link:hover::after { transform: scaleX(1); }

/* ---------- Mobile drawer ---------- */
.nav-overlay {
  position: fixed; inset: 0; z-index: 90; background: rgba(15,30,60,.45);
  opacity: 0; transition: opacity .25s;
}
.nav-overlay.is-open { opacity: 1; }
.mobile-nav {
  position: fixed; top: 0; right: 0; z-index: 100; height: 100%;
  width: min(82vw, 320px); background: #fff; transform: translateX(100%);
  transition: transform .3s ease, visibility .3s; box-shadow: -10px 0 40px -10px rgba(0,0,0,.3);
  overflow-y: auto; visibility: hidden;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.m-nav-link {
  display: block; padding: 14px 16px; border-radius: 12px;
  font-size: 1.02rem; font-weight: 700; color: #1f3a5f; transition: background .15s, color .15s;
}
.m-nav-link:hover, .m-nav-link:active { background: #eef4ff; color: var(--c-blue); }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  height: 50px; padding: 0 26px; border-radius: 999px;
  background: var(--c-blue); color: #fff; font-weight: 700; font-size: .98rem;
  box-shadow: 0 14px 30px -12px rgba(0,77,200,.6); transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-primary:hover { background: #003ba0; transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(0,77,200,.7); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 8px 18px -10px rgba(0,77,200,.6); }

.btn-light {
  display: inline-flex; align-items: center; gap: 8px;
  height: 50px; padding: 0 26px; border-radius: 999px;
  background: #fff; color: var(--c-ink); font-weight: 700; font-size: .98rem;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-light:hover { background: #f1f5ff; transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(0,0,0,.4); }
.btn-light:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  height: 46px; padding: 0 20px; border-radius: 12px;
  border: 1.5px solid #d3def0; background: #fff; color: #1f3a5f; font-weight: 700; font-size: .92rem;
  transition: .15s;
}
.btn-outline:hover { border-color: var(--c-blue); color: var(--c-blue); background: #f5f9ff; }
.btn-outline:active { background: #eaf1ff; }

/* ---------- Banner (Swiper) ---------- */
.banner-shell { background: #e7eef7; overflow: hidden; }
.mainSwiper { overflow: hidden !important; }
.mainSwiper .swiper-wrapper { box-sizing: border-box; }
.mainSwiper, .mainSwiper .swiper-slide { height: auto; }
.banner-slide--1 { background: linear-gradient(120deg, #dfeafb 0%, #eaf3ff 55%, #f3f9ff 100%); }
.banner-slide--2 { background: linear-gradient(120deg, #122a52 0%, #1b3a6b 100%); }
.banner-slide--3 { background: linear-gradient(120deg, var(--c-deep) 0%, #0e7d8f 60%, #14a0b3 100%); }

.banner-controls {
  background: rgba(15,30,60,.32); backdrop-filter: blur(4px);
  padding: 6px 10px; border-radius: 999px;
}
.banner-ctrl {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 999px; color: #fff;
  background: rgba(255,255,255,.18); transition: background .15s;
}
.banner-ctrl:hover { background: rgba(255,255,255,.38); }

/* ---------- Quick card ---------- */
.quick-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: #fff; padding: 22px 10px; text-align: center;
  font-size: .92rem; font-weight: 700; color: #1f3a5f; transition: background .15s, color .15s;
}
.quick-item:hover { background: #f5f9ff; color: var(--c-blue); }
.quick-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 16px;
  background: linear-gradient(135deg, #e8f0ff, #e6f7fb); color: var(--c-blue);
  transition: transform .2s;
}
.quick-item:hover .quick-ico { transform: translateY(-3px); }

/* ---------- Section title ---------- */
.sec-title {
  font-size: 1.6rem; font-weight: 800; color: #1f3a5f; letter-spacing: -.01em;
}
@media (min-width: 1024px) { .sec-title { font-size: 1.9rem; } }

/* ---------- Notice tabs ---------- */
.notice-tab {
  padding: 9px 18px; border-radius: 999px; border: 1.5px solid #e2e8f0;
  font-size: .92rem; font-weight: 700; color: #64748b; white-space: nowrap; transition: .15s; background: #fff;
}
.notice-tab:hover { border-color: var(--c-cyan); color: var(--c-deep); }
.notice-tab.is-active { border-color: var(--c-cyan); color: var(--c-deep); background: #e9fafc; }
.tab-dot { width: 4px; height: 4px; border-radius: 999px; background: #cbd5e1; }

.round-ctrl {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px; border: 1.5px solid #e2e8f0;
  color: #475569; background: #fff; transition: .15s;
}
.round-ctrl:hover { border-color: var(--c-blue); color: var(--c-blue); background: #f5f9ff; }
.round-ctrl:active { background: #eaf1ff; }

.notice-panel { display: none; }
.notice-panel.is-active { display: grid; }

.notice-card {
  display: block; background: #fff; border: 1px solid #eef2f7; border-radius: 18px;
  padding: 24px 22px 22px; transition: transform .18s, box-shadow .18s, border-color .18s;
}
.notice-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(15,40,80,.3); border-color: #dbe6f5; }
.notice-card h3 {
  font-size: 1.02rem; font-weight: 700; color: #1f3a5f; line-height: 1.45; margin: 14px 0 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.notice-card time { font-size: .82rem; color: #94a3b8; }

.badge {
  display: inline-block; padding: 4px 11px; border-radius: 8px;
  font-size: .74rem; font-weight: 700; color: #fff;
}
.badge-open { background: var(--c-cyan); }
.badge-close { background: #425570; }
.badge-info { background: var(--c-blue); }

/* ---------- 센터 TV ---------- */
.tv-main { display: block; }
.play-badge {
  position: absolute; left: 22px; top: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 999px;
  background: rgba(0,77,200,.9); color: #fff;
  box-shadow: 0 10px 24px -8px rgba(0,77,200,.7);
}
.tv-main .relative::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(10,20,40,.78) 100%);
}
.tv-main .play-badge, .tv-main .absolute.left-5 { z-index: 2; }

.tv-side {
  display: grid; grid-template-columns: 116px minmax(0,1fr); gap: 14px; align-items: center;
  background: #fff; border: 1px solid #eef2f7; border-radius: 16px; padding: 12px;
  transition: transform .18s, box-shadow .18s;
}
.tv-side:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -20px rgba(15,40,80,.3); }
.tv-thumb { width: 116px; height: 74px; object-fit: cover; border-radius: 12px; }
.tv-side span { display: block; }
.tv-side strong {
  display: block; font-size: .98rem; font-weight: 700; color: #1f3a5f; line-height: 1.4;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.tv-side em { display: block; font-style: normal; font-size: .82rem; color: #94a3b8; margin-top: 4px; }

/* ---------- 서비스안내 ---------- */
.service-box { background: linear-gradient(120deg, #edf6fe 0%, #eafaf8 100%); }
.service-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
  font-size: .95rem; font-weight: 700; color: #1f3a5f;
}
.service-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 74px; height: 74px; border-radius: 22px; background: #fff; color: var(--c-blue);
  box-shadow: 0 12px 26px -16px rgba(15,40,80,.4); transition: transform .2s, color .2s;
}
.service-item:hover .service-ico { transform: translateY(-5px); color: var(--c-cyan); }
.service-more {
  position: absolute; right: 22px; top: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 999px; background: #fff; color: var(--c-blue);
  box-shadow: 0 10px 22px -14px rgba(15,40,80,.4); transition: .15s;
}
.service-more:hover { background: var(--c-blue); color: #fff; }

/* ---------- 센터 뉴스 (right-full rail) ---------- */
/* area 시작점에서 시작해 오른쪽으로 full 확장되는 슬라이드 */
.news-rail {
  width: 100%;
  max-width: calc(var(--area-max) + (100vw - var(--area-max)) / 2);
  margin-left: max(var(--area-pad), calc((100vw - var(--area-max)) / 2 + var(--area-pad)));
  overflow: visible;
}
@media (min-width: 1440px) {
  .news-rail { max-width: calc(1320px + (100vw - 1320px) / 2); margin-left: max(20px, calc((100vw - 1320px) / 2 + 20px)); }
}
.newsSwiper { overflow: visible; }
/* 모바일: right-full 흐름 대신 area 정렬 + 클립 (overflow 방지) */
@media (max-width: 767px) {
  .news-rail { margin-left: var(--area-pad); margin-right: var(--area-pad); max-width: none; width: auto; }
}
.newsSwiper .swiper-wrapper { align-items: stretch; }
.news-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid #eef2f7;
  transition: transform .2s, box-shadow .2s; height: auto;
}
.news-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -22px rgba(15,40,80,.35); }
.news-thumb { aspect-ratio: 16/10; overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-thumb img { transform: scale(1.06); }
.news-body { padding: 18px 20px 22px; }
.news-tag {
  display: inline-block; margin-bottom: 10px; padding: 3px 10px; border-radius: 7px;
  background: #eef4ff; color: var(--c-blue); font-size: .74rem; font-weight: 700;
}
.news-body h3 {
  font-size: 1.04rem; font-weight: 700; color: #1f3a5f; line-height: 1.45; margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-body time { font-size: .82rem; color: #94a3b8; }

/* ---------- SNS + Webzine ---------- */
.sns-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 999px; border: 1.5px solid #e2e8f0;
  color: #64748b; font-size: 1.05rem; transition: .15s;
}
.sns-btn:hover { border-color: var(--c-blue); color: var(--c-blue); background: #f5f9ff; transform: translateY(-2px); }
.webzine-box { background: linear-gradient(120deg, #fef9e7 0%, #eafaf3 100%); }
.webzine-cover {
  width: 200px; height: 248px; background: #fffbe9; border-radius: 14px;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: 0 18px 40px -20px rgba(120,100,0,.45); border: 1px solid #f3ead0;
}

/* ---------- 창업카페 (water section, full-bleed) ---------- */
.cafe-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(225,247,252,.55) 0%, rgba(190,235,246,.7) 100%),
    url("https://images.unsplash.com/photo-1559526324-4b87b5e36e44?w=1600&q=80") center/cover no-repeat;
}
.cafe-section::before {
  content: ""; position: absolute; inset: 0; background: rgba(235,250,253,.35);
  pointer-events: none;
}
.cafe-section > * { position: relative; z-index: 1; }
.cafe-aside, .cafe-panel {
  background: rgba(255,255,255,.92); border-radius: 20px; padding: 22px;
  backdrop-filter: blur(2px); box-shadow: 0 20px 50px -28px rgba(11,74,102,.4);
}
.cafe-acc {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 14px 14px; border-radius: 12px; background: #f1f8fb; color: #0b4a66;
  font-weight: 700; font-size: .98rem; transition: .15s;
}
.cafe-acc + .cafe-acc { margin-top: 8px; }
.cafe-acc i { transition: transform .25s; }
.cafe-acc.is-open { background: #e3f4f9; }
.cafe-acc.is-open i { transform: rotate(180deg); }
.cafe-acc-body { padding: 10px 14px 4px; color: #2a6a85; font-size: .9rem; line-height: 1.5; }
.cafe-acc-body[hidden] { display: none; }

.cafe-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 64px; border-radius: 14px; font-size: .88rem; font-weight: 700; color: #fff;
  text-align: center; line-height: 1.25; transition: transform .15s, filter .15s;
}
.cafe-btn i { flex-shrink: 0; }
.cafe-btn--primary { background: var(--c-cyan); }
.cafe-btn--navy { background: var(--c-navy); }
.cafe-btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.cafe-btn:active { transform: translateY(0); }

.cafe-list li + li { border-top: 1px solid #eaf2f5; }
.cafe-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 4px; color: #214a5e; font-size: .94rem; transition: color .15s;
}
.cafe-list a:hover { color: var(--c-blue); }
.cafe-list span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cafe-list time { font-size: .8rem; color: #94a3b8; flex-shrink: 0; }

.screen-golf {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 30px; border-radius: 999px; background: #fff;
  box-shadow: 0 18px 40px -20px rgba(11,74,102,.45); transition: transform .18s, box-shadow .18s;
}
.screen-golf:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -22px rgba(11,74,102,.55); }

/* ---------- Partners ---------- */
.partner-logo {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  height: 78px; border: 1px solid #eef2f7; border-radius: 16px;
  font-size: .98rem; font-weight: 700; color: #1f3a5f; background: #fff; transition: .15s;
}
.partner-logo:hover { border-color: #d3def0; box-shadow: 0 12px 28px -20px rgba(15,40,80,.35); }

/* ---------- Footer ---------- */
.footer-bar { background: #16243d; }

/* 패밀리사이트/관련기관: 실제 동작 select (onchange 이동) */
.foot-select {
  appearance: none; -webkit-appearance: none;
  height: 44px; min-width: 168px; padding: 0 40px 0 16px;
  border-radius: 10px; border: 1px solid rgba(255,255,255,.18);
  background-color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
  color: #cbd5e1; font-size: .85rem; font-weight: 600; cursor: pointer;
  transition: border-color .15s, background-color .15s, color .15s;
}
.foot-select:hover { border-color: rgba(255,255,255,.4); background-color: rgba(255,255,255,.06); color: #fff; }
.foot-select:focus-visible { outline: 2px solid var(--c-cyan); outline-offset: 2px; }
.foot-select option { color: #1f2937; background: #fff; }
@media (max-width: 479px) { .foot-select { width: 100%; min-width: 0; } }

/* ---------- Quick side ---------- */
.quick-side {
  position: fixed; right: 16px; bottom: 24px; z-index: 70;
  display: flex; flex-direction: column; gap: 8px;
}
.qs-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  width: 56px; height: 56px; border-radius: 16px; background: #fff;
  color: #1f3a5f; font-size: .62rem; font-weight: 700;
  box-shadow: 0 12px 30px -14px rgba(15,40,80,.4); transition: transform .15s, background .15s, color .15s;
}
.qs-item:hover { transform: translateY(-3px); background: var(--c-blue); color: #fff; }
.qs-top { opacity: 0; pointer-events: none; transition: opacity .25s, transform .15s, background .15s; }
.qs-top.is-show { opacity: 1; pointer-events: auto; }
@media (max-width: 768px) {
  .quick-side { right: 10px; bottom: 14px; }
  .qs-item { width: 48px; height: 48px; }
}

/* ---------- utils ---------- */
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* ---------- 진입 레이어 팝업 (PC/모바일 공용) ---------- */
.popup-layer {
  position: fixed; inset: 0; z-index: 150;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.popup-layer[hidden] { display: none; }
.popup-dim {
  position: absolute; inset: 0; background: rgba(10,22,45,.55);
  opacity: 0; transition: opacity .26s;
}
.popup-layer.is-open .popup-dim { opacity: 1; }
.popup-box {
  position: relative; z-index: 1;
  width: 100%; max-width: 380px;
  max-height: calc(100dvh - 32px); overflow-y: auto;
  background: #fff; border-radius: 22px;
  box-shadow: 0 30px 70px -24px rgba(10,22,45,.6);
  transform: translateY(18px) scale(.98); opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}
.popup-layer.is-open .popup-box { transform: translateY(0) scale(1); opacity: 1; }
.popup-x {
  position: absolute; right: 12px; top: 12px; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px;
  background: rgba(255,255,255,.85); color: #1f3a5f;
  box-shadow: 0 6px 16px -8px rgba(0,0,0,.4); transition: background .15s, color .15s;
}
.popup-x:hover { background: #fff; color: var(--c-blue); }
.popup-visual {
  position: relative; padding: 30px 26px 26px; border-radius: 22px 22px 0 0;
  background: linear-gradient(135deg, #004DC8 0%, #00B4CD 100%); color: #fff;
}
.popup-badge {
  display: inline-block; margin-bottom: 12px; padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,.18); font-size: .74rem; font-weight: 700;
}
.popup-kicker { font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.85); }
.popup-title { margin-top: 4px; font-size: 1.5rem; font-weight: 800; line-height: 1.3; }
.popup-body { padding: 22px 26px 8px; }
.popup-desc { font-size: .92rem; line-height: 1.6; color: #475569; }
.popup-meta { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.popup-meta li {
  display: flex; align-items: center; gap: 9px;
  font-size: .88rem; font-weight: 600; color: #1f3a5f;
}
.popup-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  height: 48px; padding: 0 24px; border-radius: 999px;
  background: var(--c-blue); color: #fff; font-weight: 700; font-size: .95rem;
  box-shadow: 0 14px 30px -14px rgba(0,77,200,.6); transition: background .15s, transform .15s;
}
.popup-cta:hover { background: #003ba0; transform: translateY(-2px); }
.popup-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 22px; margin-top: 16px; border-top: 1px solid #eef2f7; background: #f8fafc;
  border-radius: 0 0 22px 22px;
}
.popup-check {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600; color: #64748b; cursor: pointer;
}
.popup-check input { width: 16px; height: 16px; accent-color: var(--c-blue); cursor: pointer; }
.popup-close-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 38px; padding: 0 16px; border-radius: 10px;
  background: #e2e8f0; color: #334155; font-size: .85rem; font-weight: 700; transition: .15s;
}
.popup-close-btn:hover { background: #cbd5e1; color: #1f2937; }
@media (max-width: 479px) {
  .popup-box { max-width: 100%; }
  .popup-title { font-size: 1.32rem; }
  .popup-foot { flex-wrap: wrap; }
}

/* 280/320 미세 보정 */
@media (max-width: 360px) {
  :root { --area-pad: 14px; }
  .sec-title { font-size: 1.35rem; }
  .quick-item { padding: 16px 6px; font-size: .82rem; }
  .quick-ico { width: 44px; height: 44px; }
}
