/* ═══════════════════════════════════════════════════════════════
   HOME v2 (/home2/) — 프론트페이지 후보 디자인 시스템
   - 조건부 로드: functions.php 의 is_page('home2') 분기로만 enqueue
   - prefix: fnc-h2-*  (기존 클래스와 충돌 없음)
   - 외부 import: Newsreader serif (Body), 기존 Inter (Headline)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400&display=swap');

.fnc-h2-page {
    --h2-primary: #012d1d;
    --h2-primary-soft: #1b4332;
    --h2-primary-tint: #f0f7f2;
    --h2-on-primary: #ffffff;
    --h2-emerald-50: #ecfdf5;
    --h2-emerald-300: #6ee7b7;
    --h2-emerald-700: #047857;
    --h2-emerald-900: #064e3b;
    --h2-surface: #f7f9fb;
    --h2-surface-low: #f2f4f6;
    --h2-surface-container: #eceef0;
    --h2-on-surface: #191c1e;
    --h2-on-surface-variant: #414844;
    --h2-outline: #717973;
    --h2-outline-variant: #c1c8c2;
    --h2-slate-100: #f1f5f9;
    --h2-slate-200: #e2e8f0;
    --h2-slate-300: #cbd5e1;
    --h2-slate-400: #94a3b8;
    --h2-slate-500: #64748b;
    --h2-slate-600: #475569;
    --h2-amber-600: #d97706;
    --h2-font-headline: 'Inter', 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', system-ui, sans-serif;
    --h2-font-body: 'Newsreader', 'Pretendard Variable', Pretendard, Georgia, 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
    --h2-font-label: 'Inter', 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', system-ui, sans-serif;

    background: var(--h2-surface);
    color: var(--h2-on-surface);
    font-family: var(--h2-font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.fnc-h2-page * { box-sizing: border-box; }
.fnc-h2-page img { display: block; max-width: 100%; height: auto; }
.fnc-h2-page a { text-decoration: none; color: inherit; transition: color .2s ease, opacity .2s ease, background .2s ease; }

.fnc-h2-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Hero ─────────────────────────────────────────────────── */
.fnc-h2-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 32px 0 64px;
}
@media (min-width: 900px) {
    .fnc-h2-hero { grid-template-columns: 8fr 4fr; }
}
.fnc-h2-hero__main {
    background: #fff;
    border: 1px solid var(--h2-slate-200);
    border-radius: 12px;
    overflow: hidden;
}
.fnc-h2-hero__main-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--h2-slate-100);
}
.fnc-h2-hero__main-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.fnc-h2-hero__main:hover .fnc-h2-hero__main-img img { transform: scale(1.04); }
.fnc-h2-hero__main-body { padding: 32px; }
.fnc-h2-hero__title {
    font-family: var(--h2-font-headline);
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--h2-primary);
    margin: 16px 0 16px;
}
.fnc-h2-hero__lede {
    font-family: var(--h2-font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--h2-on-surface-variant);
    margin: 0 0 24px;
    max-width: 36em;
}
.fnc-h2-hero__side { display: flex; flex-direction: column; gap: 24px; }
.fnc-h2-hero__side-card {
    background: #fff;
    border: 1px solid var(--h2-slate-200);
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.fnc-h2-hero__side-img { height: 192px; overflow: hidden; }
.fnc-h2-hero__side-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.fnc-h2-hero__side-card:hover .fnc-h2-hero__side-img img { transform: scale(1.04); }
.fnc-h2-hero__side-body { padding: 24px; }
.fnc-h2-hero__side-title {
    font-family: var(--h2-font-headline);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--h2-primary);
    margin: 8px 0 8px;
}
.fnc-h2-hero__side-desc {
    font-family: var(--h2-font-body);
    font-size: 1rem;
    color: var(--h2-on-surface-variant);
    margin: 0;
    line-height: 1.55;
}

/* ── About strip (Hero 아래 미션 한 줄 띠) ──────────────────── */
.fnc-h2-about {
    margin-bottom: 64px;
    padding: 36px 40px;
    background: linear-gradient(135deg, #012d1d 0%, #083d2a 100%);
    border-radius: 12px;
    border-left: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.fnc-h2-about__content {
    flex: 1;
    min-width: 280px;
}
.fnc-h2-about__badge {
    display: inline-block;
    font-family: var(--h2-font-label);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--h2-emerald-300);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.fnc-h2-about__title {
    font-family: var(--h2-font-headline);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
    word-break: keep-all;
}
.fnc-h2-about__lede {
    font-family: var(--h2-font-body);
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    word-break: keep-all;
    max-width: 56em;
}
.fnc-h2-about__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    font-family: var(--h2-font-label);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.32);
    white-space: nowrap;
    transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.fnc-h2-about__cta:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff !important;
    transform: translateX(2px);
}
.fnc-h2-about__cta .material-symbols-outlined { font-size: 18px; }

@media (max-width: 700px) {
    .fnc-h2-about {
        margin-bottom: 40px;
        padding: 24px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .fnc-h2-about__title { font-size: 1.15rem; }
    .fnc-h2-about__cta { width: 100%; justify-content: center; }
}

/* ── Tag chip ──────────────────────────────────────────────── */
.fnc-h2-chip {
    display: inline-block;
    padding: 4px 12px;
    background: var(--h2-emerald-50);
    color: var(--h2-emerald-900);
    font-family: var(--h2-font-label);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 4px;
    text-transform: uppercase;
}
.fnc-h2-chip--sm { padding: 2px 8px; font-size: 0.65rem; }

/* ── Primary button ────────────────────────────────────────── */
.fnc-h2-page a.fnc-h2-btn,
.fnc-h2-page button.fnc-h2-btn,
.fnc-h2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    background: var(--h2-primary);
    color: #ffffff !important;
    font-family: var(--h2-font-label);
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s ease;
    text-decoration: none;
}
.fnc-h2-page a.fnc-h2-btn:hover,
.fnc-h2-btn:hover { background: var(--h2-primary-soft); color: #ffffff !important; }
.fnc-h2-btn--block { width: 100%; }

/* ── 12-col main + sidebar layout ─────────────────────────── */
.fnc-h2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 1024px) {
    .fnc-h2-grid { grid-template-columns: 8fr 4fr; }
}
.fnc-h2-main { display: flex; flex-direction: column; gap: 64px; }
.fnc-h2-aside { display: flex; flex-direction: column; gap: 40px; }

/* ── Section header (icon + title + cta) ──────────────────── */
.fnc-h2-sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid var(--h2-slate-200);
    padding-bottom: 16px;
    margin-bottom: 32px;
    gap: 16px;
}
.fnc-h2-sec-head__title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}
.fnc-h2-sec-head__title h3 {
    font-family: var(--h2-font-headline);
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--h2-primary);
    margin: 0;
    letter-spacing: -0.01em;
}
.fnc-h2-sec-head__title .material-symbols-outlined { color: var(--h2-primary); font-size: 28px; }
.fnc-h2-sec-head__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--h2-font-label);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--h2-on-surface-variant);
    white-space: nowrap;
}
.fnc-h2-sec-head__cta:hover { color: var(--h2-primary); }
.fnc-h2-sec-head__cta .material-symbols-outlined { font-size: 16px; }

/* ── Deep analysis (horizontal feature) ───────────────────── */
.fnc-h2-deep-list { display: flex; flex-direction: column; gap: 40px; }
.fnc-h2-deep-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}
@media (min-width: 700px) {
    .fnc-h2-deep-item { grid-template-columns: 5fr 7fr; gap: 32px; }
}
.fnc-h2-deep-img { overflow: hidden; border-radius: 8px; }
.fnc-h2-deep-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .5s ease;
}
.fnc-h2-deep-item:hover .fnc-h2-deep-img img { transform: scale(1.04); }
.fnc-h2-deep-eyebrow {
    display: block;
    margin-bottom: 8px;
    font-family: var(--h2-font-label);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--h2-outline);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.fnc-h2-deep-title {
    font-family: var(--h2-font-headline);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--h2-primary);
    margin: 0 0 12px;
    transition: color .2s ease;
}
.fnc-h2-deep-item:hover .fnc-h2-deep-title { color: var(--h2-primary-soft); }
.fnc-h2-deep-desc {
    font-family: var(--h2-font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--h2-on-surface-variant);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fnc-h2-deep-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--h2-font-label);
    font-size: 0.75rem;
    color: var(--h2-outline);
}
.fnc-h2-deep-meta .material-symbols-outlined { font-size: 16px; }

/* ── Data insight block (풀폭 3-col, globaltrends-block 패턴) ── */
.fnc-h2-data-block {
    margin-top: 80px;
    padding: 64px 0;
    border-top: 1px solid var(--h2-slate-200);
}
.fnc-h2-data-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 16px;
}
.fnc-h2-data-block__head-title {
    display: flex;
    align-items: center;
    gap: 12px;
}
.fnc-h2-data-block__head-title .material-symbols-outlined {
    color: var(--h2-primary);
    font-size: 28px;
}
.fnc-h2-data-block__head h3 {
    font-family: var(--h2-font-headline);
    font-size: 2rem;
    color: var(--h2-primary);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.fnc-h2-data-block__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--h2-font-label);
    font-size: 0.875rem;
    color: var(--h2-primary);
    font-weight: 500;
    white-space: nowrap;
}
.fnc-h2-data-block__cta:hover { text-decoration: underline; }
.fnc-h2-data-block__cta .material-symbols-outlined { font-size: 18px; }

.fnc-h2-data-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 700px) {
    .fnc-h2-data-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    /* 풀폭 3-col */
    .fnc-h2-data-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 700px) {
    .fnc-h2-data-block { margin-top: 48px; padding: 40px 0; }
    .fnc-h2-data-block__head h3 { font-size: 1.4rem; }
    .fnc-h2-data-block__head-title .material-symbols-outlined { font-size: 22px; }
}
.fnc-h2-data-card {
    background: var(--h2-surface-low);
    border: 1px solid var(--h2-slate-200);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}
.fnc-h2-data-card__label {
    font-family: var(--h2-font-label);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--h2-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 16px;
}
.fnc-h2-data-card__num-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}
.fnc-h2-data-card__num {
    font-family: var(--h2-font-headline);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--h2-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}
.fnc-h2-data-card__trend--down { color: var(--h2-emerald-700); }
.fnc-h2-data-card__trend--up { color: var(--h2-amber-600); }
.fnc-h2-data-card__desc {
    font-family: var(--h2-font-body);
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--h2-on-surface-variant);
    margin: 0;
}
.fnc-h2-data-card__footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--h2-slate-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--h2-font-label);
    font-size: 0.75rem;
    color: var(--h2-outline);
}

/* ── Topic 2-card grid (Food Security / etc) ──────────────── */
.fnc-h2-topic-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 700px) {
    .fnc-h2-topic-grid { grid-template-columns: 1fr 1fr; }
}
.fnc-h2-topic-card { display: flex; flex-direction: column; gap: 16px; }
.fnc-h2-topic-card img {
    width: 100%;
    height: 224px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--h2-slate-100);
}
.fnc-h2-topic-card h4 {
    font-family: var(--h2-font-headline);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--h2-on-surface);
    margin: 0;
    cursor: pointer;
    transition: color .2s ease;
}
.fnc-h2-topic-card:hover h4 { color: var(--h2-primary-soft); }
.fnc-h2-topic-card p {
    font-family: var(--h2-font-body);
    font-size: 0.95rem;
    color: var(--h2-on-surface-variant);
    margin: 0;
    line-height: 1.55;
}
.fnc-h2-topic-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--h2-font-label);
    font-size: 0.75rem;
    color: var(--h2-outline);
}

/* ── Horizontal item (Agri-Energy section) ────────────────── */
.fnc-h2-hitem-list { display: flex; flex-direction: column; gap: 24px; }
.fnc-h2-hitem {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all .2s ease;
}
@media (min-width: 700px) {
    .fnc-h2-hitem { flex-direction: row; gap: 24px; }
}
.fnc-h2-hitem:hover { background: #fff; border-color: var(--h2-slate-200); }
.fnc-h2-hitem img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    border-radius: 6px;
}
@media (min-width: 700px) {
    .fnc-h2-hitem img { width: 192px; flex-shrink: 0; }
}
.fnc-h2-hitem__body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.fnc-h2-hitem__title {
    font-family: var(--h2-font-headline);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--h2-on-surface);
    margin: 0;
    line-height: 1.3;
    transition: color .2s ease;
}
.fnc-h2-hitem:hover .fnc-h2-hitem__title { color: var(--h2-primary); }
.fnc-h2-hitem__desc {
    font-family: var(--h2-font-body);
    font-size: 0.95rem;
    color: var(--h2-on-surface-variant);
    margin: 0;
    line-height: 1.55;
}
.fnc-h2-hitem__meta {
    font-family: var(--h2-font-label);
    font-size: 0.75rem;
    color: var(--h2-outline);
}

/* ── Sidebar boxes ────────────────────────────────────────── */
.fnc-h2-aside-box {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--h2-slate-200);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.fnc-h2-aside-box__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.fnc-h2-aside-box__head .material-symbols-outlined {
    color: var(--h2-primary);
    font-size: 22px;
}
.fnc-h2-aside-box__head h3 {
    font-family: var(--h2-font-label);
    font-size: 0.8rem;
    color: var(--h2-primary);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
}
.fnc-h2-aside-event__date {
    color: var(--h2-primary);
    font-weight: 700;
    font-family: var(--h2-font-label);
    font-size: 0.875rem;
    letter-spacing: 0.04em;
}
.fnc-h2-aside-event__title {
    font-family: var(--h2-font-headline);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--h2-on-surface);
    margin: 4px 0 16px;
    line-height: 1.35;
}
.fnc-h2-aside-event__desc {
    font-family: var(--h2-font-body);
    font-size: 0.95rem;
    color: var(--h2-on-surface-variant);
    margin: 0 0 24px;
    line-height: 1.55;
}

.fnc-h2-newsletter {
    background: var(--h2-primary);
    color: var(--h2-on-primary);
    padding: 32px;
    border-radius: 12px;
}
.fnc-h2-newsletter h3 {
    font-family: var(--h2-font-headline);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 16px;
}
.fnc-h2-newsletter p {
    font-family: var(--h2-font-body);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 24px;
    opacity: 0.9;
}
.fnc-h2-newsletter input[type="email"] {
    width: 100%;
    background: #fff;
    color: var(--h2-on-surface);
    border: none;
    border-radius: 6px;
    padding: 12px 14px;
    font-family: var(--h2-font-label);
    font-size: 0.875rem;
    margin-bottom: 12px;
    box-sizing: border-box;
}
.fnc-h2-newsletter input[type="email"]:focus { outline: 2px solid var(--h2-emerald-300); }
.fnc-h2-newsletter button {
    width: 100%;
    padding: 12px;
    background: var(--h2-primary-tint);
    color: var(--h2-primary);
    border: none;
    border-radius: 6px;
    font-family: var(--h2-font-label);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s ease;
}
.fnc-h2-newsletter button:hover { opacity: 0.9; }
.fnc-h2-newsletter__note {
    font-family: var(--h2-font-label);
    font-size: 0.72rem;
    margin: 24px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.18);
    opacity: 0.75;
    text-align: center;
}
.fnc-h2-newsletter input[type="email"]:invalid:not(:placeholder-shown) {
    outline: 2px solid #ffb3b3;
    box-shadow: 0 0 0 2px rgba(255,179,179,.25);
}

.fnc-h2-policy {
    background: var(--h2-emerald-900);
    color: #fff;
    padding: 32px;
    border-radius: 12px;
}
.fnc-h2-policy__head {
    margin-bottom: 16px;
}
.fnc-h2-policy__head h3 {
    font-family: var(--h2-font-headline);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
    letter-spacing: -0.01em;
}
.fnc-h2-policy__list { display: flex; flex-direction: column; gap: 16px; }
.fnc-h2-policy__item {
    border-bottom: 1px solid #1b4332;
    padding-bottom: 16px;
    display: block;
}
.fnc-h2-policy__list .fnc-h2-policy__item:last-child { border-bottom: none; padding-bottom: 0; }
.fnc-h2-policy__item:hover h4 { color: var(--h2-emerald-300); }
.fnc-h2-policy__item h4 {
    font-family: var(--h2-font-headline);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
    transition: color .2s ease;
}
.fnc-h2-policy__item p {
    font-family: var(--h2-font-body);
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255,255,255,0.78);
    line-height: 1.5;
}
.fnc-h2-policy__cta {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 10px;
    border: 1px solid var(--h2-primary-soft);
    background: transparent;
    color: #fff;
    border-radius: 6px;
    font-family: var(--h2-font-label);
    font-size: 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: background .2s ease;
}
.fnc-h2-policy__cta:hover { background: var(--h2-primary-soft); color: #fff; }

.fnc-h2-bulletins__head {
    font-family: var(--h2-font-label);
    font-size: 1.0625rem;
    color: var(--h2-primary);
    letter-spacing: 0.02em;
    text-transform: none;
    margin: 0 0 24px;
    font-weight: 700;
    border-left: 4px solid var(--h2-primary);
    padding: 4px 0 4px 16px;
}
.fnc-h2-bulletin {
    border-bottom: 1px solid var(--h2-slate-200);
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.fnc-h2-bulletin:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.fnc-h2-bulletin__date {
    font-family: var(--h2-font-label);
    font-size: 0.7rem;
    color: var(--h2-outline);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.fnc-h2-bulletin__title {
    font-family: var(--h2-font-headline);
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--h2-on-surface);
    margin-top: 4px;
    line-height: 1.4;
}
.fnc-h2-bulletin__title:hover { color: var(--h2-primary); }
.fnc-h2-bulletins__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-family: var(--h2-font-label);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--h2-primary);
    background: var(--h2-primary-tint);
    border: 1px solid rgba(1,45,29,.15);
    border-radius: 999px;
    padding: 8px 18px;
    transition: background .15s ease, border-color .15s ease;
}
.fnc-h2-bulletins__cta:hover {
    background: #d8ede2;
    border-color: rgba(1,45,29,.25);
    text-decoration: none;
}
.fnc-h2-bulletins__cta .material-symbols-outlined { font-size: 16px; }

.fnc-h2-fellows {
    background: var(--h2-surface-container);
    padding: 32px;
    border-radius: 12px;
}
.fnc-h2-fellows h3 {
    font-family: var(--h2-font-label);
    font-size: 0.8rem;
    color: var(--h2-primary);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-weight: 700;
}
.fnc-h2-fellows__list { display: flex; flex-direction: column; gap: 20px; }
.fnc-h2-fellow { display: flex; align-items: center; gap: 16px; }
.fnc-h2-fellow__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--h2-slate-300);
    flex-shrink: 0;
}
.fnc-h2-fellow__avatar img { width: 100%; height: 100%; object-fit: cover; }
.fnc-h2-fellow__avatar--initial {
    background: var(--h2-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--h2-font-headline);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
}
.fnc-h2-fellow__name {
    font-family: var(--h2-font-label);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--h2-primary);
    margin: 0;
}
.fnc-h2-fellow__role {
    font-family: var(--h2-font-label);
    font-size: 0.75rem;
    color: var(--h2-outline);
    margin: 2px 0 0;
}

/* ── Events section ────────────────────────────────────────── */
.fnc-h2-events-block {
    margin-top: 80px;
    padding: 64px 0;
    border-top: 1px solid var(--h2-slate-200);
}
.fnc-h2-events-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 16px;
}
.fnc-h2-events-block__head h3 {
    font-family: var(--h2-font-headline);
    font-size: 2rem;
    color: var(--h2-primary);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.fnc-h2-events-block__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--h2-font-label);
    font-size: 0.875rem;
    color: var(--h2-primary);
    font-weight: 500;
}
.fnc-h2-events-block__cta:hover { text-decoration: underline; }
.fnc-h2-events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 700px) {
    .fnc-h2-events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .fnc-h2-events-grid { grid-template-columns: repeat(4, 1fr); }
}
.fnc-h2-event-card {
    background: #fff;
    padding: 24px;
    border-top: 4px solid var(--h2-primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: box-shadow .2s ease;
}
.fnc-h2-event-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.fnc-h2-event-card--secondary { border-top-color: #545f72; }
.fnc-h2-event-card--accent { border-top-color: var(--h2-primary-soft); }
.fnc-h2-event-card--earth { border-top-color: var(--h2-amber-600); }
.fnc-h2-event-card__date {
    color: var(--h2-primary);
    font-family: var(--h2-font-label);
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: 0.04em;
}
.fnc-h2-event-card--secondary .fnc-h2-event-card__date { color: #545f72; }
.fnc-h2-event-card--accent .fnc-h2-event-card__date { color: var(--h2-primary-soft); }
.fnc-h2-event-card--earth .fnc-h2-event-card__date { color: var(--h2-amber-600); }
.fnc-h2-event-card__title {
    font-family: var(--h2-font-headline);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--h2-on-surface);
    margin: 0 0 12px;
}
.fnc-h2-event-card__desc {
    font-family: var(--h2-font-body);
    font-size: 0.95rem;
    color: var(--h2-on-surface-variant);
    margin: 0 0 16px;
    line-height: 1.55;
}
.fnc-h2-event-card__loc {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--h2-font-label);
    font-size: 0.75rem;
    color: var(--h2-primary);
}
.fnc-h2-event-card__loc .material-symbols-outlined { font-size: 16px; }

/* ── Global Trends Block (전역 4-카드 가로 배치) ────────────── */
.fnc-h2-globaltrends-block {
    margin-top: 80px;
    padding: 64px 0;
    border-top: 1px solid var(--h2-slate-200);
}
.fnc-h2-globaltrends-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 16px;
}
.fnc-h2-globaltrends-block__head-title {
    display: flex;
    align-items: center;
    gap: 12px;
}
.fnc-h2-globaltrends-block__head-title .material-symbols-outlined {
    color: var(--h2-primary);
    font-size: 28px;
}
.fnc-h2-globaltrends-block__head h3 {
    font-family: var(--h2-font-headline);
    font-size: 2rem;
    color: var(--h2-primary);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.fnc-h2-globaltrends-block__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--h2-font-label);
    font-size: 0.875rem;
    color: var(--h2-primary);
    font-weight: 500;
    white-space: nowrap;
}
.fnc-h2-globaltrends-block__cta:hover { text-decoration: underline; }
.fnc-h2-globaltrends-block__cta .material-symbols-outlined { font-size: 18px; }

.fnc-h2-globaltrends-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 700px) {
    .fnc-h2-globaltrends-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .fnc-h2-globaltrends-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* 모바일 대응 */
@media (max-width: 700px) {
    .fnc-h2-globaltrends-block { margin-top: 48px; padding: 40px 0; }
    .fnc-h2-globaltrends-block__head h3 { font-size: 1.4rem; }
    .fnc-h2-globaltrends-block__head-title .material-symbols-outlined { font-size: 22px; }
}
@media (max-width: 420px) {
    .fnc-h2-globaltrends-block { padding: 32px 0; }
}

/* ── Research highlights (4-grid) ──────────────────────────── */
.fnc-h2-research-block {
    margin-top: 80px;
    padding: 64px 0;
    border-top: 1px solid var(--h2-slate-200);
}
.fnc-h2-research-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 16px;
}
.fnc-h2-research-block__head h3 {
    font-family: var(--h2-font-headline);
    font-size: 2rem;
    color: var(--h2-primary);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.fnc-h2-research-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 700px) {
    /* 2x2 — 4개 카드를 2열×2행으로 */
    .fnc-h2-research-grid { grid-template-columns: repeat(2, 1fr); }
}
.fnc-h2-research-card {
    background: #fff;
    border: 1px solid var(--h2-slate-200);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.fnc-h2-research-card__img {
    height: 160px;
    overflow: hidden;
    background: var(--h2-slate-100);
}
.fnc-h2-research-card__img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.fnc-h2-research-card:hover .fnc-h2-research-card__img img { transform: scale(1.05); }
.fnc-h2-research-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.fnc-h2-research-card__title {
    font-family: var(--h2-font-headline);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--h2-primary);
    margin: 0 0 12px;
}
.fnc-h2-research-card__desc {
    font-family: var(--h2-font-body);
    font-size: 0.875rem;
    color: var(--h2-on-surface-variant);
    margin: 0 0 16px;
    flex: 1;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fnc-h2-research-card__more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--h2-font-label);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--h2-primary);
}
.fnc-h2-research-card__more:hover { text-decoration: underline; }
.fnc-h2-research-card__more .material-symbols-outlined { font-size: 16px; }

/* ── Support Strip (푸터 위 후원 CTA 띠) ───────────────────── */
.fnc-h2-support-strip {
    margin-top: 80px;
    padding: 56px 48px;
    background: linear-gradient(135deg, #f6f3eb 0%, #efe9da 100%);
    border-radius: 16px;
    border: 1px solid rgba(13,99,27,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}
.fnc-h2-support-strip__content { flex: 1; min-width: 280px; }
.fnc-h2-support-strip__eyebrow {
    display: inline-block;
    font-family: var(--h2-font-label);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--h2-primary);
    margin-bottom: 10px;
}
.fnc-h2-support-strip__title {
    font-family: var(--h2-font-headline);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--h2-primary);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    word-break: keep-all;
}
.fnc-h2-support-strip__lede {
    font-family: var(--h2-font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--h2-on-surface-variant);
    margin: 0;
    max-width: 50em;
    word-break: keep-all;
}
.fnc-h2-support-strip__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.fnc-h2-support-strip__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--h2-primary);
    color: #fff !important;
    font-family: var(--h2-font-label);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all .2s ease;
    white-space: nowrap;
}
.fnc-h2-support-strip__cta:hover {
    background: var(--h2-primary-soft);
    color: #fff !important;
    transform: translateX(2px);
}
.fnc-h2-support-strip__cta .material-symbols-outlined { font-size: 20px; font-variation-settings: 'FILL' 1; }
.fnc-h2-support-strip__sub {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 22px;
    background: transparent;
    color: var(--h2-primary) !important;
    border: 1.5px solid rgba(13,99,27,0.3);
    font-family: var(--h2-font-label);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    transition: background .2s ease;
    white-space: nowrap;
}
.fnc-h2-support-strip__sub:hover { background: rgba(13,99,27,0.08); }

@media (max-width: 700px) {
    .fnc-h2-support-strip {
        margin-top: 48px;
        padding: 32px 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .fnc-h2-support-strip__title { font-size: 1.25rem; }
    .fnc-h2-support-strip__actions { flex-direction: column; }
    .fnc-h2-support-strip__cta,
    .fnc-h2-support-strip__sub { width: 100%; justify-content: center; }
}

/* ── 본문 wrapper 너비/패딩 강제 (page.html 기본 제약 우회) ── */
.fnc-h2-page .fnc-h2-container { box-sizing: border-box; }
.wp-block-post-content:has(.fnc-h2-page) { max-width: none !important; padding: 0 !important; }

/* ── 한글 줄바꿈 보호 (단어 단위 줄바꿈) ──────────────────── */
.fnc-h2-hero__title,
.fnc-h2-hero__side-title,
.fnc-h2-deep-title,
.fnc-h2-topic-card h4,
.fnc-h2-hitem__title,
.fnc-h2-research-card__title,
.fnc-h2-event-card__title,
.fnc-h2-aside-event__title,
.fnc-h2-policy__item h4,
.fnc-h2-bulletin__title,
.fnc-h2-events-block__head h3,
.fnc-h2-research-block__head h3,
.fnc-h2-sec-head__title h3 { word-break: keep-all; }
.fnc-h2-hero__lede,
.fnc-h2-hero__side-desc,
.fnc-h2-deep-desc,
.fnc-h2-topic-card p,
.fnc-h2-hitem__desc,
.fnc-h2-data-card__desc,
.fnc-h2-aside-event__desc,
.fnc-h2-policy__item p,
.fnc-h2-research-card__desc,
.fnc-h2-event-card__desc,
.fnc-h2-newsletter p { word-break: keep-all; }

/* ── 모바일·소형 태블릿 (≤700px) ───────────────────────────── */
@media (max-width: 700px) {
    .fnc-h2-container { padding: 0 16px; }
    .fnc-h2-hero { gap: 16px; margin: 16px 0 40px; }
    .fnc-h2-hero__title { font-size: 1.65rem; }
    .fnc-h2-hero__lede { font-size: 1rem; }
    .fnc-h2-hero__main-body { padding: 24px 20px; }
    .fnc-h2-hero__side-body { padding: 20px; }
    .fnc-h2-hero__side-img { height: 168px; }
    .fnc-h2-hero__side-title { font-size: 1.1rem; }

    .fnc-h2-grid { gap: 40px; }
    .fnc-h2-main { gap: 48px; }
    .fnc-h2-aside { gap: 32px; }

    .fnc-h2-sec-head { padding-bottom: 12px; margin-bottom: 24px; }
    .fnc-h2-sec-head__title h3 { font-size: 1.3rem; }
    .fnc-h2-sec-head__title .material-symbols-outlined { font-size: 22px; }

    .fnc-h2-deep-list { gap: 32px; }
    .fnc-h2-deep-title { font-size: 1.2rem; }
    .fnc-h2-deep-desc { font-size: 0.95rem; }

    .fnc-h2-data-card { padding: 20px; }
    .fnc-h2-data-card__num { font-size: 1.875rem; }

    .fnc-h2-topic-card img { height: 200px; }
    .fnc-h2-topic-card h4 { font-size: 1.1rem; }

    .fnc-h2-hitem { padding: 12px; }
    .fnc-h2-hitem img { height: 180px; }
    .fnc-h2-hitem__title { font-size: 1.1rem; }

    .fnc-h2-aside-box,
    .fnc-h2-newsletter,
    .fnc-h2-policy,
    .fnc-h2-fellows { padding: 24px 20px; }
    .fnc-h2-aside-event__title { font-size: 1.1rem; }

    .fnc-h2-events-block,
    .fnc-h2-research-block { margin-top: 48px; padding: 40px 0; }
    .fnc-h2-events-block__head h3,
    .fnc-h2-research-block__head h3 { font-size: 1.4rem; }
    .fnc-h2-event-card { padding: 20px; }
    .fnc-h2-event-card__title { font-size: 1.05rem; }
}

/* ── 작은 모바일 (≤420px) ───────────────────────────────── */
@media (max-width: 420px) {
    .fnc-h2-hero__title { font-size: 1.4rem; }
    .fnc-h2-hero__lede { font-size: 0.95rem; }
    .fnc-h2-hero__main-body { padding: 20px 16px; }
    .fnc-h2-hero__side-body { padding: 16px; }

    .fnc-h2-aside-box,
    .fnc-h2-newsletter,
    .fnc-h2-policy,
    .fnc-h2-fellows { padding: 20px 16px; }
    .fnc-h2-events-block,
    .fnc-h2-research-block { padding: 32px 0; }
    .fnc-h2-event-card { padding: 16px; }
}

/* ── 가로 스크롤 방지 (안전장치) ─────────────────────────── */
.fnc-h2-page { overflow-x: hidden; }
.fnc-h2-page img,
.fnc-h2-page video,
.fnc-h2-page iframe { max-width: 100%; }

