/* =========================================================
   나우케어 블로그 — 베이스 스타일 & 디자인 토큰
   Brand: deep blue #07435D / orange #E94E1A / Pretendard
   ========================================================= */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
  /* Brand */
  --blue: #07435D;
  --blue-2: #0c5a7a;
  --blue-ink: #052e40;
  --orange: #E94E1A;
  --orange-soft: #fbeae2;

  /* Neutrals — slightly cool, trustworthy */
  --ink: #14181b;
  --ink-2: #555f66;
  --ink-3: #97a1a8;
  --line: #e8ebed;
  --line-2: #f0f2f4;
  --surface: #f5f7f8;
  --surface-2: #eef3f4;
  --white: #ffffff;

  /* Tweakable (overridden inline by app via --tw-*) */
  --accent: var(--orange);
  --grid-cols: 3;
  --grid-gap: 30px;
  --card-radius: 14px;
  --card-shadow: 0 1px 2px rgba(7,67,93,0.04);
  --card-shadow-hover: 0 18px 40px -18px rgba(7,67,93,0.30);
  --title-weight: 700;
  --base-font: 16px;

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: var(--base-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 30px;
}

/* ---------- App shell / scaling ---------- */
#root { min-height: 100vh; display: flex; flex-direction: column; }
.page-body { flex: 1; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.brand-bar {
  background: var(--blue);
  border-bottom-color: transparent;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 30px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo { display: flex; align-items: center; gap: 10px; flex: none; }
.logo img { height: 30px; width: auto; }
.logo .logo-fallback {
  font-weight: 800; font-size: 21px; letter-spacing: -0.02em; color: var(--blue);
}
.brand-bar .logo .logo-fallback { color: #fff; }
.logo .tag {
  font-size: 11px; color: var(--ink-3); border-left: 1px solid var(--line);
  padding-left: 10px; letter-spacing: .02em;
}
.brand-bar .logo .tag { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.2); }

.main-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.main-nav a.nav-link {
  font-size: 15px; font-weight: 600; color: var(--ink-2);
  position: relative; padding: 6px 0; transition: color .2s var(--ease);
}
.brand-bar .main-nav a.nav-link { color: rgba(255,255,255,.78); }
.main-nav a.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--accent); transition: right .28s var(--ease);
}
.main-nav a.nav-link:hover { color: var(--ink); }
.brand-bar .main-nav a.nav-link:hover { color: #fff; }
.main-nav a.nav-link:hover::after,
.main-nav a.nav-link.active::after { right: 0; }
.main-nav a.nav-link.active { color: var(--ink); }
.brand-bar .main-nav a.nav-link.active { color: #fff; }

.header-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue); color: #fff;
  padding: 10px 18px; border-radius: 9px;
  font-size: 14px; font-weight: 700; letter-spacing: -.01em; white-space: nowrap;
  border: 0; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  box-shadow: 0 8px 18px -10px rgba(7,67,93,.55);
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -10px rgba(7,67,93,.6); }
.brand-bar .header-cta { background: var(--orange); box-shadow: 0 8px 18px -10px rgba(233,78,26,.6); }

.hamburger { display: none; }

/* =========================================================
   SUB / SEARCH BAR (hero variant: searchbar)
   ========================================================= */
.toolbar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.toolbar-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 30px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.search-box {
  margin-left: auto; display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
  color: var(--ink-3); font-size: 13px; min-width: 200px; background: var(--surface);
}
.search-box input { border: 0; background: transparent; outline: none; font: inherit; color: var(--ink); width: 100%; }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding: 0; }

/* slogan band */
.hero-slogan {
  background: var(--blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-slogan .hero-slogan-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 64px 30px 70px;
  position: relative; z-index: 1;
}
.hero-slogan .eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .18em;
  color: var(--orange); text-transform: uppercase; margin: 0 0 16px;
}
.hero-slogan h1 {
  margin: 0; font-size: clamp(30px, 4.4vw, 52px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.12;
}
.hero-slogan p { margin: 18px 0 0; font-size: 17px; color: rgba(255,255,255,.72); max-width: 560px; }
.hero-slogan .blob {
  position: absolute; border-radius: 50%; filter: blur(2px);
}
.hero-slogan .blob-1 { width: 420px; height: 420px; right: -120px; top: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(233,78,26,.55), transparent 62%); }
.hero-slogan .blob-2 { width: 340px; height: 340px; right: 180px; bottom: -200px;
  background: radial-gradient(circle at 50% 50%, rgba(12,90,122,.9), transparent 64%); }

/* featured */
.hero-featured { padding: 40px 0 8px; }
.hero-featured-grid {
  display: grid; grid-template-columns: 1.45fr 1fr; gap: 36px; align-items: stretch;
}
.hero-card {
  position: relative; border-radius: 18px; overflow: hidden; min-height: 380px;
  display: flex; align-items: flex-end; color: #fff;
  background: var(--blue);
  box-shadow: 0 30px 60px -30px rgba(7,67,93,.5);
}
.hero-card .ph, .hero-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,46,64,0) 28%, rgba(5,46,64,.45) 60%, rgba(5,46,64,.92) 100%);
}
.hero-card .hero-card-body { position: relative; z-index: 1; padding: 34px; }
.hero-card .kicker {
  display: inline-block; background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.hero-card h2 { margin: 0; font-size: 30px; font-weight: 800; letter-spacing: -.02em; line-height: 1.25; }
.hero-card .meta { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,.78); }

/* second cover (portrait) */
.hero-card-tall .kicker-ghost {
  background: rgba(255,255,255,.16); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.28);
}
.hero-card-tall h2 { font-size: 23px; }

/* product lineup carousel (2×3 grid, slide) */
.hero-shop {
  border: 1px solid var(--line); border-radius: 18px; background: var(--white);
  padding: 18px 20px 14px; display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(7,67,93,.04); overflow: hidden;
}
.hero-shop-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 14px; }
.hs-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--accent); }
.hs-title { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; margin-top: 4px; }
.hs-nav { display: flex; gap: 7px; flex: none; }
.hs-arrow {
  width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--line);
  background: var(--white); color: var(--ink-2); display: flex; align-items: center; justify-content: center;
  transition: all .2s var(--ease);
}
.hs-arrow:hover { border-color: var(--blue); color: var(--blue); background: var(--surface); }

.pc-viewport { overflow: hidden; flex: 1; min-height: 0; }
.pc-track { display: flex; height: 100%; transition: transform .45s var(--ease); }
.pc-page {
  flex: 0 0 100%; height: 100%; display: grid;
  grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, auto);
  gap: 8px 12px; align-content: start;
}
.pc-card {
  display: grid; grid-template-columns: 78px 1fr; align-items: center; gap: 13px;
  border: 0; border-radius: 14px; padding: 4px 6px; background: transparent;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.pc-card:hover { background: var(--surface); transform: translateX(2px); }
.pc-thumb {
  width: 78px; height: 78px; border-radius: 14px; overflow: hidden; flex: none;
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}
.pc-card:hover .pc-thumb { box-shadow: 0 10px 22px -12px rgba(7,67,93,.45); }
.pc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pc-thumb .pc-ph { color: #fff; font-size: 28px; font-weight: 800; letter-spacing: -.03em;
  text-shadow: 0 2px 8px rgba(0,0,0,.25); }
.pc-name { font-size: 14.5px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; line-height: 1.32;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.pc-dots { display: flex; justify-content: center; gap: 7px; padding-top: 16px; }
.pc-dot { width: 7px; height: 7px; border-radius: 50%; border: 0; background: var(--line); padding: 0;
  transition: all .25s var(--ease); }
.pc-dot.active { background: var(--accent); width: 20px; border-radius: 4px; }

.hero-side { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.hero-side .mini {
  display: grid; grid-template-columns: 168px 1fr; gap: 18px; align-items: center;
  border: 1px solid var(--line); border-radius: 16px; padding: 14px; background: var(--white);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.hero-side .mini:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--blue) 28%, var(--line)); box-shadow: 0 18px 36px -22px rgba(7,67,93,.4); }
.hero-side .mini .thumb { width: 168px; height: 100%; min-height: 104px; border-radius: 11px; overflow: hidden; position: relative; background: var(--surface-2); }
.hero-side .mini .thumb img, .hero-side .mini .thumb .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-side .mini .cat { font-size: 12px; font-weight: 700; color: var(--accent); }
.hero-side .mini h3 { margin: 7px 0 0; font-size: 16px; font-weight: 700; line-height: 1.42; letter-spacing: -.015em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-side .mini .mini-date { margin-top: 8px; font-size: 12px; color: var(--ink-3); }
@media (max-width: 560px) {
  .hero-side .mini { grid-template-columns: 110px 1fr; }
  .hero-side .mini .thumb { width: 110px; }
}

/* ranked popular list */
.hero-rank {
  border: 1px solid var(--line); border-radius: 18px; background: var(--white);
  padding: 6px 24px 10px; display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(7,67,93,.04);
}
.hero-rank-head {
  display: flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: -.01em;
  padding: 16px 0 13px; border-bottom: 1px solid var(--line-2);
}
.hero-rank-head .hr-flame { font-size: 16px; }
.hero-rank-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; flex: 1; justify-content: space-between; }
.hr-item {
  display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--line-2); cursor: pointer;
  transition: transform .2s var(--ease);
}
.hr-item:last-child { border-bottom: 0; }
.hr-item:hover { transform: translateX(3px); }
.hr-num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 19px; font-weight: 800; color: var(--ink-3);
  transition: color .2s var(--ease); line-height: 1;
}
.hr-item:hover .hr-num { color: var(--accent); }
.hr-item:nth-child(1) .hr-num,
.hr-item:nth-child(2) .hr-num,
.hr-item:nth-child(3) .hr-num { color: var(--blue); }
.hr-text { min-width: 0; }
.hr-text h4 {
  margin: 0; font-size: 14.5px; font-weight: 700; line-height: 1.4; letter-spacing: -.015em; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .2s var(--ease);
}
.hr-item:hover .hr-text h4 { color: var(--blue); }
.hr-cat { display: inline-block; margin-top: 5px; font-size: 11.5px; font-weight: 700; color: var(--accent); }
.hr-cat:hover { text-decoration: underline; text-underline-offset: 2px; }

/* =========================================================
   HOME SECTION CAROUSEL
   ========================================================= */
.sec-carousel-wrap { position: relative; }
.sec-carousel {
  display: flex; gap: var(--grid-gap);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 4px;
}
.sec-carousel::-webkit-scrollbar { display: none; }
.sec-carousel .sc-cell {
  flex: 0 0 calc((100% - 2 * var(--grid-gap)) / 3);
  scroll-snap-align: start;
}
.sec-carousel.style-side .sc-cell { flex-basis: calc((100% - var(--grid-gap)) / 2); }
.sc-arrow {
  position: absolute; top: calc(50% - 24px); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line); color: var(--ink);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 10px 26px -10px rgba(7,67,93,.32);
  transition: opacity .25s var(--ease), transform .2s var(--ease), background .2s var(--ease);
}
.sc-arrow:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.sc-arrow.left { left: -16px; }
.sc-arrow.right { right: -16px; }
.sc-arrow.hide { opacity: 0; pointer-events: none; }
@media (max-width: 1024px) {
  .sec-carousel .sc-cell { flex-basis: calc((100% - var(--grid-gap)) / 2); }
  .sc-arrow.left { left: 4px; }
  .sc-arrow.right { right: 4px; }
}
@media (max-width: 680px) {
  .sec-carousel .sc-cell, .sec-carousel.style-side .sc-cell { flex-basis: 84%; }
}
.section { padding: 52px 0 8px; }
.section:first-of-type { padding-top: 46px; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 26px; gap: 20px;
}
.section-head .titles { display: flex; flex-direction: column; gap: 6px; }
.section-head .eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); display: flex; align-items: center; gap: 9px;
}
.section-head .eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--accent); display: inline-block;
}
.section-head h2 {
  margin: 0; font-size: 25px; font-weight: 800; letter-spacing: -.02em; color: var(--ink);
}
.section-head .title-en {
  font-weight: 600; font-size: 17px; color: var(--ink-3); letter-spacing: -.005em;
}
.section-head.sh-eyebrow .title-en { display: none; }
.section-head.sh-inline .eyebrow { display: none; }
.section-head.sh-inline h2 { display: flex; align-items: baseline; flex-wrap: wrap; gap: 2px; }
.section-head .more {
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 5px; transition: gap .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.section-head .more:hover { color: var(--accent); gap: 9px; }

/* =========================================================
   POST CARD
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), 1fr);
  gap: var(--grid-gap);
}
.card {
  display: flex; flex-direction: column;
  cursor: pointer;
  border-radius: var(--card-radius);
}
.card .thumb {
  position: relative; overflow: hidden; border-radius: var(--card-radius);
  aspect-ratio: 16 / 9; background: var(--surface-2);
  box-shadow: var(--card-shadow);
  transition: box-shadow .35s var(--ease);
}
.card .thumb img, .card .thumb .ph {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.card:hover .thumb { box-shadow: var(--card-shadow-hover); }
.card:hover .thumb img { transform: scale(1.03); }
.card .body { padding: 14px 2px 0; display: flex; flex-direction: column; gap: 7px; }
.card .meta-row { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.card .cat { color: var(--accent); font-weight: 700; }
.card .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); }
.card .date { color: var(--ink-3); font-weight: 500; }
.cat-link { cursor: pointer; transition: opacity .2s var(--ease); }
.cat-link:hover { text-decoration: underline; text-underline-offset: 3px; opacity: .8; }
.page-header .tag-mark { color: var(--accent); font-weight: 800; }
.card h3 {
  margin: 0; font-size: 18px; font-weight: var(--title-weight); line-height: 1.42;
  letter-spacing: -.015em; color: var(--ink);
  transition: color .2s var(--ease);
}
.card:hover h3 { color: var(--blue); }
.card .excerpt {
  margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.62;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* card style: overlay */
.style-overlay .card .thumb { aspect-ratio: 3 / 4; background: var(--blue); }
.style-overlay .card { color: #fff; }
.style-overlay .card .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,46,64,0) 35%, rgba(5,46,64,.9) 100%);
}
.style-overlay .card .body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 20px;
}
.style-overlay .card h3 { color: #fff; }
.style-overlay .card:hover h3 { color: #fff; }
.style-overlay .card .date { color: rgba(255,255,255,.7); }
.style-overlay .card .excerpt { display: none; }

/* card style: side (horizontal) */
.style-side { grid-template-columns: repeat(calc(var(--grid-cols) - 1), 1fr); }
.style-side .card { flex-direction: row; gap: 16px; align-items: center; }
.style-side .card .thumb { flex: none; width: 44%; aspect-ratio: 4/3; }
.style-side .card .body { padding: 0; }

/* card style: bordered */
.style-bordered .card {
  border: 1px solid var(--line); padding: 12px; background: var(--white);
}
.style-bordered .card .thumb { box-shadow: none; }
.style-bordered .card:hover { border-color: color-mix(in srgb, var(--blue) 35%, var(--line)); }
.style-bordered .card:hover .thumb { box-shadow: none; }
.style-bordered .card .body { padding: 14px 4px 4px; }

/* striped placeholder */
.ph {
  background:
    repeating-linear-gradient(45deg, var(--surface-2) 0 12px, var(--surface) 12px 24px);
  display: flex; align-items: center; justify-content: center;
}
.ph span {
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px;
  color: var(--ink-3); background: rgba(255,255,255,.7); padding: 3px 8px; border-radius: 4px;
}

/* =========================================================
   ARCHIVE PAGE
   ========================================================= */
.page-header {
  background: var(--surface); border-bottom: 1px solid var(--line);
}
.page-header-inner { max-width: var(--maxw); margin: 0 auto; padding: 46px 30px 40px; }
.page-header .crumb { font-size: 13px; color: var(--ink-3); margin-bottom: 12px; }
.page-header .crumb a:hover { color: var(--accent); }
.page-header h1 { margin: 0; font-size: 34px; font-weight: 800; letter-spacing: -.025em; }
.page-header p { margin: 12px 0 0; color: var(--ink-2); font-size: 15px; max-width: 620px; }
.archive-body { padding: 44px 0 60px; }

/* =========================================================
   SINGLE POST
   ========================================================= */
.single { padding: 0 0 70px; }
.single-hero { background: var(--surface); border-bottom: 1px solid var(--line); }
.single-hero-inner { max-width: 760px; margin: 0 auto; padding: 50px 30px 42px; }
.single .crumb { font-size: 13px; color: var(--ink-3); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; }
.single .crumb a:hover { color: var(--accent); }
.single .post-cat {
  display: inline-block; font-size: 13px; font-weight: 700; color: var(--accent);
  margin-bottom: 14px;
}
.single h1.post-title {
  margin: 0; font-size: clamp(28px, 3.6vw, 40px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.25; color: var(--ink);
}
.single .post-sub { margin: 16px 0 0; font-size: 17px; color: var(--ink-2); line-height: 1.6; }
.single .post-meta {
  margin-top: 22px; display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--ink-2);
}
.single .post-meta .avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
}
.single .post-meta .sep { width: 1px; height: 14px; background: var(--line); }

.single-feature {
  max-width: 980px; margin: -28px auto 0; padding: 0 30px;
}
.single-feature .feature-img {
  border-radius: 18px; overflow: hidden; aspect-ratio: 16/9; position: relative;
  box-shadow: 0 40px 80px -40px rgba(7,67,93,.45);
}
.single-feature .feature-img img, .single-feature .feature-img .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.article { max-width: 720px; margin: 44px auto 0; padding: 0 30px; }
.article .summary-box {
  background: var(--surface-2); border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 12px; padding: 22px 24px; margin-bottom: 34px;
}
.article .summary-box .label {
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.article .summary-box ul { margin: 0; padding-left: 18px; }
.article .summary-box li { font-size: 15px; color: var(--ink); margin: 8px 0; line-height: 1.6; }
.article h2 {
  font-size: 24px; font-weight: 800; letter-spacing: -.02em; margin: 40px 0 14px;
  color: var(--ink); scroll-margin-top: 90px;
}
.article h2 .num { color: var(--orange); margin-right: 8px; }
.article h3 { font-size: 19px; font-weight: 700; margin: 28px 0 10px; }
.article p { font-size: 16.5px; color: var(--ink); line-height: 1.85; margin: 0 0 18px; }
.article p.lead { font-size: 18px; color: var(--ink-2); }
.article ul.body-list { margin: 0 0 20px; padding-left: 20px; }
.article ul.body-list li { font-size: 16.5px; line-height: 1.8; margin: 6px 0; }
.article blockquote {
  margin: 28px 0; padding: 6px 0 6px 22px; border-left: 3px solid var(--blue);
  font-size: 18px; color: var(--blue-ink); font-weight: 600; line-height: 1.6;
}
.article .figure { margin: 30px 0; }
.article .figure .ph, .article .figure img { width: 100%; aspect-ratio: 16/9; border-radius: 12px; object-fit: cover; }
.article .figure figcaption { font-size: 13px; color: var(--ink-3); margin-top: 10px; text-align: center; }
.article .ref {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-3); line-height: 1.7;
}

.article .cta-band {
  margin: 46px 0 0; border-radius: 16px; overflow: hidden; background: var(--blue);
  color: #fff; padding: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.article .cta-band h3 { margin: 0 0 6px; font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
.article .cta-band p { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; }
.article .cta-band a {
  flex: none; background: var(--orange); color: #fff; padding: 13px 22px; border-radius: 10px;
  font-weight: 700; font-size: 15px; transition: transform .2s var(--ease);
}
.article .cta-band a:hover { transform: translateY(-2px); }

/* related */
.related { max-width: var(--maxw); margin: 60px auto 0; padding: 0 30px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--blue-ink); color: rgba(255,255,255,.66); margin-top: 70px; }
.footer-top { max-width: var(--maxw); margin: 0 auto; padding: 52px 30px 36px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand .fb-logo { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.footer-brand .fb-slogan { margin: 14px 0 0; font-size: 14px; color: rgba(255,255,255,.55); }
.footer-col h4 { margin: 0 0 16px; font-size: 13px; font-weight: 700; color: #fff; letter-spacing: .04em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.62); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--orange); }
.footer-contact .num { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.footer-contact .hours { margin: 8px 0 0; font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 20px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 12.5px; color: rgba(255,255,255,.4); flex-wrap: wrap;
}
.footer-bottom-inner .legal { display: flex; gap: 16px; flex-wrap: wrap; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  :root { --grid-cols: 2 !important; }
  .hero-featured-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .wrap, .header-inner, .toolbar-inner, .page-header-inner, .footer-bottom-inner { padding-left: 20px; padding-right: 20px; }
  :root { --grid-cols: 1 !important; }
  .main-nav { display: none; }
  .hamburger { display: inline-flex; margin-left: auto; }
  .header-cta { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .style-side { grid-template-columns: 1fr; }
  /* CTA 배너 — 세로형 그라디언트 컴팩트 */
  .article .cta-band {
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0; margin-top: 32px;
    border-radius: 18px; overflow: hidden;
    background: linear-gradient(135deg, #07435D 0%, #0c5a7a 100%);
    box-shadow: 0 16px 40px -20px rgba(7,67,93,.55);
  }
  .article .cta-band > div { padding: 22px 22px 0; }
  .article .cta-band h3 { font-size: 17px; word-break: keep-all; line-height: 1.45; letter-spacing: -.02em; margin: 0; }
  .article .cta-band p { display: none; }
  .article .cta-band a {
    display: block; text-align: center;
    margin: 16px 22px 22px; padding: 13px 18px;
    border-radius: 10px; font-size: 14.5px; font-weight: 700;
    background: var(--orange); color: #fff;
    box-shadow: 0 8px 20px -10px rgba(233,78,26,.7);
    letter-spacing: -.01em;
  }

  /* 관련글 — 가로형 세련된 소형 카드 */
  .related { padding: 0 20px; margin-top: 44px; }
  .related .card-grid { display: flex; flex-direction: column; gap: 0; }
  .related .card {
    display: grid; grid-template-columns: 80px 1fr; align-items: center; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid var(--line-2);
    border-radius: 0; box-shadow: none; background: transparent;
    transition: opacity .18s var(--ease);
  }
  .related .card:last-child { border-bottom: 0; }
  .related .card:hover { transform: none; box-shadow: none; opacity: .78; }
  .related .card .thumb {
    width: 80px; height: 80px; border-radius: 13px; overflow: hidden;
    box-shadow: 0 4px 12px -6px rgba(7,67,93,.28);
  }
  .related .card .thumb img { width: 100%; height: 100%; object-fit: cover; }
  .related .card .body { padding: 0; }
  .related .card .cat { font-size: 11.5px; font-weight: 700; letter-spacing: .02em; }
  .related .card .date { font-size: 11.5px; }
  .related .card h3 {
    font-size: 14.5px; font-weight: 700; line-height: 1.45; letter-spacing: -.02em;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 0;
  }
  .related .card .excerpt { display: none; }
}

/* entrance */
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.reveal { animation: fadeUp .5s var(--ease) both; }


/* =========================================================
   WORDPRESS INTEGRATION OVERRIDES — nowcare child theme
   ========================================================= */
.card { position: relative; }
.card .card-link { position: absolute; inset: 0; z-index: 1; border-radius: var(--card-radius); overflow: hidden; }
.card .meta-row .cat-link { position: relative; z-index: 2; }

.article > p:first-child { margin-top: 0; }
.article img { border-radius: 12px; margin: 10px 0; height: auto; }
.article figure { margin: 30px 0; }
.article figure img { width: 100%; }
.article figure figcaption { font-size: 13px; color: var(--ink-3); margin-top: 10px; text-align: center; }
.article a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.article ul, .article ol { margin: 0 0 20px; padding-left: 22px; }
.article li { font-size: 16.5px; line-height: 1.85; margin: 6px 0; }
.article .wp-block-image { margin: 24px 0; }
.article .wp-block-image img { border-radius: 12px; }
.article .aligncenter { margin-left: auto; margin-right: auto; text-align: center; }
.article .wp-block-quote, .article blockquote { margin: 28px 0; }

.nc-pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 50px; }
.nc-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 13px; border: 1px solid var(--line); border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--ink-2); background: #fff; transition: all .2s var(--ease); }
.nc-pagination a.page-numbers:hover { border-color: var(--blue); color: var(--blue); }
.nc-pagination .page-numbers.current { background: var(--blue); border-color: var(--blue); color: #fff; }
.nc-pagination .page-numbers.dots { border: 0; background: transparent; }

@media (max-width: 760px) {
  body.nav-open .main-nav { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 16px; background: #fff; border-bottom: 1px solid var(--line); padding: 18px 22px; box-shadow: 0 16px 30px -16px rgba(7,67,93,.25); }
  body.nav-open .main-nav a.nav-link { font-size: 16px; }
}

.nc-empty { text-align: center; color: var(--ink-3); padding: 80px 0; font-size: 15px; }

/* =========================================================
   GeneratePress 호환 — a:hover 글씨가 검게 변하는 문제 방지
   ========================================================= */
.hero-card, .hero-card:hover, .hero-card:focus { color: #fff; }
.hero-card:hover .meta { color: rgba(255,255,255,.82); }
.hero-card:hover .kicker { color: #fff; }
.header-cta, .header-cta:hover, .header-cta:focus { color: #fff; }
.logo:hover, .logo:hover .logo-fallback { color: var(--blue); }
.site-footer a:hover, .footer-col a:hover, .footer-bottom-inner .legal a:hover { color: var(--orange); }

/* 제품 캐러셀 화살표 아이콘 가시성 (부모 테마 button/svg 색 리셋 대비) */
.hs-arrow { color: var(--ink-2); background: var(--white); }
.hs-arrow svg { display: block; width: 16px; height: 16px; }
.hs-arrow svg, .hs-arrow svg path { fill: none !important; stroke: var(--ink-2) !important; }
.hs-arrow:hover { color: var(--blue); border-color: var(--blue); }
.hs-arrow:hover svg, .hs-arrow:hover svg path { stroke: var(--blue) !important; }

/* 섹션 가로 슬라이더 화살표도 동일 보정 */
.sc-arrow svg, .sc-arrow svg path { fill: none !important; stroke: currentColor !important; }


/* =========================================================
   슬라이더 화살표 — CSS로 직접 그려 부모 테마 버튼/아이콘 이슈 완전 회피
   ========================================================= */
.hs-arrow { padding: 0 !important; line-height: 0; }
.hs-arrow svg { display: none !important; }
.hs-arrow::before { content: ""; width: 7px; height: 7px; border-right: 2px solid var(--ink-2); border-bottom: 2px solid var(--ink-2); box-sizing: border-box; }
.hs-arrow.prev::before { transform: rotate(135deg); margin-left: 3px; }
.hs-arrow.next::before { transform: rotate(-45deg); margin-right: 3px; }
.hs-arrow:hover::before { border-color: var(--blue); }

.sc-arrow { padding: 0 !important; line-height: 0; }
.sc-arrow svg { display: none !important; }
.sc-arrow::before { content: ""; width: 9px; height: 9px; border-right: 2.4px solid currentColor; border-bottom: 2.4px solid currentColor; box-sizing: border-box; }
.sc-arrow.left::before { transform: rotate(135deg); margin-left: 3px; }
.sc-arrow.right::before { transform: rotate(-45deg); margin-right: 3px; }

/* 카드 호버 그림자 — 아주 짧고 은은하게 */
:root { --card-shadow-hover: 0 6px 14px -8px rgba(7,67,93,0.18); }

/* 아카이브/검색 상단 영역 — 높이 축소 + 살짝 색 */
.page-header { background: #edf2f4; }
.page-header-inner { padding: 30px 30px 26px; }
.page-header h1 { font-size: 30px; }
.page-header p { margin-top: 10px; }
.archive-body { padding: 30px 0 60px; }


/* =========================================================
   v1.2.6 — 본문 제목 축소 · Rank Math 목차/FAQ 디자인 · 글 양식 보조
   ========================================================= */

/* 본문 제목 한 단계 축소 + 모바일 타이포 위계 */
.single h1.post-title { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.3; }
@media (max-width: 760px) {
  .article h2 { font-size: 20px; }
  .article h3 { font-size: 17px; }
}

/* ── Rank Math 목차 블록: 인라인 카드 ── */
.wp-block-rank-math-toc-block {
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--surface); padding: 20px 22px 14px; margin: 0 0 34px;
}
.wp-block-rank-math-toc-block > h2 {
  margin: 0 0 6px !important; padding: 0; border: 0;
  font-size: 13px !important; font-weight: 800; letter-spacing: .12em;
  color: var(--accent); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.wp-block-rank-math-toc-block > h2::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.wp-block-rank-math-toc-block nav ul { list-style: none; margin: 0; padding: 0; }
.wp-block-rank-math-toc-block nav > ul > li { border-bottom: 1px solid var(--line-2); }
.wp-block-rank-math-toc-block nav > ul > li:last-child { border-bottom: 0; }
.wp-block-rank-math-toc-block nav a {
  display: block; padding: 11px 2px; font-size: 14.5px; font-weight: 600;
  color: var(--ink-2); line-height: 1.45; letter-spacing: -.01em;
  text-decoration: none; transition: color .18s var(--ease), padding-left .18s var(--ease);
}
.wp-block-rank-math-toc-block nav a:hover { color: var(--blue); padding-left: 6px; }
.wp-block-rank-math-toc-block nav ul ul { padding-left: 16px; }
.wp-block-rank-math-toc-block nav ul ul a { font-size: 13.5px; font-weight: 500; padding: 7px 2px; color: var(--ink-3); }

/* ── 데스크톱(≥1320px): 플로팅 패널 + 본문 가운데 정렬(목차 있는 글만) ── */
@media (min-width: 1320px) {
  body.nc-has-toc .single .single-hero-inner,
  body.nc-has-toc .single .article { position: relative; left: -120px; }

  .nc-toc-float {
    transition: opacity .3s var(--ease);
    position: fixed; top: 120px; z-index: 80;
    width: 232px; margin: 0; padding: 6px 0 6px 18px;
    background: transparent; border: 0; border-radius: 0;
    border-left: 2px solid var(--line);
    max-height: calc(100vh - 180px); overflow-y: auto;
    overscroll-behavior: contain; scrollbar-width: none;
  }
  .nc-toc-float::-webkit-scrollbar { display: none; }
  .nc-toc-float > h2::after { display: none; }
  .nc-toc-float > h2 { margin-bottom: 10px !important; }
  .nc-toc-float nav > ul > li { border-bottom: 0; }
  .nc-toc-float nav a { padding: 6px 2px; font-size: 13.5px; position: relative; }
  .nc-toc-float nav a::before {
    content: ""; position: absolute; left: -20px; top: 0; bottom: 0; width: 2px;
    background: transparent; transition: background .2s var(--ease);
  }
  .nc-toc-float nav a.nc-active { color: var(--ink); font-weight: 700; }
  .nc-toc-float nav a.nc-active::before { background: var(--accent); }
  .nc-toc-float nav a:hover { padding-left: 2px; }
  .nc-toc-origin-hidden { display: none; }
  .nc-toc-float.nc-toc-hidden { opacity: 0 !important; pointer-events: none !important; }
}

/* ── 모바일(≤760px): 접이식 카드 + FAB + 바텀시트 ── */
.nc-toc-pill, .nc-toc-sheet, .nc-toc-sheet-backdrop { display: none; }

@media (max-width: 760px) {
  .wp-block-rank-math-toc-block > h2 { cursor: pointer; -webkit-tap-highlight-color: transparent; }
  .wp-block-rank-math-toc-block > h2::before {
    content: ""; width: 7px; height: 7px; flex: none;
    border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
    transform: rotate(45deg); transition: transform .25s var(--ease);
    order: 2; margin-left: 2px;
  }
  .wp-block-rank-math-toc-block.nc-collapsed > h2::before { transform: rotate(-45deg); }
  .wp-block-rank-math-toc-block.nc-collapsed nav { display: none; }
  .wp-block-rank-math-toc-block.nc-collapsed { padding-bottom: 20px; }

  .nc-toc-pill {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    position: fixed; right: 16px; bottom: 20px; width: 56px; height: 56px;
    z-index: 260; border: 0; border-radius: 18px;
    background: var(--blue); color: #fff;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 10.5px; font-weight: 700; letter-spacing: .02em; line-height: 1;
    white-space: nowrap; word-break: keep-all;
    box-shadow: 0 12px 28px -10px rgba(7,67,93,.55);
    opacity: 0; pointer-events: none; transform: translateY(70px);
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    -webkit-tap-highlight-color: transparent;
  }
  .nc-toc-pill.show { opacity: 1; pointer-events: auto; transform: none; }
  .nc-toc-pill svg { display: block; flex: none; }
  .nc-toc-pill span { white-space: nowrap; word-break: keep-all; display: block; width: auto; }

  .nc-toc-sheet-backdrop {
    display: block; position: fixed; inset: 0; z-index: 270;
    background: rgba(5,30,42,.45); opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease);
  }
  .nc-toc-sheet {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 280;
    background: #fff; border-radius: 20px 20px 0 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    max-height: 72vh; overflow-y: auto; overscroll-behavior: contain;
    padding: 10px 24px calc(24px + env(safe-area-inset-bottom, 0px));
    transform: translateY(105%); transition: transform .32s var(--ease);
    box-shadow: 0 -18px 50px -20px rgba(5,30,42,.4);
  }
  body.nc-sheet-open .nc-toc-sheet { transform: none; }
  body.nc-sheet-open .nc-toc-sheet-backdrop { opacity: 1; pointer-events: auto; }
  .nc-toc-sheet .grab { width: 40px; height: 4px; border-radius: 2px; background: var(--line); margin: 8px auto 14px; }
  .nc-toc-sheet h3 {
    margin: 0 0 6px; font-size: 12px; font-weight: 800; letter-spacing: .12em;
    color: var(--accent); text-transform: uppercase;
  }
  .nc-toc-sheet ul { list-style: none; margin: 0; padding: 0; }
  .nc-toc-sheet > nav > ul > li { border-bottom: 1px solid var(--line-2); }
  .nc-toc-sheet > nav > ul > li:last-child { border-bottom: 0; }
  .nc-toc-sheet a {
    display: block; padding: 13px 2px; font-size: 15px; font-weight: 600;
    color: var(--ink-2); line-height: 1.45; letter-spacing: -.01em; text-decoration: none;
  }
  .nc-toc-sheet ul ul { padding-left: 16px; }
  .nc-toc-sheet ul ul a { font-size: 13.5px; font-weight: 500; padding: 8px 2px; color: var(--ink-3); }
  .nc-toc-sheet a.nc-active { color: var(--accent); font-weight: 800; }
}

/* ── Rank Math FAQ 블록: 아코디언 (헤어라인 + ⊕ 토글) ── */
.wp-block-rank-math-faq-block { border-top: 1px solid var(--line); margin: 0 0 28px; }
.wp-block-rank-math-faq-block .rank-math-faq-item,
.wp-block-rank-math-faq-block .rank-math-list-item { border-bottom: 1px solid var(--line); }
.wp-block-rank-math-faq-block .rank-math-question {
  margin: 0; padding: 20px 46px 20px 0; position: relative; cursor: pointer;
  font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -.01em;
  -webkit-tap-highlight-color: transparent;
}
.wp-block-rank-math-faq-block .rank-math-question::after {
  content: "+"; position: absolute; right: 2px; top: 50%;
  width: 26px; height: 26px; border: 1.4px solid var(--ink-3); border-radius: 50%;
  color: var(--ink-3); font-size: 17px; font-weight: 400; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-50%); box-sizing: border-box;
  transition: transform .25s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.wp-block-rank-math-faq-block .rank-math-faq-item:not(.nc-faq-closed) .rank-math-question::after,
.wp-block-rank-math-faq-block .rank-math-list-item:not(.nc-faq-closed) .rank-math-question::after {
  transform: translateY(-50%) rotate(45deg); color: var(--accent); border-color: var(--accent);
}
.wp-block-rank-math-faq-block .rank-math-answer {
  margin: 0; padding: 0 0 14px; font-size: 15.5px; color: var(--ink-2); line-height: 1.85;
}
.wp-block-rank-math-faq-block .nc-faq-closed .rank-math-answer { display: none; }
.wp-block-rank-math-faq-block .rank-math-answer p { font-size: 15.5px; color: var(--ink-2); margin: 0 0 10px; }
.wp-block-rank-math-faq-block .rank-math-answer p:last-child { margin-bottom: 0; }
@media (max-width: 760px) {
  .wp-block-rank-math-faq-block .rank-math-question { font-size: 16px; }
}

/* ── 글 양식 패턴 보조: 포인트 박스 ── */
.article .nc-point {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 20px; margin: 0 0 20px;
}
.article .nc-point p { margin: 0; font-size: 15.5px; line-height: 1.75; }
.article p.ref-note { font-size: 13px; color: var(--ink-3); }

/* 글 양식 v2 — 표 / 요약박스 라벨(프론트) */
.article figure.wp-block-table {
  margin: 24px 0; overflow-x: auto;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.article figure.wp-block-table table { margin: 0; }
.article figure.wp-block-table table { border-collapse: collapse; width: 100%; font-size: 15px; }
.article figure.wp-block-table th {
  background: var(--blue); color: #fff; font-weight: 700; font-size: 14px;
  padding: 13px 16px; border: 1px solid var(--blue); text-align: left;
}
.article figure.wp-block-table td { padding: 12px 14px; border: 1px solid var(--line); color: var(--ink); }
.article .summary-box p.label {
  margin: 0 0 10px; font-size: 13px; font-weight: 800; letter-spacing: .08em;
  color: var(--blue); text-transform: uppercase;
}
.article p.ref-note { font-size: 13px; color: var(--ink-3); }

/* ===== v1.2.7 — 실전 글 양식 요소 ===== */
/* 핵심 요약 · 주의사항 박스 (연블루 + 주황 불릿) */
.article .summary-box, .article .nc-caution {
  background: #f2f7fa; border: 1px solid #e3edf3; border-radius: 14px;
  padding: 24px 26px; margin: 0 0 28px;
}
.article .summary-box ul, .article .nc-caution ul { margin: 0; padding-left: 20px; }
.article .summary-box li, .article .nc-caution li { font-size: 15.5px; line-height: 1.75; margin: 10px 0; color: var(--ink); }
.article .summary-box li::marker, .article .nc-caution li::marker { color: var(--orange); }

/* 번호 출처/연구 카드 */
.article ol.nc-refs { list-style: none; margin: 0 0 24px; padding: 0; counter-reset: ncref; }
.article ol.nc-refs > li {
  counter-increment: ncref; position: relative;
  border: 1px solid var(--line); border-radius: 14px; background: #fff;
  padding: 20px 22px 20px 64px; margin: 0 0 14px;
  font-size: 15.5px; line-height: 1.75; color: var(--ink-2);
}
.article ol.nc-refs > li::before {
  content: counter(ncref); position: absolute; left: 22px; top: 21px;
  width: 26px; height: 26px; border: 1.6px solid var(--orange); border-radius: 50%;
  color: var(--orange); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.article ol.nc-refs > li strong { display: block; color: var(--ink); font-size: 16px; margin-bottom: 6px; }

/* 논문 인용 박스 */
.article .nc-cite {
  background: #f2f7fa; border: 1px solid #e3edf3; border-radius: 14px;
  padding: 22px 24px; margin: 0 0 24px;
}
.article .nc-cite p.label { margin: 0 0 8px; font-size: 14px; font-weight: 800; color: var(--blue); }
.article .nc-cite p { margin: 0; font-size: 15px; color: var(--ink-2); line-height: 1.8; }

/* 용어 비교 (네이비 칩 + 설명) */
.article .nc-term {
  border: 1px solid var(--line); border-radius: 14px; background: #fff;
  padding: 18px 22px; margin: 0 0 14px;
}
.article .nc-term p {
  margin: 0; font-size: 15.5px; line-height: 1.75; color: var(--ink-2);
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.article .nc-term p > strong:first-child {
  display: inline-flex; align-items: center; white-space: nowrap; flex: none;
  background: var(--blue); color: #fff;
  font-size: 13px; font-weight: 700; padding: 5px 13px; border-radius: 7px;
}

/* 결론 박스 (다크 네이비) */
.article .nc-conclusion {
  background: #f2f7fa; border: 1px solid #e3edf3; border-radius: 16px;
  padding: 32px 34px 28px; margin: 36px 0 28px;
}
.article .nc-conclusion p { color: var(--ink-2); font-size: 15.5px; line-height: 1.85; margin: 0 0 14px; }
.article .nc-conclusion p.label { font-size: 12.5px; font-weight: 800; letter-spacing: .1em; color: var(--accent); margin: 0 0 10px; text-transform: uppercase; }
.article .nc-conclusion p.title { font-size: 22px; font-weight: 800; color: var(--blue); line-height: 1.4; letter-spacing: -.02em; margin: 0 0 18px; }
.article .nc-conclusion p.closing { border-top: 1px solid #dbe7ee; padding-top: 18px; margin: 22px 0 0; color: var(--ink); font-weight: 700; }

/* ===== FAQ FINAL OVERRIDE — Rank Math 마크업 변형 전부 대응 ===== */
.article #rank-math-faq, .article .wp-block-rank-math-faq-block { border-top: 1px solid var(--line); margin: 0 0 28px; }
.article .rank-math-list-item, .article .rank-math-faq-item { border-bottom: 1px solid var(--line); }
.article .rank-math-question {
  margin: 0; padding: 20px 46px 20px 0; position: relative; cursor: pointer;
  font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -.01em;
  -webkit-tap-highlight-color: transparent;
}
.article .rank-math-question::after {
  content: "+"; position: absolute; right: 2px; top: 50%;
  width: 26px; height: 26px; border: 1.4px solid var(--ink-3); border-radius: 50%;
  color: var(--ink-3); font-size: 17px; font-weight: 400; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-50%); box-sizing: border-box;
  transition: transform .25s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.article .rank-math-list-item:not(.nc-faq-closed) .rank-math-question::after,
.article .rank-math-faq-item:not(.nc-faq-closed) .rank-math-question::after {
  transform: translateY(-50%) rotate(45deg); color: var(--accent); border-color: var(--accent);
}
.article .rank-math-answer { margin: 0; padding: 0 0 14px; font-size: 15.5px; color: var(--ink-2); line-height: 1.85; }
.article .nc-faq-closed .rank-math-answer { display: none; }

/* =========================================================
   v1.2.17 — 모바일 아카이브/관련글/CTA 정리
   ========================================================= */
@media (max-width: 760px) {
  /* RELATED 라벨 간격 */
  .related .section-head, .related .sh-eyebrow { margin-bottom: 14px; }
  .related .eyebrow { font-size: 11px; letter-spacing: .14em; }

  /* CTA 제목 가운데 정렬 */
  .article .cta-band h3 { text-align: center; }

  /* 태그 아카이브만 가로형 소형 카드 (카테고리/더보기는 기존 그리드 유지) */
  body.tag .archive-body .card-grid { display: flex; flex-direction: column; gap: 0; }
  body.tag .archive-body .card {
    display: grid; grid-template-columns: 80px 1fr; align-items: center; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid var(--line-2);
    border-radius: 0; box-shadow: none; background: transparent;
    transition: opacity .18s var(--ease);
  }
  body.tag .archive-body .card:last-child { border-bottom: 0; }
  body.tag .archive-body .card:hover { transform: none; box-shadow: none; opacity: .78; }
  body.tag .archive-body .card .thumb {
    width: 80px; height: 80px; border-radius: 13px; overflow: hidden;
    box-shadow: 0 4px 12px -6px rgba(7,67,93,.28);
  }
  body.tag .archive-body .card .thumb img { width: 100%; height: 100%; object-fit: cover; }
  body.tag .archive-body .card .body { padding: 0; }
  body.tag .archive-body .card .cat { font-size: 11.5px; font-weight: 700; letter-spacing: .02em; }
  body.tag .archive-body .card .date { font-size: 11.5px; }
  body.tag .archive-body .card h3 {
    font-size: 15px; font-weight: 700; line-height: 1.45; letter-spacing: -.02em;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 0;
  }
  body.tag .archive-body .card .excerpt { display: none; }

  /* 태그 상단 헤더 간소화 */
  .page-header-inner { padding: 22px 20px 18px; }
  .page-header h1 { font-size: 24px; }
  .archive-body { padding: 16px 0 48px; }
}

/* 참고문헌 목록 */
.article ol.nc-biblio { padding-left: 22px; margin: 0 0 24px; }
.article ol.nc-biblio li { font-size: 14.5px; color: var(--ink-3); line-height: 1.85; margin: 7px 0; }
.article ol.nc-biblio li em { color: var(--ink-2); }

/* ===== nc-checklist & nc-tips (v1.2.17+) ===== */
/* 체크리스트 */
.article .nc-checklist { list-style: none; margin: 0 0 28px; padding: 0; }
.article .nc-checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
  padding: 16px 18px; margin: 0 0 10px; font-size: 16px; color: var(--ink); line-height: 1.65;
}
.article .nc-checklist li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 2px;
  border: 2px solid var(--line); border-radius: 5px;
}

/* 선택기준 팁 박스 */
.article .nc-tips {
  background: #f2f7fa; border: 1px solid #e3edf3; border-radius: 14px;
  padding: 22px 24px; margin: 0 0 28px;
}
.article .nc-tips p.label { margin: 0 0 14px; font-size: 15px; font-weight: 800; color: var(--blue); }
.article .nc-tips ul { list-style: none; margin: 0; padding: 0; }
.article .nc-tips ul li {
  position: relative; padding: 0 0 12px 18px; font-size: 15.5px; color: var(--ink-2); line-height: 1.8;
}
.article .nc-tips ul li:last-child { padding-bottom: 0; }
.article .nc-tips ul li::before {
  content: "•"; position: absolute; left: 0; top: 0;
  color: var(--blue); font-size: 16px; font-weight: 700;
}
