/* 회원 화면. 흰 바탕 · 목록이 잘 읽히는 것만 본다. */

/* 글꼴 — Pretendard 를 직접 담아 쓴다 (OFL). 한 파일로 굵기 전부를 낸다. */
/* 자주 쓰는 한글 2,350자만 담은 것 — 416KB. 먼저 이것부터 받는다 */
@font-face {
  font-family: 'Pretendard';
  src: url('/assets/font/Pretendard-subset.woff2') format('woff2-variations');
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
}
/* 드문 글자(상품명에 가끔 나온다)가 필요할 때만 큰 파일을 받는다 */
@font-face {
  font-family: 'PretendardAll';
  src: url('/assets/font/PretendardVariable.woff2') format('woff2-variations');
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink:   #18181b;   /* 글씨 */
  --dim:   #71717a;   /* 흐린 글씨 */
  --line:  #e4e4e7;   /* 선 */
  --bg:    #ffffff;
  --soft:  #fafafa;   /* 옅은 바탕 */
  --point: #14284e;   /* 포인트 — 아이콘 바탕색과 같은 남색 */
  --warn:  #b42318;
  --ok:    #15803d;
  --r:     10px;      /* 모서리 */
}
* { box-sizing: border-box; }
/* hidden 은 무조건 숨긴다 — display:flex 인 칸이 브라우저 기본값을 이겨버린다 */
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Pretendard', 'PretendardAll', -apple-system, BlinkMacSystemFont,
               'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--point); text-decoration: none; }
a:hover { text-decoration: underline; }

/* 머리 */
.top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 20px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--bg); z-index: 5;
}
.brand { display: flex; flex-direction: column; gap: 1px; line-height: 1.25; }
.brand .bn { font-weight: 800; font-size: 18px; color: var(--ink); letter-spacing: -.04em; }
.brand .bt { font-size: 11px; color: var(--dim); font-weight: 400; }
.brand:hover { text-decoration: none; }
.top nav { display: flex; gap: 14px; font-size: 14px; flex-wrap: wrap; }
.top nav a { color: var(--dim); }

main { max-width: 1060px; margin: 0 auto; padding: 28px 20px 64px; }
h1 { font-size: 22px; margin: 0 0 6px; letter-spacing: -.03em; font-weight: 700; }
h2 { font-size: 17px; margin: 34px 0 10px; }
.lead { color: var(--dim); font-size: 14px; margin: 0 0 22px; }
.note { color: var(--dim); font-size: 13px; }
.dim { color: var(--dim); }
.center { text-align: center; margin-top: 18px; font-size: 14px; }
.crumb { font-size: 13px; color: var(--dim); margin: 0 0 10px; }
.empty { padding: 48px 0; text-align: center; color: var(--dim); }
code { background: var(--soft); padding: 2px 6px; border-radius: 4px; font-size: 13px; }

/* 알림 */
.box { padding: 11px 14px; border-radius: 8px; font-size: 14px; margin: 0 0 18px;
       background: var(--soft); border: 1px solid var(--line); }
.box.warn, .msg.warn { color: var(--warn); }
.box.ok, .msg.ok { color: var(--ok); }
.msg { font-size: 13px; min-height: 20px; margin: 2px 0 14px; }

/* 목록 카드 */
.grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.card {
  display: flex; flex-direction: column; gap: 4px;
  border: 1px solid var(--line); border-radius: 10px; padding: 18px;
  color: var(--ink); transition: border-color .15s, transform .15s;
}
.card:hover { border-color: var(--point); text-decoration: none; transform: translateY(-1px); }
.card .no { font-size: 26px; font-weight: 700; letter-spacing: -1px; }
.card .title { font-size: 14px; }
.card .meta { font-size: 13px; color: var(--dim); }
.card .price { margin-top: 8px; font-weight: 600; color: var(--point); }

/* 요약 줄 */
.sum { display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 14px 16px;
       background: var(--soft); border-radius: 8px; font-size: 14px; margin: 0 0 20px; }
.sum b { font-weight: 700; font-variant-numeric: tabular-nums; }

/* 표 */
table.list { width: 100%; border-collapse: collapse; font-size: 14px; }
table.list th, table.list td { padding: 10px 10px; border-bottom: 1px solid var(--line);
                               text-align: left; vertical-align: top; }
table.list thead th { font-size: 12px; color: var(--dim); font-weight: 600;
                      border-bottom: 1px solid var(--ink); white-space: nowrap; }
table.list td.c, table.list th.c { text-align: center; white-space: nowrap; }
table.list td.r, table.list th.r { text-align: right; white-space: nowrap;
                                   font-variant-numeric: tabular-nums; }
table.list td.q, table.list td.no { font-variant-numeric: tabular-nums; }
table.list tbody tr:hover { background: var(--soft); }

table.kv { border-collapse: collapse; font-size: 14px; }
table.kv th { text-align: left; color: var(--dim); font-weight: 500;
              padding: 8px 24px 8px 0; white-space: nowrap; }
table.kv td { padding: 8px 0; }

/* 폼 */
.form { display: flex; flex-direction: column; gap: 14px; max-width: 460px; }
.form.narrow { max-width: 340px; }
.form label { display: block; font-size: 14px; }
.form label > input, .form label > textarea, .form label > select { margin-top: 5px; }
input, select, textarea, button {
  font: inherit; color: inherit;
}
input[type=text], input:not([type]), input[type=password], input[type=email],
input[type=tel], textarea, select {
  border: 1px solid var(--line); border-radius: var(--r); padding: 11px 12px;
  background: #fff; width: 100%;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid rgba(24, 48, 92, .25); outline-offset: 1px; border-color: var(--point);
}
button:focus-visible, .tab:focus-visible, a:focus-visible {
  outline: 2px solid rgba(24, 48, 92, .35); outline-offset: 2px;
}
button {
  border: 1px solid var(--point); background: var(--point); color: #fff;
  border-radius: var(--r); padding: 11px 18px; cursor: pointer; white-space: nowrap;
  font-weight: 500;
}
button:hover { opacity: .9; }
button.big { padding: 13px; font-weight: 600; }
.btn { display: inline-block; border: 1px solid var(--line); border-radius: var(--r);
       padding: 10px 16px; background: #fff; }
.btn:hover { border-color: var(--point); text-decoration: none; }
.kind { display: flex; gap: 18px; }
.kind label { flex-direction: row; align-items: center; gap: 6px; }
.phone { display: flex; gap: 8px; align-items: flex-end; }
.phone label { flex: 1; }
fieldset.biz { border: 1px solid var(--line); border-radius: 8px; padding: 16px;
               display: flex; flex-direction: column; gap: 14px; }
fieldset.biz legend { font-size: 13px; color: var(--dim); padding: 0 6px; }
.agree { display: flex; flex-direction: column; gap: 10px; font-size: 13px;
         background: var(--soft); border-radius: 8px; padding: 14px; }
.agree label { display: flex; gap: 8px; align-items: flex-start; }
.agree input { margin-top: 3px; }

/* 구매 신청 */
.ask { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 24px;
       display: flex; flex-direction: column; gap: 12px; max-width: 520px; }
.ask h2 { margin: 0; }
.ask button { align-self: flex-start; }

.foot { border-top: 1px solid var(--line); padding: 24px 20px 40px;
        color: var(--dim); font-size: 12px; text-align: center; }
.foot p { margin: 4px 0; }

@media (max-width: 700px) {
  .brand .bt { display: none; }        /* 좁은 화면에서는 이름만 */
}

@media (max-width: 640px) {
  main { padding: 20px 14px 48px; }
  table.list th, table.list td { padding: 9px 6px; font-size: 13px; }
  .card .no { font-size: 22px; }
}

/* 팔레트 목록 — 번호와 값만 보이고, 누르면 펼쳐진다 */
.plist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.pl { border-bottom: 1px solid var(--line); }
.plhead {
  width: 100%; display: flex; align-items: center; gap: 14px;
  background: none; border: 0; color: inherit; cursor: pointer;
  padding: 18px 4px; text-align: left;
}
.plhead:hover { background: var(--soft); }
.plhead .no { font-size: 20px; font-weight: 700; letter-spacing: -.03em; min-width: 72px; }
.plhead .title { font-size: 14px; color: var(--dim); flex: 1; }
.plhead .price { margin-left: auto; font-weight: 600; color: var(--point); }
.plhead .caret {
  width: 8px; height: 8px; margin-left: 6px; flex: none;
  border-right: 2px solid var(--dim); border-bottom: 2px solid var(--dim);
  transform: rotate(45deg) translateY(-2px); transition: transform .15s;
}
.pl.open .plhead .caret { transform: rotate(-135deg) translateY(-2px); }
.pl.open .plhead { background: var(--soft); }
.plbody { padding: 6px 4px 24px; }
.plbody .sum { margin-bottom: 12px; }
.loading { color: var(--dim); font-size: 14px; padding: 14px 0; }
.scroll { overflow-x: auto; }
.more { margin: 16px 0 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.more .hint { padding: 0; }
.foot .tel { font-size: 13px; color: var(--ink); }
.foot .tel a { font-weight: 600; }

/* 팔레트 탭 — 한 묶음 안에 팔레트가 탭으로 놓인다 */
.group { margin: 0 0 40px; }
.group h2 { margin: 0 0 12px; font-size: 16px; }
.group h2 .dim { font-weight: 400; font-size: 13px; margin-left: 6px; }
.tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.tab {
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
  padding: 12px 16px; cursor: pointer; text-align: left;
  display: flex; flex-direction: column; gap: 2px; min-width: 130px;
}
.tab:hover { border-color: var(--point); opacity: 1; }
.tab .n { font-size: 18px; font-weight: 700; letter-spacing: -.02em;
           font-variant-numeric: tabular-nums; }
.tab .cat { font-size: 12px; color: var(--dim); }
.tab em { font-style: normal; font-weight: 600; color: var(--point); font-size: 14px;
           font-variant-numeric: tabular-nums; }
.tab[aria-selected="true"] {
  background: var(--point); border-color: var(--point); color: #fff;
}
.tab[aria-selected="true"] .cat,
.tab[aria-selected="true"] em { color: #cfe0f5; }
.panel { margin-top: 16px; }
.hint { color: var(--dim); font-size: 13px; padding: 18px 0; }
.scroll { overflow-x: auto; }
.more { margin: 16px 0 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.more .hint { padding: 0; }
.foot .tel { font-size: 13px; color: var(--ink); }
.foot .tel a { font-weight: 600; }

@media (max-width: 640px) {
  .tabs { gap: 6px; }
  .tab { min-width: calc(50% - 3px); padding: 10px 12px; }
  .tab .n { font-size: 16px; }
}

/* 회원가입 폼 */
.wrap { max-width: 560px; margin: 0 auto; }
.su { gap: 0; }
.fs { border-top: 1px solid var(--line); padding: 22px 0; display: flex;
      flex-direction: column; gap: 14px; }
.fs:first-of-type { border-top: 0; padding-top: 6px; }
.fs h2 { margin: 0; font-size: 14px; color: var(--dim); font-weight: 600; }
.form label i { font-style: normal; font-size: 11px; color: var(--warn);
                margin-left: 4px; }
.form label .dim { font-size: 11px; margin-left: 4px; }
.two { display: flex; gap: 12px; }
.two label { flex: 1; }
.kind { display: flex; gap: 10px; }
.pick { flex: 1; border: 1px solid var(--line); border-radius: 10px;
        padding: 14px; cursor: pointer; display: block; }
.pick input { position: absolute; opacity: 0; width: 0; height: 0; }
.pick span { display: flex; flex-direction: column; gap: 2px;
             font-size: 12px; color: var(--dim); }
.pick b { font-size: 15px; color: var(--ink); }
.pick.on { border-color: var(--point); box-shadow: inset 0 0 0 1px var(--point); }
button.ghost { background: #fff; color: var(--point); }
button.ghost:disabled { color: var(--dim); border-color: var(--line); cursor: default; }
.agree label { font-size: 13px; line-height: 1.5; }
.agree b { color: var(--ink); }
.su .big { margin-top: 8px; }
.su .center { margin-top: 14px; }

@media (max-width: 640px) {
  .two { flex-direction: column; gap: 14px; }
  .kind { flex-direction: column; }
}

/* 전화로 문의 */
.telbtn {
  display: inline-block; background: var(--point); color: #fff;
  border-radius: var(--r); padding: 10px 16px; font-weight: 600;
  letter-spacing: .2px;
}
.telbtn:hover { text-decoration: none; opacity: .92; }
.callbig { display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
           margin: 0 0 8px; font-size: 15px; }
.buy { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 24px; }
.buy h2 { margin: 0 0 12px; }

/* 가게 정보 */
.foot { text-align: left; background: var(--soft); }
.foot .call { display: flex; align-items: center; justify-content: center;
              gap: 12px; flex-wrap: wrap; font-size: 14px; color: var(--ink);
              margin: 0 0 20px; }
.foot .rule { text-align: center; margin: 0 0 22px; line-height: 1.7; }
.foot .biz { max-width: 720px; margin: 0 auto 18px; display: grid;
             grid-template-columns: 88px 1fr; gap: 6px 14px; }
.foot .biz dt { color: var(--ink); font-weight: 500; }
.foot .biz dd { margin: 0; }
.foot .corp { max-width: 720px; margin: 0 auto; text-align: center; line-height: 1.8; }
.foot .corp a { color: var(--dim); text-decoration: underline; }
.foot b { color: var(--ink); }

@media (max-width: 640px) {
  .foot .biz { grid-template-columns: 72px 1fr; }
}

/* 까는 법 */
.howto { display: grid; gap: 16px; grid-template-columns: 1fr; margin: 22px 0; }
.howto section { border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px;
                 background: #fff; }
.howto h2 { margin: 0 0 10px; font-size: 15px; }
.howto ol { margin: 0; padding-left: 20px; font-size: 14px; line-height: 1.9; }
.howto .ic { display: inline-block; border: 1px solid var(--line); border-radius: 6px;
             padding: 0 6px; margin: 0 3px; font-size: 12px; color: var(--dim); }
.foot .applink { text-align: center; margin: 0 0 18px; }
.foot .applink a { color: var(--point); font-weight: 600; }

/* 상품 표 — 좁은 화면에서는 갯수·색상을 이름 아래로 내린다 */
table.list td.name .sub { display: none; }
@media (max-width: 620px) {
  table.list th.q, table.list th.cl,
  table.list td.q, table.list td.cl { display: none; }
  table.list td.name .sub { display: block; font-size: 12px; color: var(--dim); margin-top: 2px; }
  table.list td.name { font-size: 13px; line-height: 1.45; }
  table.list th, table.list td { padding: 10px 4px; }
  table.list td.r { vertical-align: top; }
}

/* 팔레트 사진 */
.shots { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.shots img { display: block; width: 140px; height: 140px; object-fit: cover;
             border-radius: var(--r); border: 1px solid var(--line); background: var(--soft); }
.shots.big img { width: 180px; height: 180px; }
.shots a:hover img { border-color: var(--point); }
.shots figure { margin: 0; }
.shots figcaption { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.shots figcaption input { width: 56px; }
@media (max-width: 640px) {
  .shots img, .shots.big img { width: calc(33.333% - 6px); height: auto; aspect-ratio: 1; }
}

/* 첫 화면 */
/* 사진은 뒤에 깔고, 글은 흐름 안에 둔다.
   글이 길어지면 칸이 같이 커져서 잘리지 않는다 (카톡 내부 브라우저에서 특히 중요) */
.hero { position: relative; margin: -28px -20px 34px; overflow: hidden; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ''; position: absolute; inset: 0;
               background: linear-gradient(90deg, rgba(10,20,40,.80) 0%,
                                                  rgba(10,20,40,.62) 50%,
                                                  rgba(10,20,40,.35) 100%); }
.hero-t { position: relative; z-index: 1; display: flex; flex-direction: column;
          justify-content: center; gap: 10px; color: #fff;
          min-height: clamp(240px, 40vw, 420px);
          padding: 34px clamp(20px, 6vw, 64px); }
.hero-t h1 { font-size: clamp(30px, 6vw, 46px); margin: 0; letter-spacing: -.045em;
              font-weight: 800; color: #fff; }
.hero-t p { margin: 0; font-size: clamp(14px, 2.4vw, 17px); color: #dbe5f2; }
.hero-t .btns { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.hero-t .btn { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); color: #fff; }
.hero-t .btn:hover { background: rgba(255,255,255,.2); }

.cards { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
         margin: 0 0 40px; }
.cards .c { border: 1px solid var(--line); border-radius: var(--r); padding: 22px; background: #fff; }
.cards h2 { margin: 0 0 8px; font-size: 16px; }
.cards p { margin: 0; font-size: 14px; color: var(--dim); line-height: 1.7; }

.steps { background: var(--soft); border-radius: var(--r); padding: 26px clamp(18px, 4vw, 32px);
         margin: 0 0 36px; }
.steps h2 { margin: 0 0 16px; font-size: 16px; }
.steps ol { list-style: none; counter-reset: s; margin: 0; padding: 0;
            display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.steps li { counter-increment: s; display: flex; flex-direction: column; gap: 2px;
            padding-left: 34px; position: relative; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: 0;
                    width: 24px; height: 24px; border-radius: 50%; background: var(--point);
                    color: #fff; font-size: 13px; font-weight: 700;
                    display: grid; place-items: center; }
.steps li b { font-size: 15px; }
.steps li span { font-size: 13px; color: var(--dim); }
.steps .callbig { margin: 22px 0 0; }

.cta { text-align: center; border: 1px solid var(--line); border-radius: var(--r);
       padding: 34px 20px; }
.cta h2 { margin: 0 0 6px; font-size: 18px; }
.cta p { margin: 0; color: var(--dim); font-size: 14px; }
.cta .btns { margin-top: 16px; }

@media (max-width: 640px) {
  .hero { margin: -20px -14px 26px; }
  .hero-t { min-height: 0; padding: 28px 20px 30px; gap: 8px; }
  .hero-t h1 { font-size: 30px; }
  .hero-t p { font-size: 14px; }
  .hero-t .btns { gap: 8px; }
  .hero-t .btns a { flex: 1 1 auto; text-align: center; }
}

/* 코드 입력 */
.codein { text-align: center; font-size: 24px; font-weight: 700; letter-spacing: .35em;
          text-transform: uppercase; padding: 14px 12px !important; }

/* 상품 상태 안내 */
.cond { border: 1px solid var(--line); border-left: 3px solid var(--warn);
        border-radius: var(--r); padding: 16px 18px; background: #fff; }
.cond h3 { margin: 0 0 10px; font-size: 14px; }
.cond h3 .dim { font-weight: 400; font-size: 12px; margin-left: 4px; }
.cond ul { margin: 0; padding-left: 18px; font-size: 13px; line-height: 1.8; color: var(--dim); }
.cond b { color: var(--ink); }

.condline { font-size: 12px; color: var(--dim); margin: 0 0 10px;
            border-left: 3px solid var(--warn); padding-left: 10px; }
.legal .cond, .wrap .cond { margin: 22px 0; }

/* 팔레트 상태 구성 */
.cond2 { margin: 0 0 16px; }
.cond2 .bar { display: flex; height: 10px; border-radius: 999px; overflow: hidden;
              background: var(--soft); }
.cond2 .bar i { display: block; height: 100%; }
.cond2 p { display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 8px 0 0; font-size: 13px; }
.cond2 p.note { font-size: 12px; color: var(--dim); display: block; }
.cond2 .k { display: inline-flex; align-items: center; gap: 5px; color: var(--dim); }
.cond2 .k b { color: var(--ink); }
.cond2 .k em { font-style: normal; }
.cond2 .k i { width: 9px; height: 9px; border-radius: 3px; display: inline-block; }
i.c-표기없음  { background: #2f6f4e; }
i.c-중고      { background: #b07d2a; }
i.c-개봉전시  { background: #5b7fb5; }
i.c-포장훼손  { background: #a4553f; }

/* 문의하기 — 화면에 늘 떠 있는 단추 */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 20;
       display: flex; align-items: center; gap: 10px; }
.fab-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--point); color: #fff; border-radius: 999px;
  padding: 13px 20px; font-weight: 700; font-size: 15px;
  box-shadow: 0 6px 20px rgba(20, 40, 78, .35);
}
.fab-call:hover { text-decoration: none; opacity: .94; }
.fab-call svg { flex: none; }
.fab-tel { display: none; }
body { padding-bottom: 76px; }      /* 단추가 내용을 가리지 않게 */

@media (min-width: 900px) {
  .fab { right: 26px; bottom: 26px; flex-direction: row-reverse; }
  .fab-tel { display: inline-block; background: #fff; color: var(--ink);
             border: 1px solid var(--line); border-radius: 999px;
             padding: 10px 16px; font-size: 14px; font-weight: 600;
             box-shadow: 0 4px 14px rgba(16, 24, 40, .08); }
}
@media (max-width: 640px) {
  .fab { right: 14px; bottom: 14px; }
  .fab-call { padding: 12px 18px; font-size: 14px; }
  body { padding-bottom: 70px; }
}

.postrow { display: flex; gap: 8px; margin-top: 5px; }
.postrow input { flex: 1; }
.ask input[readonly] { background: var(--soft); font-weight: 700; }

.tab .ship { font-size: 11px; color: var(--dim); }
.tab[aria-selected="true"] .ship { color: #b9cde8; }

.sum .buyp { background: var(--point); color: #fff; border-radius: 999px;
             padding: 3px 12px; }
.sum .buyp b { color: #fff; }
.sum .buyp .dim { color: #c3d3e8; }

/* 탭 안의 목록 정상가 */
.tab .nor { font-size: 12px; color: var(--dim); }
.tab[aria-selected="true"] .nor { color: #b9cde8; }
.tab { min-width: 150px; }

/* 부가세 표시 */
.tab .vatx { font-size: 10px; font-weight: 400; color: var(--dim); margin-left: 3px; }
.tab .vat { font-size: 12px; color: var(--ink); }
.tab .vat b { font-weight: 700; }
.tab[aria-selected="true"] .vat { color: #fff; }
.tab[aria-selected="true"] .vatx { color: #b9cde8; }
.sum .totp { background: #0f2547; color: #fff; border-radius: 999px; padding: 3px 12px; }
.sum .totp b { color: #fff; }
.sum .totp .dim { color: #b9cde8; }

/* 소개 페이지 */
.hero-t .eyebrow { font-size: 12px; letter-spacing: .18em; color: #b9cde8;
                   margin: 0 0 6px; text-transform: uppercase; }
.hero-t h1 br { display: block; }
.more2 { margin: 14px 0 0; }
.more2 a { color: #cfe0f5; font-size: 14px; }

.lead2 { max-width: 760px; margin: 0 auto 40px; }
.lead2 p { font-size: 16px; line-height: 1.85; color: var(--dim); margin: 0 0 14px; }
.lead2 b { color: var(--ink); }

.two-up { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          margin: 0 0 40px; }
.two-up figure { margin: 0; border: 1px solid var(--line); border-radius: var(--r);
                 overflow: hidden; background: #fff; }
.two-up img { display: block; width: 100%; height: 240px; object-fit: cover; }
.two-up figcaption { padding: 20px 22px 24px; }
.two-up h2 { margin: 0 0 8px; font-size: 17px; }
.two-up p { margin: 0; font-size: 14px; line-height: 1.75; color: var(--dim); }
.two-up b { color: var(--ink); }

/* 관리자가 회원 화면을 볼 때 위에 붙는 띠 */
.admbar { margin: 0; padding: 8px 16px; background: #18181b; color: #fff;
          font-size: 13px; text-align: center; }
.admbar b { color: #ffd479; }
.admbar a { color: #fff; text-decoration: underline; margin-left: 10px; }
