<style>
@font-face {
  font-family: 'GmarketSans';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --bg: #f7f7f5;
  --black: #111111;
  --gray: #666f76;
  --line: #e6e6e2;
  --yellow: #ffd400;
  --yellow-soft: #fff6c8;
  --mono: 'JetBrains Mono', 'SF Mono', 'Courier New', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--white);
  color: var(--black);
  font-family: 'Pretendard Variable', Pretendard, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.display { font-family: 'GmarketSans', 'Pretendard Variable', sans-serif; font-weight: 700; }
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 22px; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--black); outline-offset: 3px; border-radius: 2px;
}
mark {
  background: linear-gradient(transparent 55%, var(--yellow) 55%);
  color: inherit; padding: 0 2px;
}

/* ── Top bar ── */
.topbar { position: sticky; top: 0; z-index: 60; background: var(--black); color: #fff; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 58px; }
.topbar .brand { font-family: 'GmarketSans', sans-serif; font-size: 16px; }
.topbar .brand span { color: var(--yellow); }
.topbar nav { display: flex; gap: 26px; font-size: 14px; color: #c9c9c4; }
.topbar nav a:hover { color: #fff; }
.topbar nav a.active { color: var(--yellow); font-weight: 700; }
.topbar .tel {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 14px; font-weight: 600;
  background: var(--yellow); color: var(--black);
  padding: 8px 16px; border-radius: 100px;
}
.topbar .tel:hover { background: #ffe14d; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.4rem; line-height: 1; color: #fff; padding: 6px 8px;
}
@media (max-width: 820px) {
  .hamburger { display: block; }
  .topbar nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--black);
    padding: 8px 22px 16px; box-shadow: 0 16px 30px rgba(0,0,0,0.3);
  }
  .topbar nav.open { display: flex; }
  .topbar nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* ── Hero ── */
.hero {
  background:
    radial-gradient(circle at 85% 20%, var(--yellow-soft), transparent 45%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 78px 0 84px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }
.badge {
  display: inline-block;
  font-family: 'GmarketSans', sans-serif; font-size: 13px;
  background: var(--black); color: var(--yellow);
  padding: 7px 20px; border-radius: 100px; margin-bottom: 22px;
}
.hero h1 {
  font-family: 'GmarketSans', sans-serif; font-weight: 700;
  font-size: clamp(32px, 5vw, 50px); line-height: 1.32; margin-bottom: 18px;
}
.hero .lede { font-size: 17px; color: var(--gray); max-width: 460px; margin-bottom: 34px; }
.hero .lede b { color: var(--black); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700;
  padding: 15px 30px; border-radius: 6px; border: 2px solid var(--black);
  cursor: pointer; transition: transform 0.12s, background 0.15s;
  font-family: inherit;
}
.btn:active { transform: scale(0.98); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: #ffe14d; }
.btn-white { background: #fff; color: var(--black); }
.btn-white:hover { background: var(--yellow-soft); }

/* install scene illustration */
.scene {
  position: relative; background: #fff; border: 2px solid var(--black);
  border-radius: 14px; padding: 30px 26px 0; overflow: hidden;
  box-shadow: 8px 8px 0 var(--yellow);
}
.scene .scene-lbl {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--gray); margin-bottom: 16px;
}
.scene-floor { display: flex; align-items: flex-end; justify-content: center; gap: 20px; }
.mini-machine {
  width: 120px; border: 2px solid var(--black); border-bottom: none;
  border-radius: 8px 8px 0 0; background: #fdfdfc;
  padding: 8px 8px 0; display: flex; flex-direction: column; gap: 5px;
}
.mini-machine .scr {
  height: 30px; background: var(--black); color: var(--yellow);
  border-radius: 4px; font-family: var(--mono); font-size: 8px;
  display: flex; align-items: center; justify-content: center; letter-spacing: 0.1em;
}
.mini-machine .r { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; height: 22px; }
.mini-machine .c { background: #fff; border: 1.5px solid #d8d8d2; border-radius: 3px; }
.dolly {
  width: 76px; align-self: flex-end; margin-bottom: 0;
}
.check-tags { position: absolute; top: 24px; right: 22px; display: flex; flex-direction: column; gap: 8px; }
.check-tag {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  background: var(--yellow); border: 1.5px solid var(--black);
  padding: 4px 10px; border-radius: 100px;
}

/* trust strip */
.trust { border-top: 2px solid var(--black); background: #fff; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust .t {
  padding: 22px 20px; border-right: 1px solid var(--line); text-align: center;
}
.trust .t:last-child { border-right: none; }
.trust .num { font-family: 'GmarketSans', sans-serif; font-size: 24px; }
.trust .num span { color: #d3a900; }
.trust .lbl { font-size: 12.5px; color: var(--gray); }
@media (max-width: 720px) {
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust .t:nth-child(2) { border-right: none; }
  .trust .t:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ── Sections ── */
section { padding: 90px 0; }
section.alt { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.kicker {
  display: inline-block; font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; background: var(--yellow); color: var(--black);
  padding: 5px 14px; border-radius: 3px; margin-bottom: 16px;
}
.sec-head h2 {
  font-family: 'GmarketSans', sans-serif; font-weight: 700;
  font-size: clamp(25px, 3.8vw, 36px); line-height: 1.4; margin-bottom: 12px;
}
.sec-head p { color: var(--gray); }

/* Services */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc {
  border: 2px solid var(--black); border-radius: 12px; background: #fff;
  padding: 30px 26px; box-shadow: 5px 5px 0 var(--yellow);
  transition: transform 0.15s;
}
.svc:hover { transform: translateY(-4px); }
.svc .emo { font-size: 30px; margin-bottom: 14px; display: block; }
.svc h3 { font-size: 17.5px; font-weight: 800; margin-bottom: 8px; }
.svc p { font-size: 14px; color: var(--gray); }
.svc ul { list-style: none; margin-top: 14px; border-top: 1px solid var(--line); padding-top: 12px; }
.svc li { font-size: 13.5px; padding: 4px 0 4px 22px; position: relative; }
.svc li::before { content: '✓'; position: absolute; left: 0; color: #d3a900; font-weight: 800; }
@media (max-width: 820px) { .svc-grid { grid-template-columns: 1fr; } }

/* Process */
.steps { counter-reset: step; max-width: 720px; margin: 0 auto; }
.step-item {
  display: grid; grid-template-columns: 88px 1fr; gap: 24px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 28px 30px; margin-bottom: 14px;
  transition: border-color 0.2s;
}
.step-item:hover { border-color: var(--black); }
.step-item .n {
  font-family: 'GmarketSans', sans-serif; font-size: 38px; line-height: 1;
  position: relative; text-align: center;
}
.step-item .n::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -5px; width: 36px; height: 9px; background: var(--yellow); z-index: -1;
}
.step-item h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.step-item p { font-size: 14.5px; color: var(--gray); }
.step-item .time {
  display: inline-block; margin-top: 8px;
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  background: var(--yellow-soft); border: 1px solid #e8d67a;
  border-radius: 100px; padding: 3px 12px;
}
@media (max-width: 560px) {
  .step-item { grid-template-columns: 1fr; gap: 10px; padding: 24px; }
  .step-item .n { text-align: left; font-size: 32px; }
  .step-item .n::after { left: 0; transform: none; }
}

/* 설치 공간 */
.space-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.space {
  border: 1.5px solid var(--line); border-radius: 10px;
  padding: 20px 8px; text-align: center; background: #fff;
  font-weight: 700; font-size: 14.5px;
  transition: background 0.15s, border-color 0.15s;
}
.space:hover { background: var(--yellow-soft); border-color: var(--black); }
.space .emo { display: block; font-size: 24px; margin-bottom: 6px; }
@media (max-width: 820px) { .space-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .space-grid { grid-template-columns: repeat(2, 1fr); } }

/* 가격 배너 */
.price-band { background: var(--black); color: #fff; padding: 84px 0; text-align: center; }
.price-band h2 {
  font-family: 'GmarketSans', sans-serif; font-size: clamp(24px, 3.8vw, 36px);
  line-height: 1.4; margin-bottom: 30px;
}
.price-card {
  max-width: 460px; margin: 0 auto 22px;
  background: #fff; color: var(--black); border-radius: 14px;
  padding: 36px 34px; box-shadow: 0 0 0 6px rgba(255, 212, 0, 0.35);
}
.price-card .lbl { font-size: 14px; color: var(--gray); }
.price-card .amount { font-family: 'GmarketSans', sans-serif; font-size: clamp(36px, 6vw, 48px); line-height: 1.25; }
.price-card .amount small { font-size: 17px; }
.price-card .term { font-family: var(--mono); font-size: 13px; color: var(--gray); margin-top: 4px; }
.price-card .divider { height: 1px; background: var(--line); margin: 22px 0; }
.price-card ul { list-style: none; text-align: left; }
.price-card li { font-size: 14.5px; padding: 5px 0 5px 26px; position: relative; }
.price-card li::before { content: '✓'; position: absolute; left: 2px; color: #d3a900; font-weight: 800; }
.price-band .note { font-size: 14px; color: #a5a5a0; }

/* FAQ */
.faq { max-width: 720px; margin: 0 auto; }
details {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  margin-bottom: 12px; overflow: hidden;
}
details[open] { border-color: var(--black); }
summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: 15.5px;
  list-style: none; display: flex; justify-content: space-between; gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: #d3a900; font-size: 20px; font-weight: 700; }
details[open] summary::after { content: '−'; }
details .ans { padding: 0 22px 20px; font-size: 14.5px; color: var(--gray); }

/* Contact */
.contact { text-align: center; padding: 92px 0 100px; }
.contact h2 {
  font-family: 'GmarketSans', sans-serif; font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.4; margin-bottom: 12px;
}
.contact p { color: var(--gray); margin-bottom: 32px; }
.tel-big {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: clamp(22px, 4vw, 32px); font-weight: 700;
  background: var(--black); color: var(--yellow);
  padding: 20px 44px; border-radius: 100px; transition: transform 0.12s;
}
.tel-big:hover { transform: scale(1.03); }
.contact .sub { margin-top: 16px; font-size: 14px; color: var(--gray); }

/* Footer */
footer { background: var(--black); color: #8f8f8a; padding: 34px 0 100px; font-size: 13px; }
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; line-height: 1.9; }

/* 설치 후기 */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review {
  border: 1.5px solid var(--line); border-radius: 12px; overflow: hidden;
  background: #fff; display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.review:hover { border-color: var(--black); transform: translateY(-3px); }
.review .ph {
  aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg);
  border-bottom: 1.5px solid var(--line);
}
.review .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review .body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.review .loc {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.review .loc b { font-size: 15.5px; }
.review .stars { color: #f5b100; font-size: 13px; letter-spacing: 2px; white-space: nowrap; }
.review .quote { font-size: 14px; color: var(--gray); }
.review .type {
  align-self: flex-start;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em;
  background: var(--yellow-soft); border: 1px solid #e8d67a; border-radius: 100px;
  padding: 3px 11px;
}
.review-wide { grid-column: span 3; }
.region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.region-card {
  background: #fff; border: 1px solid #ececec; border-radius: 16px;
  padding: 24px 22px; display: flex; flex-direction: column; gap: 8px;
}
.region-card .rtitle { font-size: 16px; font-weight: 700; }
.region-card .rtype {
  align-self: flex-start;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em;
  background: var(--yellow-soft); border: 1px solid #e8d67a; border-radius: 100px;
  padding: 3px 11px;
}
.region-card p { font-size: 14px; color: var(--gray); }
@media (max-width: 820px) {
  .region-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .region-grid { grid-template-columns: 1fr; }
}
.review-wide .ph { aspect-ratio: 21 / 9; }
@media (max-width: 820px) {
  .review-grid { grid-template-columns: 1fr 1fr; }
  .review-wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-wide { grid-column: span 1; }
  .review-wide .ph { aspect-ratio: 16 / 9; }
}

/* Sticky call bar */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none;
  background: var(--yellow); border-top: 2px solid var(--black);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px; font-weight: 800; font-size: 16px;
  font-family: 'GmarketSans', sans-serif;
}
@media (max-width: 720px) { .callbar { display: block; } }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ══ POS · 카드단말기 · 키오스크 · 철거 (신규 사업영역) ══ */
.pos-eyebrow { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.14em; color: var(--gray); font-weight: 700; text-transform: uppercase; }
.pos-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 28px 0 26px; }
.pos-tab { padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-weight: 700; font-size: 14px; cursor: pointer; color: var(--gray); transition: all .18s; }
.pos-tab:hover { border-color: var(--black); color: var(--black); }
.pos-tab.active { background: var(--black); border-color: var(--black); color: #fff; }
.pos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.pos-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 22px 20px; display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s; }
.pos-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(17,17,17,.08); }
.pos-card .cat { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: #b48a00; font-weight: 700; margin-bottom: 8px; }
.pos-card h3 { font-size: 17px; font-weight: 800; line-height: 1.35; }
.pos-card .desc { margin-top: 8px; font-size: 13.5px; color: var(--gray); flex: 1; }
.pos-card .desc li { margin-left: 18px; margin-top: 3px; }
.pos-tagrow { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.pos-tag { font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 6px; background: var(--yellow-soft); color: #6b5900; }
.pos-tag.warn { background: #fff1e6; color: #b4530a; }
.pos-price-block { margin-top: 16px; border-top: 1.5px dashed var(--line); padding-top: 12px; font-family: var(--mono); }
.pos-price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 3px 0; }
.pos-price-row .lbl { font-size: 12px; color: var(--gray); }
.pos-price-row .val { font-size: 15.5px; font-weight: 700; }
.pos-price-row.main .val { color: #b48a00; font-size: 18px; }
.pos-acc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 8px; }
.pos-acc-box h3 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.pos-acc-box p.note { font-size: 12.5px; color: #b4530a; margin-bottom: 14px; }
.pos-acc-list { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.pos-acc-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px; border-bottom: 1px solid var(--line); font-size: 14px; }
.pos-acc-item:last-child { border-bottom: none; }
.pos-acc-item .nm { font-weight: 600; }
.pos-acc-item .nm small { display: block; color: var(--gray); font-size: 12px; font-weight: 400; }
.pos-acc-item .pr { font-family: var(--mono); font-weight: 700; white-space: nowrap; margin-left: 14px; }
.demo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.demo-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 20px; }
.demo-card .ico { font-size: 22px; margin-bottom: 10px; }
.demo-card h4 { font-size: 15.5px; font-weight: 800; margin-bottom: 6px; }
.demo-card p { font-size: 13.5px; color: var(--gray); }
@media (max-width: 820px) { .pos-acc-grid { grid-template-columns: 1fr; } .demo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .demo-grid { grid-template-columns: 1fr; } }

/* 홈 카테고리 바로가기 카드 */
.home-quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 8px; }
.home-quick-card {
  display: block; text-decoration: none; color: var(--black);
  border: 2px solid var(--black); border-radius: 14px; background: #fff;
  padding: 26px 22px 22px; box-shadow: 6px 6px 0 var(--yellow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.home-quick-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--yellow); }
.home-quick-card:active { transform: translate(1px, 1px); box-shadow: 3px 3px 0 var(--yellow); }
.home-quick-card .ico {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--yellow-soft); border: 2px solid var(--black);
  font-size: 24px; margin-bottom: 16px;
}
.home-quick-card h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 6px; line-height: 1.3; }
.home-quick-card p { font-size: 13.5px; color: var(--gray); margin: 0; }
.home-quick-card .more {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--black);
}
.home-quick-card .more::after { content: '→'; transition: transform 0.15s ease; }
.home-quick-card:hover .more::after { transform: translateX(4px); }
@media (max-width: 820px) { .home-quick-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .home-quick-grid { grid-template-columns: 1fr; } }

/* 상품별 설명(뉴스) */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.news-card {
  display: block; text-decoration: none; color: var(--black);
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); border-color: var(--black); }
.news-card .thumb { width: 100%; height: 170px; object-fit: cover; background: var(--bg); display: block; }
.news-card .body { padding: 18px 20px 22px; }
.news-card .cat-tag {
  display: inline-block; font-family: var(--mono); font-size: 11px; font-weight: 700;
  background: var(--yellow); color: var(--black); padding: 3px 10px; border-radius: 100px; margin-bottom: 10px;
}
.news-card h3 { font-size: 15.5px; font-weight: 800; margin-bottom: 6px; line-height: 1.4; }
.news-card p { font-size: 13px; color: var(--gray); margin-bottom: 10px; }
.news-card .date { font-size: 11.5px; color: #999; font-family: var(--mono); }
.news-empty {
  text-align: center; padding: 70px 20px; color: var(--gray);
  border: 1.5px dashed var(--line); border-radius: 14px; margin-top: 30px;
}
.news-empty .emo { font-size: 30px; margin-bottom: 12px; display: block; }
@media (max-width: 900px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .news-grid { grid-template-columns: 1fr; } }

/* 갤러리 라이트박스 */
.gallery-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.9); align-items: center; justify-content: center;
  padding: 20px;
}
.gallery-overlay.open { display: flex; }
.gallery-box { position: relative; max-width: 900px; width: 100%; text-align: center; }
.gallery-box img { max-width: 100%; max-height: 78vh; border-radius: 8px; display: block; margin: 0 auto; background: #111; }
.gallery-caption { color: #fff; margin-top: 14px; font-size: 15px; font-weight: 700; }
.gallery-counter { color: #bbb; margin-top: 4px; font-size: 13px; font-family: var(--mono); }
.gallery-close {
  position: absolute; top: -46px; right: 0; background: none; border: none;
  color: #fff; font-size: 32px; cursor: pointer; line-height: 1; padding: 6px;
}
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  font-size: 26px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.gallery-nav:hover { background: rgba(255,255,255,0.25); }
.gallery-nav.prev { left: -8px; }
.gallery-nav.next { right: -8px; }
@media (max-width: 700px) {
  .gallery-nav.prev { left: 4px; } .gallery-nav.next { right: 4px; }
  .gallery-close { top: -40px; }
}
</style>

/* ── News article page ── */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 40px 22px 80px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: #666; text-decoration: none; font-size: 14px; margin-bottom: 24px; }
.back-link:hover { color: var(--black); }
.article-cat { display: inline-block; background: var(--yellow); color: var(--black); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; }
.article-wrap h1 { font-family: 'GmarketSans', 'Pretendard Variable', sans-serif; font-size: 1.7rem; line-height: 1.4; margin-bottom: 10px; }
.article-date { color: #999; font-size: 13px; margin-bottom: 24px; }
.article-img { width: 100%; height: 320px; object-fit: cover; border-radius: 14px; margin-bottom: 28px; }
.article-body p { margin-bottom: 18px; line-height: 1.8; }
.article-body h2 { font-size: 1.15rem; margin: 32px 0 12px; color: var(--black); }
.article-cta { background: var(--black); color: #fff; border-radius: 16px; padding: 28px; margin-top: 36px; text-align: center; }
.article-cta a { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--black); font-weight: 700; padding: 12px 28px; border-radius: 100px; text-decoration: none; margin-top: 12px; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.article-tags span { background: #f2f2f0; color: #666; font-size: 12.5px; padding: 6px 12px; border-radius: 100px; }
