/* =========================================================
   inchan-hoc — 박인찬 / 큰아들마케팅 Ghost 테마
   HOC 디자인 토큰 기반, 그린 accent, Pretendard 한글 최적화
   =========================================================
   주의: 이모지 사용 금지. blockquote 첫 번째는 요약 콜아웃.
   ========================================================= */

/* ----- 0. Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }

/* ----- 1. Tokens — Wise(전환) + Notion(가독성) 혼합 ----- */
:root {
    --font-sans: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Segoe UI", "Noto Sans KR", sans-serif;

    /* 배경 — Notion warm white + Wise off-white */
    --bg: #FAFAF7;
    --surface: #FFFFFF;
    --surface-warm: #F5F1E8;

    /* 본문·헤딩 — Notion charcoal + Wise dark green */
    --text: #37352F;
    --muted: #787774;
    --heading: #163300;
    --ink: #0B1F0F;

    /* Accent — Wise lime + 기존 그린 유지 */
    --accent: #00BC68;
    --accent-dark: #047857;
    --accent-soft: #E3F4D7;
    --accent-bright: #9FE870;

    /* 보조색 (페인포인트 박스 등에 유지) */
    --orange: #FF8A00;
    --orange-soft: #FFF4E5;
    --orange-dark: #C26A00;
    --blue: #3B82F6;
    --blue-soft: #EFF6FF;
    --blue-dark: #1D4ED8;

    /* 보더 — Notion warm gray */
    --border: #E9E5DC;
    --border-soft: #F0EDE3;
    --selection: #FFF3BF;

    /* Radius — Notion subtle + Wise rounded */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    --container: 1200px;
    --reading: 720px;
}

/* ----- 2. Base ----- */
html { color-scheme: light; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.78;
    letter-spacing: -0.011em;
    word-break: keep-all;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss03", "tnum";
}

@media (max-width: 767px) {
    body { font-size: 16px; line-height: 1.8; }
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }

::selection { background: var(--selection); color: var(--heading); }

/* ----- 3. Layout ----- */
.viewport { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1 0 auto; }
.inner { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

/* ----- 4. Header — 화이트 미니멀 ----- */
.gh-head {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.gh-head .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    max-width: 1200px;
    gap: 1rem;
}
.gh-head-brand a {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--heading);
    display: inline-block;
}
.gh-head-brand a:hover { color: var(--accent); text-decoration: none; }
.gh-head-brand img { max-height: 24px; width: auto; }
.gh-head-brand-text { color: var(--heading); }
.gh-head-brand-accent { color: var(--accent); }

.gh-head-menu { flex: 1; display: flex; justify-content: center; }
.gh-head-menu ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0; padding: 0;
}
.gh-head-menu a {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.15s ease;
}
.gh-head-menu a:hover, .gh-head-menu .nav-current a {
    color: var(--heading);
    text-decoration: none;
}

.gh-head-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.gh-head-cta {
    display: inline-block;
    background: var(--accent-bright);
    color: var(--heading);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: all 0.18s ease;
}
.gh-head-cta:hover {
    background: #B5F088;
    color: var(--heading);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(159, 232, 112, 0.4);
}

.gh-burger {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 32px; height: 32px;
    flex-direction: column; justify-content: center; gap: 5px;
}
.gh-burger span { display: block; width: 22px; height: 2px; background: var(--heading); border-radius: 1px; }

@media (max-width: 767px) {
    .gh-head .inner { height: 60px; }
    .gh-head-menu { display: none; }
    .gh-head-menu.is-open {
        display: block;
        position: absolute; top: 60px; left: 0; right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.25rem;
        z-index: 50;
    }
    .gh-head-menu.is-open ul { flex-direction: column; gap: 1rem; }
    .gh-burger { display: flex; }
    .gh-head-cta { padding: 0.45rem 1.1rem; font-size: 0.85rem; }
}

/* ----- 5. Home — Hero (1편) + Intro + 3-col Grid ----- */
:root { --container: 1200px; --reading: 720px; }

/* Hero */
.home-hero {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 1.25rem;
}
.home-hero-link {
    display: block;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    color: #fff;
    background: #111;
}
.home-hero-link:hover { color: #fff; text-decoration: none; }
.home-hero-image {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.home-hero-link:hover .home-hero-image { transform: scale(1.03); }
.home-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}
.home-hero-content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 2rem 2.5rem 2.5rem;
    z-index: 2;
    max-width: 820px;
}
.home-hero-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 0.9rem;
}
.home-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin: 0 0 0.7rem;
    color: #fff;
}
.home-hero-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin: 0 0 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 720px;
}
.home-hero-meta {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.home-hero-meta .dot { margin: 0 0.4rem; }
@media (max-width: 767px) {
    .home-hero-link { aspect-ratio: 4 / 5; }
    .home-hero-content { padding: 1.5rem 1.25rem; }
    .home-hero-title { font-size: 1.6rem; }
    .home-hero-excerpt { font-size: 0.9rem; -webkit-line-clamp: 3; }
}

/* Site intro */
.home-intro {
    padding: 4rem 1.25rem 2rem;
    text-align: center;
}
.home-intro-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.6rem;
}
.home-intro-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.3;
    color: var(--heading);
    margin: 0 0 1rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.home-intro-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .home-intro { padding: 2.5rem 1.25rem 1rem; }
    .home-intro-title { font-size: 1.4rem; }
}

/* Site main */
.site-main { padding: 1rem 0 4rem; }
.site-main .inner { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 2rem 0 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--heading);
}
.section-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--heading);
    margin: 0;
}

/* 3-col grid */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
@media (max-width: 1024px) {
    .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .post-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.post-card {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.post-card-image-link {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.post-card:hover .post-card-image-link {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(22, 51, 0, 0.08);
}
.post-card-image {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.post-card-image-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}
.post-card:hover .post-card-image { transform: scale(1.04); }

.post-card-content { display: flex; flex-direction: column; gap: 0.45rem; }
.post-card-content-link { color: inherit; }
.post-card-content-link:hover { text-decoration: none; }

.post-card-tags {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}
.post-card-tags a { color: inherit; }
.post-card-tags a:hover { text-decoration: none; }

.post-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.015em;
    color: var(--heading);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-card:hover .post-card-title { color: var(--accent); }

.post-card-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-meta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.2rem;
}
.post-card-meta-date::after { content: "·"; margin-left: 0.5rem; color: var(--border); }

/* ----- 6. Pagination — 한국어 페이지네이션 ----- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-soft);
    font-size: 0.95rem;
    flex-wrap: wrap;
}
.pagination-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--heading);
    font-weight: 600;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: #fff;
    transition: all 0.15s ease;
    text-decoration: none;
}
.pagination-link:hover {
    background: var(--accent-bright);
    color: var(--heading);
    border-color: var(--accent-bright);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(159, 232, 112, 0.35);
}
.pagination-link.is-disabled {
    color: var(--muted);
    background: var(--surface);
    border-color: var(--border-soft);
    cursor: not-allowed;
    opacity: 0.55;
}
.pagination-meta {
    color: var(--muted);
    font-size: 0.92rem;
    padding: 0 0.6rem;
}
.pagination-meta strong { color: var(--heading); font-weight: 700; }
@media (max-width: 600px) {
    .pagination { gap: 0.5rem; }
    .pagination-link { padding: 0.6rem 1rem; font-size: 0.88rem; }
}

/* ----- 7. Post (article) ----- */
.gh-canvas, .gh-content { max-width: var(--reading); margin: 0 auto; padding: 0 1.25rem; }

.article-header { padding: 3rem 1.25rem 1rem; max-width: var(--reading); margin: 0 auto; }
.article-tag {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1rem;
}
.article-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.25;
    color: var(--heading);
    margin: 0 0 1rem;
}
@media (max-width: 767px) {
    .article-title { font-size: 1.7rem; }
}

.article-excerpt {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.article-byline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    font-size: 0.88rem;
    color: var(--muted);
}
.article-byline a { color: var(--text); font-weight: 600; }
.article-byline a:hover { color: var(--accent); text-decoration: none; }
.byline-meta-date::before { content: "·"; margin: 0 0.5rem; color: var(--border); }

.article-image {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1.25rem;
}
.article-image img {
    width: 100%;
    border-radius: var(--radius-md);
}
.article-image figcaption {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
    margin-top: 0.5rem;
}

/* ----- 8. Content body (gh-content) ----- */
.gh-content { padding: 2rem 1.25rem 4rem; }
.gh-content > * { max-width: var(--reading); margin-left: auto; margin-right: auto; }
.gh-content > .kg-width-wide { max-width: 900px; }
.gh-content > .kg-width-full { max-width: 100%; }

.gh-content p {
    font-size: 17px;
    line-height: 1.75;
    margin: 1.1em 0;
    color: var(--text);
}
@media (max-width: 767px) { .gh-content p { font-size: 16px; } }

.gh-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin: 2.4em 0 0.7em;
    color: var(--heading);
}
.gh-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.015em;
    margin: 2em 0 0.5em;
    color: var(--heading);
}
.gh-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 1.6em 0 0.4em;
    color: var(--heading);
}

.gh-content ul, .gh-content ol { padding-left: 1.4em; margin: 1.1em 0; }
.gh-content li { margin: 0.35em 0; }
.gh-content ul li::marker { color: var(--accent); }

.gh-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.gh-content a:hover { color: var(--accent-dark); }

.gh-content strong {
    font-weight: 700;
    background: linear-gradient(transparent 60%, rgba(0,188,104,0.18) 60%);
    padding: 0 0.05em;
}

.gh-content code {
    background: var(--border-soft);
    color: var(--accent-dark);
    border: 1px solid var(--border);
    padding: 2px 7px;
    border-radius: 5px;
    font-size: 0.88em;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.gh-content pre {
    background: #1f2937;
    color: #f9fafb;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
    font-size: 0.88em;
    line-height: 1.6;
}
.gh-content pre code { background: none; color: inherit; border: none; padding: 0; }

.gh-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.8em auto;
}

.gh-content img, .gh-content figure img {
    border-radius: var(--radius-md);
    margin: 1.5em auto;
}
.gh-content figcaption {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
    margin-top: 0.4rem;
}

/* 표 */
.gh-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.8em 0;
    font-size: 0.95rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.gh-content thead { background: #ECFDF5; }
.gh-content th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    color: var(--accent-dark);
    border-bottom: 2px solid var(--accent);
}
.gh-content td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-soft);
}
.gh-content tbody tr:last-child td { border-bottom: none; }
.gh-content tbody tr:nth-child(even) { background: #FCFCFC; }

/* ----- 9. blockquote — 첫 번째는 그린 요약 콜아웃 ----- */
.gh-content blockquote {
    background: var(--surface);
    border-left: 3px solid var(--border);
    padding: 1.2rem 1.5rem;
    margin: 1.8em 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text);
    font-style: normal;
}
.gh-content blockquote p { margin: 0.4em 0; line-height: 1.65; }
.gh-content blockquote p:first-child { margin-top: 0; }
.gh-content blockquote p:last-child { margin-bottom: 0; }

/* 첫 strong이 라벨이면 칩으로 */
.gh-content blockquote p:first-child > strong:first-child {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 6px;
    background: var(--border);
    color: var(--text);
    margin-right: 0.5em;
    margin-bottom: 0.4em;
    vertical-align: middle;
    background: linear-gradient(none); /* reset highlight */
}
/* 그린 요약 콜아웃 변형 */
.gh-content blockquote.callout-tldr {
    background: #F0FDF4;
    border-left-color: var(--accent);
    color: #14532D;
}
.gh-content blockquote.callout-tldr p:first-child > strong:first-child {
    background: var(--accent);
    color: #fff;
}
.gh-content blockquote.callout-quote {
    background: #F9FAFB;
    border-left-color: var(--muted);
    color: var(--heading);
    font-style: italic;
}
.gh-content blockquote strong {
    background: none !important;
    padding: 0 !important;
}

/* ----- 10. Footer ----- */
.gh-foot {
    background: var(--surface);
    border-top: 1px solid var(--border-soft);
    padding: 2rem 1.25rem;
    margin-top: 4rem;
}
.gh-foot .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--muted);
}
.gh-foot a { color: var(--muted); }
.gh-foot a:hover { color: var(--accent); text-decoration: none; }
.gh-foot-copyright a { color: var(--text); font-weight: 600; }

/* ----- 11. Tag / Author header ----- */
.tag-header, .author-header {
    padding: 3rem 1.25rem 2rem;
    border-bottom: 1px solid var(--border-soft);
    text-align: left;
}
.tag-header .inner, .author-header .inner { max-width: var(--container); }
.tag-header h1, .author-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--heading);
    margin: 0 0 0.5rem;
}
.tag-header p, .author-header p {
    color: var(--muted);
    font-size: 1rem;
    margin: 0;
    max-width: 640px;
}

/* ----- 12. Misc ----- */
.no-image-link { color: inherit; }
mark {
    background: var(--selection);
    color: var(--heading);
    padding: 0.05em 0.2em;
    border-radius: 2px;
}
.read-more-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
    border-top: 1px solid var(--border-soft);
}
.read-more-wrap h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading);
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}
.read-more {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* =========================================================
   13. HOC Home — B2B 컨설팅 사이트 구조 (buildableseo.io 참고)
   ========================================================= */

/* 공용 — 섹션 헤드 */
.hoc-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}
.hoc-section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-dark);
    background: var(--accent-soft);
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    margin: 0 0 1rem;
}
.hoc-section-eyebrow-inline { display: inline-block; margin: 0; }
.hoc-section-title {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.3;
    color: var(--heading);
    margin: 0 0 0.8rem;
}
.hoc-section-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 767px) {
    .hoc-section-title { font-size: 1.5rem; }
    .hoc-section-head { margin-bottom: 2rem; }
}

/* 공용 — 버튼 (Wise 스타일: pill + bright green high-contrast) */
.hoc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 1rem 1.8rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    letter-spacing: -0.01em;
    transition: transform 0.15s ease, box-shadow 0.18s ease, background 0.15s ease;
    border: 1px solid transparent;
}
.hoc-btn:hover { text-decoration: none; transform: translateY(-1px); }
.hoc-btn-primary {
    background: var(--accent-bright);
    color: var(--heading);
    box-shadow: 0 6px 20px rgba(159, 232, 112, 0.35);
}
.hoc-btn-primary:hover {
    background: #B5F088;
    color: var(--heading);
    box-shadow: 0 10px 28px rgba(159, 232, 112, 0.45);
}
.hoc-btn-secondary {
    background: var(--accent);
    color: #fff;
}
.hoc-btn-secondary:hover { background: var(--accent-dark); color: #fff; }
.hoc-btn-light {
    background: #fff;
    color: var(--heading);
    border-color: var(--border);
}
.hoc-btn-light:hover { background: var(--surface-warm); color: var(--heading); border-color: var(--accent); }
.hoc-btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.hoc-btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.hoc-btn-ghost-light {
    background: transparent;
    color: var(--ink);
    border-color: rgba(11,18,32,0.18);
}
.hoc-btn-ghost-light:hover { background: rgba(11,18,32,0.04); color: var(--ink); border-color: rgba(11,18,32,0.32); }

/* ----- 13.1 Hero — Wise 라임 그린 + Notion 따뜻 베이지 ----- */
.hoc-hero {
    padding: 5.5rem 1.25rem 4.5rem;
    background:
        radial-gradient(ellipse 70% 55% at 50% 0%, rgba(159, 232, 112, 0.22) 0%, transparent 65%),
        var(--bg);
    text-align: center;
    border-bottom: 1px solid var(--border-soft);
}
.hoc-hero .inner { max-width: 920px; }
.hoc-hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--heading);
    background: var(--accent-bright);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.02em;
    margin-bottom: 1.6rem;
}
.hoc-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.2;
    color: var(--heading);
    margin: 0 0 1.4rem;
}
.hoc-hero-accent {
    background: linear-gradient(180deg, transparent 62%, var(--accent-bright) 62%);
    padding: 0 0.12em;
    border-radius: 2px;
}
.hoc-hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 2.2rem;
}
.hoc-hero-cta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}
@media (max-width: 540px) {
    .hoc-hero-cta { flex-direction: column; }
    .hoc-hero-cta .hoc-btn { width: 100%; max-width: 320px; justify-content: center; }
}
.hoc-hero-note {
    font-size: 0.82rem;
    color: var(--muted);
    letter-spacing: -0.005em;
}
@media (max-width: 767px) {
    .hoc-hero { padding: 3rem 1.25rem 2.5rem; }
    .hoc-hero-title { font-size: 2rem; }
    .hoc-hero-sub { font-size: 1rem; }
}

/* ----- 13.2 Pain points (4 페르소나) ----- */
.hoc-pain {
    padding: 5rem 1.25rem;
    background: var(--surface);
}
.hoc-pain .inner { max-width: 1100px; }
.hoc-pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
}
.hoc-pain-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.8rem;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hoc-pain-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(11,18,32,0.08); }
.hoc-pain-card-orange { border-top: 4px solid var(--orange); }
.hoc-pain-card-blue { border-top: 4px solid var(--blue); }
.hoc-pain-tag {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 999px;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.hoc-pain-card-orange .hoc-pain-tag { background: var(--orange-soft); color: var(--orange-dark); }
.hoc-pain-card-blue .hoc-pain-tag { background: var(--blue-soft); color: var(--blue-dark); }
.hoc-pain-quote {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.4;
    color: var(--ink);
    margin: 0 0 0.8rem;
}
.hoc-pain-desc {
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--muted);
    margin: 0;
}
@media (max-width: 767px) {
    .hoc-pain { padding: 3rem 1.25rem; }
    .hoc-pain-grid { grid-template-columns: 1fr; gap: 1rem; }
    .hoc-pain-card { padding: 1.6rem 1.4rem; }
    .hoc-pain-quote { font-size: 1.15rem; }
}

/* ----- 13.3 Stats — 크림+다크그린 톤 ----- */
.hoc-stats {
    padding: 4.5rem 1.25rem;
    background: linear-gradient(180deg, #FAF7F0 0%, #F5F0E1 100%);
    color: #14532D;
    border-top: 1px solid rgba(0, 188, 104, 0.08);
    border-bottom: 1px solid rgba(0, 188, 104, 0.08);
}
.hoc-stats .inner { max-width: 1100px; }
.hoc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
    text-align: center;
}
.hoc-stat {
    position: relative;
}
.hoc-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(20, 83, 45, 0.12);
}
.hoc-stat-number {
    font-size: 3.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #0F3520;
    margin-bottom: 0.7rem;
    font-feature-settings: "tnum";
}
.hoc-stat-unit {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    margin-left: 0.3rem;
}
.hoc-stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(20, 83, 45, 0.7);
    margin: 0;
    letter-spacing: -0.01em;
}
@media (max-width: 767px) {
    .hoc-stats { padding: 2.8rem 1.25rem; }
    .hoc-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .hoc-stat:not(:last-child)::after { display: none; }
    .hoc-stat-number { font-size: 2.2rem; }
}

/* ----- 13.4 Cases ----- */
.hoc-cases {
    padding: 5rem 1.25rem;
    background: #fff;
}
.hoc-cases .inner { max-width: 1100px; }
.hoc-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
}
.hoc-case-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.2rem 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hoc-case-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(11,18,32,0.08); }
.hoc-case-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-dark);
    background: var(--accent-soft);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 1.2rem;
}
.hoc-case-headline {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.3;
    color: var(--ink);
    margin: 0 0 1rem;
}
.hoc-case-body {
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 1.6rem;
}
.hoc-case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    list-style: none;
    padding: 1.2rem 0 0;
    margin: 0;
    border-top: 1px dashed var(--border);
}
.hoc-case-stats li { display: flex; flex-direction: column; gap: 0.2rem; }
.hoc-case-stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -0.02em;
    line-height: 1;
}
.hoc-case-stat-label {
    font-size: 0.78rem;
    color: var(--muted);
}

/* 비포·애프터 증거 캡쳐 */
.hoc-case-proof {
    margin-top: 1.5rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--border-soft);
}
.hoc-case-proof-label {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}
.hoc-case-proof-frame {
    display: block;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: all 0.18s ease;
}
.hoc-case-proof-frame:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 22px rgba(0, 188, 104, 0.10);
    transform: translateY(-1px);
}
.hoc-case-proof-frame img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    object-position: top;
    display: block;
}
.hoc-case-quote {
    margin: 0.9rem 0 0;
    padding: 0.9rem 1rem;
    background: var(--accent-soft);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--heading);
    font-weight: 500;
}

@media (max-width: 767px) {
    .hoc-cases { padding: 3rem 1.25rem; }
    .hoc-cases-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .hoc-case-card { padding: 1.6rem 1.4rem; }
    .hoc-case-headline { font-size: 1.4rem; }
    .hoc-case-proof-frame img { max-height: 240px; }
}

/* ----- 13.5 Testimonials (말풍선) ----- */
.hoc-testimonials {
    padding: 5rem 1.25rem;
    background: var(--surface);
}
.hoc-testimonials .inner { max-width: 1100px; }

/* 추천 글 (featured) — 강조 그리드 */
.hoc-featured {
    padding: 4.5rem 1.25rem 3rem;
    background: var(--surface);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.hoc-featured .inner { max-width: 1200px; }
.hoc-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem 2rem;
    margin-top: 2rem;
}
@media (max-width: 1024px) {
    .hoc-featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .hoc-featured-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* 4주 변화 시리즈 (place-stats) */
.hoc-journey {
    padding: 5rem 1.25rem;
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface-warm) 100%);
}
.hoc-journey .inner { max-width: 1200px; }
.hoc-journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin: 2.4rem 0 1.5rem;
}
.hoc-journey-step {
    margin: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(11,18,32,0.04);
    display: flex;
    flex-direction: column;
}
.hoc-journey-label {
    background: var(--accent-bright);
    color: var(--heading);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    padding: 0.6rem 1rem;
    text-align: center;
}
.hoc-journey-step img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top;
    background: #fff;
    display: block;
}
.hoc-journey-step figcaption {
    padding: 1.1rem 1.2rem;
    border-top: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    background: #fff;
}
.hoc-journey-step figcaption strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -0.025em;
}
.hoc-journey-step figcaption span {
    font-size: 0.85rem;
    color: var(--muted);
}
.hoc-up {
    color: var(--accent-dark) !important;
    font-weight: 700 !important;
}
.hoc-up-strong {
    color: var(--accent-dark) !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
}
.hoc-journey-foot {
    text-align: center;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 1.5rem auto 0;
    max-width: 720px;
}
.hoc-journey-foot strong { color: var(--heading); }
@media (max-width: 980px) {
    .hoc-journey-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .hoc-journey-grid { grid-template-columns: 1fr; }
    .hoc-journey-step img { height: 300px; }
}

/* 카톡 캡쳐 그리드 — 가로 4:3 비율, 첫 번째는 큰 feat */
.hoc-kakao-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.hoc-kakao-card {
    margin: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(11,18,32,0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    display: flex;
    flex-direction: column;
}
.hoc-kakao-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(11,18,32,0.10);
}
.hoc-kakao-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    background: #fffbe6;
    display: block;
}
.hoc-kakao-card figcaption {
    padding: 1rem 1.2rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text);
    border-top: 1px solid var(--border-soft);
    background: #fff;
}
/* feat 카드는 2칸 차지 + 큰 이미지 */
.hoc-kakao-feat {
    grid-column: span 2;
    grid-row: span 1;
}
.hoc-kakao-feat img {
    height: 380px;
    object-position: center;
}
.hoc-kakao-feat figcaption {
    font-size: 1rem;
    font-weight: 500;
    padding: 1.2rem 1.4rem;
}
@media (max-width: 980px) {
    .hoc-kakao-grid { grid-template-columns: repeat(2, 1fr); }
    .hoc-kakao-feat { grid-column: span 2; }
}
@media (max-width: 600px) {
    .hoc-kakao-grid { grid-template-columns: 1fr; gap: 1.1rem; }
    .hoc-kakao-feat { grid-column: span 1; }
    .hoc-kakao-card img { height: 260px; }
    .hoc-kakao-feat img { height: 300px; }
}
.hoc-bubbles {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.hoc-bubble {
    max-width: 60%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.hoc-bubble-left { align-self: flex-start; align-items: flex-start; }
.hoc-bubble-right { align-self: flex-end; align-items: flex-end; }
.hoc-bubble-body {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    position: relative;
    box-shadow: 0 6px 18px rgba(11,18,32,0.04);
}
.hoc-bubble-body p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink);
    font-weight: 500;
}
/* 말풍선 꼬리 */
.hoc-bubble-left .hoc-bubble-body::before {
    content: "";
    position: absolute;
    left: -8px; bottom: 14px;
    width: 14px; height: 14px;
    background: #fff;
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transform: rotate(45deg);
    border-bottom-left-radius: 3px;
}
.hoc-bubble-right .hoc-bubble-body::before {
    content: "";
    position: absolute;
    right: -8px; bottom: 14px;
    width: 14px; height: 14px;
    background: #fff;
    border-right: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: rotate(45deg);
    border-top-right-radius: 3px;
}
.hoc-bubble-author {
    font-size: 0.82rem;
    color: var(--muted);
    padding: 0 0.4rem;
}
@media (max-width: 767px) {
    .hoc-testimonials { padding: 3rem 1.25rem; }
    .hoc-bubble { max-width: 88%; }
}

/* ----- 13.6 Resource ----- */
.hoc-resource {
    padding: 4rem 1.25rem;
    background: #fff;
}
.hoc-resource .inner { max-width: 1100px; }
.hoc-resource-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1.8rem;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-soft) 0%, #fff 100%);
    border: 1px solid var(--accent);
    border-radius: 18px;
    padding: 2.2rem 2.4rem;
}
.hoc-resource-icon {
    width: 80px; height: 80px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    border: 1px solid var(--accent-soft);
}
.hoc-resource-text { min-width: 0; }
.hoc-resource-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 0.4rem;
}
.hoc-resource-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0 0 0.5rem;
}
.hoc-resource-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--muted);
    margin: 0;
}
@media (max-width: 767px) {
    .hoc-resource-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.8rem 1.4rem;
        gap: 1.2rem;
    }
    .hoc-resource-icon { margin: 0 auto; }
    .hoc-resource-cta { display: flex; justify-content: center; }
    .hoc-resource-title { font-size: 1.25rem; }
}

/* ----- 13.7 CTA (대형) ----- */
.hoc-cta {
    padding: 5rem 1.25rem;
    background: #fff;
}
.hoc-cta .inner { max-width: 1100px; }
.hoc-cta-card {
    background: linear-gradient(135deg, var(--ink) 0%, #1f2937 100%);
    color: #fff;
    border-radius: 22px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hoc-cta-card::before {
    content: "";
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,138,0,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.hoc-cta-card::after {
    content: "";
    position: absolute;
    bottom: -50%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,188,104,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.hoc-cta-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--orange);
    background: rgba(255,138,0,0.15);
    padding: 5px 14px;
    border-radius: 999px;
    margin: 0 0 1.4rem;
    position: relative; z-index: 2;
}
.hoc-cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.3;
    margin: 0 0 1rem;
    position: relative; z-index: 2;
}
.hoc-cta-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.75);
    max-width: 640px;
    margin: 0 auto 2.2rem;
    position: relative; z-index: 2;
}
.hoc-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    position: relative; z-index: 2;
}
@media (max-width: 767px) {
    .hoc-cta { padding: 3rem 1.25rem; }
    .hoc-cta-card { padding: 2.4rem 1.6rem; border-radius: 16px; }
    .hoc-cta-title { font-size: 1.5rem; }
    .hoc-cta-desc { font-size: 0.95rem; }
}

/* ----- 13.8 FAQ ----- */
.hoc-faq {
    padding: 5rem 1.25rem 6rem;
    background: var(--surface);
}
.hoc-faq .inner { max-width: 820px; }
.hoc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.hoc-faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hoc-faq-item[open] {
    border-color: var(--accent);
    box-shadow: 0 6px 18px rgba(0,188,104,0.08);
}
.hoc-faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 1.6rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    gap: 1rem;
}
.hoc-faq-item summary::-webkit-details-marker { display: none; }
.hoc-faq-q {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.015em;
    line-height: 1.5;
}
.hoc-faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--surface);
    position: relative;
    transition: background 0.2s ease, transform 0.2s ease;
}
.hoc-faq-icon::before, .hoc-faq-icon::after {
    content: "";
    position: absolute;
    background: var(--ink);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, background 0.2s ease;
}
.hoc-faq-icon::before { width: 12px; height: 2px; }
.hoc-faq-icon::after { width: 2px; height: 12px; }
.hoc-faq-item[open] .hoc-faq-icon { background: var(--accent); }
.hoc-faq-item[open] .hoc-faq-icon::before,
.hoc-faq-item[open] .hoc-faq-icon::after { background: #fff; }
.hoc-faq-item[open] .hoc-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.hoc-faq-a {
    padding: 0 1.6rem 1.5rem;
    border-top: 1px solid var(--border-soft);
    margin-top: 0;
}
.hoc-faq-a p {
    margin: 1rem 0 0;
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--muted);
}
@media (max-width: 767px) {
    .hoc-faq { padding: 3rem 1.25rem 4rem; }
    .hoc-faq-item summary { padding: 1.1rem 1.3rem; }
    .hoc-faq-q { font-size: 0.97rem; }
    .hoc-faq-a { padding: 0 1.3rem 1.2rem; }
}

/* ----- 13.9 블로그 그리드 섹션 헤드 (홈에서만, 가운데 정렬 + more 링크) ----- */
.site-main .section-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin: 4rem 0 2.5rem;
    gap: 0.6rem;
}
.site-main .section-title {
    font-size: 2.1rem;
    letter-spacing: -0.03em;
}
.section-more {
    margin-top: 0.4rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--accent-dark);
}
.section-more:hover { color: var(--accent); text-decoration: none; }
@media (max-width: 767px) {
    .site-main .section-title { font-size: 1.5rem; }
}

/* ----- 13.10 Header CTA 버튼 (오렌지 강조) ----- */
.gh-head-button {
    background: var(--ink);
    color: #fff;
}
.gh-head-button:hover { background: #1f2937; color: #fff; }

/* ----- 13.11 Footer 신규 레이아웃 ----- */
.gh-foot {
    background: var(--ink);
    border-top: none;
    color: rgba(255,255,255,0.7);
    padding: 3rem 1.25rem 2rem;
    margin-top: 0;
}
.gh-foot .inner {
    max-width: 1100px;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
}
.gh-foot a { color: rgba(255,255,255,0.75); }
.gh-foot a:hover { color: #fff; text-decoration: none; }
.gh-foot-brand .gh-foot-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
}
.gh-foot-brand .gh-foot-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.gh-foot-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.gh-foot-nav a {
    font-size: 0.9rem;
    font-weight: 500;
}
/* ----- 13.12 박인찬 영상 섹션 ----- */
.hoc-video {
    padding: 4rem 1.25rem;
    background: var(--surface);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.hoc-video .inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.hoc-video .hoc-section-eyebrow {
    color: var(--accent);
    margin-bottom: 0.6rem;
}
.hoc-video .hoc-section-title {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.3;
    color: var(--heading);
    margin: 0 0 0.6rem;
}
.hoc-video-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 auto 2rem;
    max-width: 640px;
}
.hoc-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 188, 104, 0.10), 0 6px 16px rgba(0,0,0,0.06);
    background: #000;
}
.hoc-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.hoc-video-channel {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}
.hoc-video-channel:hover { color: var(--accent-dark); text-decoration: underline; }
@media (max-width: 767px) {
    .hoc-video { padding: 2.5rem 1rem; }
    .hoc-video .hoc-section-title { font-size: 1.4rem; }
    .hoc-video-sub { font-size: 0.92rem; }
}

.gh-foot-social {
    display: flex;
    gap: 0.6rem;
}
.gh-foot-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
    transition: all 0.18s ease;
}
.gh-foot-social-link:hover {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
}
.gh-foot-meta {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.2rem;
}
.gh-foot-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}
@media (max-width: 767px) {
    .gh-foot { padding: 2.5rem 1.25rem 1.5rem; }
}

