@charset "UTF-8";
/*
  모두출첵 헬프센터
  Design tokens follow modoocheck5-web (Primary #3882D3, Pretendard/Spoqa Han Sans Neo).
*/

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
@import url("https://spoqa.github.io/spoqa-han-sans/css/SpoqaHanSansNeo.css");

:root {
  --mc-primary: #3882D3;
  --mc-primary-hover: #286DB8;
  --mc-bg: #F3F4F5;
  --mc-text: #111;
  --mc-muted: #777;
  --mc-muted-2: #888;
  --mc-border: #eee;
  --mc-border-2: #ddd;
  --mc-chip: #F4F4F4;
  --mc-danger: #E04A4A;
  --mc-kakao: #fee500;
  --mc-radius: 12px;
  --mc-radius-sm: 6px;
  --mc-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  --mc-shadow-blue: 0 4px 12px rgba(56, 130, 211, 0.12);
  --font-body: "Spoqa Han Sans Neo", "pretendard", "Apple SD Gothic Neo", "맑은 고딕", "Malgun Gothic", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }

body {
  font: 16px/1.6 var(--font-body);
  color: var(--mc-text);
  background: var(--mc-bg);
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--mc-text); text-decoration: none; }
a:hover { color: var(--mc-primary); }

ul { margin: 0; padding: 0; }
li { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { word-break: keep-all; margin: 0; }
p { margin: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--mc-radius-sm);
  border: 1px solid transparent;
  background: transparent;
  color: var(--mc-text);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }

.btn-a {
  background: var(--mc-primary);
  color: #fff;
}
.btn-a:hover, .btn-a:active { background: var(--mc-primary-hover); color: #fff; }

.btn-ao {
  background: #fff;
  color: var(--mc-primary);
  border-color: var(--mc-primary);
}
.btn-ao:hover, .btn-ao:active { background: var(--mc-primary); color: #fff; }

.btn-c {
  background: var(--mc-chip);
  color: var(--mc-muted);
}
.btn-c:hover { background: #eaeaea; color: var(--mc-text); }

.btn-sm { height: 32px; padding: 0 12px; font-size: 13px; }
.btn-lg { height: 52px; padding: 0 24px; font-size: 17px; font-weight: 600; }

.btn-kakao {
  background: var(--mc-kakao);
  color: #3c1e1e;
  font-weight: 600;
}
.btn-kakao:hover { background: #f7dc00; color: #3c1e1e; }

/* ---- Wrap / Header (GNB) ---- */
.wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

header.gnb {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 0 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
@media (min-width: 768px) {
  header.gnb { padding: 4px 24px; }
}
.gnb .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  position: relative;
}
.gnb a.logo {
  display: inline-flex;
  align-items: center;
  height: 32px;
}
.gnb a.logo img { height: 24px; display: block; }
.gnb nav.utils {
  display: flex;
  gap: 8px;
  align-items: center;
}
.gnb nav.utils .btn { height: 36px; padding: 0 14px; font-size: 14px; }

.gnb .menu {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  height: 46px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.gnb .menu::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .gnb .menu {
    position: absolute;
    top: 8px;
    left: 180px;
    height: 52px;
    gap: 22px;
    overflow: visible;
  }
}
.gnb .menu a {
  padding: 13px 4px 11px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--mc-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .gnb .menu a { padding-left: 8px; padding-right: 8px; font-size: 17px; }
}
.gnb .menu a.selected {
  color: var(--mc-text);
  font-weight: 600;
  border-color: var(--mc-primary);
}
.gnb .menu a:hover { color: var(--mc-text); }

/* ---- Content container ---- */
.content {
  flex: 1;
  padding: 24px 20px 40px;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .content { padding: 32px 24px 48px; }
}

.page-heading {
  margin-bottom: 20px;
}
.page-heading h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--mc-text);
}
.page-heading p {
  color: var(--mc-muted);
  font-size: 14px;
}
@media (min-width: 768px) {
  .page-heading h1 { font-size: 26px; }
}

/* ---- Card ---- */
.card-box {
  background: #fff;
  border-radius: var(--mc-radius);
  box-shadow: var(--mc-shadow);
  overflow: hidden;
}
.card-box + .card-box { margin-top: 16px; }
.card-box-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 24px 12px;
}
.card-box-head h2 {
  font-size: 17px;
  font-weight: 700;
}
.card-box-head .sub {
  color: var(--mc-muted);
  font-size: 13px;
  margin-top: 2px;
}
.card-box-body { padding: 20px 24px; }
.card-box-body.p0 { padding: 0; }

/* ---- List ---- */
.list-plain { }
.list-plain > li + li { border-top: 1px solid var(--mc-border); }
.list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  color: var(--mc-text);
  transition: background .15s ease;
}
.list-item:hover { background: #fafbfc; color: var(--mc-text); }
.list-item-main {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}
.list-item-title {
  font-weight: 600;
  font-size: 15px;
}
.list-item-sub {
  font-size: 13px;
  color: var(--mc-muted);
  margin-top: 2px;
}
.list-item-meta {
  color: var(--mc-muted-2);
  font-size: 12px;
  white-space: nowrap;
}

/* ---- Badge ---- */
.tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}
.tag.blue { background: rgba(56, 130, 211, 0.1); color: var(--mc-primary); }
.tag.green { background: rgba(85, 185, 159, 0.12); color: #39957D; }
.tag.red { background: rgba(224, 74, 74, 0.1); color: var(--mc-danger); }
.tag.gray { background: var(--mc-chip); color: #555; }
.tag.outline-blue { border: 1px solid var(--mc-primary); color: var(--mc-primary); background: #fff; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--mc-primary) 0%, #5aa3e8 100%);
  color: #fff;
  border-radius: var(--mc-radius);
  padding: 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  position: relative;
}
.hero h1 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
.hero p {
  opacity: .92;
  max-width: 560px;
  margin-bottom: 20px;
}
.hero .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero .actions .btn-a {
  background: #fff;
  color: var(--mc-primary);
}
.hero .actions .btn-a:hover { background: #f3f6f9; color: var(--mc-primary); }
.hero .actions .btn-ao {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.hero .actions .btn-ao:hover { background: rgba(255,255,255,.1); color: #fff; }
.hero .badge-top {
  display: inline-block;
  background: rgba(255,255,255,.18);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.hero .hero-mark {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: none;
  align-items: center;
  justify-content: center;
}
.hero .hero-mark img { width: 72px; height: 72px; }
@media (min-width: 768px) { .hero .hero-mark { display: flex; } }
@media (max-width: 575px) {
  .hero { padding: 24px; }
  .hero h1 { font-size: 20px; }
}

/* ---- Guide tiles ---- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.tile {
  display: block;
  height: 100%;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--mc-border);
  border-radius: var(--mc-radius);
  color: var(--mc-text);
  transition: all .15s ease;
}
.tile:hover {
  border-color: var(--mc-primary);
  color: var(--mc-text);
  transform: translateY(-2px);
  box-shadow: var(--mc-shadow-blue);
}
.tile-group {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--mc-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.tile-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}
.tile-desc {
  font-size: 13px;
  color: var(--mc-muted);
  min-height: 38px;
  margin-bottom: 12px;
}
.tile-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--mc-primary);
}

/* ---- Timeline (update list) ---- */
.timeline {
  position: relative;
  padding-left: 18px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 5px;
  width: 2px;
  background: var(--mc-border);
}
.timeline-item { position: relative; padding-left: 18px; margin-bottom: 14px; }
.timeline-dot {
  position: absolute;
  left: -18px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mc-primary);
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px rgba(56, 130, 211, .2);
}

/* ---- Article ---- */
.article-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--mc-border);
  margin-bottom: 22px;
}
.article-title {
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0;
}
.article-meta {
  color: var(--mc-muted-2);
  font-size: 13px;
}
.article-body { font-size: 15px; line-height: 1.8; }
.article-body h5 { font-weight: 700; margin-top: 20px; margin-bottom: 8px; font-size: 15px; }
.article-body ul { padding-left: 18px; margin: 8px 0; }
.article-body ul li { margin-bottom: 4px; list-style: disc; }
.article-body p + p { margin-top: 10px; }
.article-body .lead { font-size: 16px; color: #444; margin-bottom: 14px; }
.article-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--mc-border);
}

/* ---- Step list ---- */
.step-list {
  counter-reset: step;
}
.step-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
}
.step-item + .step-item { border-top: 1px dashed var(--mc-border); }
.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mc-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.step-title {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 15px;
}
.step-desc {
  color: #444;
  font-size: 14px;
}

/* ---- Section ---- */
.section { margin-bottom: 28px; }
.section-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-left: 2px;
  color: var(--mc-text);
}

/* ---- Footer (copyrights) ---- */
footer.copyrights {
  font-size: 12px;
  color: var(--mc-muted-2);
  padding: 25px 20px 20px;
  border-top: 1px solid var(--mc-border);
  word-break: keep-all;
  max-width: 1080px;
  margin: 40px auto 0;
  width: 100%;
}
@media (min-width: 768px) {
  footer.copyrights { padding: 25px 24px 20px; }
}
footer.copyrights .logo {
  height: 18px;
  margin: 0 0 12px;
  filter: grayscale(1);
  opacity: 0.7;
}
footer.copyrights p {
  display: flex;
  column-gap: 14px;
  flex-wrap: wrap;
  line-height: 1.8;
}
footer.copyrights span { display: inline-block; }
footer.copyrights p.cp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
  gap: 14px;
}
footer.copyrights .terms a {
  color: var(--mc-text);
  margin-right: 14px;
  text-decoration: underline;
}
footer.copyrights .kakao-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--mc-kakao);
  color: #3c1e1e;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
}
footer.copyrights .kakao-btn:hover { color: #3c1e1e; }

/* ---- FAQ ---- */
.is-hidden { display: none !important; }

.faq-search {
  margin-bottom: 12px;
}
.faq-search input {
  width: 100%;
  height: 46px;
  padding: 0 16px 0 44px;
  border: 1px solid var(--mc-border-2);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--mc-text);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2380808f'%3E%3Cpath d='M11 6.5a4.5 4.5 0 11-9 0 4.5 4.5 0 019 0zm-.82 4.74a6 6 0 111.06-1.06l2.79 2.8a.75.75 0 11-1.06 1.06l-2.79-2.8z'/%3E%3C/svg%3E") 16px center / 18px 18px no-repeat;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-search input:focus {
  border-color: var(--mc-primary);
  box-shadow: 0 0 0 3px rgba(56, 130, 211, .12);
}
.faq-search input::-webkit-search-cancel-button { cursor: pointer; }

.faq-no-result {
  padding: 40px 20px;
  text-align: center;
  color: var(--mc-muted);
  background: #fff;
  border-radius: var(--mc-radius);
  box-shadow: var(--mc-shadow);
  margin-bottom: 16px;
}

.faq-toc {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.faq-toc a {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--mc-border);
  border-radius: 999px;
  color: var(--mc-text);
  font-size: 13px;
  font-weight: 500;
}
.faq-toc a:hover {
  border-color: var(--mc-primary);
  color: var(--mc-primary);
}

.faq-topic-head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--mc-border);
  margin-bottom: 18px;
}
.faq-topic-title {
  font-size: 20px;
  font-weight: 700;
  margin: 6px 0 4px;
}

.faq-body h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--mc-muted);
  letter-spacing: .02em;
  margin: 20px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px dashed var(--mc-border);
}
.faq-body h2:first-child { margin-top: 0; }
.faq-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--mc-text);
  margin: 18px 0 8px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.faq-body h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--mc-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "Q";
}
.faq-body h3:first-child { margin-top: 0; }
.faq-body p,
.faq-body ul,
.faq-body ol {
  margin: 0 0 10px;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.75;
  color: #333;
}
.faq-body ul, .faq-body ol { padding-left: 44px; }
.faq-body ul li, .faq-body ol li { list-style: disc; margin-bottom: 2px; }
.faq-body ol li { list-style: decimal; }
.faq-body code {
  background: var(--mc-chip);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 90%;
  color: #d63384;
}
.faq-body strong { color: var(--mc-text); }

/* ---- Error page ---- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--mc-bg);
}
.error-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: var(--mc-shadow);
  text-align: center;
  max-width: 420px;
  width: 100%;
}
.error-code {
  font-size: 72px;
  font-weight: 900;
  color: var(--mc-primary);
  line-height: 1;
  margin-bottom: 12px;
}
.error-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.error-desc { color: var(--mc-muted); margin-bottom: 20px; }

/* ---- Utility ---- */
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.ms-auto { margin-left: auto; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 20px; }
.text-muted { color: var(--mc-muted); }
.text-center { text-align: center; }
.fw-700 { font-weight: 700; }
