/* song theme — brand refresh (PPT 2026) */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap');

:root {
    --brand-dark:   #36472F;
    --brand-green:  #008456;
    --brand-grey:   #6B6E70;
    --brand-grey-light: #E8E9EA;
    --green-dark:   #36472F;
    --green-main:   #008456;
    --green-mid:    #008456;
    --green-bright: #009B5A;
    --green-accent: #36472F;
    --green-light:  #f5f6f5;
    --green-pale:   #fafafa;
    --text-dark:    #1a1a1a;
    --text-gray:    #6B6E70;
    --font-kr: 'Pretendard', 'Noto Sans KR', sans-serif;
    --font-en: 'Montserrat', 'Pretendard', sans-serif;
    --font-serif: 'Nanum Myeongjo', 'Pretendard', serif;
    --wk-header-h:  112px;
    --wk-sub-hero-h: 220px;
    --wk-view-h:    calc(100vh - var(--wk-header-h));
    --wk-bridge-h:  60vh;
    /* 다음 섹션이 parallax 위로 미리 올라와 겹치는 양.
       클수록 더 빨리 덮음 (= parallax가 더 얇게 스쳐 지나감) */
    --wk-cover-overlap: calc(var(--wk-bridge-h) - 12vh);
    --transition:   0.3s ease;
    --radius:       8px;
    --shadow:       0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
}

/* Korean typography: word-level line breaks (board post body excluded) */
html,
body {
    word-break: keep-all;
    overflow-wrap: break-word;
    font-family: var(--font-kr);
    color: var(--text-dark);
    background: #fff;
}

#bo_v #bo_v_con,
#bo_v #bo_v_con * {
    word-break: break-all;
    overflow-wrap: anywhere;
}

/* donation sub page */
.wk-donation-page {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wk-donation-hero {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: end;
    padding: clamp(38px, 5vw, 64px);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(26,74,26,.95), rgba(45,122,45,.88)),
        url('../assets/img/green_heart.jpg') right center/cover no-repeat;
    color: #fff;
    box-shadow: 0 24px 70px rgba(26,74,26,.18);
}

.wk-donation-hero::before {
    content: '';
    position: absolute;
    right: -110px;
    top: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(139,195,74,.18);
}

.wk-donation-hero-copy,
.wk-donation-hero-panel {
    position: relative;
    z-index: 1;
}

.wk-donation-hero h2 {
    margin: 14px 0 18px;
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.06em;
}

.wk-donation-hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: 17px;
    line-height: 1.85;
    word-break: keep-all;
}

.wk-donation-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.wk-donation-primary,
.wk-donation-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.wk-donation-primary {
    background: #fff;
    color: var(--green-dark);
}

.wk-donation-secondary {
    border: 1px solid rgba(255,255,255,.42);
    color: #fff;
}

.wk-donation-hero-panel {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 24px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
}

.wk-donation-hero-panel strong {
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}

.wk-donation-hero-panel span {
    display: block;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
}

.wk-donation-intro {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.wk-donation-intro article,
.wk-donation-section,
.wk-donation-account {
    border: 1px solid rgba(105,177,33,.14);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(26,74,26,.08);
}

.wk-donation-intro article {
    position: relative;
    min-height: 210px;
    padding: 30px 28px;
}

.wk-donation-intro article span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 16px;
    background: var(--green-pale);
    color: var(--green-main);
    font-weight: 900;
}

.wk-donation-intro h3,
.wk-donation-section h3,
.wk-donation-account h3 {
    margin: 0;
    color: var(--green-dark);
    font-weight: 900;
    letter-spacing: -.04em;
}

.wk-donation-intro h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.wk-donation-intro p,
.wk-donation-section p,
.wk-donation-account p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.85;
    word-break: keep-all;
}

.wk-donation-section {
    padding: clamp(30px, 4vw, 46px);
}

.wk-donation-section-head {
    margin-bottom: 26px;
}

.wk-donation-section-head span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--green-bright);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.wk-donation-section-head h3,
.wk-donation-account h3 {
    font-size: clamp(26px, 3vw, 34px);
}

.wk-donation-section-head p {
    margin-top: 10px;
}

.wk-donation-method-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.wk-donation-method-grid article {
    padding: 26px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fbfefb, #f4fbf4);
}

.wk-donation-method-grid em {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--green-main);
    font-style: normal;
    font-size: 13px;
    font-weight: 900;
}

.wk-donation-method-grid strong {
    display: block;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 19px;
    font-weight: 900;
}

.wk-donation-method-grid a {
    color: var(--green-main);
    font-weight: 800;
    text-decoration: none;
}

.wk-donation-account {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
    gap: 28px;
    align-items: center;
    padding: clamp(30px, 4vw, 46px);
    background:
        radial-gradient(circle at top right, rgba(139,195,74,.16), transparent 34%),
        #fff;
}

.wk-donation-account dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.wk-donation-account dl div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(105,177,33,.16);
    border-radius: 16px;
    background: #fff;
}

.wk-donation-account dt,
.wk-donation-account dd {
    margin: 0;
    padding: 17px 18px;
}

.wk-donation-account dt {
    background: var(--green-pale);
    color: var(--green-dark);
    font-weight: 900;
    text-align: center;
}

.wk-donation-account dd {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 900;
}

.wk-donation-note {
    grid-column: 1 / -1;
    padding: 18px 20px;
    border-radius: 16px;
    background: #f8fbf2;
}

.wk-donation-table-wrap {
    overflow-x: auto;
}

.wk-donation-table {
    width: 100%;
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid rgba(105,177,33,.16);
    border-radius: 18px;
    background: #fff;
}

.wk-donation-table th,
.wk-donation-table td {
    padding: 18px 16px;
    border-right: 1px solid rgba(105,177,33,.12);
    border-bottom: 1px solid rgba(105,177,33,.12);
    color: var(--text-gray);
    line-height: 1.65;
    text-align: center;
    vertical-align: middle;
}

.wk-donation-table th {
    background: var(--green-pale);
    color: var(--green-dark);
    font-weight: 900;
}

.wk-donation-table tr:last-child th,
.wk-donation-table tr:last-child td {
    border-bottom: 0;
}

.wk-donation-table th:last-child,
.wk-donation-table td:last-child {
    border-right: 0;
}

.wk-donation-latest .lat {
    margin: 0;
    border: 0;
    background: transparent;
}

.wk-donation-latest .lat_title,
.wk-donation-latest .lt_more {
    display: none;
}

.wk-donation-latest .lat ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wk-donation-latest .lat li {
    position: relative;
    padding: 18px 20px;
    border: 1px solid rgba(105,177,33,.14);
    border-radius: 16px;
    background: #fbfefb;
    list-style: none;
}

.wk-donation-latest .lat li a {
    color: var(--text-dark);
    font-weight: 800;
    text-decoration: none;
}

.wk-donation-latest .lat li a:hover {
    color: var(--green-main);
}

.wk-donation-latest .lat .lt_info {
    margin-top: 8px;
    color: #8a9a8a;
    font-size: 13px;
}

@media (max-width: 900px) {
    .wk-donation-hero,
    .wk-donation-account {
        grid-template-columns: 1fr;
    }

    .wk-donation-intro,
    .wk-donation-method-grid {
        grid-template-columns: 1fr;
    }

    .wk-donation-hero-panel {
        max-width: 420px;
    }
}

@media (max-width: 520px) {
    .wk-donation-hero,
    .wk-donation-section,
    .wk-donation-account,
    .wk-donation-intro article {
        border-radius: 18px;
    }

    .wk-donation-hero {
        padding: 32px 24px;
    }

    .wk-donation-section,
    .wk-donation-account,
    .wk-donation-intro article {
        padding: 24px 20px;
    }

    .wk-donation-account dl div {
        grid-template-columns: 1fr;
    }

    .wk-donation-account dt {
        text-align: left;
    }
}

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

ul {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    list-style: none !important;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}

ul li {
    margin-left: 0 !important;
    margin-right: 0 !important;
    list-style: none !important;
}

ul li::marker {
    content: '' !important;
}

.sound_only {
    position: absolute; width: 1px; height: 1px; overflow: hidden;
    clip: rect(0,0,0,0); margin: -1px;
}

#hd_login_msg { display: none; }

/* ── header (logo + nav single row, songbockeun green) ── */
.wk-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--brand-dark);
    border-bottom: 3px solid var(--brand-green);
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.wk-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 40px;
    display: grid;
    grid-template-columns: minmax(140px, 18%) minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    position: relative;
}
.wk-logo {
    grid-column: 1;
}
.wk-logo img {
    height: 52px;
    width: auto;
    max-width: 240px;
    display: block;
}
.wk-nav {
    grid-column: 2;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wk-nav > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 920px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    gap: 8px;
}
.wk-nav > ul > li {
    position: relative;
    flex: 1 1 0;
    text-align: center;
}
.wk-nav > ul > li > a {
    display: block;
    padding: 14px 10px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 800;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color .2s;
    white-space: nowrap;
}
.wk-nav > ul > li > a:hover,
.wk-nav > ul > li.is-active > a {
    color: #fff;
}
.wk-nav .sub-menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    min-width: 200px;
    background: #fff;
    border-top: 3px solid var(--brand-green);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 200;
}
.wk-nav li:hover > .sub-menu { display: block; }
.wk-nav .sub-menu a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 700;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
}
.wk-nav .sub-menu a:hover {
    background: #f4fbf4;
    color: var(--green-main);
}
.wk-header-right {
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.wk-util {
    display: flex;
    gap: 12px;
    font-size: 12px;
}
.wk-util a { color: rgba(255,255,255,0.75); text-decoration: none; }
.wk-util a:hover { color: #fff; }

.wk-burger {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
}

/* ── section-unit scroll controller ── */
html.wk-snap-page {
    scroll-behavior: auto;
}

html.wk-fullpage-active,
body.wk-fullpage-active {
    height: 100%;
    overflow: hidden;
}

html.wk-fullpage-active .wk-fp-panel,
html.wk-fullpage-active .wk-fp-parallax {
    position: fixed !important;
    inset: 0;
    width: 100%;
    height: 100vh !important;
    min-height: 100vh !important;
    margin: 0 !important;
    overflow: hidden;
    visibility: hidden;
    will-change: transform;
    backface-visibility: hidden;
}

html.wk-fullpage-active .wk-fp-panel {
    z-index: 20;
    transform: translate3d(0, 100%, 0);
}

html.wk-fullpage-active .wk-fp-panel.is-active {
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

html.wk-fullpage-active .wk-fp-parallax {
    top: 0;
    z-index: 10;
}

#wk-hero.wk-scroll-panel {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    padding-top: var(--wk-header-h);
    z-index: 2;
    overflow: hidden;
    box-sizing: border-box;
}

.wk-scroll-cover {
    position: relative;
    z-index: 2;
}

.wk-scroll-cover-inner {
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
}

#wk-sec-memoir .wk-scroll-cover-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--wk-header-h);
    box-shadow: none;
}

#wk-sec-scholarship .wk-scroll-cover-inner {
    display: block;
}

#wk-sec-donation .wk-scroll-cover-inner {
    overflow: hidden;
    display: flex;
    align-items: stretch;
    background: var(--green-dark);
    padding: 0;
}

#wk-sec-partners .wk-scroll-cover-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    background: #f2f2f2;
    padding: calc(var(--wk-header-h) + 32px) 0 0;
}

#wk-sec-partners .wk-partners-inner {
    width: calc(100% - 40px);
    margin: auto;
}

.wk-footer-merged {
    width: 100%;
    max-width: none;
    margin-top: auto;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    background: var(--brand-grey-light, #eef0ee);
    border-top: 1px solid #d8dbd9;
    padding: 28px 20px;
    box-sizing: border-box;
}

/* parallax bridge — controlled by wk.js on the home page */
.wk-parallax-pass {
    position: relative;
    height: var(--wk-bridge-h);
    min-height: 400px;
    z-index: 1;
    pointer-events: none;
    background-image: none !important;
    background-attachment: scroll;
    margin: 0;
}
.wk-parallax-pass .wk-parallax-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: -18%;
    width: 100%;
    height: 136%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
    transform: translate3d(0, 0, 0);
}
.wk-parallax-pass .wk-parallax-overlay {
    z-index: 1;
}

/* ── full-screen sections ── */
.wk-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.wk-section-full {
    height: 100%;
    min-height: 100%;
}
.wk-section-75 {
    min-height: 100%;
}
.wk-section-text {
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 40px 20px;
}

/* memoir — section 2 */
.wk-memoir-section {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wk-memoir-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.55) 50%,
        rgba(0,0,0,0.65) 100%
    );
}
.wk-memoir-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 32px;
    max-width: 920px;
}
.wk-memoir-quote {
    margin: 0;
    color: #fff;
    font-size: clamp(22px, 3.8vw, 38px);
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: -0.02em;
    word-break: keep-all;
    text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.wk-memoir-link {
    display: inline-block;
    margin-top: 32px;
    padding: 12px 28px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: var(--radius);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
    background: rgba(26,74,26,0.35);
}
.wk-memoir-link:hover {
    background: rgba(105,177,33,0.55);
    border-color: var(--green-accent);
    color: #fff;
}

/* scholarship — songbockeun.org/v2 */
.wk-scholarship {
    background: var(--green-pale);
    position: relative;
    overflow: hidden;
}
.wk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.wk-section-label {
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--green-bright);
    background: rgba(105,177,33,0.1);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(105,177,33,0.3);
    white-space: nowrap;
}
.wk-section-label.is-light {
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}
.wk-section-header {
    text-align: center;
    margin: 20px 0 56px;
}
.wk-section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.25;
    color: var(--text-dark);
    margin: 0 0 16px;
}
.wk-section-title em {
    font-style: normal;
    color: var(--green-bright);
}
.wk-section-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}
.wk-sch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.wk-sch-card {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    display: block;
}
.wk-sch-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.wk-sch-card-inner {
    padding: 32px 24px;
    height: 100%;
    background: #fff;
    border-top: 4px solid var(--green-light);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color var(--transition);
    box-sizing: border-box;
}
.wk-sch-card:hover .wk-sch-card-inner { border-top-color: var(--green-bright); }
.wk-sch-card.is-primary .wk-sch-card-inner {
    border-top-color: var(--green-bright);
    background: linear-gradient(135deg, var(--green-main), var(--green-mid));
    color: #fff;
}
.wk-sch-num {
    font-size: 40px;
    font-weight: 900;
    color: var(--green-light);
    line-height: 1;
    opacity: 0.5;
}
.wk-sch-card.is-primary .wk-sch-num { color: rgba(255,255,255,0.3); }
.wk-sch-card h3 {
    font-size: 21.6px;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.3;
    margin: 0;
}
.wk-sch-card.is-primary h3 { color: #fff; }
.wk-sch-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}
.wk-sch-card.is-primary p { color: rgba(255,255,255,0.8); }
.wk-sch-img {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 72px;
    margin: 8px 0 4px;
}
.wk-sch-img picture,
.wk-sch-img img {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: contain;
}
.wk-sch-card.is-primary .wk-sch-img img {
    filter: none;
    opacity: 1;
}
.wk-dl-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.wk-dl-icons span {
    font-size: 11px;
    background: var(--green-pale);
    color: var(--green-main);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid var(--green-light);
    font-weight: 600;
}
.wk-btn-sch {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--green-bright);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--transition);
    align-self: flex-start;
}
.wk-sch-card:hover .wk-btn-sch {
    color: var(--brand-green);
    border-bottom-color: var(--brand-green);
}

/* donation — songbockeun.org/v2 */
.wk-donation {
    padding: 0;
    overflow: hidden;
}
.wk-donation-inner {
    width: 100%;
    height: var(--wk-view-h);
    min-height: var(--wk-view-h);
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 60%, var(--green-mid) 100%);
    padding: 52px 0 36px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}
.wk-donation-inner > .wk-section-label {
    top: 24px;
}
.wk-donation-inner > .wk-container {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 0;
}
.wk-donation-inner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(105,177,33,0.15);
}
.wk-donation-inner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.wk-donation-content {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
    width: 100%;
}
.wk-donation-text {
    flex: 1;
    color: #fff;
    position: relative;
    z-index: 1;
    min-width: 0;
}
.wk-donation-title {
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 900;
    line-height: 1.25;
    margin: 0 0 14px;
}
.wk-donation-title em {
    font-style: normal;
    color: var(--green-accent);
}
.wk-donation-text p {
    font-size: clamp(14px, 1.6vw, 16px);
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0 0 18px;
}
.wk-donation-text strong { color: var(--green-accent); }
.wk-donation-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 40px;
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.2);
}
.wk-donation-badge img {
    height: 28px;
    width: auto;
    border-radius: 50%;
}
.wk-donation-badge span {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}
.wk-btn-donation {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--green-bright);
    color: var(--green-dark);
    font-size: 16px;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(105,177,33,0.4);
}
.wk-btn-donation:hover {
    background: var(--green-accent);
    color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(105,177,33,0.5);
}
.wk-donation-img {
    flex: 0 0 min(380px, 36vw);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wk-donation-img img {
    width: 100%;
    max-height: min(48vh, 380px);
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.wk-donation-visual {
    flex: 0 0 min(480px, 42vw);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.wk-donation-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.wk-donation-highlights li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
}

.wk-donation-highlights strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green-accent);
    line-height: 1.2;
    margin-bottom: 4px;
}

.wk-donation-highlights span {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
}

.wk-donation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.wk-btn-donation-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 24px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 40px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}

.wk-btn-donation-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.wk-donation-account-card {
    position: relative;
    z-index: 2;
    margin: -32px 20px 0 auto;
    max-width: 92%;
    background: rgba(255, 255, 255, 0.96);
    color: var(--green-dark);
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    border-left: 4px solid var(--green-bright);
}

.wk-donation-account-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-main);
    margin-bottom: 6px;
}

.wk-donation-account-card strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1.35;
    margin-bottom: 4px;
}

.wk-donation-account-holder {
    display: block;
    font-size: 0.82rem;
    color: var(--text-gray);
}
    border-radius: 16px;
    box-shadow: 0 16px 60px rgba(0,0,0,0.4);
    display: block;
}

/* parallax bg */
.wk-parallax {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
@media (max-width: 768px) {
    .wk-parallax { background-attachment: scroll; }
}

.wk-parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.15);
}

/* hero — 2-column: video (left) | side panel */
#wk-hero.hero {
    background: #fff;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.hero-layout {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    gap: clamp(16px, 2vw, 28px);
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(12px, 2vh, 24px) clamp(16px, 2vw, 32px);
    box-sizing: border-box;
    min-height: 0;
    height: 100%;
}

.hero-intro {
    position: static;
    max-width: none;
    pointer-events: none;
    background: transparent;
    backdrop-filter: none;
    border-left: 3px solid var(--brand-green);
    border-radius: 0;
    padding: 0 0 0 18px;
}

.hero-intro-text {
    font-size: clamp(14px, 1.05vw, 16px);
    color: var(--text-dark);
    line-height: 1.85;
    text-shadow: none;
    margin-bottom: 14px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.hero-intro-text:last-child { margin-bottom: 0; }

.hero-col-video {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    height: 100%;
}

.hero-video-stack {
    flex: 1;
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
}

.hero-video-wrap {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 0;
    background: #111;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(54, 71, 47, 0.12);
}

.hero-bg-player {
    position: absolute;
    inset: 0;
    transform: none;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-player #ytplayer,
.hero-bg-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.hero-dim {
    display: none;
}

.hero-bottom-bar {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: none;
    pointer-events: auto;
}

.video-caption {
    flex: 1;
    background: var(--brand-grey-light, #f3f4f3);
    border-left: 3px solid var(--brand-green);
    padding: 8px 14px;
    color: var(--text-dark);
    font-size: 13px;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    min-width: 0;
}

.caption-icon { color: var(--brand-green); font-size: 11px; flex-shrink: 0; }

.mute-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--brand-grey-light, #e0e2e0);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--transition);
    line-height: 1;
    padding: 0;
    pointer-events: auto;
}

.mute-btn:hover {
    background: rgba(0, 132, 86, 0.08);
    border-color: var(--brand-green);
}

.mute-btn.muted {
    background: #fff5f5;
    border-color: rgba(200, 80, 80, 0.35);
}

.hero-col-side {
    align-self: stretch;
    height: 100%;
    display: flex;
    align-items: stretch;
    min-height: 0;
}

.hero-side-panel,
.hero-right-panel {
    position: static;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    pointer-events: auto;
    min-height: 0;
}

.vbox {
    background: #fff;
    border: 1px solid var(--brand-grey-light);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vbox:hover {
    border-color: var(--brand-green);
    box-shadow: 0 4px 16px rgba(54, 71, 47, 0.08);
    transform: none;
}

.vbox.active {
    border-color: var(--brand-dark);
    border-width: 2px;
    box-shadow: 0 4px 16px rgba(54, 71, 47, 0.1);
}

.vbox-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.vbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
}

.vbox:hover .vbox-thumb img { transform: scale(1.04); }

.vbox-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    color: rgba(255,255,255,0.9);
    font-size: 22px;
    opacity: 0;
    transition: opacity 0.25s;
}

.vbox:hover .vbox-play,
.vbox.active .vbox-play {
    opacity: 1;
}

.vbox-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
}

.vbox-num {
    font-size: 10px;
    font-weight: 700;
    color: var(--brand-dark);
    background: var(--brand-grey-light);
    padding: 2px 7px;
    border-radius: 3px;
    flex-shrink: 0;
    border: 0;
}

.vbox-title {
    font-size: 12px;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 600;
}

.memoir-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--brand-grey-light);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s ease;
    color: var(--text-dark);
    text-decoration: none;
}

.memoir-banner:hover {
    border-color: var(--brand-green);
    transform: none;
    box-shadow: 0 4px 16px rgba(54, 71, 47, 0.08);
}

.memoir-icon { height: 32px; width: auto; border-radius: 3px; flex-shrink: 0; }

.memoir-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 2px;
}

.memoir-text p {
    font-size: 10px;
    line-height: 1.45;
    color: var(--brand-grey);
    margin: 0;
}

.memoir-go {
    margin-left: auto;
    font-size: 16px;
    color: var(--brand-green);
    flex-shrink: 0;
}

.hero-donate-btn {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 88px;
    padding: 16px 14px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 247, 244, 0.98) 100%);
    border: 1px solid var(--brand-grey-light);
    border-top: 3px solid var(--brand-green);
    border-radius: 4px;
    overflow: hidden;
    color: var(--text-dark);
    text-decoration: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.hero-donate-btn::before {
    content: '';
    position: absolute;
    right: -18px;
    bottom: -24px;
    width: 132px;
    height: 132px;
    background: url('../assets/img/green_heart.jpg') center/cover no-repeat;
    opacity: 0.14;
    filter: saturate(0.75);
    pointer-events: none;
}

.hero-donate-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 132, 86, 0.04) 0%, transparent 55%);
    pointer-events: none;
}

.hero-donate-btn:hover {
    border-color: rgba(0, 132, 86, 0.45);
    box-shadow: 0 8px 24px rgba(54, 71, 47, 0.1);
    transform: translateY(-1px);
}

.hero-donate-mark {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 132, 86, 0.1);
    color: var(--brand-green);
    font-size: 15px;
    line-height: 1;
}

.hero-donate-body {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.hero-donate-eyebrow {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--brand-green);
}

.hero-donate-label {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -0.02em;
}

.hero-donate-desc {
    margin: 5px 0 0;
    font-size: 10px;
    line-height: 1.5;
    color: var(--brand-grey);
}

.hero-donate-go {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin-left: auto;
    font-size: 18px;
    line-height: 1;
    color: var(--brand-green);
    transition: transform 0.25s ease;
}

.hero-donate-btn:hover .hero-donate-go {
    transform: translateX(3px);
}

.typing-cursor::after {
    content: '|';
    color: var(--brand-green);
    font-weight: 300;
    margin-left: 3px;
    animation: wkCursorBlink 0.65s step-end infinite;
}

@keyframes wkCursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* text-area banner link */
.wk-banner-link {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
    transition: opacity .2s;
}
.wk-banner-link:hover { opacity: .85; }
.wk-banner-link img {
    width: 100%;
    height: auto;
    display: block;
}

/* partners row */
.wk-partners {
    background: #f2f2f2;
    padding: 40px 20px 50px;
}
.wk-partners-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.wk-partners-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #ddd;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.wk-partners-item:hover {
    border-color: #c8c8c8;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.wk-partners-item picture,
.wk-partners-item img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 54px;
    height: auto;
    object-fit: contain;
}

/* footer */
.wk-footer {
    background: var(--brand-grey-light, #eef0ee);
    border-top: 1px solid #d8dbd9;
    padding: 30px 20px;
    text-align: center;
}
.wk-footer-sns {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}
.wk-footer-sns img { height: 36px; }
.wk-footer-copy {
    font-size: 13px;
    color: #999;
}
#wk-sec-partners .wk-footer-merged {
    width: 100%;
    max-width: none;
    margin-top: auto;
    padding: 28px 20px;
    box-sizing: border-box;
}

/* scroll top */
#wk-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #8B6914;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: none;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
}

/* ── sub pages ── */
.wk-sub-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 52px 20px 90px;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    grid-template-areas:
        "side title"
        "side content";
    column-gap: 46px;
    row-gap: 0;
    align-items: start;
}
.wk-sub-sidebar {
    grid-area: side;
    width: 250px;
    flex-shrink: 0;
}
.wk-sub-body {
    display: contents;
}
.wk-sub-content {
    grid-area: content;
    min-width: 0;
}
.wk-sub-title {
    grid-area: title;
    font-size: 26px;
    color: #a9a9a9;
    font-weight: 650;
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #85be52;
}
.wk-sub-sidebar #sm {
    position: sticky;
    top: calc(var(--wk-header-h) + 24px);
    overflow: hidden;
    border: 1px solid rgba(105, 177, 33, 0.18);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,252,247,0.98)),
        radial-gradient(circle at top right, rgba(105,177,33,0.12), transparent 42%);
    box-shadow: 0 16px 42px rgba(26, 74, 26, 0.10);
}
.wk-sub-sidebar #sm h2 {
    position: relative;
    margin: 0;
    padding: 26px 24px 22px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-main));
    color: #fff;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
}
.wk-sub-sidebar #sm h2::after {
    content: '';
    display: block;
    width: 34px;
    height: 3px;
    margin-top: 14px;
    border-radius: 99px;
    background: var(--green-accent);
}
.wk-sub-sidebar #sm ul {
    list-style: none;
    margin: 0;
    padding: 16px 0;
    width: 100%;
    box-sizing: border-box;
}
.wk-sub-sidebar #sm li {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}
.wk-sub-sidebar #sm li + li {
    margin-top: 5px;
}
.wk-sub-sidebar #sm li a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 44px;
    width: 100%;
    margin-left: 0;
    padding: 14px 48px 14px 24px;
    border-radius: 0;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: #4c624c;
    text-decoration: none;
    word-break: keep-all;
    background: transparent;
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.wk-sub-sidebar #sm li a::before {
    display: none;
    content: none;
}
.wk-sub-sidebar #sm li a::after {
    content: '›';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(76, 98, 76, 0.42);
    font-size: 20px;
    line-height: 1;
    transition: right .2s ease, color .2s ease;
}
.wk-sub-sidebar #sm li.is-active a,
.wk-sub-sidebar #sm li a:hover {
    background: linear-gradient(135deg, var(--green-main), var(--green-bright));
    color: #fff;
    transform: none;
    box-shadow: 0 8px 20px rgba(45, 122, 45, 0.20);
}
.wk-sub-sidebar #sm li.is-active a::before,
.wk-sub-sidebar #sm li a:hover::before {
    display: none;
}
.wk-sub-sidebar #sm li.is-active a::after,
.wk-sub-sidebar #sm li a:hover::after {
    right: 13px;
    color: rgba(255,255,255,0.86);
}
.wk-sub-sidebar #sm li.sel {
    padding: 18px 12px 22px !important;
    border: 0 !important;
    text-align: center;
    background: transparent !important;
}
.wk-sub-sidebar #sm li.sel a {
    justify-content: center;
    padding: 0;
    background: transparent !important;
    box-shadow: none;
    transform: none;
}
.wk-sub-sidebar #sm li.sel a::before,
.wk-sub-sidebar #sm li.sel a::after {
    display: none;
}

/* song-txt content from original */
.wk-sub-content .song-txt,
.wk-sub-body .song-txt { line-height: 1.8; font-size: 14px; color: #666; }
.wk-sub-body .song-txt h2 { font-size: 23px; color: #000; }
.wk-sub-body .song-txt h6 { font-size: 17px; }
.wk-sub-body .song-txt h6 span { color: #FF812C; }
.wk-sub-body .song-txt hr { display: block; border: none; border-top: 3px solid #A4CD73; margin: 20px 0; }
.wk-sub-body .song-txt p { margin: 15px 0; text-align: justify; line-height: 180%; }
.wk-sub-body .song-txt img { max-width: 100%; height: auto; }
.wk-sub-body .boxGuide { overflow-x: auto; }
.wk-sub-body .boxGuide table { width: 100%; border-top: 2px solid #333; border-collapse: collapse; }
.wk-sub-body .boxGuide th, .wk-sub-body .boxGuide td {
    border-bottom: 1px solid #ededed;
    border-right: 1px solid #e5e5e5;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}
.wk-sub-body .boxGuide thead th { background: #f1f1f1; font-weight: bold; color: #333; }

/* founder intro page */
.wk-founder-page {
    display: grid;
    gap: 30px;
}
.wk-sub-body .wk-founder-page p {
    margin: 0;
    text-align: justify;
    color: #4f604f;
    font-size: 15px;
    line-height: 1.95;
    word-break: keep-all;
}
.wk-founder-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-bright);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.wk-founder-kicker::before {
    content: '';
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}
.wk-founder-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    padding: clamp(34px, 5vw, 56px);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(26,74,26,.94), rgba(45,122,45,.88)),
        url('../assets/img/memorial_stone.jpg') center/cover no-repeat;
    box-shadow: 0 22px 58px rgba(26, 74, 26, .18);
}
.wk-founder-hero::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(139,195,74,.18);
}
.wk-founder-hero-copy,
.wk-founder-pdf {
    position: relative;
    z-index: 1;
}
.wk-sub-body .wk-founder-hero h2 {
    margin: 14px 0 18px;
    color: #fff;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.04em;
}
.wk-sub-body .wk-founder-hero p {
    max-width: 680px;
    color: rgba(255,255,255,.86);
    font-size: 16px;
    text-align: left;
}
.wk-founder-pdf {
    display: grid;
    min-width: 190px;
    padding: 18px 22px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.wk-founder-pdf:hover {
    transform: translateY(-4px);
    background: rgba(139,195,74,.28);
    border-color: rgba(255,255,255,.58);
    color: #fff;
}
.wk-founder-pdf span {
    font-size: 13px;
    color: rgba(255,255,255,.74);
}
.wk-founder-pdf strong {
    margin-top: 4px;
    font-size: 18px;
}
.wk-founder-about,
.wk-founder-lead,
.wk-founder-profile,
.wk-founder-story,
.wk-founder-story article,
.wk-founder-closing {
    border: 1px solid rgba(105, 177, 33, .14);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(26, 74, 26, .08);
}
.wk-founder-about {
    padding: 34px 36px;
    background: linear-gradient(180deg, #fff, rgba(244, 251, 244, .92));
}
.wk-founder-about h3 {
    margin: 14px 0 18px;
    color: var(--text-dark);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    letter-spacing: -0.04em;
}
.wk-founder-about p + p {
    margin-top: 14px;
}
.wk-founder-lead {
    padding: 34px 36px;
    background: linear-gradient(180deg, #fff, var(--green-pale));
}
.wk-founder-lead h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    letter-spacing: -0.04em;
}
.wk-founder-lead h3 em {
    color: var(--green-bright);
    font-style: normal;
}
.wk-founder-profile {
    display: grid;
    grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
    gap: clamp(26px, 4vw, 46px);
    align-items: center;
    padding: clamp(26px, 4vw, 42px);
}
.wk-founder-photo {
    position: relative;
}
.wk-founder-photo::before {
    content: '';
    position: absolute;
    inset: 18px -14px -14px 18px;
    border-radius: 22px;
    background: var(--green-light);
}
.wk-founder-photo img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.wk-sub-body .wk-founder-profile-copy h2 {
    margin: 10px 0 18px;
    color: var(--green-dark);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: -0.04em;
}
.wk-founder-story {
    padding: 30px 34px;
}
.wk-founder-story p + p {
    margin-top: 1.95em;
}
.wk-founder-story article {
    position: relative;
    padding: 30px 34px 30px 92px;
}
.wk-founder-story article > span {
    position: absolute;
    left: 30px;
    top: 30px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-main), var(--green-bright));
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(45,122,45,.22);
}
.wk-founder-story h3 {
    margin: 0 0 12px;
    color: var(--text-dark);
    font-size: 21px;
    font-weight: 850;
    letter-spacing: -0.03em;
}
.wk-founder-closing {
    padding: 34px 38px;
    border-left: 6px solid var(--green-bright);
    background:
        linear-gradient(135deg, rgba(232,245,233,.95), rgba(255,255,255,.98));
}
.wk-sub-body .wk-founder-closing p {
    color: var(--green-dark);
    font-size: 16px;
    font-weight: 600;
}

/* honorary chairman greeting page */
.wk-greeting-page {
    display: grid;
    gap: 30px;
}
.wk-greeting-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    padding: clamp(34px, 5vw, 56px);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(26,74,26,.94), rgba(45,122,45,.86)),
        url('../assets/img/subVisual12.jpg') center/cover no-repeat;
    box-shadow: 0 22px 58px rgba(26, 74, 26, .18);
}
.wk-greeting-hero::after {
    content: '';
    position: absolute;
    right: -92px;
    bottom: -92px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(139,195,74,.18);
}
.wk-greeting-copy,
.wk-greeting-video {
    position: relative;
    z-index: 1;
}
.wk-sub-body .wk-greeting-copy h2 {
    margin: 14px 0 18px;
    color: #fff;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.04em;
}
.wk-sub-body .wk-greeting-copy p {
    margin: 0;
    max-width: 640px;
    color: rgba(255,255,255,.86);
    font-size: 16px;
    line-height: 1.8;
}
.wk-greeting-video {
    display: grid;
    min-width: 190px;
    padding: 18px 22px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.wk-greeting-video:hover {
    transform: translateY(-4px);
    background: rgba(139,195,74,.28);
    border-color: rgba(255,255,255,.58);
    color: #fff;
}
.wk-greeting-video span {
    font-size: 13px;
    color: rgba(255,255,255,.74);
}
.wk-greeting-video strong {
    margin-top: 4px;
    font-size: 18px;
}
.wk-greeting-card {
    display: grid;
    grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid rgba(105, 177, 33, .14);
    border-radius: 24px;
    background:
        linear-gradient(180deg, #fff, rgba(244,251,244,.78));
    box-shadow: 0 16px 44px rgba(26, 74, 26, .09);
}
.wk-greeting-photo {
    position: sticky;
    top: calc(var(--wk-header-h) + 28px);
}
.wk-greeting-photo::before {
    content: '';
    position: absolute;
    inset: 18px -14px -14px 18px;
    border-radius: 22px;
    background: var(--green-light);
}
.wk-greeting-photo img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.wk-greeting-message {
    position: relative;
    padding-left: 28px;
    border-left: 4px solid var(--green-bright);
}
.wk-greeting-message::before {
    content: '“';
    position: absolute;
    right: 0;
    top: -34px;
    color: rgba(105,177,33,.13);
    font-family: Georgia, serif;
    font-size: 120px;
    line-height: 1;
}
.wk-greeting-message h3 {
    position: relative;
    margin: 0 0 20px;
    color: var(--text-dark);
    font-size: clamp(23px, 3vw, 32px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.04em;
}
.wk-sub-body .wk-greeting-message p {
    position: relative;
    margin: 0 0 18px;
    text-align: left;
    color: #4f604f;
    font-size: 15px;
    line-height: 1.95;
    word-break: keep-all;
}
.wk-sub-body .wk-greeting-message p.first {
    color: var(--green-dark);
    font-size: 16px;
    font-weight: 700;
}
.wk-greeting-sign {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(105,177,33,.18);
}
.wk-greeting-sign span {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 700;
}
.wk-greeting-sign img {
    max-width: 160px;
    height: auto;
}

/* board and organization page */
.wk-team-page {
    display: grid;
    gap: 30px;
}
.wk-team-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 56px);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(26,74,26,.95), rgba(45,122,45,.88)),
        url('../assets/img/subVisual12.jpg') center/cover no-repeat;
    box-shadow: 0 22px 58px rgba(26, 74, 26, .18);
}
.wk-team-hero::after {
    content: '';
    position: absolute;
    right: -88px;
    top: -88px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: rgba(139,195,74,.18);
}
.wk-team-hero > div {
    position: relative;
    z-index: 1;
}
.wk-sub-body .wk-team-hero h2 {
    margin: 14px 0 18px;
    color: #fff;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.04em;
}
.wk-sub-body .wk-team-hero p {
    margin: 0;
    max-width: 640px;
    color: rgba(255,255,255,.86);
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}
.wk-team-lead {
    padding: 34px 36px;
    border: 1px solid rgba(105, 177, 33, .14);
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, var(--green-pale));
    box-shadow: 0 14px 38px rgba(26, 74, 26, .08);
}
.wk-team-lead h3 {
    margin: 0 0 14px;
    color: var(--text-dark);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    letter-spacing: -0.04em;
}
.wk-team-lead h3 em {
    color: var(--green-bright);
    font-style: normal;
}
.wk-sub-body .wk-team-lead p {
    margin: 0;
    color: #4f604f;
    font-size: 15px;
    line-height: 1.85;
    text-align: left;
    word-break: keep-all;
}
.wk-team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.wk-team-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 28px 28px 30px;
    border: 1px solid rgba(105, 177, 33, .14);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(26, 74, 26, .08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.wk-team-card::after {
    content: '';
    position: absolute;
    right: -46px;
    top: -46px;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background: rgba(105,177,33,.10);
}
.wk-team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(105,177,33,.32);
    box-shadow: 0 20px 48px rgba(26, 74, 26, .13);
}
.wk-team-card.is-chair {
    background: linear-gradient(180deg, #fff, rgba(232,245,233,.85));
}
.wk-team-card.is-chair::after {
    background: rgba(105,177,33,.16);
}
.wk-team-card.is-auditor {
    background: linear-gradient(180deg, #fff, rgba(246,250,244,.95));
}
.wk-team-role {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(105,177,33,.12);
    color: var(--green-main);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-align: center;
}
.wk-team-card.is-chair .wk-team-role {
    background: linear-gradient(135deg, var(--green-main), var(--green-bright));
    color: #fff;
}
.wk-team-card h3 {
    position: relative;
    z-index: 1;
    margin: 14px 0 18px;
    color: var(--green-dark);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.wk-team-card ul {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    list-style: none !important;
}
.wk-team-card li {
    position: relative;
    margin: 0;
    padding-left: 0;
    list-style: none !important;
    color: #4f604f;
    font-size: 14px;
    line-height: 1.75;
    word-break: keep-all;
}
.wk-team-card li + li {
    margin-top: 6px;
}
.wk-team-card li::before {
    display: none;
    content: none;
}
.wk-team-card li::marker,
.wk-sub-sidebar #sm li::marker {
    content: '';
}
.wk-team-org {
    padding: 34px;
    border: 1px solid rgba(105, 177, 33, .14);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(26, 74, 26, .09);
}
.wk-team-org-head {
    margin-bottom: 22px;
}
.wk-team-org-head h3 {
    margin: 10px 0 0;
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.wk-team-org-img {
    overflow: hidden;
    border-radius: 18px;
    background: var(--green-pale);
    border: 1px solid rgba(105,177,33,.16);
}
.wk-team-org-img img {
    display: block;
    width: 100%;
    height: auto;
}

/* history page */
.wk-history-page {
    display: grid;
    gap: 30px;
}
.wk-history-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 56px);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(26,74,26,.95), rgba(45,122,45,.86)),
        url('../assets/img/history01.jpg') center/cover no-repeat;
    box-shadow: 0 22px 58px rgba(26, 74, 26, .18);
}
.wk-history-hero::after {
    content: '';
    position: absolute;
    right: -88px;
    top: -88px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: rgba(139,195,74,.18);
}
.wk-history-hero > div {
    position: relative;
    z-index: 1;
}
.wk-sub-body .wk-history-hero h2 {
    margin: 14px 0 18px;
    color: #fff;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.04em;
}
.wk-sub-body .wk-history-hero p {
    margin: 0;
    max-width: 680px;
    color: rgba(255,255,255,.86);
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}
.wk-history-nav {
    position: sticky;
    top: calc(var(--wk-header-h) + 12px);
    z-index: 8;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(105,177,33,.16);
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(26,74,26,.08);
}
.wk-history-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 10px;
    border-radius: 12px;
    background: var(--green-pale);
    color: var(--green-main);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    word-break: keep-all;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.wk-history-nav a:hover {
    background: linear-gradient(135deg, var(--green-main), var(--green-bright));
    color: #fff;
    transform: translateY(-2px);
}
.wk-history-lead,
.wk-history-section {
    border: 1px solid rgba(105,177,33,.14);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(26,74,26,.08);
}
.wk-history-lead {
    padding: 34px 36px;
    background: linear-gradient(180deg, #fff, var(--green-pale));
}
.wk-history-lead h3 {
    margin: 0 0 14px;
    color: var(--text-dark);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    letter-spacing: -0.04em;
}
.wk-history-lead h3 em {
    color: var(--green-bright);
    font-style: normal;
}
.wk-sub-body .wk-history-lead p {
    margin: 0;
    color: #4f604f;
    font-size: 15px;
    line-height: 1.85;
    text-align: left;
    word-break: keep-all;
}
.wk-history-section {
    padding: 34px;
}
.wk-history-section-head {
    margin-bottom: 24px;
}
.wk-history-section-head span {
    display: inline-flex;
    align-items: center;
    color: var(--green-bright);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.wk-history-section-head h3 {
    margin: 8px 0 0;
    color: var(--text-dark);
    font-size: clamp(26px, 3.6vw, 36px);
    font-weight: 900;
    letter-spacing: -0.04em;
}
.wk-history-list,
.wk-history-summary-grid ul,
.wk-history-timeline .year ul {
    margin: 0;
    padding: 0;
    list-style: none !important;
}
.wk-history-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.wk-history-list li,
.wk-history-summary-grid li,
.wk-history-timeline .year li {
    position: relative;
    margin: 0;
    padding-left: 1.35em !important;
    color: #4f604f;
    font-size: 14px;
    line-height: 1.75;
    word-break: keep-all;
    list-style: none !important;
}
.wk-history-list li::before,
.wk-history-summary-grid li::before,
.wk-history-timeline .year li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-bright);
    transform: translateY(-50%);
}
.wk-history-note {
    margin: 22px 0 0;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--green-pale);
    color: var(--green-main);
    font-size: 13px;
    font-weight: 700;
}
.wk-history-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.wk-history-summary-grid article {
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, rgba(244,251,244,.92));
    border: 1px solid rgba(105,177,33,.14);
}
.wk-history-summary-grid strong {
    display: block;
    margin-bottom: 14px;
    color: var(--green-dark);
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -0.03em;
}
.wk-history-summary-grid li + li,
.wk-history-timeline .year li + li {
    margin-top: 7px;
}
.wk-history-timeline {
    position: relative;
    --wk-history-line-x: 28px;
}
.wk-history-timeline .year {
    position: relative;
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 28px;
    padding: 26px 0 26px calc(var(--wk-history-line-x) + 28px);
    border-left: 0;
}
.wk-history-timeline .year::after {
    content: '';
    position: absolute;
    left: var(--wk-history-line-x);
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 99px;
    background: rgba(105,177,33,.22);
    transform: translateX(-50%);
}
.wk-history-timeline .year::before {
    content: '';
    position: absolute;
    left: var(--wk-history-line-x);
    top: 34px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--green-bright);
    box-shadow: 0 0 0 6px rgba(105,177,33,.12);
    transform: translateX(-50%);
    z-index: 1;
}
.wk-history-timeline .year h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.wk-history-timeline .year p {
    margin: 10px 0 0;
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.7;
}
.wk-history-board {
    overflow-x: auto;
}
.wk-history-board table {
    width: 100%;
    min-width: 680px;
    border-collapse: separate;
    border-spacing: 0 10px;
}
.wk-history-board td {
    padding: 14px 18px;
    background: #fff;
    border-top: 1px solid rgba(105,177,33,.14);
    border-bottom: 1px solid rgba(105,177,33,.14);
    color: #4f604f;
    font-size: 14px;
    line-height: 1.6;
    vertical-align: middle;
}
.wk-history-board td:first-child {
    border-left: 1px solid rgba(105,177,33,.14);
    border-radius: 16px 0 0 16px;
    background: var(--green-pale);
    text-align: center;
}
.wk-history-board td:last-child {
    border-right: 1px solid rgba(105,177,33,.14);
    border-radius: 0 16px 16px 0;
}
.wk-history-board td.role {
    width: 72px;
    color: var(--green-main);
    font-weight: 900;
    text-align: right;
}
.wk-history-list li::marker,
.wk-history-summary-grid li::marker,
.wk-history-timeline .year li::marker {
    content: '';
}

/* location page */
.wk-road-page {
    display: grid;
    gap: 30px;
}
.wk-road-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 56px);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(26,74,26,.95), rgba(45,122,45,.86)),
        url('../assets/img/road.png') center right/auto 78% no-repeat,
        var(--green-dark);
    box-shadow: 0 22px 58px rgba(26, 74, 26, .18);
}
.wk-road-hero::after {
    content: '';
    position: absolute;
    right: -88px;
    top: -88px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: rgba(139,195,74,.18);
}
.wk-road-hero > div {
    position: relative;
    z-index: 1;
}
.wk-sub-body .wk-road-hero h2 {
    margin: 14px 0 18px;
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.28;
    letter-spacing: -0.04em;
}
.wk-sub-body .wk-road-hero p {
    margin: 0;
    max-width: 560px;
    color: rgba(255,255,255,.86);
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}
.wk-road-map-card,
.wk-road-info article {
    border: 1px solid rgba(105,177,33,.14);
    background: #fff;
    box-shadow: 0 14px 38px rgba(26,74,26,.08);
}
.wk-road-map-card {
    overflow: hidden;
    border-radius: 24px;
}
.wk-road-map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 30px;
    background: linear-gradient(180deg, #fff, var(--green-pale));
}
.wk-road-map-head span {
    display: inline-flex;
    color: var(--green-bright);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.wk-road-map-head h3 {
    margin: 8px 0 0;
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.wk-road-map-head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green-main), var(--green-bright));
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(45,122,45,.22);
    transition: transform .2s ease, box-shadow .2s ease;
}
.wk-road-map-head a:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(45,122,45,.28);
}
.wk-road-map {
    position: relative;
    height: clamp(320px, 44vw, 460px);
    background: var(--green-pale);
}
.wk-road-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.wk-road-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.wk-road-info article {
    position: relative;
    overflow: hidden;
    min-height: 124px;
    padding: 26px 28px;
    border-radius: 20px;
}
.wk-road-info article::after {
    content: '';
    position: absolute;
    right: -38px;
    top: -38px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: rgba(105,177,33,.10);
}
.wk-road-info article.is-address {
    grid-column: 1 / -1;
    background: linear-gradient(180deg, #fff, rgba(244,251,244,.9));
}
.wk-road-info article span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(105,177,33,.12);
    color: var(--green-main);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
}
.wk-road-info article strong {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--green-dark);
    font-size: clamp(18px, 2.3vw, 25px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.04em;
}
.wk-road-info article p {
    position: relative;
    z-index: 1;
    margin: 8px 0 0;
    color: #4f604f;
    font-size: 15px;
    line-height: 1.7;
}
.wk-road-info article a {
    color: inherit;
    text-decoration: none;
}
.wk-road-info article a:hover {
    color: var(--green-main);
}

/* movie / interview pages */
.wk-movie-page {
    display: grid;
    gap: 30px;
}
.wk-movie-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 56px);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(26,74,26,.94), rgba(45,122,45,.86)),
        url('../assets/img/subVisual12.jpg') center/cover no-repeat;
    box-shadow: 0 22px 58px rgba(26, 74, 26, .18);
}
.wk-movie-hero::after {
    content: '';
    position: absolute;
    right: -92px;
    bottom: -92px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(139,195,74,.18);
}
.wk-movie-hero > div {
    position: relative;
    z-index: 1;
}
.wk-sub-body .wk-movie-hero h2 {
    margin: 14px 0 18px;
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.28;
    letter-spacing: -0.04em;
}
.wk-sub-body .wk-movie-hero p {
    margin: 0;
    max-width: 560px;
    color: rgba(255,255,255,.86);
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}
.wk-movie-stage {
    overflow: hidden;
    border: 1px solid rgba(105,177,33,.14);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 22px 58px rgba(26,74,26,.10);
}
.wk-movie-stage-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(180deg, #fff, var(--green-pale));
}
.wk-movie-stage-head span {
    display: inline-flex;
    color: var(--green-bright);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.wk-movie-stage-head h3 {
    margin: 8px 0 0;
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.wk-movie-frame {
    padding: 0 clamp(18px, 3vw, 32px) clamp(24px, 4vw, 36px);
}
.wk-movie-frame-inner {
    position: relative;
    padding: clamp(12px, 2vw, 18px);
    border-radius: 24px;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 38%, var(--green-bright) 72%, #8bc34a 100%);
    box-shadow:
        0 0 0 1px rgba(255,255,255,.22) inset,
        0 28px 64px rgba(26,74,26,.24);
}
.wk-movie-frame-inner::before,
.wk-movie-frame-inner::after {
    content: '';
    position: absolute;
    width: 56px;
    height: 56px;
    border: 2px solid rgba(255,255,255,.28);
    pointer-events: none;
}
.wk-movie-frame-inner::before {
    top: 14px;
    left: 14px;
    border-right: 0;
    border-bottom: 0;
    border-radius: 14px 0 0 0;
}
.wk-movie-frame-inner::after {
    right: 14px;
    bottom: 14px;
    border-left: 0;
    border-top: 0;
    border-radius: 0 0 14px 0;
}
.wk-movie-player {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    background: #000;
    box-shadow: 0 12px 40px rgba(0,0,0,.38);
}
.wk-movie-yt-host,
.wk-movie-poster,
.wk-movie-shield {
    position: absolute;
    inset: 0;
}
.wk-movie-yt-host {
    z-index: 1;
    overflow: hidden;
}
.wk-movie-yt-host iframe,
.wk-movie-yt-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}
.wk-movie-shield {
    z-index: 2;
    background: transparent;
    cursor: default;
    pointer-events: none;
}
.wk-movie-poster {
    z-index: 3;
    display: grid;
    place-items: center;
    transition: opacity .28s ease, visibility .28s ease;
}
.wk-movie-poster.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.wk-movie-poster-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26,74,26,.88), rgba(45,122,45,.72)),
        url('../assets/img/subVisual12.jpg') center/cover no-repeat;
}
.wk-movie-poster-play {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: clamp(72px, 12vw, 96px);
    height: clamp(72px, 12vw, 96px);
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--green-main), var(--green-bright));
    box-shadow: 0 16px 40px rgba(0,0,0,.28);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
.wk-movie-poster-play:hover {
    transform: scale(1.06);
    box-shadow: 0 20px 48px rgba(0,0,0,.34);
}
.wk-movie-poster-play-icon {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpolygon points='8 5 19 12 8 19 8 5'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpolygon points='8 5 19 12 8 19 8 5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.wk-movie-error {
    position: relative;
    z-index: 2;
    margin: 18px 0 0;
    color: rgba(255,255,255,.88);
    font-size: 15px;
    font-weight: 600;
}
.wk-movie-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}
.wk-movie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid rgba(105,177,33,.22);
    border-radius: 999px;
    background: #fff;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(26,74,26,.08);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
}
.wk-movie-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: rgba(105,177,33,.42);
    box-shadow: 0 12px 28px rgba(26,74,26,.12);
}
.wk-movie-btn:disabled {
    opacity: .42;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.wk-movie-btn.is-play {
    background: linear-gradient(135deg, var(--green-main), var(--green-bright));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 24px rgba(45,122,45,.22);
}
.wk-movie-btn.is-play:hover:not(:disabled) {
    box-shadow: 0 14px 30px rgba(45,122,45,.28);
}
.wk-movie-btn-icon {
    width: 16px;
    height: 16px;
    background: currentColor;
}
.wk-movie-btn.is-play .wk-movie-btn-icon {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpolygon points='8 5 19 12 8 19 8 5'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpolygon points='8 5 19 12 8 19 8 5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.wk-movie-btn.is-pause .wk-movie-btn-icon {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Crect x='6' y='5' width='4.5' height='14' rx='1'/%3E%3Crect x='13.5' y='5' width='4.5' height='14' rx='1'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Crect x='6' y='5' width='4.5' height='14' rx='1'/%3E%3Crect x='13.5' y='5' width='4.5' height='14' rx='1'/%3E%3C/svg%3E") center/contain no-repeat;
}
.wk-movie-btn.is-mute.is-muted .wk-movie-btn-icon {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cline x1='23' y1='9' x2='17' y2='15'/%3E%3Cline x1='17' y1='9' x2='23' y2='15'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cline x1='23' y1='9' x2='17' y2='15'/%3E%3Cline x1='17' y1='9' x2='23' y2='15'/%3E%3C/svg%3E") center/contain no-repeat;
}
.wk-movie-btn.is-mute.is-unmuted .wk-movie-btn-icon {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cpath d='M19.07 4.93a10 10 0 0 1 0 14.14'/%3E%3Cpath d='M15.54 8.46a5 5 0 0 1 0 7.07'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cpath d='M19.07 4.93a10 10 0 0 1 0 14.14'/%3E%3Cpath d='M15.54 8.46a5 5 0 0 1 0 7.07'/%3E%3C/svg%3E") center/contain no-repeat;
}
.wk-movie-note {
    margin: 0;
    padding: 0 clamp(24px, 3vw, 32px) clamp(24px, 3vw, 32px);
    color: #4f604f;
    font-size: 15px;
    line-height: 1.75;
    text-align: center;
}
@media (max-width: 768px) {
    .wk-movie-controls {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .wk-movie-btn {
        width: 100%;
        padding: 0 12px;
    }
    .wk-movie-btn-label {
        font-size: 13px;
    }
}

/* scholarship guide pages */
.wk-scholar-page,
.wk-application-page {
    display: grid;
    gap: 30px;
}
.wk-scholar-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 56px);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(26,74,26,.95), rgba(45,122,45,.86)),
        url('../assets/img/guide.png') right 8% center/auto 82% no-repeat,
        var(--green-dark);
    box-shadow: 0 22px 58px rgba(26,74,26,.18);
}
.wk-scholar-hero.is-gitak {
    background:
        linear-gradient(135deg, rgba(26,74,26,.95), rgba(61,139,55,.86)),
        url('../assets/img/green_heart.jpg') right 12% center/auto 58% no-repeat,
        var(--green-dark);
}
.wk-scholar-hero.is-pocheon {
    background:
        linear-gradient(135deg, rgba(26,74,26,.95), rgba(61,139,55,.86)),
        url('../assets/img/guide_backup.png') right 8% center/auto 78% no-repeat,
        var(--green-dark);
}
.wk-scholar-hero.is-application {
    background:
        linear-gradient(135deg, rgba(26,74,26,.95), rgba(45,122,45,.86)),
        url('../assets/img/application.png') right 8% center/auto 70% no-repeat,
        var(--green-dark);
}
.wk-scholar-hero::after {
    content: '';
    position: absolute;
    right: -88px;
    top: -88px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: rgba(139,195,74,.18);
}
.wk-scholar-hero > div {
    position: relative;
    z-index: 1;
    max-width: 650px;
}
.wk-sub-body .wk-scholar-hero h2 {
    margin: 14px 0 18px;
    color: #fff;
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 900;
    line-height: 1.24;
    letter-spacing: -0.05em;
}
.wk-sub-body .wk-scholar-hero p {
    margin: 0;
    max-width: 620px;
    color: rgba(255,255,255,.86);
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    word-break: keep-all;
}
.wk-scholar-overview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.wk-scholar-overview article,
.wk-scholar-detail-grid article,
.wk-application-guide article,
.wk-application-table:not(#page-application .wk-application-table) {
    border: 1px solid rgba(105,177,33,.14);
    background: #fff;
    box-shadow: 0 14px 38px rgba(26,74,26,.08);
}
.wk-scholar-overview article {
    position: relative;
    overflow: hidden;
    min-height: 140px;
    padding: 26px 28px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff, rgba(244,251,244,.9));
}
.wk-scholar-overview article::after {
    content: '';
    position: absolute;
    right: -34px;
    top: -34px;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: rgba(105,177,33,.12);
}
.wk-scholar-overview article > span,
.wk-application-guide span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(105,177,33,.12);
    color: var(--green-main);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
}
.wk-scholar-overview strong:not(.wk-scholar-amounts) {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--green-dark);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.04em;
}
.wk-scholar-overview strong.wk-scholar-amounts {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-weight: inherit;
}
.wk-scholar-amount-item + .wk-scholar-amount-item {
    margin-top: 28px;
}
.wk-scholar-amount-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.wk-scholar-amount-label {
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: none;
    color: rgba(45, 122, 45, .72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.3;
}
.wk-scholar-amount-value {
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: none;
    color: var(--green-dark);
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.2;
    white-space: nowrap;
}
#page-guide .wk-scholar-overview article:not(:first-child) {
    display: flex;
    flex-direction: column;
}
#page-guide .wk-scholar-overview article:not(:first-child) > strong {
    flex: 1;
    display: flex;
    align-items: center;
}
.wk-scholar-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.wk-scholar-detail-grid article {
    position: relative;
    overflow: hidden;
    min-height: 178px;
    padding: 28px 30px;
    border-radius: 22px;
}
.wk-scholar-detail-grid article.is-wide {
    grid-column: 1 / -1;
    min-height: 0;
    background: linear-gradient(180deg, #fff, var(--green-pale));
}
.wk-scholar-detail-grid article::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--green-main), var(--green-bright));
}
.wk-scholar-detail-grid h3 {
    margin: 0 0 14px;
    color: var(--green-dark);
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.wk-sub-body .wk-scholar-detail-grid p,
.wk-scholar-detail-grid li {
    margin: 0;
    color: #4f604f;
    font-size: 15px;
    line-height: 1.85;
    text-align: left;
    word-break: keep-all;
}
.wk-scholar-detail-grid ul {
    margin: 0;
    padding: 0;
    list-style: none !important;
}
.wk-scholar-detail-grid li {
    position: relative;
    padding-left: 1.35em !important;
    list-style: none !important;
}
.wk-scholar-detail-grid li + li {
    margin-top: 8px;
}
.wk-scholar-detail-grid li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-bright);
    transform: translateY(-50%);
}
.wk-application-guide {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.wk-application-guide article {
    padding: 26px 28px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff, rgba(244,251,244,.9));
}
.wk-application-guide strong {
    display: block;
    color: var(--green-dark);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.wk-sub-body .wk-application-guide p {
    margin: 10px 0 0;
    color: #4f604f;
    font-size: 14px;
    line-height: 1.75;
    text-align: left;
    word-break: keep-all;
}

.wk-sub-body #page-application table.wk-application-table {
    overflow: visible;
    padding: 0;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.wk-sub-body #page-application table.wk-application-table thead th {
    background: #f7f7f7 !important;
    color: #333 !important;
    border-radius: 0 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
}

.wk-sub-body #page-application table.wk-application-table tbody th {
    background: #fff !important;
    color: #333 !important;
    border-radius: 0 !important;
    font-weight: 500 !important;
}

.wk-sub-body #page-application table.wk-application-table tbody tr:nth-child(even) th {
    background: #f9f9f9 !important;
}

.wk-sub-body #page-application table.wk-application-table td {
    color: #333 !important;
    font-weight: 400 !important;
}

.wk-sub-body #page-application table.wk-application-table a {
    display: inline-flex;
    min-width: 0;
    min-height: 0;
    border-radius: 8px;
    background: transparent;
    transform: none;
}

.wk-sub-body #page-application table.wk-application-table a:hover {
    background: #fff;
    transform: translateY(-1px);
}

.wk-sub-body .wk-application-table {
    overflow: auto;
    padding: 22px;
    border-radius: 24px;
}
.wk-sub-body .wk-application-table table {
    min-width: 760px;
    width: 100%;
    border-collapse: separate !important;
    border-spacing: 0;
    border-top: 0;
}
.wk-sub-body .wk-application-table th {
    padding: 16px 14px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-main));
    color: #fff;
    border: 0;
    font-size: 14px;
    font-weight: 900;
}
.wk-sub-body .wk-application-table th:first-child {
    border-radius: 14px 0 0 0;
}
.wk-sub-body .wk-application-table th:last-child {
    border-radius: 0 14px 0 0;
}
.wk-sub-body .wk-application-table td {
    padding: 16px 14px;
    border: 0;
    border-bottom: 1px solid rgba(105,177,33,.14);
    background: #fff;
    color: #4f604f;
    font-size: 14px;
    text-align: center;
}
.wk-sub-body .wk-application-table tbody tr:nth-child(even) td {
    background: var(--green-pale);
}
.wk-sub-body .wk-application-table td:first-child,
.wk-sub-body .wk-application-table td:nth-child(2) {
    font-weight: 800;
    color: var(--green-dark);
}
.wk-sub-body .wk-application-table a {
    display: inline-grid;
    place-items: center;
    min-width: 44px;
    min-height: 36px;
    border-radius: 999px;
    background: rgba(105,177,33,.12);
    transition: background .2s ease, transform .2s ease;
}
.wk-sub-body .wk-application-table a:hover {
    background: rgba(105,177,33,.24);
    transform: translateY(-2px);
}
.wk-sub-body .wk-application-table img {
    max-height: 24px;
    width: auto;
}

@media (max-width: 1200px) {
    .wk-header-inner {
        padding: 14px 28px;
        gap: 16px;
    }
    .wk-nav > ul {
        max-width: none;
    }
    .wk-nav > ul > li > a {
        padding: 14px 6px;
        font-size: 1.1rem;
    }
}

@media (max-width: 1100px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 240px);
        gap: 16px;
        padding: 16px 20px;
    }
    .wk-sch-grid { grid-template-columns: repeat(2, 1fr); }
    .wk-nav > ul > li > a {
        padding: 12px 4px;
        font-size: 1.05rem;
    }
    .wk-util { display: none; }
}

@media (max-width: 900px) {
    :root {
        --wk-header-h: 77px;
        --wk-bridge-h: 50vh;
    }
    .wk-donation-content {
        flex-direction: column;
        gap: 28px;
        justify-content: center;
    }
    .wk-donation-visual {
        flex: none;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
    .wk-donation-img {
        flex: none;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    .wk-donation-img img {
        max-height: min(28vh, 240px);
    }
    .wk-donation-account-card {
        margin: -24px auto 0;
        max-width: 100%;
    }
    .wk-donation-highlights {
        gap: 10px;
    }
    .wk-donation-highlights li {
        padding: 12px 8px;
    }
    .wk-donation-actions {
        justify-content: center;
    }
    .wk-donation-inner {
        padding: 48px 0 28px;
    }
    #wk-hero.hero { min-height: 0; }
    .hero-layout {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        gap: 12px;
        padding: 10px 16px 14px;
        align-content: stretch;
    }
    .hero-col-video { order: 1; min-height: 0; }
    .hero-col-side { order: 2; height: auto; }
    .hero-video-wrap {
        min-height: min(38vh, 280px);
    }
    .video-caption { font-size: 12px; padding: 6px 10px; }
    .hero-side-panel,
    .hero-right-panel {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .hero-side-panel::-webkit-scrollbar,
    .hero-right-panel::-webkit-scrollbar { display: none; }
    .hero-side-panel .vbox,
    .hero-right-panel .vbox {
        flex: 0 0 min(42vw, 160px);
    }
    .hero-side-panel .memoir-banner,
    .hero-right-panel .memoir-banner {
        flex: 0 0 min(48vw, 200px);
        padding: 10px 12px;
    }
    .hero-side-panel .hero-donate-btn,
    .hero-right-panel .hero-donate-btn {
        flex: 0 0 min(52vw, 210px);
        min-height: 0;
        padding: 12px 12px;
        gap: 10px;
    }
    .hero-donate-mark {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    .hero-donate-eyebrow {
        display: none;
    }
    .hero-donate-desc {
        display: none;
    }
    .hero-donate-label {
        font-size: 18px;
    }
    .hero-donate-go {
        font-size: 16px;
    }
    .vbox-meta { padding: 8px 10px; }
    .vbox-title { font-size: 11px; }
    .wk-header-inner {
        display: flex;
        justify-content: space-between;
        padding: 12px 16px;
        gap: 12px;
    }
    .wk-logo img { height: 53px; }
    .wk-burger { display: block; }
    .wk-nav {
        display: none;
        position: fixed;
        top: var(--wk-header-h);
        left: 0;
        right: 0;
        bottom: 0;
        grid-column: auto;
        background: var(--green-dark);
        box-shadow: 0 8px 20px rgba(0,0,0,.25);
        z-index: 200;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 28px;
    }
    .wk-nav.is-open { display: block; }
    .wk-nav.is-open > ul {
        flex-direction: column;
        max-width: none;
    }
    .wk-nav.is-open > ul > li {
        flex: none;
        text-align: left;
    }
    .wk-nav > ul > li > a {
        color: rgba(255,255,255,0.88);
        padding: 17px 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .wk-nav > ul > li > a:hover,
    .wk-nav > ul > li.is-active > a {
        color: #fff;
        background: rgba(0,0,0,0.15);
    }
    .wk-nav .sub-menu {
        position: static;
        transform: none;
        box-shadow: none;
        display: block;
        padding-left: 16px;
        background: rgba(0,0,0,0.2);
        border-top: none;
    }
    .wk-nav .sub-menu a {
        color: rgba(255,255,255,0.75);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .wk-nav .sub-menu a:hover {
        background: rgba(255,255,255,0.08);
        color: #fff;
    }
    .wk-nav-util {
        display: flex;
        gap: 20px;
        padding: 20px;
        border-top: 1px solid rgba(255,255,255,0.12);
        margin-top: 8px;
    }
    .wk-nav-util a {
        color: rgba(255,255,255,0.85);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
    }
    .wk-nav-util a:hover {
        color: #fff;
    }
    body.wk-nav-open {
        overflow: hidden;
    }
    html.wk-nav-open {
        overflow: hidden;
    }
    .wk-partners-inner { grid-template-columns: 1fr; }
    .wk-sub-wrap {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "nav"
            "content";
        gap: 14px;
        padding: 18px 14px 56px;
    }
    .wk-sub-sidebar {
        grid-area: nav;
        width: 100%;
    }
    .wk-sub-sidebar #sm {
        position: relative;
        top: auto;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    .wk-sub-sidebar #sm h2 {
        display: none;
    }
    .wk-sub-sidebar #sm ul {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin: 0;
        padding: 0 0 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .wk-sub-sidebar #sm ul::-webkit-scrollbar {
        display: none;
    }
    .wk-sub-sidebar #sm li {
        flex: 0 0 auto;
        width: auto;
    }
    .wk-sub-sidebar #sm li + li {
        margin-top: 0;
    }
    .wk-sub-sidebar #sm li a {
        min-height: 0;
        padding: 9px 14px;
        border: 1px solid var(--brand-grey-light);
        border-radius: 999px;
        background: #fff;
        box-shadow: none;
        font-size: 12px;
        line-height: 1.35;
        white-space: nowrap;
        color: var(--brand-grey);
        font-weight: 500;
    }
    .wk-sub-sidebar #sm li a::after {
        display: none;
    }
    .wk-sub-sidebar #sm li a:hover {
        border-color: var(--brand-green);
        color: var(--brand-dark);
        font-weight: 600;
        background: rgba(0, 132, 86, 0.06);
        transform: none;
        box-shadow: none;
    }
    .wk-sub-sidebar #sm li.is-active a,
    .wk-sub-sidebar #sm li.is-active a:hover {
        background: var(--brand-green);
        border-color: var(--brand-green);
        color: #fff;
        font-weight: 700;
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 132, 86, 0.2);
    }
    .wk-sub-title {
        margin: 0 0 4px;
        padding-bottom: 10px;
        font-size: 21px;
        color: #687868;
    }
    .wk-founder-hero,
    .wk-founder-profile,
    .wk-greeting-hero,
    .wk-greeting-card {
        grid-template-columns: 1fr;
    }
    .wk-team-grid {
        grid-template-columns: 1fr;
    }
    .wk-history-nav {
        position: relative;
        top: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wk-history-list,
    .wk-history-summary-grid {
        grid-template-columns: 1fr;
    }
    .wk-road-info {
        grid-template-columns: 1fr;
    }
    .wk-scholar-overview,
    .wk-scholar-detail-grid,
    .wk-application-guide {
        grid-template-columns: 1fr;
    }
    .wk-scholar-detail-grid article.is-wide {
        grid-column: auto;
    }
    .wk-history-timeline .year {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .wk-founder-pdf,
    .wk-greeting-video {
        min-width: 0;
    }
    .wk-greeting-photo {
        position: relative;
        top: auto;
        max-width: 360px;
    }
    .wk-greeting-message {
        padding-left: 0;
        padding-top: 26px;
        border-left: 0;
        border-top: 4px solid var(--green-bright);
    }
    .wk-founder-story {
        padding: 26px 22px;
    }
    .wk-founder-story article {
        padding: 28px 28px 28px 82px;
    }
    .wk-parallax-pass {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    :root {
        --wk-header-h: 67px;
        --wk-bridge-h: 45vh;
    }
    .wk-sch-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    #wk-sec-scholarship .wk-scroll-cover-inner { padding: calc(var(--wk-header-h) + 36px) 0 72px; }
    .wk-section-header { margin-bottom: 40px; }
    .wk-sch-card-inner { padding: 24px 18px; }
    .wk-sch-num { font-size: 32px; }
    .hero-layout {
        gap: 10px;
        padding: 8px 12px 12px;
    }
    .hero-video-wrap {
        min-height: min(34vh, 220px);
    }
    .wk-stats-intro {
        margin: 36px auto 0;
        padding: 32px 20px 0;
    }

    .wk-stats-intro::before {
        width: 40px;
        margin-bottom: 28px;
    }

    .wk-stats-intro-text {
        font-size: 1.05rem;
        line-height: 1.9;
        margin-bottom: 1.1em;
    }
    .hero-side-panel .vbox,
    .hero-right-panel .vbox {
        flex: 0 0 min(44vw, 140px);
    }
    .hero-side-panel .memoir-banner,
    .hero-right-panel .memoir-banner {
        flex: 0 0 min(52vw, 180px);
    }
    .hero-side-panel .hero-donate-btn,
    .hero-right-panel .hero-donate-btn {
        flex: 0 0 min(48vw, 190px);
    }
    .video-caption { font-size: 11px; padding: 5px 8px; }
    .mute-btn { width: 32px; height: 32px; font-size: 14px; }
    .vbox-title { font-size: 11px; }
    .memoir-text p { font-size: 10px; }
    .wk-sub-wrap {
        padding-left: 12px;
        padding-right: 12px;
    }
    .wk-sub-sidebar #sm li a {
        font-size: 11px;
        padding: 8px 12px;
    }
    .wk-sub-title {
        font-size: 19px;
    }
    .wk-founder-page {
        gap: 22px;
    }
    .wk-founder-hero,
    .wk-founder-about,
    .wk-founder-lead,
    .wk-founder-profile,
    .wk-founder-story,
    .wk-founder-story article,
    .wk-founder-closing,
    .wk-greeting-hero,
    .wk-greeting-card,
    .wk-team-hero,
    .wk-team-lead,
    .wk-team-card,
    .wk-team-org,
    .wk-history-hero,
    .wk-history-lead,
    .wk-history-section,
    .wk-road-hero,
    .wk-road-map-card,
    .wk-road-info article,
    .wk-scholar-hero,
    .wk-scholar-overview article,
    .wk-scholar-detail-grid article,
    .wk-application-guide article,
    .wk-application-table {
        border-radius: 18px;
    }
    .wk-founder-hero,
    .wk-greeting-hero,
    .wk-team-hero,
    .wk-history-hero,
    .wk-road-hero,
    .wk-scholar-hero {
        padding: 30px 24px;
    }
    .wk-founder-about,
    .wk-founder-lead,
    .wk-founder-profile,
    .wk-founder-story,
    .wk-founder-closing,
    .wk-greeting-card,
    .wk-team-lead,
    .wk-team-org,
    .wk-history-lead,
    .wk-history-section {
        padding: 26px 22px;
    }
    .wk-road-map-head {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 22px;
    }
    .wk-road-map-head a {
        width: 100%;
    }
    .wk-road-info article {
        min-height: 0;
        padding: 24px 22px;
    }
    .wk-scholar-overview article,
    .wk-scholar-detail-grid article,
    .wk-application-guide article {
        min-height: 0;
        padding: 24px 22px;
    }
    .wk-sub-body .wk-application-table {
        padding: 14px;
    }
    .wk-history-nav {
        grid-template-columns: 1fr;
    }
    .wk-history-timeline .year {
        padding-left: calc(var(--wk-history-line-x) + 24px);
    }
    .wk-team-card {
        min-height: 0;
        padding: 24px 22px 26px;
    }
    .wk-founder-story {
        padding: 26px 22px;
    }
    .wk-founder-story article {
        padding: 78px 22px 24px;
    }
    .wk-founder-story article > span {
        left: 22px;
        top: 22px;
    }
    .wk-sub-body .wk-founder-page p {
        font-size: 14px;
        line-height: 1.85;
    }
    .wk-sub-body .wk-greeting-message p {
        font-size: 14px;
        line-height: 1.85;
    }
    .wk-greeting-sign {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/* ── PPT 2026: stats, flat pages, board cleanup ── */

.wk-greeting-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
}
.wk-greeting-video + .wk-greeting-video {
    margin-left: 0;
}

.wk-founder-page .wk-founder-hero,
.wk-founder-page .wk-founder-about {
    background: transparent;
    box-shadow: none;
    border: 0;
    padding-left: 0;
    padding-right: 0;
}
.wk-founder-page .wk-founder-hero-copy h2,
.wk-founder-page .wk-founder-about h3 {
    color: var(--brand-dark);
}
.wk-founder-pdf {
    border: 0;
    box-shadow: none;
    background: transparent;
    color: var(--brand-dark);
    padding: 0;
    text-decoration: underline;
}
.wk-scholar-block,
#scholar-song,
#scholar-gitak,
#scholar-pocheon {
    scroll-margin-top: calc(var(--wk-header-h) + 24px);
}
.wk-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.wk-stat-item {
    text-align: center;
    padding: 32px 16px;
    border-top: 3px solid var(--brand-dark);
}
.wk-stat-value {
    display: block;
    font-family: var(--font-en);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.1;
}
.wk-stat-label {
    display: block;
    margin-top: 10px;
    font-size: 0.92rem;
    color: var(--brand-grey);
}

.wk-scholar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--brand-grey-light);
}
.wk-scholar-nav a {
    color: var(--brand-grey);
    text-decoration: none;
    font-weight: 500;
}
.wk-scholar-nav a:hover {
    color: var(--brand-dark);
    font-weight: 700;
}
.wk-scholar-block {
    padding: 0;
    margin: 0 0 48px;
    border-bottom: 0;
}

.wk-scholar-block:last-child {
    margin-bottom: 0;
}

.wk-scholar-block-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#page-guide {
    font-family: var(--font-sans, "Noto Sans KR", sans-serif);
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

#page-guide .wk-scholar-page-title {
    margin: 0 0 20px;
    padding: 0;
    border: 0;
    font-family: var(--font-sans, "Noto Sans KR", sans-serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #222;
}

#page-guide .wk-scholar-nav {
    margin-bottom: 28px;
}

#page-guide .wk-scholar-block {
    margin: 0 0 12px;
}

#page-guide .wk-scholar-block:last-child {
    margin-bottom: 0;
}

#page-guide table.type10 {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    border-top: 2px solid #666;
}

#page-guide table.type10:last-child {
    margin-bottom: 0;
}

#page-guide table.type10 td {
    margin: 0;
    padding: 14px 16px;
    vertical-align: middle;
    border: 0;
    border-bottom: 1px solid #ddd;
    background: #fff;
    text-align: left;
    word-break: keep-all;
}

#page-guide table.type10 tr:last-child td {
    border-bottom: 0;
}

#page-guide table.type10 .wk-scholar-program {
    width: 140px;
    background: #dcddde;
    text-align: center;
    font-weight: 500;
    line-height: 1.45;
}

#page-guide table.type10 .wk-scholar-label {
    width: 140px;
    text-align: center;
    font-weight: 400;
}

#page-guide table.type10 td.even {
    background: #f2f2f2;
}

#page-guide table.type10.is-long .wk-scholar-program {
    font-size: 15px;
    line-height: 1.4;
}

.wk-scholar-panel {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    border-top: 1px solid var(--brand-grey-light);
    border-bottom: 1px solid var(--brand-grey-light);
}

.wk-scholar-panel-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 6px;
    background: #eef0ee;
    border-right: 1px solid var(--brand-grey-light);
}

.wk-scholar-panel-label span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.06em;
    color: var(--brand-dark);
    word-break: keep-all;
}

.wk-scholar-table {
    margin: 0;
}

.wk-scholar-table > div {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    border-bottom: 1px solid var(--brand-grey-light);
}

.wk-scholar-table > div:last-child {
    border-bottom: 0;
}

.wk-scholar-table dt {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 14px 10px;
    background: #eef0ee;
    border-right: 1px solid var(--brand-grey-light);
    color: var(--brand-dark);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    word-break: keep-all;
}

.wk-scholar-table dd {
    margin: 0;
    padding: 14px 16px;
    color: var(--text-dark);
    font-size: 0.92rem;
    line-height: 1.65;
}

.wk-scholar-lead {
    color: var(--brand-grey);
    margin: 0 0 20px;
}
.wk-scholar-flat {
    margin: 0;
}
.wk-scholar-flat > div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px 20px;
    padding: 14px 0;
    border-top: 1px solid var(--brand-grey-light);
}
.wk-scholar-flat dt {
    font-weight: 700;
    color: var(--brand-dark);
}
.wk-scholar-flat dd {
    margin: 0;
    color: var(--text-dark);
}

.wk-application-intro {
    margin: 0 0 24px;
    color: var(--brand-grey);
}

#page-application table.wk-application-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    border: 0;
    box-shadow: none;
    background: transparent;
    border-top: 2px solid #666;
}

#page-application table.wk-application-table th,
#page-application table.wk-application-table td {
    padding: 14px 16px;
    vertical-align: middle;
    border: 0;
    border-bottom: 1px solid #e8e8e8;
}

#page-application table.wk-application-table thead th {
    height: 48px;
    box-sizing: border-box;
    padding: 12px 16px;
    background: #f7f7f7;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    border-radius: 0;
}

#page-application table.wk-application-table thead th.wk-application-col-name {
    text-align: left;
}

#page-application table.wk-application-table thead th.wk-application-col-dl {
    text-align: center;
}

#page-application table.wk-application-table tbody th {
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    color: #333;
}

#page-application table.wk-application-table tbody td.wk-application-col-dl {
    height: 64px;
    box-sizing: border-box;
    text-align: center;
    padding: 10px 8px;
}

#page-application table.wk-application-table tbody tr:nth-child(even) th,
#page-application table.wk-application-table tbody tr:nth-child(even) td:not(.wk-application-note) {
    background: #f9f9f9;
}

#page-application col.wk-application-col-name {
    width: 58%;
}

#page-application col.wk-application-col-dl {
    width: 14%;
}

#page-application .wk-dl-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 8px;
    text-decoration: none;
    vertical-align: middle;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

#page-application .wk-dl-link:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

#page-application .wk-dl-link img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

#page-application .wk-application-note {
    height: 64px;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    color: #666;
    font-size: 15px;
    padding: 0 16px;
}

#page-application table.wk-application-table tr.is-note th,
#page-application table.wk-application-table tr.is-note td {
    height: 64px;
    box-sizing: border-box;
    background: #fff;
}

#page-application table.wk-application-table tr.is-note th {
    padding: 0 16px;
}

.wk-application-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.wk-application-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--brand-grey-light);
}
.wk-application-list strong {
    font-weight: 600;
    color: var(--brand-dark);
}
.wk-application-dl {
    display: flex;
    gap: 12px;
}
.wk-dl-link,
.wk-application-note {
    color: var(--brand-grey);
    font-size: 0.92rem;
    text-decoration: none;
}
.wk-dl-link:hover {
    color: var(--brand-dark);
    text-decoration: underline;
}

/* ── Donation sub page (#page-donation) ── */
.wk-sub-prose #page-donation.song-txt {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: none;
}

#page-donation .wk-donation-hero {
    min-height: 320px;
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: center;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(54,71,47,.96), rgba(0,132,86,.88)),
        var(--wk-donation-hero-img, url('../assets/img/hero-donation.jpg')) right center/cover no-repeat;
    box-shadow: 0 12px 40px rgba(54,71,47,.12);
}

#page-donation .wk-donation-hero::before {
    background: rgba(0,132,86,.14);
}

#page-donation .wk-donation-badge {
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
}

#page-donation .wk-donation-badge span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.92);
}

#page-donation .wk-donation-hero h2 {
    font-family: var(--font-kr);
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -.04em;
    color: #fff;
}

#page-donation .wk-donation-hero p {
    font-size: 15px;
    line-height: 1.8;
    opacity: .92;
}

#page-donation .wk-donation-hero p + p {
    margin-top: 14px;
}

#page-donation .wk-donation-primary,
#page-donation .wk-donation-secondary {
    min-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
}

#page-donation .wk-donation-hero .wk-donation-primary {
    background: #fff;
    color: var(--brand-dark) !important;
}

#page-donation .wk-donation-hero .wk-donation-primary:hover {
    background: #f3f4f2;
    color: var(--brand-dark) !important;
}

#page-donation .wk-donation-hero .wk-donation-secondary {
    border: 1px solid rgba(255,255,255,.45);
    background: transparent;
    color: #fff !important;
}

#page-donation .wk-donation-hero .wk-donation-secondary:hover {
    background: rgba(255,255,255,.12);
    color: #fff !important;
}

#page-donation .wk-donation-hero-panel {
    padding: 24px;
    border-radius: 12px;
}

#page-donation .wk-donation-hero-panel strong {
    font-size: 20px;
    letter-spacing: .02em;
}

#page-donation .wk-donation-intro article,
#page-donation .wk-donation-section,
#page-donation .wk-donation-account {
    border: 1px solid var(--brand-grey-light);
    border-radius: 12px;
    box-shadow: none;
}

#page-donation .wk-donation-intro article span {
    background: var(--green-light);
    color: var(--brand-green);
    font-size: 14px;
}

#page-donation .wk-donation-intro h3,
#page-donation .wk-donation-section h3,
#page-donation .wk-donation-account h3 {
    font-family: var(--font-kr);
    color: var(--brand-dark);
    font-weight: 700;
    margin: 0;
    padding: 0;
    border: 0;
}

#page-donation .wk-donation-section {
    padding: clamp(28px, 4vw, 40px);
}

#page-donation .wk-donation-method-grid p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--brand-grey);
}

#page-donation .wk-donation-intro p strong {
    color: var(--brand-green);
    font-weight: 700;
}

#page-donation .wk-donation-section-head span {
    color: var(--brand-green);
    font-size: 11px;
    letter-spacing: .12em;
}

#page-donation .wk-donation-method-grid article {
    border: 1px solid var(--brand-grey-light);
    background: #fafbfa;
}

#page-donation .wk-donation-method-grid em {
    color: var(--brand-green);
}

#page-donation .wk-donation-method-grid a {
    color: var(--brand-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#page-donation .wk-donation-method-grid a:hover {
    color: var(--brand-green);
}

#page-donation .wk-donation-account {
    background:
        radial-gradient(circle at top right, rgba(0,132,86,.06), transparent 40%),
        #fff;
}

#page-donation .wk-donation-account-copy p {
    margin: 12px 0 20px;
    color: var(--brand-grey);
    line-height: 1.75;
}

#page-donation .wk-donation-download {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 6px;
    background: var(--brand-dark);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

#page-donation .wk-donation-download:hover {
    background: var(--brand-green);
}

#page-donation .wk-donation-account dl div {
    border-color: var(--brand-grey-light);
    border-radius: 8px;
}

#page-donation .wk-donation-account dt {
    background: #f7f8f6;
    color: var(--brand-dark);
    font-weight: 600;
}

#page-donation .wk-donation-account dd {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-dark);
}

#page-donation .wk-donation-table {
    min-width: 0;
    border-color: var(--brand-grey-light);
    border-radius: 8px;
}

#page-donation .wk-donation-table th,
#page-donation .wk-donation-table td {
    padding: 16px 18px;
    font-size: 15px;
    text-align: left;
    border-color: var(--brand-grey-light);
}

#page-donation .wk-donation-table thead th {
    background: #f7f8f6;
    color: var(--brand-dark);
    font-weight: 700;
}

#page-donation .wk-donation-table tbody th[scope="row"] {
    width: 28%;
    background: #fafbfa;
    color: var(--brand-dark);
    font-weight: 700;
    vertical-align: top;
}

#page-donation .wk-donation-table tbody td {
    color: var(--brand-grey);
    line-height: 1.7;
}

@media (max-width: 900px) {
    #page-donation .wk-donation-hero {
        grid-template-columns: 1fr;
        align-items: end;
    }

    #page-donation .wk-donation-hero-panel {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .wk-sub-prose #page-donation.song-txt {
        gap: 20px;
    }

    #page-donation .wk-donation-hero,
    #page-donation .wk-donation-intro article,
    #page-donation .wk-donation-section,
    #page-donation .wk-donation-account {
        border-radius: 10px;
    }

    #page-donation .wk-donation-table tbody th[scope="row"] {
        width: auto;
    }
}

.wk-donation-flat .wk-donation-head.wk-page-head {
    border-bottom: 1px solid var(--brand-grey-light);
    margin-bottom: 28px;
    padding-bottom: 24px;
}
.wk-donation-flat .wk-donation-head h2 {
    margin: 0;
}
.wk-donation-body p {
    margin: 0 0 16px;
    line-height: 1.85;
    color: var(--text-dark);
}
.wk-donation-block {
    padding: 28px 0;
    border-top: 1px solid var(--brand-grey-light);
}
.wk-donation-block.is-alt {
    background: var(--brand-grey-light);
    margin: 0 -24px;
    padding: 28px 24px;
}
.wk-donation-block h3 {
    margin: 0 0 16px;
    font-size: 1.2rem;
    color: var(--brand-dark);
}
.wk-donation-rows article {
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.wk-donation-rows article.is-alt {
    background: transparent;
}
.wk-donation-rows h4 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--brand-dark);
}
.wk-donation-account-flat {
    display: grid;
    gap: 10px;
    margin: 0 0 16px;
}
.wk-donation-account-flat div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
}
.wk-donation-account-flat dt {
    color: var(--brand-grey);
}
.wk-donation-account-flat dd {
    margin: 0;
    font-weight: 600;
}
.wk-donation-flat .wk-donation-primary {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 18px;
    background: var(--brand-dark);
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
}
.wk-donation-tax {
    margin: 12px 0 0;
    padding-left: 1.2em;
    color: var(--brand-grey);
}
.wk-donation-tax li {
    margin-bottom: 8px;
}

.wk-team-flat .wk-team-quote {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin: 0 0 12px;
}
.wk-team-list .wk-team-group {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 20px 28px;
    align-items: start;
    padding: 26px 0;
    border-bottom: 1px solid var(--brand-grey-light);
}

.wk-team-list .wk-team-group:first-child {
    border-top: 1px solid var(--brand-grey-light);
}

.wk-team-list .wk-team-role {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 14px 10px;
    background: #eef0ee;
    color: var(--brand-dark);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    word-break: keep-all;
    box-sizing: border-box;
}

.wk-team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 36px;
    align-items: flex-start;
}

.wk-team-member {
    flex: 1 1 160px;
    max-width: 100%;
    min-width: 0;
}

.wk-team-member h3 {
    margin: 0 0 10px;
    padding: 0 0 8px;
    border-bottom: 1px solid #c5c9c3;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.35;
}

.wk-team-member p {
    margin: 0;
    color: var(--brand-grey);
    font-size: 0.86rem;
    line-height: 1.65;
    word-break: keep-all;
}

.wk-team-member.is-former {
    flex: 1 1 140px;
}

.wk-team-member.is-former h3 {
    margin-bottom: 8px;
    padding-bottom: 7px;
}

.wk-team-term {
    font-weight: 700;
}

.wk-team-period {
    color: var(--brand-grey);
    font-size: 0.84rem;
}

#page-team .wk-team-member h3 {
    color: var(--brand-dark);
    padding-top: 0;
    font-size: 1.05rem;
}

.wk-team-org {
    margin-top: 32px;
}

.wk-team-org h3 {
    margin: 0 0 16px;
    color: var(--brand-dark);
}

.wk-team-org img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.wk-road-flat .wk-road-info {
    display: block;
    max-width: none;
}

.wk-road-flat .wk-road-intro {
    margin: 0 0 20px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--brand-grey);
}

.wk-road-flat .wk-road-intro em {
    font-style: normal;
    font-weight: 700;
    color: var(--brand-green);
}

.wk-road-flat .wk-road-map-wrap {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 0 28px;
}

.wk-road-flat .wk-road-map {
    position: relative;
    width: 100%;
    height: clamp(320px, 48vw, 480px);
    border: 1px solid var(--brand-grey-light);
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f2;
}

.wk-road-flat .wk-road-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.wk-road-flat .wk-road-map-expand {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--brand-dark);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wk-road-flat .wk-road-map-expand:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
}

.wk-road-flat .wk-road-address {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 10px;
    margin: 0;
    padding: 0;
    color: var(--brand-dark);
    font-size: 0.98rem;
    line-height: 1.7;
}

.wk-road-flat .wk-road-address-road {
    display: inline;
}

.wk-road-flat .wk-road-address-jibun {
    display: inline;
    font-size: 0.82rem;
    color: var(--brand-grey);
    white-space: nowrap;
}

.wk-road-flat .wk-road-contact {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0;
}

.wk-road-flat .wk-road-contact li {
    margin: 0;
    padding: 14px 0;
    border-bottom: 1px solid var(--brand-grey-light);
    color: var(--brand-dark);
    font-size: 0.98rem;
    line-height: 1.65;
    word-break: keep-all;
}

.wk-road-flat .wk-road-contact li:first-child {
    padding-top: 0;
}

.wk-road-flat .wk-road-contact li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.wk-road-flat .wk-road-contact a {
    color: var(--brand-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 132, 86, 0.28);
}

.wk-road-flat .wk-road-contact a:hover {
    color: var(--brand-green);
    border-bottom-color: var(--brand-green);
}

.wk-road-contact {
    margin-top: 24px;
    display: grid;
    gap: 10px;
}
.wk-road-contact div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
}
.wk-road-contact dt {
    color: var(--brand-grey);
}
.wk-road-contact dd {
    margin: 0;
}

.wk-history-board .wk-previous-board,
.wk-history-board table {
    width: 100%;
    border-collapse: collapse;
}
.wk-history-board .wk-previous-board h2,
.wk-history-board .wk-board-gen h2 {
    color: #000 !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    font-family: inherit;
    letter-spacing: normal;
    margin: 0;
    padding: 0;
    border: 0;
}
.wk-history-board .role {
    color: var(--brand-grey);
    font-weight: 600;
}
.wk-history-board td {
    padding: 8px 12px;
    vertical-align: top;
    border: 0;
    background: transparent !important;
}
.wk-history-board .wk-board-gap {
    height: 24px;
}

.wk-sub-sidebar #sm h2 {
    display: none;
}

#bo_list .tbl_head01 caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#bo_list .bo_tit .fa-heart,
#bo_list .bo_tit .hot_icon,
#bo_list .bo_tit .new_icon,
.lat li .fa-heart,
.lat .hot_icon,
.pic_lt li .fa-heart {
    display: none !important;
}
#bo_list .td_datetime,
#bo_list .td_name,
.lat li .lt_info {
    color: var(--brand-grey) !important;
}
#bo_list .bo_tit a {
    color: var(--text-dark);
    font-weight: 500;
}
#bo_list .bo_tit .fa-download {
    color: var(--brand-grey) !important;
    background: transparent !important;
}

@media (max-width: 768px) {
    .wk-stats-grid {
        grid-template-columns: 1fr;
    }
    .wk-scholar-flat > div,
    .wk-team-list .wk-team-group,
    .wk-donation-account-flat div,
    .wk-road-contact div {
        grid-template-columns: 1fr;
    }
    .wk-donation-block.is-alt {
        margin: 0 -16px;
        padding: 24px 16px;
    }
}

/* ── Design polish: flat pages, sidebar, home, footer ── */

.wk-page-flat .song-txt p,
.wk-sub-content .song-txt p {
    text-align: left;
}

.wk-page-head {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--brand-grey-light);
}
.wk-page-head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.35;
}
.wk-page-head p {
    margin: 0;
    color: var(--brand-grey);
}
.wk-page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 16px;
}
.wk-page-links a {
    color: var(--brand-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.wk-page-links a:hover {
    color: var(--brand-green);
}

.wk-sub-wrap {
    max-width: 1080px;
    padding: 40px 20px 72px;
    column-gap: 40px;
}
.wk-sub-sidebar #sm {
    position: sticky;
    top: calc(var(--wk-header-h) + 20px);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding-right: 8px;
    border-right: 1px solid var(--brand-grey-light);
}
.wk-sub-sidebar #sm ul {
    padding: 0;
}
.wk-sub-sidebar #sm li a {
    min-height: 0;
    padding: 11px 16px 11px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-grey);
    background: transparent;
    border-left: 3px solid transparent;
    border-radius: 0 4px 4px 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.wk-sub-sidebar #sm li a:hover {
    color: var(--brand-dark);
    font-weight: 600;
    background: rgba(0, 132, 86, 0.07);
    border-left-color: rgba(0, 132, 86, 0.35);
}
.wk-sub-sidebar #sm li.is-active a {
    color: #fff;
    font-weight: 700;
    background: var(--brand-green);
    border-left-color: var(--brand-dark);
    box-shadow: 0 4px 14px rgba(0, 132, 86, 0.22);
}
.wk-sub-sidebar #sm li.is-active a:hover {
    color: #fff;
    background: var(--brand-green);
    border-left-color: var(--brand-dark);
}
.wk-sub-sidebar #sm li a::after {
    display: none;
}
.wk-sub-content {
    max-width: 760px;
}

.wk-greeting-body {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}
.wk-inline-photo {
    margin: 0;
}
.wk-inline-photo img {
    width: 100%;
    height: auto;
    display: block;
}
.wk-greeting-message h3 {
    margin: 0 0 16px;
    font-size: 1.15rem;
    color: var(--brand-dark);
}
.wk-greeting-message p {
    margin: 0 0 14px;
}
.wk-greeting-sign {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--brand-grey-light);
}
.wk-greeting-sign span {
    color: var(--brand-grey);
    font-weight: 600;
}
.wk-greeting-sign img {
    max-height: 48px;
    width: auto;
}

.wk-founder-about,
.wk-founder-block {
    padding: 28px 0;
    border-top: 1px solid var(--brand-grey-light);
}
.wk-founder-about h3,
.wk-founder-block h3 {
    margin: 0 0 14px;
    font-size: 1.15rem;
    color: var(--brand-dark);
}
.wk-founder-profile {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}
.wk-founder-photo img {
    width: 100%;
    height: auto;
    display: block;
}
.wk-founder-name {
    margin: 0 0 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
}
.wk-founder-name span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--brand-grey);
    margin-left: 8px;
}
.wk-founder-story p,
.wk-founder-closing p,
.wk-founder-about p,
.wk-founder-profile-copy p {
    margin: 0 0 14px;
}

.wk-history-list,
.wk-history-summary-flat ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.wk-history-list li,
.wk-history-summary-flat li {
    position: relative;
    padding: 8px 0 8px 14px;
    border-bottom: 1px solid var(--brand-grey-light);
    color: var(--text-dark);
}
.wk-history-list li::before,
.wk-history-summary-flat li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--brand-green);
}
.wk-history-note {
    margin-top: 12px;
    color: var(--brand-grey);
    font-size: 0.92rem;
}
.wk-history-summary-flat {
    display: grid;
    gap: 24px;
}
.wk-history-summary-flat h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: var(--brand-dark);
}
.wk-history-timeline .year h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 24px 0 8px;
    padding-top: 16px;
    border-top: 1px solid var(--brand-grey-light);
}
.wk-history-timeline .year:first-child h2 {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}
.wk-history-timeline .year ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.wk-history-timeline .year li {
    padding: 6px 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.wk-movie-stage {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
}
.wk-movie-stage-head {
    display: none;
}
.wk-movie-frame,
.wk-movie-frame-inner {
    border-radius: 0;
    box-shadow: none;
}
.wk-movie-note {
    margin-top: 16px;
    color: var(--brand-grey);
    font-size: 0.92rem;
}

#wk-stats .wk-scroll-cover-inner {
    position: relative;
    isolation: isolate;
    min-height: auto;
    box-shadow: none;
    background-color: #fff;
    overflow: hidden;
}

#wk-stats .wk-scroll-cover-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: var(--wk-stats-bg-img, url('../assets/img/stats-hands-bg.png')) center center / cover no-repeat;
    filter: grayscale(1) contrast(1) brightness(0.88);
    opacity: 0.18;
    -webkit-mask-image: radial-gradient(ellipse 95% 92% at 50% 50%, #000 42%, transparent 92%);
    mask-image: radial-gradient(ellipse 95% 92% at 50% 50%, #000 42%, transparent 92%);
}

#wk-stats .wk-scroll-cover-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 85% 80% at 50% 50%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 62%, rgba(255, 255, 255, 0.82) 100%);
}

#wk-stats .wk-container {
    position: relative;
    z-index: 1;
}

.wk-stats-intro {
    max-width: 960px;
    margin: 48px auto 0;
    padding: 44px 40px 0;
    border-top: 1px solid var(--brand-grey-light);
    text-align: center;
}

.wk-stats-intro::before {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: var(--brand-green);
    margin: 0 auto 36px;
}

.wk-stats-intro-text {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 2;
    color: var(--brand-dark);
    margin: 0 0 1.35em;
    word-break: keep-all;
    overflow-wrap: break-word;
    letter-spacing: -0.02em;
}

.wk-stats-intro-text.wk-stats-intro-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.wk-stats-intro-text.wk-stats-intro-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.wk-stats-intro-text:last-child {
    margin-bottom: 0;
    color: var(--brand-grey);
}

@media (prefers-reduced-motion: reduce) {
    .wk-stats-intro-text.wk-stats-intro-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.wk-stats-header {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wk-section-label.is-inline {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    display: inline-block;
    margin: 0 auto 12px;
}
.wk-section-title.is-compact {
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin: 0;
}

#wk-sec-scholarship .wk-scroll-cover-inner {
    display: block;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-color: #fff;
    background-image: linear-gradient(180deg, #f5f7f5 0%, #fff 38%, #f8faf8 100%);
    padding: calc(var(--wk-header-h) + 48px) 0 88px;
    box-shadow: none;
}

#wk-sec-scholarship .wk-scroll-cover-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 12%, rgba(0, 132, 86, 0.07) 0%, transparent 36%),
        radial-gradient(circle at 92% 88%, rgba(54, 71, 47, 0.06) 0%, transparent 34%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23008456' stroke-width='0.5' opacity='0.18'%3E%3Cpath d='M40 6c-6 14-20 22-20 40 0 12 9 22 20 22s20-10 20-22c0-18-14-26-20-40z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    background-size: auto, auto, 80px 80px;
    opacity: 0.45;
}

#wk-sec-scholarship .wk-scroll-cover-inner::after {
    content: '';
    position: absolute;
    top: 18%;
    right: -80px;
    width: 280px;
    height: 280px;
    z-index: 0;
    background: url('../assets/img/green_heart.jpg') center/cover no-repeat;
    opacity: 0.06;
    filter: grayscale(1);
    pointer-events: none;
    border-radius: 50%;
}

#wk-sec-scholarship .wk-section-label {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    transform: none;
    display: inline-block;
    margin: 0 auto 28px;
    width: fit-content;
    color: var(--brand-green);
    background: rgba(0, 132, 86, 0.08);
    border: 1px solid rgba(0, 132, 86, 0.18);
    border-radius: 4px;
    letter-spacing: 0.12em;
    padding: 6px 16px;
}

#wk-sec-scholarship .wk-scholarship {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

#wk-sec-scholarship .wk-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

#wk-sec-scholarship .wk-section-header {
    margin-bottom: 48px;
}

#wk-sec-scholarship .wk-section-header::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin: 22px auto 0;
    background: var(--brand-green);
}

#wk-sec-scholarship .wk-section-title em {
    color: var(--brand-green);
}

#wk-sec-scholarship .wk-section-desc {
    color: var(--brand-grey);
}

#wk-sec-scholarship .wk-sch-grid {
    gap: 22px;
}

.wk-sch-card {
    border-radius: 0;
    box-shadow: none;
    transform: none !important;
}

.wk-sch-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: none;
}

.wk-sch-card-inner {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid var(--brand-grey-light);
    border-top: 3px solid var(--brand-grey-light);
    background: #fff;
    padding: 28px 22px 24px;
    min-height: 228px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.wk-sch-card:hover .wk-sch-card-inner {
    border-color: rgba(0, 132, 86, 0.28);
    border-top-color: var(--brand-green);
    box-shadow: 0 14px 36px rgba(54, 71, 47, 0.09);
}

.wk-sch-card.is-primary .wk-sch-card-inner {
    background: linear-gradient(155deg, #fff 0%, #f2f8f4 100%);
    color: inherit;
    border-top-color: var(--brand-dark);
}

.wk-sch-card.is-primary h3,
.wk-sch-card.is-primary p {
    color: inherit;
}

.wk-sch-num {
    font-family: var(--font-en);
    font-size: clamp(2rem, 2.8vw, 2.6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.wk-sch-card.is-primary .wk-sch-num,
.wk-sch-card .wk-sch-num {
    color: rgba(54, 71, 47, 0.12);
    opacity: 1;
}

.wk-sch-card h3 {
    color: var(--brand-dark);
    font-size: 1.26rem;
    font-weight: 700;
    line-height: 1.35;
}

.wk-sch-card p {
    color: var(--brand-grey);
    font-size: 0.88rem;
    line-height: 1.65;
}

.wk-sch-card .wk-sch-img {
    margin-top: 4px;
}

.wk-dl-icons span {
    font-size: 10px;
    background: #fff;
    color: var(--brand-grey);
    padding: 4px 9px;
    border-radius: 4px;
    border: 1px solid var(--brand-grey-light);
    font-weight: 600;
}
.wk-btn-sch {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-dark);
    padding: 0;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    align-self: flex-start;
}

.wk-sch-card:hover .wk-btn-sch {
    color: var(--brand-green);
    border-bottom-color: var(--brand-green);
}

.wk-sch-card.is-primary .wk-btn-sch {
    color: var(--brand-dark);
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
}

.wk-sch-card.is-primary:hover .wk-btn-sch {
    color: var(--brand-green);
    border-bottom-color: var(--brand-green);
}

#wk-sec-partners .wk-scroll-cover-inner {
    background: var(--brand-grey-light);
}
.wk-partners-item {
    background: #fff;
    border: 0;
    box-shadow: none;
    padding: 20px 28px;
}

.wk-footer-info {
    text-align: center;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--brand-grey);
}
.wk-footer-info strong {
    color: var(--brand-dark);
    font-size: 14px;
}
.wk-footer-info a {
    color: var(--brand-grey);
    text-decoration: none;
}
.wk-footer-info a:hover {
    color: var(--brand-dark);
    text-decoration: underline;
}
.wk-footer-copy {
    font-size: 12px;
    color: var(--brand-grey);
}

#wk-top-btn {
    background: var(--brand-dark);
}

.wk-burger {
    font-size: 13px;
}

@media (min-width: 768px) {
    .wk-history-summary-flat {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .wk-greeting-body,
    .wk-founder-profile {
        grid-template-columns: 1fr;
    }
    .wk-inline-photo {
        max-width: 240px;
    }
    .wk-sub-wrap {
        grid-template-columns: 1fr;
        padding-top: 24px;
    }
    .wk-sub-sidebar #sm {
        border-right: 0;
        border-bottom: 1px solid var(--brand-grey-light);
        padding-bottom: 12px;
        margin-bottom: 8px;
    }
}

/* ── Polish v3: home fullpage, donation, boards, legacy reset ── */

.wk-nav-util {
    display: none;
}

html.wk-fullpage-active #wk-stats {
    display: flex;
    flex-direction: column;
    background: #fff;
}

html.wk-fullpage-active #wk-stats .wk-scroll-cover-inner {
    flex: 1;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--wk-header-h) 0 48px;
    box-sizing: border-box;
    box-shadow: none;
    background-color: #fff;
}

html.wk-fullpage-active #wk-stats .wk-container {
    width: 100%;
}

html.wk-fullpage-active #wk-sec-scholarship {
    display: flex;
    flex-direction: column;
    background: #fff;
}

html.wk-fullpage-active #wk-sec-scholarship .wk-scroll-cover-inner {
    flex: 1;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--wk-header-h) 0 48px;
    box-sizing: border-box;
    box-shadow: none;
    background-color: #fff;
    background-image: linear-gradient(180deg, #f5f7f5 0%, #fff 38%, #f8faf8 100%);
}

html.wk-fullpage-active #wk-sec-scholarship .wk-container {
    width: 100%;
}

.wk-memoir-label {
    position: absolute;
    top: calc(var(--wk-header-h) + 24px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

#wk-sec-donation .wk-scroll-cover-inner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--brand-dark);
}

#wk-sec-donation .wk-scroll-cover-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 78%, rgba(0, 132, 86, 0.22) 0%, transparent 46%),
        radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.08) 0%, transparent 42%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.12) 0%, transparent 58%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.45' opacity='0.14'%3E%3Cpath d='M36 8c-5 12-18 20-18 36 0 11 8 20 18 20s18-9 18-20c0-16-13-24-18-36z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    background-size: auto, auto, auto, 72px 72px;
    opacity: 0.78;
    z-index: 0;
}

#wk-sec-donation .wk-donation-inner {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #2a3824 0%, var(--brand-dark) 48%, #3a4d32 100%);
    padding: 56px 0 44px;
}

#wk-sec-donation .wk-donation-content {
    align-items: stretch;
    gap: clamp(28px, 5vw, 64px);
}

#wk-sec-donation .wk-donation-badge {
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 10px 18px;
}

#wk-sec-donation .wk-donation-badge span {
    font-size: 13px;
    letter-spacing: 0.04em;
}

#wk-sec-donation .wk-donation-title {
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

#wk-sec-donation .wk-donation-inner::before {
    display: block;
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 155, 90, 0.2) 0%, transparent 68%);
    pointer-events: none;
}

#wk-sec-donation .wk-donation-inner::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -70px;
    left: -50px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

#wk-sec-donation .wk-section-label.is-light {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    letter-spacing: 0.12em;
    padding: 6px 16px;
}

#wk-sec-donation .wk-donation-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    margin-top: 18px;
    background: var(--brand-green);
}

#wk-sec-donation .wk-donation-title em {
    color: #a8e8c8;
}

#wk-sec-donation .wk-donation-text p {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(15px, 1.7vw, 17px);
    line-height: 1.85;
}

#wk-sec-donation .wk-donation-text strong {
    color: #fff;
    font-weight: 800;
    background: rgba(0, 132, 86, 0.38);
    padding: 1px 8px;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

#wk-sec-donation .wk-btn-donation {
    background: #fff;
    color: var(--brand-dark) !important;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    padding: 14px 34px;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

#wk-sec-donation .wk-btn-donation:hover {
    background: var(--brand-green);
    color: #fff !important;
    border-color: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

#wk-sec-donation .wk-donation-highlights li {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

#wk-sec-donation .wk-donation-highlights strong {
    color: #b8f0d4;
    font-size: 1.15rem;
}

#wk-sec-donation .wk-donation-actions {
    margin-top: 4px;
}

#wk-sec-donation .wk-btn-donation-outline {
    border-radius: 4px;
    border-color: rgba(255, 255, 255, 0.42);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
}

#wk-sec-donation .wk-btn-donation-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.62);
}

#wk-sec-donation .wk-donation-visual {
    flex: 0 0 min(520px, 44vw);
    justify-content: center;
}

#wk-sec-donation .wk-donation-img {
    flex: none;
    width: 100%;
}

#wk-sec-donation .wk-donation-img img {
    max-height: min(54vh, 440px);
    border-radius: 10px;
    border: 3px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 22px 56px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

#wk-sec-donation .wk-donation-account-card {
    margin-top: -36px;
    margin-right: 12px;
    border-left-color: var(--brand-green);
    border-radius: 8px;
}

#wk-sec-donation .wk-donation-account-label {
    color: var(--brand-green);
}

#wk-sec-donation .wk-donation-account-card strong {
    color: var(--brand-dark);
    font-size: 1.08rem;
}

#wk-sec-donation .wk-donation-content:hover .wk-donation-img img {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.wk-sub-content .chk_box input[type="checkbox"]:checked + label span,
#bo_list .chk_box input[type="checkbox"]:checked + label span {
    background-color: var(--brand-dark) !important;
    border-color: var(--brand-dark) !important;
}

.wk-sub-content #bo_v_title .bo_v_tit,
.wk-sub-content #bo_v_con {
    color: var(--text-dark);
}

/* neutralize legacy page ids if sub.css cached */
.wk-sub-content #page-guide h2::before,
.wk-sub-content #page-team h2::before,
.wk-sub-content #page-apply h2::before {
    content: none !important;
}
.wk-sub-content .song-txt hr {
    border-top-color: var(--brand-grey-light);
}

/* ── Sub pages: woonkyung-style layout ── */

.wk-sub-page-body {
    background: #fff;
}

.wk-sub-page {
    background: #fff;
}

.wk-sub-hero {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    height: calc(var(--wk-header-h) + var(--wk-sub-hero-h));
    min-height: calc(var(--wk-header-h) + var(--wk-sub-hero-h));
    max-height: calc(var(--wk-header-h) + var(--wk-sub-hero-h));
    padding: calc(var(--wk-header-h) + 19px) 24px 29px;
    background-color: #eef0ec;
}

.wk-sub-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto auto auto 3em auto;
    align-content: center;
    gap: 0;
}

.wk-sub-hero-group {
    margin: 0 0 10px;
    font-family: var(--font-serif);
    font-size: clamp(0.9rem, 1.5vw, 1.06rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    min-height: 1.2em;
}

.wk-sub-hero-group.is-empty {
    visibility: hidden;
}

.wk-sub-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--wk-sub-hero-img);
    background-size: cover;
    background-position: var(--wk-sub-hero-position, center 20%);
    background-repeat: no-repeat;
    filter: contrast(1.14) saturate(1.18) brightness(0.94);
    transform: none;
}

.wk-sub-hero.is-panoramic::before {
    background-size: cover;
    background-position: var(--wk-sub-hero-position, center 58%);
}

.wk-sub-hero.is-panoramic .wk-sub-hero-inner {
    align-content: start;
    padding-top: 4px;
}

.wk-sub-hero.is-panoramic .wk-sub-hero-overlay {
    background:
        linear-gradient(180deg, rgba(26, 35, 22, 0.58) 0%, rgba(26, 35, 22, 0.38) 42%, rgba(26, 35, 22, 0.12) 68%, rgba(26, 35, 22, 0.28) 100%),
        radial-gradient(circle at 18% 12%, rgba(0, 132, 86, 0.1) 0%, transparent 42%);
}

.wk-sub-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(26, 35, 22, 0.22) 0%, rgba(54, 71, 47, 0.34) 52%, rgba(26, 35, 22, 0.42) 100%),
        radial-gradient(circle at 18% 12%, rgba(0, 132, 86, 0.1) 0%, transparent 42%);
    pointer-events: none;
}

.wk-sub-tabs {
    margin-bottom: 0;
    border-bottom: none;
}

.wk-sub-nav-bar {
    background: #fff;
    border-bottom: 1px solid var(--brand-grey-light);
}

.wk-sub-nav-bar .wk-sub-tabs {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.wk-sub-nav-bar .wk-sub-tabs ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wk-sub-nav-bar .wk-sub-tabs li {
    margin: 0;
}

.wk-sub-nav-bar .wk-sub-tabs a {
    display: block;
    padding: 14px 20px;
    font-family: var(--font-serif);
    font-size: calc(14px * 1.15);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--brand-grey);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.wk-sub-nav-bar .wk-sub-tabs a:hover {
    color: var(--brand-dark);
    background: rgba(0, 132, 86, 0.08);
}

.wk-sub-nav-bar .wk-sub-tabs li.is-active a,
.wk-sub-nav-bar .wk-sub-tabs li.is-active a:hover {
    color: #fff;
    font-weight: 800;
    background: var(--brand-green);
    border-bottom-color: var(--brand-dark);
    box-shadow: inset 0 -3px 0 var(--brand-dark);
}

.wk-sub-hero-title {
    margin: 0 0 6px;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.7vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    min-height: 2.4em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.wk-sub-hero-meta {
    margin: 0 0 8px;
    font-family: var(--font-serif);
    font-size: clamp(0.85rem, 1.35vw, 1.02rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    letter-spacing: 0.06em;
    min-height: 1.2em;
    line-height: 1.2;
}

.wk-sub-hero-meta.is-empty {
    visibility: hidden;
}

.wk-sub-hero-lead {
    max-width: 920px;
    margin: 0 0 8px;
    font-family: var(--font-serif);
    font-size: clamp(0.81rem, 1.28vw, 0.95rem);
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.48);
    word-break: keep-all;
    min-height: 3em;
    max-height: 3em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.wk-sub-hero-lead.is-empty {
    visibility: hidden;
}

.wk-sub-hero-links {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 7px 14px;
    min-height: 28px;
    margin: 0;
}

.wk-sub-hero-links.is-empty {
    visibility: hidden;
}

.wk-sub-hero-links a {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.65);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.wk-sub-hero-links a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.9);
}

.wk-page-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 7px 14px;
    margin: 0 0 24px;
}

.wk-page-actions a {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-dark);
    text-decoration: none;
    border-bottom: 2px solid rgba(0, 132, 86, 0.35);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.wk-page-actions a:hover {
    color: var(--brand-green);
    border-bottom-color: var(--brand-green);
}

.wk-sub-main {
    padding: 40px 24px 88px;
}

.wk-sub-page .wk-sub-content {
    max-width: 1080px;
    margin: 0 auto;
    min-width: 0;
}

.wk-sub-prose .song-txt {
    font-size: 15px;
    line-height: 1.9;
    color: var(--brand-grey);
}

.wk-sub-prose .song-txt p {
    text-align: left;
    margin: 0 0 1.15em;
}

.wk-sub-prose .song-txt h2,
.wk-sub-prose .song-txt h3 {
    font-family: var(--font-serif);
    color: var(--brand-dark);
    font-weight: 700;
    line-height: 1.4;
}

.wk-sub-prose .song-txt h2 {
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    margin: 2.2em 0 0.85em;
    padding-top: 1.6em;
    border-top: 1px solid var(--brand-grey-light);
}

.wk-sub-prose .song-txt h2:first-child,
.wk-sub-prose .wk-scholar-block:first-child h2,
.wk-sub-prose section:first-child h2 {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.wk-sub-prose .song-txt h3 {
    font-size: 1.15rem;
    margin: 1.6em 0 0.65em;
}

.wk-sub-prose .wk-page-head {
    display: none;
}

.wk-sub-prose .wk-founder-profile {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
    margin: 8px 0 32px;
}

.wk-sub-prose .wk-founder-photo img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 12px 36px rgba(54, 71, 47, 0.12);
}

.wk-sub-prose .wk-founder-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 16px;
}

.wk-sub-prose .wk-founder-name span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-grey);
    margin-left: 8px;
}

/* intro page — card inner padding (scoped) */
#page-mr-song .wk-founder-about {
    padding: 28px 0;
}

#page-mr-song .wk-founder-block {
    border-top: 0;
}

#page-mr-song .wk-founder-profile,
#page-mr-song .wk-founder-story,
#page-mr-song .wk-founder-closing {
    padding: 32px 36px;
}

#page-mr-song .wk-founder-about h3 {
    margin: 0 0 16px;
}

#page-mr-song .wk-founder-story p + p {
    margin-top: 1.25em;
}

#page-mr-song .wk-founder-profile-copy p:last-child,
#page-mr-song .wk-founder-story p:last-child,
#page-mr-song .wk-founder-closing p:last-child {
    margin-bottom: 0;
}

.wk-sub-prose .wk-greeting-body {
    display: grid;
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.wk-sub-prose .wk-inline-photo img {
    width: 100%;
    border-radius: 4px;
}

.wk-sub-prose .wk-greeting-message h3 {
    margin-top: 0;
    border: 0;
    padding: 0;
    font-size: 1.25rem;
}

.wk-sub-prose .wk-greeting-sign {
    margin-top: 28px;
    text-align: right;
}

.wk-sub-prose .wk-greeting-sign img {
    max-height: 56px;
    width: auto;
}

.wk-sub-prose .wk-team-group {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 20px 28px;
    align-items: start;
    padding: 26px 0;
    border-bottom: 1px solid var(--brand-grey-light);
}

.wk-sub-prose .wk-team-group:first-child {
    border-top: 1px solid var(--brand-grey-light);
}

.wk-sub-prose .wk-team-list .wk-team-role {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 14px 10px;
    background: #eef0ee;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    word-break: keep-all;
}

.wk-sub-prose .wk-team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 36px;
    align-items: flex-start;
}

.wk-sub-prose .wk-team-member {
    flex: 1 1 160px;
    max-width: 100%;
    min-width: 0;
}

.wk-sub-prose .wk-team-member h3 {
    margin: 0 0 10px;
    padding: 0 0 8px;
    border-bottom: 1px solid #c5c9c3;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.35;
}

.wk-sub-prose .wk-team-member p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--brand-grey);
    line-height: 1.65;
}

.wk-sub-prose .wk-team-member.is-former {
    flex: 1 1 140px;
}

.wk-sub-prose .wk-team-period {
    font-size: 0.84rem;
    color: var(--brand-grey);
}

.wk-sub-prose #page-team .wk-team-org > h3 {
    margin: 1.6em 0 0.65em;
    padding-top: 0;
    color: var(--brand-dark);
    font-size: 1.15rem;
}

.wk-sub-prose .wk-team-org img {
    width: 100%;
    max-width: 720px;
    margin: 12px auto 0;
}

.wk-sub-prose .wk-scholar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--brand-grey-light);
}

.wk-sub-prose .wk-scholar-nav a {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    text-decoration: none;
    padding: 8px 14px;
    border: 1px solid var(--brand-grey-light);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.wk-sub-prose .wk-scholar-nav a:hover {
    color: var(--brand-green);
    border-color: var(--brand-green);
    background: rgba(0, 132, 86, 0.05);
}

.wk-sub-prose #page-guide.song-txt {
    font-family: var(--font-sans, "Noto Sans KR", sans-serif);
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.wk-sub-prose #page-guide .wk-scholar-page-title {
    font-family: var(--font-sans, "Noto Sans KR", sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0 0 20px;
    padding: 0;
    border: 0;
}

.wk-sub-prose #page-guide table.type10,
.wk-sub-prose #page-guide table.type10 td {
    font-family: var(--font-sans, "Noto Sans KR", sans-serif);
}

.wk-sub-prose #page-guide table.type10 {
    border: 0;
    border-top: 2px solid #666;
}

.wk-sub-prose #page-guide table.type10 td {
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
    border-bottom: 1px solid #ddd !important;
    padding: 14px 16px !important;
    color: #333;
}

.wk-sub-prose #page-guide table.type10 tr:last-child td {
    border-bottom: 0 !important;
}

.wk-sub-prose .wk-scholar-flat div {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--brand-grey-light);
}

.wk-sub-prose .wk-scholar-flat dt {
    font-weight: 700;
    color: var(--brand-dark);
}

.wk-sub-prose .wk-scholar-flat dd {
    margin: 0;
}

.wk-sub-prose #page-application table.wk-application-table,
.wk-sub-prose #page-application table.wk-application-table th,
.wk-sub-prose #page-application table.wk-application-table td {
    font-family: var(--font-sans, "Noto Sans KR", sans-serif);
}

.wk-sub-prose #page-application table.wk-application-table {
    border: 0;
    box-shadow: none;
    background: transparent;
    border-top: 2px solid #666;
}

.wk-sub-prose #page-application table.wk-application-table thead th.wk-application-col-name,
.wk-sub-prose #page-application table.wk-application-table tbody th.wk-application-col-name {
    text-align: left !important;
}

.wk-sub-prose #page-application table.wk-application-table td.wk-application-note {
    text-align: center !important;
}

.wk-sub-prose #page-application table.wk-application-table thead th.wk-application-col-dl,
.wk-sub-prose #page-application table.wk-application-table tbody td.wk-application-col-dl {
    text-align: center !important;
}

.wk-sub-prose #page-application table.wk-application-table th,
.wk-sub-prose #page-application table.wk-application-table td {
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
    border-bottom: 1px solid #e8e8e8 !important;
}

.wk-sub-prose #page-application table.wk-application-table thead th {
    height: 48px !important;
    padding: 12px 16px !important;
    background: #f7f7f7 !important;
    color: #333 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #ddd !important;
}

.wk-sub-prose #page-application table.wk-application-table tbody th.wk-application-col-name {
    padding: 0 16px !important;
}

.wk-sub-prose #page-application table.wk-application-table tbody td.wk-application-col-dl {
    height: 64px !important;
    padding: 10px 8px !important;
}

.wk-sub-prose #page-application table.wk-application-table tr.is-note th,
.wk-sub-prose #page-application table.wk-application-table tr.is-note td.wk-application-note {
    height: 64px !important;
    padding: 0 16px !important;
}

.wk-sub-prose .wk-application-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wk-sub-prose .wk-application-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--brand-grey-light);
}

.wk-sub-prose .wk-donation-block {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--brand-grey-light);
}

.wk-sub-prose .wk-donation-block.is-alt {
    background: #f7f8f6;
    margin-left: -24px;
    margin-right: -24px;
    padding: 32px 24px;
    border-top: 0;
}

.wk-sub-prose .wk-donation-rows article {
    padding: 20px 0;
    border-bottom: 1px solid var(--brand-grey-light);
}

.wk-sub-prose .wk-donation-rows article.is-alt {
    background: transparent;
}

.wk-sub-prose .wk-donation-account-flat div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--brand-grey-light);
}

.wk-sub-prose #page-road .wk-road-info {
    display: block;
}

.wk-sub-prose .wk-road-intro {
    margin: 0 0 20px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--brand-grey);
}

.wk-sub-prose .wk-road-intro em {
    font-style: normal;
    font-weight: 700;
    color: var(--brand-green);
}

.wk-sub-prose .wk-road-address {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 10px;
    margin: 0;
    padding: 0;
    color: var(--brand-dark);
    font-size: 0.98rem;
    line-height: 1.7;
}

.wk-sub-prose .wk-road-address-road {
    display: inline;
}

.wk-sub-prose .wk-road-address-jibun {
    display: inline;
    font-size: 0.82rem;
    color: var(--brand-grey);
    white-space: nowrap;
}

.wk-sub-prose .wk-road-contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wk-sub-prose .wk-road-contact li {
    margin: 0;
    padding: 14px 0;
    border-bottom: 1px solid var(--brand-grey-light);
    color: var(--brand-dark);
    font-size: 0.98rem;
    line-height: 1.65;
}

.wk-sub-prose .wk-road-contact li:first-child {
    padding-top: 0;
}

.wk-sub-prose .wk-road-contact li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.wk-sub-prose .wk-road-contact a {
    color: var(--brand-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 132, 86, 0.28);
}

.wk-sub-prose .wk-road-contact a:hover {
    color: var(--brand-green);
    border-bottom-color: var(--brand-green);
}

.wk-sub-prose .wk-history-list {
    padding-left: 1.2em;
}

.wk-sub-prose .wk-history-list li {
    margin-bottom: 0.5em;
}

.wk-sub-prose .wk-movie-stage {
    margin-top: 8px;
}

.wk-sub-prose .wk-sitemap-map {
    overflow-x: auto;
}

.wk-sub-prose .wk-sitemap-map img {
    max-width: 100%;
    height: auto;
    display: block;
}

.wk-sub-prose #bo_list,
.wk-sub-prose #bo_v,
.wk-sub-prose .bo_list,
.wk-sub-prose .bo_v {
    font-size: 14px;
}

@media (max-width: 900px) {
    .wk-sub-hero {
        --wk-sub-hero-h: 200px;
        padding: calc(var(--wk-header-h) + 12px) 18px 20px;
    }

    .wk-sub-nav-bar .wk-sub-tabs {
        padding: 0 18px;
    }

    .wk-sub-nav-bar .wk-sub-tabs ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .wk-sub-nav-bar .wk-sub-tabs ul::-webkit-scrollbar {
        display: none;
    }

    .wk-sub-nav-bar .wk-sub-tabs a {
        white-space: nowrap;
        padding: 12px 16px;
        font-size: calc(13px * 1.15);
    }

    .wk-sub-main {
        padding: 32px 18px 64px;
    }

    #page-mr-song .wk-founder-profile,
    #page-mr-song .wk-founder-story,
    #page-mr-song .wk-founder-closing {
        padding: 26px 22px;
    }

    .wk-sub-prose .wk-founder-profile,
    .wk-sub-prose .wk-greeting-body {
        grid-template-columns: 1fr;
    }

    .wk-sub-prose .wk-scholar-flat div,
    .wk-sub-prose .wk-donation-account-flat div,
    .wk-sub-prose .wk-road-contact div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    #page-guide .wk-scholar-page-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    #page-guide table.type10 {
        font-size: 14px;
    }

    #page-guide table.type10 .wk-scholar-program,
    #page-guide table.type10 .wk-scholar-label {
        width: 96px;
    }

    #page-guide table.type10 td {
        padding: 12px 10px !important;
    }

    #page-application col.wk-application-col-name {
        width: 46%;
    }

    #page-application col.wk-application-col-dl {
        width: 18%;
    }

    #page-application table.wk-application-table thead th {
        height: 44px !important;
        padding: 10px 8px !important;
        font-size: 14px !important;
    }

    #page-application table.wk-application-table {
        font-size: 14px;
    }

    #page-application table.wk-application-table tbody th,
    #page-application table.wk-application-table td {
        padding: 12px 8px !important;
    }

    #page-application table.wk-application-table tbody td.wk-application-col-dl,
    #page-application table.wk-application-table tr.is-note th,
    #page-application table.wk-application-table tr.is-note td.wk-application-note {
        height: 56px !important;
    }

    #page-application table.wk-application-table tbody td.wk-application-col-dl {
        padding: 8px 4px !important;
    }

    #page-application .wk-dl-link {
        width: 40px;
        height: 40px;
    }

    #page-application .wk-dl-link img {
        width: 28px;
        height: 28px;
    }

    .wk-sub-prose .wk-team-group {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px 0;
    }

    .wk-sub-prose .wk-team-list .wk-team-role {
        min-height: 0;
        padding: 10px 12px;
    }

    .wk-sub-prose .wk-team-members {
        gap: 22px 24px;
    }

    .wk-sub-prose .wk-team-member,
    .wk-sub-prose .wk-team-member.is-former {
        flex: 1 1 100%;
    }
}

