:root {
  --color-canvas: #ffffff;
  --color-surface: #f8faf5;
  --color-brand: #2f7a3c;
  --color-brand-dark: #205c2b;
  --color-text: #20251f;
  --color-muted: #667065;
  --color-line: #e5e9e2;
  --color-tip: #ffe58c;
  --color-pink: #ffe2e9;
  --color-blue: #e4f2ff;
  --radius-card: 20px;
  --radius-button: 999px;
  --shadow-soft: 0 20px 60px rgb(48 63 44 / 12%);
  --content-max: 1240px;
  --font-sans: "Pretendard Variable", Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--color-canvas); color: var(--color-text); font-family: var(--font-sans); font-size: 17px; line-height: 1.75; word-break: keep-all; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--color-tip); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 16px; background: var(--color-text); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 30; top: 0; background: rgb(255 255 255 / 94%); border-bottom: 1px solid var(--color-line); backdrop-filter: blur(14px); }
.header-inner { width: min(calc(100% - 40px), var(--content-max)); height: 72px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.wordmark { font-size: 1.48rem; font-weight: 950; letter-spacing: -.07em; line-height: 1; }
.wordmark span { color: var(--color-brand); }
.primary-nav { display: flex; align-items: center; gap: 28px; font-size: .91rem; font-weight: 700; }
.primary-nav a { padding: 8px 0; }
.primary-nav a:hover { color: var(--color-brand); }
.nav-instagram { border-bottom: 2px solid var(--color-brand); }
.menu-button { display: none; border: 1px solid var(--color-text); border-radius: var(--radius-button); background: transparent; padding: 8px 15px; font: inherit; font-weight: 800; }
.store-facts-bar { grid-column: 2; align-self: start; border: 1px solid #d5e6d2; border-radius: 20px; background: linear-gradient(135deg, #f5fbf2, #fffdf4); box-shadow: 0 12px 28px rgb(49 91 43 / 8%); }
.store-facts-bar > div { min-height: 72px; padding: 14px 18px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; color: #445044; text-align: center; font-size: .76rem; }
.store-facts-bar strong { color: var(--color-brand-dark); font-weight: 900; white-space: nowrap; }
.store-facts-meta { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px; }
.store-facts-meta span { display: inline-flex; padding: 5px 10px; border: 1px solid #dce8d9; border-radius: 999px; background: rgb(255 255 255 / 76%); white-space: nowrap; }
.store-facts-bar a { display: inline-flex; min-height: 36px; align-items: center; justify-content: center; padding: 7px 13px; border-radius: 999px; background: var(--color-brand-dark); color: #fff; font-weight: 850; white-space: nowrap; }
.store-facts-bar a:hover { background: var(--color-brand); }

.hero { position: relative; width: min(calc(100% - 40px), var(--content-max)); min-height: calc(100dvh - 72px); margin: 0 auto; padding: 36px 0 28px; display: grid; grid-template-columns: minmax(320px, .82fr) minmax(520px, 1.18fr); grid-template-rows: 1fr auto; gap: 26px 48px; align-items: center; }
.hero::before, .hero::after { content: ""; position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; }
.hero::before { width: 104px; height: 104px; top: 10%; left: 30%; background: var(--color-pink); }
.hero::after { width: 76px; height: 76px; right: 0; bottom: 22%; background: var(--color-tip); }
.hero-copy { align-self: center; padding: 28px 0; }
.eyebrow { margin: 0 0 20px; color: var(--color-brand); font-size: .8rem; font-weight: 900; letter-spacing: .08em; }
.hero h1 { margin: 0; max-width: 9ch; font-size: clamp(3.15rem, 5.6vw, 5.9rem); line-height: 1.04; letter-spacing: -.075em; }
.hero h1 span { position: relative; z-index: 0; color: var(--color-brand); white-space: nowrap; }
.hero h1 span::after { content: ""; position: absolute; z-index: -1; right: -.04em; bottom: .03em; left: -.04em; height: .24em; border-radius: 999px; background: var(--color-pink); }
.hero-summary { max-width: 20em; margin: 28px 0 30px; color: var(--color-muted); font-size: 1.08rem; line-height: 1.7; }
.hero-media { position: relative; height: min(66vh, 720px); margin: 0; overflow: hidden; border-radius: 28px; background: var(--color-surface); box-shadow: var(--shadow-soft); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; border-radius: var(--radius-button); padding: 12px 24px; font-weight: 850; line-height: 1; white-space: nowrap; transition: transform .16s ease, background .16s ease, color .16s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px); }
.button-primary { background: var(--color-brand-dark); color: #fff; }
.button-primary:hover { background: var(--color-brand); }
.button-outline { border: 2px solid var(--color-brand-dark); color: var(--color-brand-dark); }
.button-outline:hover { background: var(--color-brand-dark); color: #fff; }
.quick-actions { grid-column: 1 / -1; grid-row: 3; width: min(100%, 1060px); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: center; }
.quick-actions a { position: relative; min-height: 92px; padding: 18px 22px; display: grid; place-content: center; border: 1px solid var(--color-line); border-radius: 22px; background: #fff; transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease; }
.quick-actions a:nth-child(2) { background: #f6fbf5; }
.quick-actions a:nth-child(3) { background: #fff9e7; }
.quick-actions a:hover { transform: translateY(-2px); border-color: var(--color-brand); box-shadow: 0 12px 26px rgb(49 91 43 / 9%); }
.quick-actions strong, .quick-actions span { display: block; }
.quick-actions strong { font-size: .95rem; }
.quick-actions span { color: var(--color-muted); font-size: .78rem; }
.quick-actions strong, .quick-actions span { text-align: center; }
.quick-actions a:hover strong { color: var(--color-brand); }

.section { width: min(calc(100% - 40px), var(--content-max)); margin: 0 auto; padding: 84px 0; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section h2 { margin: 0; font-size: clamp(2.3rem, 4.6vw, 4.8rem); line-height: 1.12; letter-spacing: -.065em; }
.section-heading p { max-width: 58ch; margin: 22px 0 0; color: var(--color-muted); }
.category-section { position: relative; }
.category-section::before { content: ""; position: absolute; z-index: -1; width: 84px; height: 84px; top: 70px; right: 5%; border-radius: 50%; background: var(--color-blue); }
.category-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 360px 300px; gap: 18px; }
.category-card { position: relative; display: grid; grid-template-rows: minmax(0, 1fr) auto; overflow: hidden; border: 1px solid var(--color-line); border-radius: var(--radius-card); background: #fff; box-shadow: 0 12px 32px rgb(46 74 40 / 7%); }
.category-card img { width: 100%; height: 100%; min-height: 0; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.category-card span { position: static; z-index: 2; padding: 16px 18px 17px; color: var(--color-text); background: #fff; }
.category-card strong, .category-card small { display: block; }
.category-card strong { font-size: 1.18rem; }
.category-card small { margin-top: 2px; color: var(--color-muted); font-size: .8rem; }
.category-card:hover img { transform: scale(1.035); }
.category-wide { grid-row: 1 / 3; }
.category-landscape { grid-column: 2 / 4; }
.preview-note { margin: 18px 0 0; color: var(--color-muted); font-size: .8rem; }

.store-gallery { padding-top: 72px; }
.gallery-frame { position: relative; }
.gallery-strip { display: flex; gap: 16px; padding: 2px 2px 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--color-brand) #edf3eb; }
.gallery-strip figure { flex: 0 0 clamp(300px, 31vw, 410px); min-width: 0; margin: 0; overflow: hidden; border: 1px solid var(--color-line); border-radius: var(--radius-card); background: #fff; scroll-snap-align: start; }
.gallery-strip img { display: block; width: 100%; height: clamp(210px, 20vw, 260px); object-fit: cover; object-position: center; background: var(--color-surface); transition: transform .25s ease; }
.gallery-strip figure:nth-child(1) img { object-position: center 34%; }
.gallery-strip figure:nth-child(2) img { object-position: center 55%; }
.gallery-strip figure:nth-child(3) img { object-position: center 54%; }
.gallery-strip figure:nth-child(4) img { object-position: center 48%; }
.gallery-strip figure:nth-child(5) img { object-position: center 58%; }
.gallery-strip figure:nth-child(6) img { object-position: center 48%; }
.gallery-strip figure:nth-child(7) img { object-position: center 54%; }
.gallery-strip figure:nth-child(8) img { object-position: center 50%; }
.gallery-strip figure:nth-child(2) img, .gallery-strip figure:nth-child(6) img { background: #fff9e7; }
.gallery-strip figure:nth-child(3) img, .gallery-strip figure:nth-child(7) img { background: #f4fbf2; }
.gallery-strip figure:hover img { transform: translateY(-3px); }
.gallery-strip figcaption { min-height: 52px; padding: 14px 16px 16px; font-size: .94rem; font-weight: 850; }
.gallery-hint { display: block; margin-top: 14px; color: var(--color-brand); font-size: .82rem; font-weight: 800; }
.gallery-controls { display: flex; justify-content: flex-end; gap: 8px; margin-top: 14px; }
.gallery-controls button { min-width: 70px; min-height: 42px; border: 1px solid var(--color-brand); border-radius: var(--radius-button); background: #fff; color: var(--color-brand-dark); font: inherit; font-size: .82rem; font-weight: 850; cursor: pointer; }
.gallery-controls button:hover { background: var(--color-brand); color: #fff; }
.gallery-controls button:active { transform: translateY(1px); }

.discovery { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; padding-right: 48px; padding-left: 48px; border: 1px solid var(--color-line); border-radius: 28px; background: linear-gradient(135deg, #fbfff9, #fff9fb); }
.discovery-title { position: static; align-self: start; }
.discovery-list article { display: grid; grid-template-columns: 48px 1fr; padding: 30px 0; border-bottom: 1px solid var(--color-line); }
.discovery-list article:first-child { padding-top: 0; }
.discovery-list span { color: var(--color-brand); font-size: .76rem; font-weight: 900; }
.discovery-list h3 { margin: 0; font-size: 1.5rem; letter-spacing: -.04em; }
.discovery-list p { grid-column: 2; max-width: 42ch; margin: 8px 0 0; color: var(--color-muted); }

.visit { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; }
.visit-photo { overflow: hidden; border-radius: var(--radius-card); box-shadow: var(--shadow-soft); }
.visit-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 36% 50%; }
.visit-copy h2 { font-size: clamp(2.4rem, 4vw, 4.2rem); }
.visit-copy address { margin: 30px 0 24px; font-style: normal; font-weight: 750; line-height: 1.65; }
.visit-facts { display: grid; grid-template-columns: 1fr 1.4fr; gap: 12px; margin: 0 0 18px; }
.visit-facts div { padding: 16px; border: 1px solid var(--color-line); border-radius: var(--radius-card); background: #fff; }
.visit-facts dt { color: var(--color-muted); font-size: .76rem; font-weight: 800; }
.visit-facts dd { margin: 3px 0 0; font-size: .9rem; font-weight: 800; }
.visit-caution { max-width: 48ch; margin: 0 0 28px; color: var(--color-muted); font-size: .78rem; }

.instagram-cta { display: flex; align-items: end; justify-content: space-between; gap: 48px; padding-right: 48px; padding-left: 48px; border: 1px solid #d9ead7; border-radius: 28px; background: #f4fbf2; }
.instagram-cta h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.instagram-cta p { max-width: 48ch; margin: 20px 0 0; color: var(--color-muted); }

.article-page { background: #fff; }
.article-hero { width: min(calc(100% - 40px), var(--content-max)); min-height: auto; margin: 0 auto; padding: 40px 0 52px; display: grid; grid-template-columns: .86fr 1.14fr; gap: 52px; align-items: center; }
.article-hero-copy { min-width: 0; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: var(--color-muted); font-size: .76rem; }
.breadcrumb a:hover { color: var(--color-brand); }
.breadcrumb strong { color: var(--color-text); }
.article-hero h1 { margin: 0; max-width: 11ch; font-size: clamp(3rem, 5.3vw, 5.5rem); line-height: 1.06; letter-spacing: -.075em; }
.article-hero h1 span { color: var(--color-brand); }
.article-lead { max-width: 31em; margin: 28px 0 32px; color: var(--color-muted); font-size: 1.08rem; }
.article-hero-media { margin: 0; overflow: hidden; border-radius: 28px; background: var(--color-surface); box-shadow: var(--shadow-soft); }
.article-hero-media img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.article-hero-media figcaption { padding: 14px 18px 16px; color: var(--color-muted); font-size: .72rem; line-height: 1.55; }
.answer-strip { width: min(calc(100% - 40px), 1040px); margin: 0 auto 104px; padding: 24px 30px; border-left: 5px solid var(--color-brand); border-radius: 0 var(--radius-card) var(--radius-card) 0; background: var(--color-surface); }
.answer-strip p { margin: 0; }
.answer-strip strong { color: var(--color-brand-dark); }
.article-body { width: min(calc(100% - 40px), 790px); margin: 0 auto; }
.article-body > section { margin: 0 0 72px; }
.article-body h2 { margin: 0 0 28px; font-size: clamp(2.15rem, 4.5vw, 3.65rem); line-height: 1.15; letter-spacing: -.06em; }
.article-body p { margin: 0 0 18px; }
.choice-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 14px; margin-top: 40px; }
.choice-grid section { min-height: 184px; padding: 26px; border-radius: var(--radius-card); background: var(--color-surface); }
.choice-grid section:nth-child(2), .choice-grid section:nth-child(3) { background: #fff7f9; }
.choice-grid strong { color: var(--color-brand-dark); font-size: 1.25rem; }
.choice-grid p { margin: 10px 0 0; color: var(--color-muted); font-size: .92rem; }
.care-panel { width: min(980px, calc(100vw - 40px)); margin-left: 50%; padding: 54px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 48px; transform: translateX(-50%); border-radius: 28px; background: #f4fbf2; }
.care-panel aside { align-self: end; padding: 26px; border-radius: var(--radius-card); background: #fff; box-shadow: 0 12px 30px rgb(47 122 60 / 8%); }
.care-panel aside strong { color: var(--color-brand-dark); }
.care-panel aside p { margin: 10px 0 0; color: var(--color-muted); font-size: .9rem; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.related-grid a { min-height: 150px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--color-line); border-radius: var(--radius-card); transition: transform .16s ease, border-color .16s ease; }
.related-grid a:first-child { grid-row: span 2; background: var(--color-surface); }
.related-grid a:hover { transform: translateY(-2px); border-color: var(--color-brand); }
.related-grid strong { font-size: 1.08rem; }
.related-grid span { margin-top: 18px; color: var(--color-muted); font-size: .82rem; }
.faq details { border-bottom: 1px solid var(--color-line); }
.faq summary { padding: 22px 2px; font-weight: 850; cursor: pointer; }
.faq details p { padding: 0 2px 22px; color: var(--color-muted); }
.article-cta { width: min(calc(100% - 40px), var(--content-max)); margin: 40px auto 112px; padding: 64px; display: flex; align-items: end; justify-content: space-between; gap: 48px; border-radius: 28px; background: #fff7f9; }
.article-cta h2 { margin: 0; font-size: clamp(2.15rem, 4.3vw, 4rem); line-height: 1.14; letter-spacing: -.06em; }
.article-cta p { max-width: 48ch; margin: 20px 0 0; color: var(--color-muted); }
.article-cta-actions { display: grid; justify-items: center; gap: 14px; flex: 0 0 auto; }
.text-link { color: var(--color-brand-dark); font-size: .86rem; font-weight: 850; text-decoration: underline; text-underline-offset: 4px; }
.site-footer { background: var(--color-brand-dark); color: white; }
.footer-inner { width: min(calc(100% - 40px), var(--content-max)); margin: 0 auto; padding: 54px 0; display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center; }
.footer-inner .wordmark span { color: var(--color-tip); }
.footer-inner p { margin: 0; color: rgb(255 255 255 / 72%); font-size: .82rem; }
.footer-inner nav { display: flex; gap: 20px; font-size: .78rem; font-weight: 800; }

@media (max-width: 980px) {
  .hero { grid-template-columns: .8fr 1.2fr; gap: 24px; }
  .category-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 440px 300px 300px; }
  .category-wide { grid-column: 1 / 3; grid-row: auto; }
  .category-landscape { grid-column: 1 / 3; }
  .visit { gap: 40px; }
  .visit-facts { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .header-inner { width: min(calc(100% - 32px), var(--content-max)); height: 64px; }
  .menu-button { display: block; }
  .primary-nav { position: absolute; top: 64px; right: 0; left: 0; display: none; padding: 12px 20px 20px; background: var(--color-canvas); border-bottom: 1px solid var(--color-line); }
  .primary-nav[data-open="true"] { display: grid; }
  .primary-nav a { padding: 12px 4px; border-bottom: 1px solid var(--color-line); }
  .store-facts-bar { order: 4; grid-column: auto; width: 100%; }
  .store-facts-bar > div { min-height: auto; padding: 18px 14px; grid-template-columns: 1fr; gap: 12px; text-align: center; font-size: .74rem; line-height: 1.5; }
  .store-facts-meta { gap: 6px; }
  .store-facts-meta span { padding: 5px 9px; }
  .store-facts-bar a { justify-self: center; }
  .hero { width: min(calc(100% - 32px), var(--content-max)); min-height: auto; padding: 28px 0 0; grid-template-columns: 1fr; grid-template-rows: auto; gap: 24px; }
  .hero-copy { display: grid; justify-items: center; padding: 0; text-align: center; }
  .eyebrow { margin-bottom: 12px; }
  .hero h1 { max-width: none; font-size: clamp(2.75rem, 13vw, 4rem); }
  .hero-summary { margin: 18px 0 20px; font-size: 1rem; }
  .hero-copy .button { justify-self: center; }
  .hero-copy { order: 1; }
  .quick-actions { order: 2; grid-column: auto; grid-row: auto; grid-template-columns: 1fr; text-align: center; }
  .hero-media { order: 3; height: 58vh; min-height: 420px; }
  .quick-actions a { padding: 13px 16px; }
  .quick-actions strong, .quick-actions span { text-align: center; }
  .quick-actions a + a { border-left: 1px solid var(--color-line); }
  .section { width: min(calc(100% - 32px), var(--content-max)); padding: 60px 0; }
  .section h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .section-heading { margin-bottom: 32px; }
  .category-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 360px); gap: 12px; }
  .category-wide, .category-landscape { grid-column: auto; grid-row: auto; }
  .discovery { grid-template-columns: 1fr; gap: 44px; padding-right: 24px; padding-left: 24px; }
  .gallery-strip { display: flex; width: calc(100% + 16px); gap: 12px; padding: 2px 16px 10px 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--color-brand) #edf3eb; }
  .gallery-strip figure { flex: 0 0 min(82vw, 360px); min-width: 0; scroll-snap-align: start; }
  .gallery-strip img { height: clamp(200px, 58vw, 245px); }
  .gallery-controls { justify-content: center; }
  .gallery-strip figcaption { font-size: .86rem; }
  .discovery-title { position: static; }
  .discovery-list article { grid-template-columns: 38px 1fr; }
  .visit { grid-template-columns: 1fr; gap: 38px; }
  .visit-photo { order: 2; }
  .visit-photo picture { display: block; }
  .visit-photo img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; object-position: center; }
  .visit-copy { order: 1; }
  .instagram-cta { display: grid; align-items: start; padding-right: 24px; padding-left: 24px; }
  .instagram-cta .button { justify-self: start; }
  .article-hero { width: min(calc(100% - 32px), var(--content-max)); min-height: auto; padding: 26px 0 40px; grid-template-columns: 1fr; gap: 34px; }
  .breadcrumb { margin-bottom: 26px; }
  .article-hero-copy { display: grid; justify-items: center; text-align: center; }
  .article-hero h1 { max-width: 10ch; font-size: clamp(2.75rem, 13vw, 4rem); }
  .article-lead { margin: 20px 0 24px; }
  .article-hero-media { border-radius: 20px; }
  .article-hero-media img { aspect-ratio: 4 / 3; object-position: 57% center; }
  .answer-strip { width: min(calc(100% - 32px), 1040px); margin-bottom: 82px; padding: 22px; }
  .article-body { width: min(calc(100% - 32px), 790px); }
  .article-body > section { margin-bottom: 56px; }
  .article-body h2 { font-size: clamp(2.1rem, 10.5vw, 3.2rem); }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-grid section { min-height: 0; }
  .care-panel { width: calc(100vw - 32px); padding: 28px 22px; grid-template-columns: 1fr; gap: 24px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid a:first-child { grid-row: auto; }
  .article-cta { width: min(calc(100% - 32px), var(--content-max)); margin-bottom: 82px; padding: 38px 24px; display: grid; align-items: start; }
  .article-cta-actions { justify-items: start; }
  .footer-inner { width: min(calc(100% - 32px), var(--content-max)); grid-template-columns: 1fr; gap: 18px; }
  .footer-inner nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* P010 전용: 대표 이미지 배정 전의 단일 열 히어로 (이미지 추가 시 no-media 제거) */
.article-hero.no-media { grid-template-columns: 1fr; min-height: auto; padding-bottom: 36px; }
.article-hero.no-media .article-lead { max-width: 44em; }
/* P010 전용: 제한적 형광펜 강조 (페이지당 2~5개, 핵심 행동·판단·요건에만) */
mark.hl { padding: 0 2px; background: linear-gradient(transparent 58%, var(--color-tip) 58%); color: inherit; }
/* P010 수정: care-panel 이 본문 열과 어긋나던 문제 (margin-left:50% 가 .article-body > section 에 밀려 무효화되고 translateX 만 남아 좌측으로 빠짐) */
.article-body > section.care-panel { width: auto; margin: 0 0 72px; padding: 40px; transform: none; }
@media (max-width: 767px) { .article-body > section.care-panel { width: auto; margin-bottom: 56px; padding: 26px 22px; } }
/* P010: 본문 중간 CTA (버튼 앞에 맥락 문단, 버튼 연속 배치 금지) */
.inline-cta { margin: 40px 0 0; display: grid; justify-items: center; gap: 14px; padding: 30px 28px; border-radius: var(--radius-card); background: var(--color-surface); text-align: center; }
.inline-cta p { margin: 0; color: var(--color-muted); }
@media (max-width: 767px) { .inline-cta { padding: 24px 20px; } }
/* 03C: 본문 표 (3열 이하, 모바일 가로 스크롤) */
.table-scroll { margin: 32px 0; overflow-x: auto; border: 1px solid var(--color-line); border-radius: var(--radius-card); }
.table-scroll table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.table-scroll caption { padding: 16px 20px 0; color: var(--color-muted); font-size: .85rem; text-align: left; }
.table-scroll th, .table-scroll td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--color-line); white-space: nowrap; }
.table-scroll thead th { background: var(--color-surface); color: var(--color-brand-dark); font-weight: 850; }
.table-scroll tbody tr:last-child td { border-bottom: 0; }

/* 홈 — 전체 안내 인덱스 (2026-09-23) */
.site-index-section { padding-top: 0; }
.index-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.index-card { position: relative; padding: 34px 34px 30px; border: 1px solid var(--color-line); border-radius: var(--radius-card); background: var(--color-canvas); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.index-card:hover { transform: translateY(-3px); border-color: #d5e6d2; box-shadow: var(--shadow-soft); }
.index-card-tag { margin: 0 0 14px; color: var(--color-brand); font-size: .74rem; font-weight: 900; letter-spacing: .1em; }
.index-card h3 { margin: 0 0 22px; font-size: 1.42rem; line-height: 1.3; letter-spacing: -.045em; }
.index-card-links { display: flex; flex-wrap: wrap; gap: 8px; }
.index-card-links a { display: inline-flex; align-items: center; min-height: 38px; padding: 8px 15px; border: 1px solid var(--color-line); border-radius: var(--radius-button); background: var(--color-surface); color: #3c463b; font-size: .88rem; font-weight: 700; line-height: 1; transition: background .16s ease, color .16s ease, border-color .16s ease; }
.index-card-links a:hover { border-color: var(--color-brand); background: var(--color-brand); color: #fff; }
.index-card-more { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--color-line); font-size: .86rem; color: var(--color-muted); }
.index-card-more a { font-weight: 850; color: var(--color-brand-dark); border-bottom: 1px solid currentColor; }
.index-card-more a:hover { color: var(--color-brand); }
@media (max-width: 880px) { .index-card-grid { grid-template-columns: 1fr; gap: 18px; } .index-card { padding: 28px 24px 26px; } }
