/* ============================================================
   EduCare — 네오 브루탈리즘 디자인 시스템
   시안 기준: 민트그린(#00C8A0) + 라임(#DDF247) + 잉크(#1A1A1A)
   두꺼운 보더(2px) + 하드 섀도우(오프셋, 블러 0) + 필 배지
   ============================================================ */

:root {
    --bg: #F8F9FA;
    --surface: #FFFFFF;
    --accent: #00C8A0;
    --accent-deep: #00A383;
    --lime: #DDF247;
    --lime-deep: #CBE627;
    --ink: #1A1A1A;
    --text-main: #1A1A1A;
    --text-dim: #4A4A4A;
    --border: #1A1A1A;

    --font-body: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Noto Sans KR', sans-serif;

    --r-lg: 48px;
    --r-md: 24px;
    --r-sm: 12px;

    --shadow-1: 3px 3px 0px var(--ink);
    --shadow-2: 4px 4px 0px var(--ink);
    --shadow-3: 6px 6px 0px var(--ink);
    --shadow-4: 12px 12px 0px var(--ink);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.03em;
    word-break: keep-all;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

button { font-family: inherit; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ── 공통 컨테이너 ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }

.band { padding: 7rem 0; }
.band-white { background: var(--surface); }

/* ── 필 배지 (eyebrow) ── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    background: var(--lime);
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    box-shadow: var(--shadow-1);
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section-head { margin-bottom: 3.5rem; }
.section-head .eyebrow { margin-bottom: 1.5rem; }
.section-head h2, .section-head h1 { font-size: clamp(2.2rem, 4vw, 3.25rem); max-width: 640px; }
.section-head .lede {
    margin-top: 1.5rem;
    max-width: 720px;
    color: var(--text-dim);
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.8;
}
.section-head .lede b { color: var(--text-main); }

/* ── 버튼 ── */
.cta-button {
    background-color: var(--accent);
    color: var(--ink);
    font-weight: 900;
    font-size: 1.05rem;
    padding: 1.15rem 2.25rem;
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-2);
    border-radius: 100px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    min-height: 44px;
}
.cta-button:hover {
    background-color: var(--accent-deep);
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-3);
}

.btn-lime {
    background: var(--lime);
    color: var(--ink);
}
.btn-lime:hover { background: var(--lime-deep); }

.link-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: 100px;
    box-shadow: var(--shadow-1);
    padding: 0.8rem 1.5rem;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 44px;
}
.link-pill:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-2); }

/* ── 내비게이션 ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-main);
}
.logo::before {
    content: '';
    width: 15px; height: 15px;
    background: var(--accent);
    border: 2px solid var(--ink);
    border-radius: 50%;
    display: inline-block;
    flex: none;
}
.logo::after {
    content: '.';
    color: var(--accent);
    font-weight: 900;
    margin-left: 1px;
    align-self: flex-end;
}

.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a {
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: background 0.2s, border-color 0.2s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.nav-links a:hover { background: #ECEEF0; }
.nav-links a.active {
    background: var(--lime);
    border-color: var(--ink);
    box-shadow: 2px 2px 0px var(--ink);
}

.nav-cta {
    background: var(--accent);
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 100px;
    box-shadow: var(--shadow-1);
    padding: 0.6rem 1.4rem;
    font-weight: 900;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.nav-cta:hover { background: var(--accent-deep); transform: translate(-2px, -2px); box-shadow: var(--shadow-2); }

/* ── 히어로 ── */
.hero { padding: 9.5rem 0 6rem; position: relative; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #ddd;
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-4);
}
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.hero-content-block {
    background: var(--surface);
    border-radius: var(--r-lg);
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-4);
    padding: 4rem 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
    margin-left: -10%;
    z-index: 5;
}

.badge-icon {
    position: absolute;
    width: 120px; height: 120px;
    background: var(--lime);
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.badge-icon::after {
    content: '';
    width: 70px; height: 70px;
    background: var(--accent);
    border: 2px solid var(--ink);
    border-radius: 50%;
    display: block;
}
.hero-badge { top: -40px; left: -40px; }

.hero-meta-text {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.hero-meta-text span {
    background: #FFFFFF;
    border: 2px solid var(--ink);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: var(--shadow-1);
}

.hero h1 {
    font-size: clamp(2.5rem, 4.6vw, 4rem);
    margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--accent-deep); }

.hero-content-block > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #333;
    font-weight: 600;
    max-width: 92%;
}

.hero-note {
    display: block;
    margin-top: 1.1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dim);
}

/* ── 스텝 카드 (취득 절차) ── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.process-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.step-card {
    background: var(--surface);
    border-radius: var(--r-md);
    padding: 2.5rem 2rem;
    position: relative;
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translate(-4px, -4px); box-shadow: 10px 10px 0px var(--ink); }

.step-num {
    font-size: 1.4rem;
    font-weight: 900;
    background: var(--lime);
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-2);
    border-radius: 50%;
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
}

.step-card h3 { font-size: 1.3rem; margin-bottom: 1rem; letter-spacing: -0.02em; }
.step-card p { color: var(--text-dim); font-size: 0.95rem; font-weight: 500; line-height: 1.6; }

.highlight {
    display: inline-block;
    background: var(--lime);
    color: var(--ink);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-top: 1.4rem;
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-1);
}

.tag-chip {
    display: inline-block;
    background: var(--lime);
    color: var(--ink);
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-1);
}

/* ── 학력별 출발점 스트립 ── */
.edu-strip {
    margin-top: 2.5rem;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-3);
    padding: 2rem 2.25rem;
}
.edu-strip-title {
    font-weight: 900;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.edu-table { list-style: none; display: flex; flex-direction: column; }
.edu-table li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 0.9rem 0;
    border-bottom: 2px dashed #D5D8DB;
}
.edu-table li:last-child { border-bottom: none; }
.edu-table .edu {
    flex: none;
    min-width: 92px;
    text-align: center;
    background: var(--bg);
    border: 2px solid var(--ink);
    border-radius: 50px;
    padding: 0.3rem 0.8rem;
    font-weight: 900;
    font-size: 0.85rem;
    box-shadow: 2px 2px 0px var(--ink);
}
.edu-table .need { font-size: 0.95rem; font-weight: 500; color: var(--text-dim); padding-top: 0.2rem; }
.edu-strip-foot { margin-top: 1.25rem; font-size: 0.82rem; color: var(--text-dim); font-weight: 500; }
.edu-strip-foot b { color: var(--accent-deep); }

/* ── FAQ ── */
.faq-section {
    background: var(--surface);
    border-top: 2px solid var(--ink);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 2px solid var(--ink); }
.faq-item:first-of-type { border-top: 2px solid var(--ink); }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 2.25rem 0;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    list-style: none;
    word-break: keep-all;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex: none;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }

.faq-answer {
    padding-bottom: 2.25rem;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.75;
    word-break: keep-all;
}

/* ── 사례 / 후기 카드 ── */
.story-list { display: flex; flex-direction: column; gap: 1.5rem; }

.story {
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-3);
    padding: 2rem 2.25rem;
    max-width: 88%;
    transition: transform 0.2s, box-shadow 0.2s;
}
.story:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0px var(--ink); }
.story.flip { align-self: flex-end; }

.story-who { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1rem; flex-wrap: wrap; }
.story-chip {
    background: var(--lime);
    border: 2px solid var(--ink);
    border-radius: 50px;
    box-shadow: 2px 2px 0px var(--ink);
    padding: 0.25rem 0.85rem;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
}
.story-name { font-weight: 800; font-size: 0.95rem; }

.story-bubble { color: var(--text-dim); font-weight: 500; font-size: 0.98rem; line-height: 1.75; word-break: keep-all; }
.story-review .story-bubble { font-weight: 600; }

.story-result {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
    background: var(--accent);
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 50px;
    box-shadow: var(--shadow-1);
    padding: 0.4rem 1rem;
    font-weight: 800;
    font-size: 0.85rem;
}

.fineprint { margin-top: 2rem; font-size: 0.8rem; color: var(--text-dim); font-weight: 500; }

/* ── 신청 폼 (CTA 밴드) ── */
.cta-section {
    background: var(--accent);
    border-top: 2px solid var(--ink);
    position: relative;
    overflow: hidden;
}
.cta-bg-graphic {
    position: absolute;
    right: -5%; bottom: -10%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: var(--lime);
    border: 4px solid var(--ink);
    box-shadow: 16px 16px 0px var(--ink);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text .eyebrow { margin-bottom: 1.25rem; }
.cta-text h2 { font-size: clamp(2.3rem, 4vw, 3.25rem); margin-bottom: 1.5rem; }
.cta-text > p { font-size: 1.1rem; font-weight: 600; color: var(--ink); max-width: 90%; }
.cta-note { margin-top: 1.5rem; font-size: 0.88rem; font-weight: 800; color: var(--ink); }

.form-wrapper {
    background: var(--surface);
    padding: 3.25rem 2.75rem;
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-4);
    border-radius: var(--r-md);
    text-align: left;
}

.field { margin-bottom: 1.4rem; text-align: left; }
.field label {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.field input[type="text"],
.field input[type="tel"],
.field input:not([type]) {
    width: 100%;
    padding: 1.05rem 1.2rem;
    border: 2px solid var(--ink);
    border-radius: var(--r-sm);
    font-size: 1rem;
    font-family: inherit;
    font-weight: 600;
    background: #fff;
    box-shadow: var(--shadow-1);
    transition: box-shadow 0.2s, transform 0.2s;
}
.field input:focus {
    outline: none;
    box-shadow: 5px 5px 0px var(--accent);
    transform: translate(-2px, -2px);
}
.field input.field-err { box-shadow: 5px 5px 0px #E5484D; transform: translate(-2px, -2px); }

.seg { display: flex; gap: 0.9rem; }
.seg button {
    flex: 1;
    padding: 1.05rem 0.5rem;
    text-align: center;
    border: 2px solid var(--ink);
    border-radius: var(--r-sm);
    background: #fff;
    font-size: 0.98rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--shadow-1);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    min-height: 48px;
}
.seg button:hover { background: #F2F4F5; }
.seg button.on {
    background: var(--accent);
    color: var(--ink);
    box-shadow: 5px 5px 0px var(--ink);
    transform: translate(-2px, -2px);
}
.seg.field-err { outline: 3px solid #E5484D; outline-offset: 4px; border-radius: var(--r-sm); }

.agree-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    margin: 1.6rem 0;
    cursor: pointer;
    line-height: 1.65;
    text-align: left;
}
.agree-label input {
    margin-top: 0.2rem;
    accent-color: var(--accent);
    width: 1.2rem; height: 1.2rem;
    flex: none;
}
.agree-label a { color: var(--text-main); text-decoration: underline; text-underline-offset: 3px; }

.btn-submit {
    width: 100%;
    background: var(--lime);
    color: var(--ink);
    font-weight: 900;
    font-size: 1.1rem;
    padding: 1.2rem;
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-2);
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    min-height: 48px;
}
.btn-submit:hover { background: var(--lime-deep); transform: translate(-2px, -2px); box-shadow: var(--shadow-3); }
.btn-submit:disabled { opacity: 0.6; cursor: default; transform: none; box-shadow: var(--shadow-2); }

.form-foot { margin-top: 0.9rem; font-size: 0.8rem; color: var(--text-dim); text-align: center; font-weight: 600; }

.msg { min-height: 20px; margin-top: 0.8rem; font-size: 0.88rem; font-weight: 800; text-align: center; }
.msg.err { color: #C62A2F; }

/* ── 칼럼 목록 (case-row: publish.js 생성 마크업) ── */
.case-list { display: flex; flex-direction: column; gap: 1.25rem; }

.case-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-2);
    padding: 1.6rem 2rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.case-row:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0px var(--ink); }

.case-row .no {
    flex: none;
    background: var(--lime);
    border: 2px solid var(--ink);
    border-radius: 50px;
    box-shadow: 2px 2px 0px var(--ink);
    padding: 0.25rem 0.85rem;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    white-space: nowrap;
}
.case-row .desc { font-size: 0.95rem; font-weight: 500; color: var(--text-dim); line-height: 1.7; word-break: keep-all; }
.case-row .desc b { color: var(--text-main); font-weight: 800; }
.case-row .result { flex: none; margin-left: auto; font-weight: 900; font-size: 0.88rem; color: var(--accent-deep); white-space: nowrap; }

/* ── 공식 출처 ── */
.source-link {
    display: inline-flex;
    align-items: center;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: 50px;
    box-shadow: var(--shadow-1);
    padding: 0.55rem 1.1rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 44px;
}
.source-link:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-2); }

.source-row { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ── 푸터 ── */
footer {
    background: var(--ink);
    color: #FFFFFF;
    padding: 4rem 1.5rem 7rem;
    font-size: 0.875rem;
}
footer .logo { color: #fff; }
footer .logo::before { border-color: #fff; }
footer a { color: #C9CDD1; }
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.footer-dim { color: #9AA0A6; font-size: 0.8rem; line-height: 2; }
.footer-lime { color: var(--lime); font-weight: 800; }

/* ── 모바일 하단 바 ── */
.mbar {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 900;
    background: var(--surface);
    border-top: 2px solid var(--ink);
    padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom));
    gap: 0.7rem;
}
.mbar a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.95rem;
    padding: 0.85rem 0.5rem;
    border: 2px solid var(--ink);
    border-radius: 50px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.mbar .m-tel { background: #fff; color: var(--ink); box-shadow: 2px 2px 0px var(--ink); }
.mbar .m-cta { background: var(--lime); color: var(--ink); box-shadow: 2px 2px 0px var(--ink); }

/* ── 개인정보 모달 ── */
.privacy-card {
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-4);
    max-width: 560px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 3rem 2.5rem;
}
.privacy-card h3 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.privacy-body { font-size: 0.88rem; color: var(--text-dim); line-height: 1.85; display: flex; flex-direction: column; gap: 0.9rem; font-weight: 500; }
.privacy-body b { color: var(--text-main); font-weight: 800; }

/* ── 포스트(칼럼) 페이지 ── */
.post-main { padding: 8.5rem 1.5rem 5rem; }
.post-main article { max-width: 760px; margin: 0 auto; }

.crumbs { font-size: 0.82rem; font-weight: 700; color: var(--text-dim); margin-bottom: 1.5rem; }
.crumbs a { color: var(--text-dim); text-decoration: none; }
.crumbs a:hover { color: var(--text-main); text-decoration: underline; }
.crumbs .sep { margin: 0 0.45rem; }
.crumbs .cur { color: var(--text-main); }

.post-main h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 1rem 0 0.9rem; }
.post-meta { font-size: 0.85rem; font-weight: 700; color: var(--text-dim); margin-bottom: 2rem; }

.post-main article img {
    border: 2px solid var(--ink);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-3);
    margin: 0 0 2.25rem;
}

.post-main h2 {
    font-size: 1.45rem;
    margin: 2.75rem 0 1rem;
    padding-left: 0.9rem;
    border-left: 6px solid var(--accent);
}
.post-main p { margin-bottom: 1.15rem; color: #2B2B2B; font-weight: 500; line-height: 1.85; word-break: keep-all; }
.post-main ul, .post-main ol { margin: 0 0 1.15rem 1.4rem; color: #2B2B2B; font-weight: 500; line-height: 1.85; }
.post-main a { color: var(--accent-deep); font-weight: 700; }

.post-main table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 2px solid var(--ink);
    border-radius: var(--r-sm);
    overflow: hidden;
    box-shadow: var(--shadow-2);
    margin: 1.5rem 0;
    font-size: 0.92rem;
}
.post-main th {
    background: var(--lime);
    border-bottom: 2px solid var(--ink);
    padding: 0.8rem 1rem;
    text-align: left;
    font-weight: 900;
}
.post-main td { padding: 0.8rem 1rem; border-bottom: 1px solid #E2E5E8; font-weight: 500; color: var(--text-dim); }
.post-main tr:last-child td { border-bottom: none; }

.post-cta {
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-3);
    padding: 2.25rem 2rem;
    text-align: center;
    margin: 3rem 0;
}
.post-cta p { margin-bottom: 1.25rem; font-weight: 600; }

.post-related { margin-top: 3.5rem; }
.post-related h2 { border-left: none; padding-left: 0; }
.post-related a {
    display: block;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-1);
    padding: 0.95rem 1.25rem;
    margin-top: 0.8rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.post-related a:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-2); }

.eyebrow.center { justify-content: center; }

/* ── 404 ── */
.err-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
}

/* ── 반응형 ── */
@media (max-width: 1024px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
    .band { padding: 4.5rem 0; }
    .hero { padding-top: 7.5rem; }

    .nav-links { display: none; }

    .hero-grid { grid-template-columns: 1fr; }
    .hero-image-wrapper { box-shadow: 8px 8px 0px var(--ink); aspect-ratio: 4 / 3; }
    .hero-content-block {
        margin-left: 0;
        margin-top: -10%;
        padding: 3rem 1.75rem;
        min-height: auto;
        box-shadow: 8px 8px 0px var(--ink);
    }
    .hero-badge { width: 96px; height: 96px; top: -36px; left: auto; right: 18px; }
    .hero-badge::after { width: 56px; height: 56px; }

    .process-grid, .process-grid.cols-3 { grid-template-columns: 1fr; }

    .cta-container { grid-template-columns: 1fr; gap: 3rem; }
    .form-wrapper { padding: 2.5rem 1.5rem; box-shadow: 8px 8px 0px var(--ink); }
    .cta-bg-graphic { width: 380px; height: 380px; right: -30%; }

    .story { max-width: 100%; }
    .story.flip { align-self: stretch; }

    .case-row { flex-wrap: wrap; gap: 0.8rem; }
    .case-row .result { margin-left: 0; }

    .footer-grid { flex-direction: column; }
    footer { padding-bottom: 8.5rem; }

    .mbar { display: flex; }
    .br-pc { display: none; }
}

@media (max-width: 480px) {
    .seg { flex-direction: column; }
    .hero h1 { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}
