@charset "utf-8";

/* =========================================================
   예강희망키움재단 메인 커스텀 스타일
   - 풀스크린 동영상 히어로(고정) + 콘텐츠 스크롤 reveal
   - 헤더(로고+메뉴) 1200px / 푸터 디자인
   ========================================================= */

/* ===== Pretendard 웹폰트 (jsDelivr fonts-archive, woff2) ===== */
@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/Pretendard/Pretendard-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/Pretendard/Pretendard-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/Pretendard/Pretendard-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 800;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/Pretendard/Pretendard-ExtraBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 900;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/gh/fonts-archive/Pretendard/Pretendard-Black.woff2') format('woff2');
}

/* ===== NanumSquareRound — 상단 GNB 메뉴 ===== */
@font-face {
    font-family: 'NanumSquareRound';
    src: url('../../../font/NanumSquareRoundL.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NanumSquareRound';
    src: url('../../../font/NanumSquareRoundR.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NanumSquareRound';
    src: url('../../../font/NanumSquareRoundB.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NanumSquareRound';
    src: url('../../../font/NanumSquareRoundEB.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --yg-navy: #00377b;
    --yg-navy-text: #16306b;
    --yg-pink: #d50078;
    --yg-footer: #243c7a;
    --yg-line: #e7e9ef;
    --yg-menu-line: #c9caca;
    --yg-menu-sub: #595757;
    --yg-dark-text: #231815;
}

/* ===== 전역 웹폰트: Pretendard ===== */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
li,
dt,
dd,
th,
td,
label,
blockquote,
input,
button,
select,
textarea {
    font-family: 'Pretendard', 'Malgun Gothic', 'Apple SD Gothic Neo', dotum, sans-serif !important;
}

/* ===== 공통 컨테이너 ===== */
.yg-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 서브페이지 브레드크럼(상단 위치) ===== */
#container_title.yg-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px 0;
    height: auto;
    line-height: 1.2;
    background: transparent;
    color: inherit;
    box-shadow: none;
    border: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-weight: normal;
}

#container_title.yg-breadcrumb a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

.yg-breadcrumb .yg-bc-home {
    color: #8a93a6;
    font-size: 16px;
}

.yg-breadcrumb .yg-bc-home:hover {
    color: var(--yg-navy);
}

.yg-breadcrumb .yg-bc-sep {
    margin: 0 9px;
    color: #c2c8d4;
    font-size: 14px;
}

.yg-breadcrumb .yg-bc-item {
    color: #8a93a6;
    font-size: 15px;
    font-weight: 500;
}

.yg-breadcrumb .yg-bc-current {
    color: var(--yg-navy);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    #container_title.yg-breadcrumb {
        padding: 20px 16px 0;
    }

    .yg-breadcrumb .yg-bc-current {
        font-size: 13px;
    }

    .yg-breadcrumb .yg-bc-item {
        font-size: 13px;
    }

    .yg-breadcrumb .yg-bc-home {
        font-size: 15px;
    }
}

/* =========================================================
   헤더
   ========================================================= */
#hd.yg-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: none;
    z-index: 1000;
    -webkit-transition: background .4s ease, -webkit-backdrop-filter .4s ease;
    transition: background .4s ease, backdrop-filter .4s ease;
}

/* 메인(index)에서는 동영상 위에 투명 */
body.is-index #hd.yg-header {
    background: transparent;
    box-shadow: none;
}

/* 스크롤·호버 시 헤더 반투명 배경 */
body.is-index #hd.yg-header.scrolled,
body.is-index #hd.yg-header:hover:not(.nav-open) {
    background: rgba(255, 255, 255, 0.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: none;
}

body.is-index #hd.yg-header.nav-open {
    background: #fff;
    box-shadow: none;
}

/* 서브페이지: 스크롤 시 브랜드 네이비 헤더 */
body:not(.is-index) #hd.yg-header.scrolled {
    background: #00377b;
    box-shadow: none;
}

body:not(.is-index) .yg-logo a {
    position: relative;
}

body:not(.is-index) .yg-logo .logo-color,
body:not(.is-index) .yg-logo .logo-white {
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

body:not(.is-index) .yg-logo .logo-white {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

body:not(.is-index) #hd.yg-header.scrolled .yg-logo .logo-color {
    opacity: 0;
}

body:not(.is-index) #hd.yg-header.scrolled .yg-logo .logo-white {
    opacity: 1;
}

body:not(.is-index) .yg-gnb>ul>li>a {
    -webkit-transition: color .4s ease;
    transition: color .4s ease;
}

body:not(.is-index) .yg-nav-toggle {
    -webkit-transition: color .4s ease;
    transition: color .4s ease;
}

body:not(.is-index) #hd.yg-header.scrolled .yg-gnb>ul>li>a {
    color: #fff;
}

body:not(.is-index) #hd.yg-header.scrolled .yg-gnb>ul>li>a:hover {
    color: #fff;
}

body:not(.is-index) #hd.yg-header.scrolled .yg-nav-toggle {
    color: #fff;
}

.yg-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 110px 0 20px;
    height: 84px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.yg-logo a {
    display: inline-block;
    line-height: 0;
}

.yg-logo img {
    height: 34px;
    width: auto;
}

/* 로고 전환(기본: 컬러 로고) */
.yg-logo .logo-white {
    display: none;
}

/* 영상 위(메인 상단, 스크롤 전)에서는 로고는 원래 색상 유지 + 흰색 메뉴 */
body.is-index #hd.yg-header:not(.scrolled):not(.nav-open):not(:hover) .yg-gnb>ul>li>a {
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

body.is-index #hd.yg-header:not(.scrolled):not(.nav-open):not(:hover) .yg-gnb>ul>li>a:hover {
    color: #fff;
    opacity: 1;
}

body.is-index #hd.yg-header:not(.scrolled):not(.nav-open):not(:hover) .yg-nav-toggle {
    color: #fff;
}

/* GNB */
#hd.yg-header .yg-gnb,
#hd.yg-header .yg-gnb a {
    font-family: 'NanumSquareRound', 'Pretendard', 'Malgun Gothic', sans-serif !important;
    font-weight: 800 !important;
}

.yg-gnb>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.yg-gnb>ul>li {
    position: relative;
    margin-left: 84px;
}

.yg-gnb>ul>li>a {
    display: block;
    padding: 30px 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--yg-navy);
    letter-spacing: -0.02em;
}

.yg-gnb>ul>li>a:hover {
    color: var(--yg-navy);
}

.yg-sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    background: #fff;
    box-shadow: none;
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    display: none;
}

.yg-gnb>ul>li:hover .yg-sub {
    display: block;
}

.yg-sub li a {
    display: block;
    padding: 11px 0;
    font-size: 15px;
    font-weight: 700;
    color: #555;
    white-space: nowrap;
    text-align: left;
}

.yg-sub li a:hover {
    color: var(--yg-pink);
}

/* =========================================================
   데스크탑 메가메뉴
   - 메인(index): 기존 컬럼형
   - 서브페이지: 한 줄 가로 탭
   ========================================================= */
@media (min-width: 769px) {

    /* 메인메뉴 hover: 중앙→양쪽 핑크 라인 (글자 너비, 헤더 하단 라인에 밀착) */
    .yg-gnb {
        -ms-flex-item-align: stretch;
        align-self: stretch;
        height: 84px;
    }

    .yg-gnb>ul {
        height: 100%;
    }

    .yg-gnb>ul>li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
    }

    .yg-gnb>ul>li>a {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
        padding: 0;
    }

    .yg-gnb>ul>li>a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 24px;
        width: 0;
        height: 3px;
        background: var(--yg-pink);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-transition: width .28s ease;
        transition: width .28s ease;
    }

    .yg-gnb>ul>li>a:hover::after,
    .yg-gnb>ul>li>a:focus::after,
    .yg-gnb>ul>li:hover>a::after,
    .yg-gnb>ul>li.is-menu-open>a::after {
        width: 100%;
    }

    body:not(.is-index) .yg-gnb>ul>li.is-menu-open>a,
    body:not(.is-index) .yg-gnb>ul>li:hover>a,
    body:not(.is-index) .yg-gnb>ul>li.has-current>a {
        color: var(--yg-navy);
    }

    body:not(.is-index) #hd.yg-header.scrolled .yg-gnb>ul>li.is-menu-open>a,
    body:not(.is-index) #hd.yg-header.scrolled .yg-gnb>ul>li:hover>a,
    body:not(.is-index) #hd.yg-header.scrolled .yg-gnb>ul>li.has-current>a {
        color: #fff;
    }

    body:not(.is-index) .yg-gnb>ul>li.has-current>a::after {
        width: 100%;
    }

    /* --- 메인: 기존 컬럼형 메가메뉴 --- */
    body.is-index #hd.yg-header:hover .yg-sub {
        display: block;
    }

    body.is-index .yg-sub {
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        padding: 24px 0;
        min-width: 150px;
        width: auto;
        border: 0;
    }

    body.is-index .yg-sub li {
        border-right: 0;
    }

    body.is-index .yg-sub li a {
        display: block;
        height: auto;
        line-height: normal;
        padding: 11px 0;
        font-size: 15px;
        font-weight: 700;
        color: #555;
        text-align: left;
        border-bottom: 0;
    }

    body.is-index .yg-sub li a:hover {
        color: var(--yg-pink);
        border-bottom-color: transparent;
    }

    body.is-index #hd.yg-header::after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 0;
        background: rgba(255, 255, 255, 0.55);
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        z-index: -1;
        -webkit-transition: opacity .25s ease;
        transition: opacity .25s ease;
        pointer-events: auto;
    }

    body.is-index #hd.yg-header:hover::after {
        opacity: 1;
        visibility: visible;
        height: 270px;
    }

    /* --- 서브페이지: 한 줄 가로 탭 --- */
    body:not(.is-index) #hd.yg-header {
        height: 84px;
        box-sizing: border-box;
        overflow: visible;
    }

    /* 1·2차 메뉴 구분선: 윈도우 전체 너비 */
    body:not(.is-index) #hd.yg-header::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background: var(--yg-menu-line);
        pointer-events: none;
        z-index: 3;
    }

    body:not(.is-index) #hd.yg-header.scrolled::before {
        background: var(--yg-menu-line);
    }

    body:not(.is-index) .yg-header-inner {
        position: relative;
        z-index: 2;
        height: 84px;
        box-sizing: border-box;
        border-bottom: 0;
        overflow: visible;
        isolation: isolate;
    }

    /* 1차 메뉴 배경(2차 메뉴가 뒤에서 펼쳐질 때 하단 가림) */
    body:not(.is-index) .yg-header-inner::after {
        content: "";
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        width: auto;
        height: 84px;
        -webkit-transform: none;
        transform: none;
        background: #fff;
        z-index: 0;
        pointer-events: none;
        -webkit-transition: background .4s ease;
        transition: background .4s ease;
    }

    body:not(.is-index) #hd.yg-header.scrolled .yg-header-inner::after {
        background: #00377b;
    }

    body:not(.is-index) .yg-logo,
    body:not(.is-index) .yg-nav-toggle {
        position: relative;
        z-index: 1;
    }

    body:not(.is-index) .yg-gnb {
        position: static;
        z-index: auto;
    }

    body:not(.is-index) .yg-gnb>ul>li {
        position: static;
    }

    body:not(.is-index) .yg-gnb>ul>li>a {
        position: relative;
        z-index: 1;
    }

    body:not(.is-index) .yg-gnb>ul>li>a::after {
        z-index: 2;
    }

    body:not(.is-index) .yg-gnb>ul>li:hover .yg-sub,
    body:not(.is-index) .yg-gnb>ul>li.is-menu-open .yg-sub {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        min-width: 0;
        padding: 0;
        background: #fff;
        border-top: 0;
        border-bottom: 1px solid var(--yg-menu-line);
        box-shadow: none;
        box-sizing: border-box;
        z-index: -1;
        list-style: none;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-animation: yg-sub-reveal .28s ease forwards;
        animation: yg-sub-reveal .28s ease forwards;
    }

    body:not(.is-index) .yg-gnb>ul>li:hover .yg-sub li,
    body:not(.is-index) .yg-gnb>ul>li.is-menu-open .yg-sub li {
        opacity: 0;
        -webkit-animation: yg-sub-item-reveal .32s ease forwards;
        animation: yg-sub-item-reveal .32s ease forwards;
    }

    body:not(.is-index) .yg-gnb>ul>li:hover .yg-sub li:nth-child(1),
    body:not(.is-index) .yg-gnb>ul>li.is-menu-open .yg-sub li:nth-child(1) {
        -webkit-animation-delay: .04s;
        animation-delay: .04s;
    }

    body:not(.is-index) .yg-gnb>ul>li:hover .yg-sub li:nth-child(2),
    body:not(.is-index) .yg-gnb>ul>li.is-menu-open .yg-sub li:nth-child(2) {
        -webkit-animation-delay: .08s;
        animation-delay: .08s;
    }

    body:not(.is-index) .yg-gnb>ul>li:hover .yg-sub li:nth-child(3),
    body:not(.is-index) .yg-gnb>ul>li.is-menu-open .yg-sub li:nth-child(3) {
        -webkit-animation-delay: .12s;
        animation-delay: .12s;
    }

    body:not(.is-index) .yg-gnb>ul>li:hover .yg-sub li:nth-child(4),
    body:not(.is-index) .yg-gnb>ul>li.is-menu-open .yg-sub li:nth-child(4) {
        -webkit-animation-delay: .16s;
        animation-delay: .16s;
    }

    body:not(.is-index) .yg-gnb>ul>li:hover .yg-sub li:nth-child(5),
    body:not(.is-index) .yg-gnb>ul>li.is-menu-open .yg-sub li:nth-child(5) {
        -webkit-animation-delay: .2s;
        animation-delay: .2s;
    }

    @-webkit-keyframes yg-sub-reveal {
        from {
            opacity: 0;
            -webkit-transform: scaleY(0);
            transform: scaleY(0);
        }

        to {
            opacity: 1;
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
        }
    }

    @keyframes yg-sub-reveal {
        from {
            opacity: 0;
            -webkit-transform: scaleY(0);
            transform: scaleY(0);
        }

        to {
            opacity: 1;
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
        }
    }

    @-webkit-keyframes yg-sub-item-reveal {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes yg-sub-item-reveal {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @media (prefers-reduced-motion: reduce) {

        body:not(.is-index) .yg-gnb>ul>li:hover .yg-sub,
        body:not(.is-index) .yg-gnb>ul>li.is-menu-open .yg-sub,
        body:not(.is-index) .yg-gnb>ul>li:hover .yg-sub li,
        body:not(.is-index) .yg-gnb>ul>li.is-menu-open .yg-sub li {
            -webkit-animation: none;
            animation: none;
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }

    /* 메인메뉴→서브메뉴 이동 시 hover 끊김 방지(구분선 위 투명 브릿지) */
    body:not(.is-index) .yg-gnb>ul>li:hover .yg-sub::before,
    body:not(.is-index) .yg-gnb>ul>li.is-menu-open .yg-sub::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 0;
        width: 100%;
        height: 8px;
        background: transparent;
    }

    body:not(.is-index) .yg-sub {
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        padding: 0;
        min-width: 0;
        z-index: -1;
    }

    body:not(.is-index) .yg-sub li {
        position: relative;
        border-right: 0;
    }

    body:not(.is-index) .yg-sub li:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 11px;
        bottom: 11px;
        right: 0;
        width: 1px;
        background: var(--yg-menu-line);
        pointer-events: none;
    }

    body:not(.is-index) .yg-sub li:last-child {
        border-right: 0;
    }

    body:not(.is-index) .yg-sub li a {
        position: relative;
        display: block;
        width: 152px;
        height: 40px;
        line-height: 40px;
        padding: 0 8px;
        font-size: 15px;
        font-weight: 700;
        color: var(--yg-menu-sub);
        white-space: nowrap;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        box-sizing: border-box;
        -webkit-transition: color .2s ease;
        transition: color .2s ease;
    }

    body:not(.is-index) .yg-sub li a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 100%;
        height: 3px;
        background: var(--yg-navy);
        -webkit-transform: translateX(-50%) scaleX(0);
        transform: translateX(-50%) scaleX(0);
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transition: -webkit-transform .28s ease;
        transition: transform .28s ease;
    }

    body:not(.is-index) .yg-sub li a:hover,
    body:not(.is-index) .yg-sub li a:focus {
        color: var(--yg-menu-sub);
    }

    body:not(.is-index) .yg-sub li.is-current>a,
    body:not(.is-index) .yg-sub li a.is-current {
        color: var(--yg-navy);
    }

    body:not(.is-index) .yg-sub li.is-current>a::after,
    body:not(.is-index) .yg-sub li a.is-current::after {
        background: var(--yg-navy);
        -webkit-transform: translateX(-50%) scaleX(1);
        transform: translateX(-50%) scaleX(1);
    }

    body:not(.is-index) .yg-sub li a:hover::after,
    body:not(.is-index) .yg-sub li a:focus::after {
        -webkit-transform: translateX(-50%) scaleX(1);
        transform: translateX(-50%) scaleX(1);
    }

    body:not(.is-index) #hd.yg-header::after {
        display: none;
    }
}

/* 중간 화면(태블릿~소형 데스크탑): 간격 축소로 잘림/겹침 방지 */
@media (min-width: 769px) and (max-width: 1100px) {
    .yg-header-inner {
        padding: 0 80px 0 24px;
    }

    .yg-gnb>ul>li {
        margin-left: 56px;
    }

    body:not(.is-index) .yg-sub {
        min-width: 0;
    }

    body:not(.is-index) .yg-sub li a {
        width: 132px;
        font-size: 14px;
        padding: 0 6px;
    }

    .yg-gnb>ul>li>a {
        font-size: 16px;
    }
}

/* 모바일 토글 버튼 */
.yg-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--yg-navy);
    font-size: 26px;
    line-height: 1;
}

/* =========================================================
   메인 레이아웃 리셋 (index 전용)
   ========================================================= */
body.is-index {
    background: #fff;
}

body.is-index #wrapper,
body.is-index #container {
    background: transparent;
    min-height: 0;
    margin: 0;
    padding: 0;
    max-width: none;
    width: 100%;
}

/* 가로 스크롤 방지 (장식 요소가 화면 밖으로 나가는 경우) */
html {
    overflow-x: hidden;
}

/* =========================================================
   서브페이지: 푸터를 화면 하단에 고정 (sticky footer)
   ========================================================= */
body:not(.is-index) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    background: #fff;
}

body:not(.is-index) #wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding-top: 84px;
    background: #fff;
}

body:not(.is-index) #container {
    background: #fff;
}

body:not(.is-index) #ft.yg-footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* =========================================================
   히어로 (풀스크린 동영상, 고정)
   ========================================================= */
.yg-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    background: #043874;
}

.yg-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none;
}

.yg-hero-dim {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .10)), color-stop(45%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .10)));
    background: linear-gradient(to bottom, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, .10) 100%);
}

.yg-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 56%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    padding: 0 20px;
}

.yg-hero-leaf {
    display: block;
    width: 34px;
    margin: 0 auto 20px;
    -webkit-filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.14)) drop-shadow(0 0 8px rgba(0, 0, 0, 0.08));
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.14)) drop-shadow(0 0 8px rgba(0, 0, 0, 0.08));
}

.yg-hero-content h2 {
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 18px rgba(0, 0, 0, 0.2);
}

.yg-hero-content p {
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 16px rgba(0, 0, 0, 0.2);
}

.yg-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 26px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 14px;
    z-index: 2;
}

.yg-scroll-cue::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    -webkit-animation: yg-cue 1.6s infinite;
    animation: yg-cue 1.6s infinite;
}

@-webkit-keyframes yg-cue {
    0% {
        opacity: 0;
        -webkit-transform: translateY(0)
    }

    40% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(12px)
    }
}

@keyframes yg-cue {
    0% {
        opacity: 0;
        transform: translateY(0)
    }

    40% {
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: translateY(12px)
    }
}

/* 동영상 위로 올라오는 영역 */
.yg-spacer {
    height: 100vh;
}

.yg-below {
    position: relative;
    z-index: 2;
    background: #fff;
}

/* =========================================================
   새소식 섹션
   ========================================================= */
.yg-news {
    position: relative;
    padding: 90px 0 100px;
    background: #fff;
}

.yg-news-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 52px;
}

.yg-news-head h2 {
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 30px;
    font-weight: 800;
    color: var(--yg-navy);
    letter-spacing: -0.02em;
}

.yg-news-head .yg-leaf {
    width: 22px;
    margin-left: 8px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: -10px;
}

.yg-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.yg-card {
    position: relative;
    display: block;
    padding: 42px 24px 26px;
    background: #fff;
    border: 1px solid var(--yg-line);
    border-radius: 14px;
    min-height: 246px;
    -webkit-transition: box-shadow .2s ease, -webkit-transform .2s ease;
    transition: box-shadow .2s ease, transform .2s ease;
}

.yg-card:hover {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    border-color: var(--yg-pink);
}

/* 마우스 오버 시 자료실(핑크)처럼 색상 변경 */
.yg-card:hover .yg-tag {
    background: var(--yg-pink);
}

.yg-card:hover .yg-date {
    color: var(--yg-pink);
}

.yg-card.is-featured {
    border: 2px solid var(--yg-pink);
}

/* 태그: 카드 상단 테두리 중앙에 걸치는 형태 */
.yg-card .yg-tag {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 6px 18px;
    background: var(--yg-navy);
    color: #fff;
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 13px;
    font-weight: 800;
    border-radius: 20px;
    white-space: nowrap;
}

.yg-card.is-featured .yg-tag {
    background: var(--yg-pink);
}

.yg-card .yg-tit {
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 17px;
    font-weight: 800;
    color: #1c2b50;
    line-height: 1.45;
    height: 4.35em;
    /* 3줄 고정 (line-height 1.45 × 3) */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yg-card .yg-desc {
    margin-top: 14px;
    font-size: 13.5px;
    color: #9298a6;
    line-height: 1.6;
    height: 4.8em;
    /* 3줄 고정 (line-height 1.6 × 3) */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yg-card .yg-date {
    margin-top: 18px;
    font-size: 13px;
    color: #aeb3bf;
}

.yg-card.is-featured .yg-date {
    color: var(--yg-pink);
}

.yg-card .yg-empty {
    color: #b7bcc7;
    font-size: 14px;
    padding: 30px 0;
}

/* 배경 나뭇잎 장식 */
.yg-leaf-deco {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

/* 메인화면 잎 조정 */
.yg-leaf-deco.d1 {
    width: 60px;
    top: 180px;
    left: calc(50% - 640px);
    right: auto;
    bottom: auto;
}

.yg-leaf-deco.d2 {
    width: 60px;
    bottom: 140px;
    left: calc(50% - 750px);
    right: auto;
    top: auto;
}

.yg-leaf-deco.d3 {
    width: 60px;
    top: 220px;
    right: calc(50% - 640px);
    left: auto;
    bottom: auto;
}

.yg-leaf-deco.d4 {
    width: 60px;
    bottom: 160px;
    right: calc(50% - 720px);
    left: auto;
    top: auto;
}

/* =========================================================
   푸터
   ========================================================= */
#ft.yg-footer {
    position: relative;
    z-index: 2;
    background: var(--yg-footer);
    padding: 48px 20px 44px;
    margin: 0;
}

.yg-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* 상단행: 로고 + 링크 | 협력기관 */
.yg-ft-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 5px;
}

.yg-ft-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 70px;
}

.yg-ft-logo {
    line-height: 0;
}

.yg-ft-logo img {
    height: 30px;
}

.yg-ft-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.yg-ft-links a+a {
    margin-left: 48px;
}

.yg-ft-partners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 28px;
}

.yg-ft-partners img {
    height: 24px;
}

/* 하단행: 주소 + 저작권 | SNS + 패밀리사이트 */
.yg-ft-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

#ft.yg-footer .yg-ft-addr {
    margin: 0;
    padding: 0;
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

#ft.yg-footer .yg-ft-copy {
    margin: 8px 0 0;
    padding: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.yg-ft-utils {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 22px;
}

.yg-ft-sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.yg-ft-sns a {
    line-height: 0;
}

.yg-ft-sns a img {
    height: 32px;
}

.yg-family select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    padding: 9px 44px 9px 18px;
    border-radius: 22px;
    min-width: 160px;
    font-size: 13px;
}

.yg-family select option {
    color: #222;
}

/* 공통 leaf svg */
.yg-leaf-svg {
    display: inline-block;
}

/* =========================================================
   반응형
   ========================================================= */
@media (max-width: 1024px) {
    .yg-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .yg-hero-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .yg-header-inner {
        height: 64px;
        padding: 0 16px;
    }

    body:not(.is-index) #wrapper {
        padding-top: 64px;
    }

    .yg-logo img {
        height: 28px;
    }

    .yg-nav-toggle {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .yg-gnb {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
        display: none;
    }

    #hd.nav-open .yg-gnb {
        display: block;
    }

    .yg-gnb>ul {
        display: block;
    }

    .yg-gnb>ul>li {
        margin-left: 0;
    }

    .yg-gnb>ul>li>a {
        padding: 15px 24px;
        border-bottom: 1px solid #f0f0f0;
    }

    .yg-sub {
        position: static;
        -webkit-transform: none;
        transform: none;
        display: block;
        min-width: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 4px 0 10px;
        background: #fafafa;
    }

    .yg-sub li a {
        text-align: left;
        padding: 9px 40px;
        color: #777;
    }

    body.is-index #hd.yg-header {
        background: #fff;
        box-shadow: none;
    }

    /* 모바일에서는 헤더가 흰 배경이므로 로고/메뉴를 다시 컬러로 */
    body.is-index #hd.yg-header:not(.scrolled):not(.nav-open) .yg-logo .logo-color {
        display: inline-block;
    }

    body.is-index #hd.yg-header:not(.scrolled):not(.nav-open) .yg-logo .logo-white {
        display: none;
    }

    body.is-index #hd.yg-header:not(.scrolled):not(.nav-open):not(:hover) .yg-gnb>ul>li>a {
        color: var(--yg-navy);
        text-shadow: none;
    }

    body.is-index #hd.yg-header:not(.scrolled):not(.nav-open):not(:hover) .yg-nav-toggle {
        color: var(--yg-navy);
    }

    .yg-hero-content {
        top: 54%;
    }

    .yg-hero-content h2 {
        font-size: 27px;
    }

    .yg-hero-content p {
        font-size: 20px;
        margin-top: 16px;
    }

    .yg-hero-leaf {
        width: 28px;
        margin-bottom: 16px;
    }

    .yg-news {
        padding: 60px 0 70px;
    }

    .yg-news-head h2 {
        font-size: 23px;
    }

    .yg-news-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
    }

    .yg-card {
        min-height: 0;
    }

    .yg-card .yg-tit {
        height: auto;
    }

    .yg-card .yg-desc {
        height: auto;
    }

    .yg-leaf-deco,
    .yg-leaf-repeat {
        display: none;
    }

    .yg-ft-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .yg-ft-brand {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .yg-ft-links a+a {
        margin-left: 20px;
    }

    .yg-ft-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .yg-ft-utils {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 16px;
    }
}

/* =========================================================
   서브 콘텐츠 페이지 (키움 등)
   ========================================================= */
.yg-page {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 90px;
    box-sizing: border-box;
}

.yg-page>.yg-page-intro,
.yg-page>.yg-ktabs,
.yg-page>.yg-ktab-panel,
.yg-page>.yg-kiwoom-card,
.yg-page>.yg-help-card,
.yg-page>.yg-help-panel {
    position: relative;
    z-index: 1;
}

/* 키움 페이지 잎 장식 */
.yg-kiwoom .yg-leaf-repeat--left {
    top: 480px;
    left: -208px;
    bottom: 0;
    width: 160px;
    background-image: url('../img/custom/main_bg_icon_left_repeat.svg');
    background-size: 160px 1216px;
    background-position: top left;
}

.yg-kiwoom .yg-leaf-repeat--right {
    top: 340px;
    right: -148px;
    bottom: 0;
    width: 160px;
    background-image: url('../img/custom/main_bg_icon_right_repeat.svg');
    background-size: 160px 1176px;
    background-position: top right;
}

/* 도움 페이지 잎 장식 */
.yg-help .yg-leaf-repeat--left {
    top: 420px;
    left: -208px;
    bottom: 0;
    width: 160px;
    background-image: url('../img/custom/main_bg_icon_left_repeat.svg');
    background-size: 160px 1216px;
    background-position: top left;
}

.yg-help .yg-leaf-repeat--right {
    top: 300px;
    right: -148px;
    bottom: 0;
    width: 160px;
    background-image: url('../img/custom/main_bg_icon_right_repeat.svg');
    background-size: 160px 1176px;
    background-position: top right;
}

/* 돕는 사람을 키움 페이지 잎 장식 */
.yg-grow .yg-leaf-repeat--left {
    top: 420px;
    left: -208px;
    bottom: 0;
    width: 160px;
    background-image: url('../img/custom/main_bg_icon_left_repeat.svg');
    background-size: 160px 1216px;
    background-position: top left;
}

.yg-grow .yg-leaf-repeat--right {
    top: 300px;
    right: -148px;
    bottom: 0;
    width: 160px;
    background-image: url('../img/custom/main_bg_icon_right_repeat.svg');
    background-size: 160px 1176px;
    background-position: top right;
}

/* 성과 아카이빙 페이지 잎 장식 */
.yg-archive .yg-leaf-repeat--left {
    top: 400px;
    left: -208px;
    bottom: 0;
    width: 160px;
    background-image: url('../img/custom/main_bg_icon_left_repeat.svg');
    background-size: 160px 1216px;
    background-position: top left;
}

.yg-archive .yg-leaf-repeat--right {
    top: 280px;
    right: -148px;
    bottom: 0;
    width: 160px;
    background-image: url('../img/custom/main_bg_icon_right_repeat.svg');
    background-size: 160px 1176px;
    background-position: top right;
}

.yg-page-desc--archive {
    font-size: 17px;
    font-weight: 700;
}

/* 재단소개 페이지 */
.yg-about-lead {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.yg-about-lead p {
    margin: 0 0 22px;
    color: #00377b;
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.85;
    letter-spacing: -0.02em;
}

.yg-about-lead p:last-child {
    margin-bottom: 0;
}

.yg-about-infographic {
    max-width: 580px;
    width: 100%;
    margin: 56px auto 0;
}

.yg-about-brand {
    max-width: 1040px;
    width: 100%;
    margin: 112px auto 80px;
    padding: 0 20px;
    box-sizing: border-box;
    container-type: inline-size;
    overflow-x: clip;
    --yg-about-brand-design-width: 998px;
    /* 축소 배율은 JS가 이 값들로 계산해 적용한다.
       length ÷ length 나눗셈을 지원하지 않는 브라우저(iOS Safari)가 있어 CSS calc로는 계산하지 않는다. */
    --yg-about-brand-gutter: 0px;
    --yg-about-brand-boost: 1;
}

.yg-about-brand-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-top: 56px;
}

.yg-about-brand-row:first-child {
    margin-top: 0;
}

.yg-about-brand-label {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    margin: 0;
    padding-top: 0;
    color: var(--yg-navy);
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    white-space: nowrap;
    text-align: center;
}

.yg-about-brand-body {
    width: 100%;
    min-width: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: visible;
}

/* 축소는 JS가 zoom 또는 transform 중 하나만 인라인으로 적용한다.
   CSS에서 함께 선언하면 zoom을 무시하는 것처럼 보이는 브라우저에서 두 번 축소된다. */
.yg-about-brand-scale {
    width: var(--yg-about-brand-design-width);
    max-width: var(--yg-about-brand-design-width);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

@media (min-width: 1101px) {
    .yg-about-brand {
        --yg-about-brand-gutter: 108px;
    }

    .yg-about-brand-row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 36px;
    }

    .yg-about-brand-label {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 72px;
        flex: 0 0 72px;
        width: auto;
        padding-top: 4px;
        text-align: left;
    }

    .yg-about-brand-body {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: auto;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .yg-about-mission .yg-about-brand-label {
        padding-top: 0;
    }

    .yg-about-vision-sec {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .yg-about-vision-sec .yg-about-brand-label {
        padding-top: 4px;
    }

    .yg-about-values-sec {
        --yg-value-shape-height: calc((100cqw - 108px) * 160.83 / 998);
    }

    .yg-about-values-sec>.yg-about-brand-label {
        padding-top: 0;
        margin-top: calc(var(--yg-value-shape-height) * 0.5 - 0.5em);
    }

    .yg-about-biz-sec {
        --yg-biz-grid-width: calc(100cqw - 108px);
    }

    .yg-about-biz-sec>.yg-about-brand-label {
        padding-top: 0;
        margin-top: calc(var(--yg-biz-arrow-height) + 6px + var(--yg-biz-name-height) * 0.5 - 0.5em - 10px);
    }
}

.yg-about-point {
    max-width: 1000px;
    width: 100%;
    margin: 72px auto 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.yg-about-point-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.yg-about-point-diagram {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 100px;
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
}

.yg-about-point-block--core {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 36px;
    width: 100%;
}

.yg-about-point-block--values {
    width: 100%;
}

.yg-about-point-values-layout {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 540px) 1fr;
    grid-template-rows: auto auto;
    gap: 28px 36px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    align-items: center;
}

.yg-about-point-block--values .yg-about-point-mark {
    grid-column: 2;
    grid-row: 1 / 3;
    justify-self: center;
    align-self: center;
}

.yg-about-point-mark--values .yg-point-draw--sky-top,
.yg-about-point-mark--values .yg-point-draw--sky-right,
.yg-about-point-mark--values .yg-point-draw--sky-left {
    fill: #e6e6e6;
}

.yg-about-point-mark--values .yg-about-point-node {
    background: transparent;
}

.yg-about-point-mark--values .yg-about-point-node--top {
    top: 23.5%;
}

.yg-about-point-mark--values .yg-about-point-node--right,
.yg-about-point-mark--values .yg-about-point-node--left {
    top: 76.5%;
}

.yg-about-point-nodes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.yg-about-point-node {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 28%;
    overflow: visible;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.96);
}

.yg-about-point-node--top {
    left: 50%;
    top: calc(23.5% + 15px);
}

.yg-about-point-node--right {
    left: 78.7%;
    top: calc(76.5% + 15px);
    width: 30%;
}

.yg-about-point-node--left {
    left: 21%;
    top: calc(76.5% + 15px);
}

.yg-about-point-node-icon {
    display: block;
    width: 52%;
    height: auto;
}

.yg-about-point-node-icon svg {
    display: block;
    width: 100%;
    height: auto;
}

.yg-about-point-node--top .yg-about-point-node-icon {
    width: 36%;
}

.yg-about-point-node--right .yg-about-point-node-icon {
    width: 50%;
}

.yg-about-point-node--left .yg-about-point-node-icon {
    width: 40%;
}

.yg-about-point-mark.is-playing .yg-about-point-node--top {
    animation: yg-point-label-in 1.1s ease forwards;
    animation-delay: 0s;
}

.yg-about-point-mark.is-playing .yg-about-point-node--right {
    animation: yg-point-label-in 1.1s ease forwards;
    animation-delay: 2.2s;
}

.yg-about-point-mark.is-playing .yg-about-point-node--left {
    animation: yg-point-label-in 1.1s ease forwards;
    animation-delay: 4.4s;
}

.yg-about-point-mark.is-complete .yg-about-point-node {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.yg-about-point-center--title {
    z-index: 3;
}

.yg-about-point-center--title .yg-about-point-center-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
}

.yg-about-point-mark--values .yg-about-point-center {
    top: calc(64% - 22px);
}

.yg-about-point-center-title {
    display: block;
    color: #00377b;
    font-family: 'Pretendard', 'Malgun Gothic', 'Apple SD Gothic Neo', dotum, sans-serif;
    font-size: clamp(18px, 5.2cqi, 30px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.04em;
    text-align: center;
    white-space: nowrap;
}

.yg-about-point-mark {
    position: relative;
    display: block;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 576.99 / 523.99;
    height: auto;
    margin: 0 auto;
    overflow: visible;
    container-type: inline-size;
}

.yg-about-point-mark .yg-point-mark-svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.yg-about-point-labels {
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* 원 중심에서 살짝 위로 올리는 값. 폭 기준이라 크기가 변해도 비율이 유지된다. */
    --yg-point-label-lift: 1.2cqi;
}

.yg-point-label {
    position: absolute;
    margin: 0;
    color: var(--yg-dark-text);
    font-family: 'Pretendard', 'Malgun Gothic', 'Apple SD Gothic Neo', dotum, sans-serif;
    font-size: clamp(10px, 3.05cqi, 15px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.03em;
    text-align: center;
    word-break: keep-all;
    /* iOS Safari의 자동 텍스트 확대가 원 밖으로 글자를 밀어낸다. */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.96);
}

/* 위치는 SVG(viewBox 576.99×523.99) 원 중심과 일치시킨다.
   도형은 폭에서 그려지므로 세로 위치도 cqi(폭 기준)로 잡아야 폭이 변해도 어긋나지 않는다.
   top의 % 값은 cqi를 지원하지 않는 브라우저용 대체값이다. */
.yg-point-label--top {
    left: 49.9%;
    top: 22.13%;
    top: calc(21.3cqi - var(--yg-point-label-lift));
    width: 28%;
}

.yg-point-label--right {
    left: 78.7%;
    top: 75.23%;
    top: calc(69.52cqi - var(--yg-point-label-lift));
    width: 30%;
}

.yg-point-label--left {
    left: 21.3%;
    top: 75.23%;
    top: calc(69.52cqi - var(--yg-point-label-lift));
    width: 28%;
}

.yg-about-point-mark.is-playing .yg-point-label--top {
    animation: yg-point-label-in 1.1s ease forwards;
    animation-delay: 0s;
}

.yg-about-point-mark.is-playing .yg-point-label--right {
    animation: yg-point-label-in 1.1s ease forwards;
    animation-delay: 2.2s;
}

.yg-about-point-mark.is-playing .yg-point-label--left {
    animation: yg-point-label-in 1.1s ease forwards;
    animation-delay: 4.4s;
}

.yg-about-point-mark.is-complete .yg-point-label {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@keyframes yg-point-label-in {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes yg-point-text-in {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 세 원 중심의 무게중심(SVG y=308.37)에 맞춘다. 라벨과 같은 이유로 폭 기준(cqi)을 쓴다. */
.yg-about-point-center {
    position: absolute;
    left: 50%;
    top: 58.85%;
    top: 53.44cqi;
    width: 26.3%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

.yg-about-point-center-inner {
    width: 100%;
    transform: scale(0.88);
    transform-origin: center center;
    transition: transform 0.55s ease;
}

.yg-about-point-center .yg-point-center-svg {
    display: block;
    width: 100%;
    height: auto;
}

.yg-about-point-center-inner .yg-center-sky {
    fill: #bbd4ef;
}

.yg-about-point-center-inner .yg-center-navy {
    fill: #00377b;
}

.yg-about-point-mark.is-complete .yg-about-point-center {
    opacity: 1;
    transition: opacity 0.55s ease;
}

.yg-about-point-mark.is-complete .yg-about-point-center-inner {
    transform: scale(1);
}

.yg-about-point-mark.is-complete .yg-about-point-center.is-pulsing .yg-about-point-center-inner {
    animation: yg-point-center-pulse 2.4s ease-in-out infinite;
    transition: none;
}

@keyframes yg-point-center-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

/* 예강 마크 — 원본 채움 path + mask 라인 그리기 (형태 유지) */
.yg-about-point-mark .yg-point-mask {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.yg-about-point-mark.is-playing .yg-point-mask--sky-top {
    animation: yg-point-line-draw 1.1s ease forwards;
    animation-delay: 0s;
}

.yg-about-point-mark.is-playing .yg-point-mask--bridge-tr {
    animation: yg-point-line-draw 1s ease forwards;
    animation-delay: 1.15s;
}

.yg-about-point-mark.is-playing .yg-point-mask--sky-right {
    animation: yg-point-line-draw 1.1s ease forwards;
    animation-delay: 2.2s;
}

.yg-about-point-mark.is-playing .yg-point-mask--bridge-bottom {
    animation: yg-point-line-draw 1s ease forwards;
    animation-delay: 3.35s;
}

.yg-about-point-mark.is-playing .yg-point-mask--sky-left {
    animation: yg-point-line-draw 1.1s ease forwards;
    animation-delay: 4.4s;
}

.yg-about-point-mark.is-playing .yg-point-mask--bridge-tl {
    animation: yg-point-line-draw 1s ease forwards;
    animation-delay: 5.55s;
}

.yg-about-point-mark.is-complete .yg-point-mask {
    stroke-dashoffset: 0;
}

@keyframes yg-point-line-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    .yg-about-point-mark.is-complete .yg-about-point-center {
        opacity: 1;
        transition: none;
    }

    .yg-about-point-mark.is-complete .yg-about-point-center-inner {
        animation: none;
        transform: scale(1);
        transition: none;
    }

    .yg-about-point-mark.is-complete .yg-point-label {
        animation: none;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .yg-about-point-mark.is-complete .yg-about-point-node {
        animation: none;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .yg-about-point-values-layout.is-values-complete .yg-about-point-text {
        animation: none;
        opacity: 1;
        transform: scale(1);
    }

    .yg-about-point-mark.is-complete .yg-point-draw {
        mask: none;
    }

    .yg-about-point-mark.is-complete .yg-point-mask {
        stroke-dashoffset: 0;
    }

    .yg-about-point-semicircle.is-complete .yg-semicircle-mask {
        stroke-dashoffset: 0;
    }

    .yg-about-point-semicircle.is-complete .yg-semicircle-fill {
        mask: none;
    }

    .yg-about-point-semicircle.is-complete .yg-about-point-semicircle-title {
        opacity: 1;
        transition: none;
    }

    .yg-about-point-semicircle.is-complete .yg-about-point-semicircle-caption {
        opacity: 1;
        transition: none;
    }
}

.yg-about-point-desc {
    max-width: 920px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.yg-about-point-block--core .yg-about-point-desc {
    margin-top: 24px;
}

.yg-about-point-block--core .yg-about-point-desc>p {
    color: var(--yg-dark-text);
    font-size: 14px;
    line-height: 1.75;
}

.yg-about-mission {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.yg-about-mission .yg-about-brand-label {
    padding-top: 0;
}

.yg-about-mission.has-animate:not(.is-title-visible):not(.is-complete) .yg-about-brand-label {
    opacity: 0;
}

.yg-about-mission.is-title-visible .yg-about-brand-label {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.yg-about-mission-pill {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 999px;
}

.yg-about-mission-text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--yg-dark-text);
    font-family: 'Pretendard', sans-serif !important;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: -0.03em;
    text-align: center;
    word-break: keep-all;
}

.yg-about-mission.has-animate:not(.is-text-visible):not(.is-complete) .yg-about-mission-text {
    opacity: 0;
}

.yg-about-mission.is-text-visible .yg-about-mission-text {
    opacity: 1;
    -webkit-transition: opacity 0.85s ease;
    transition: opacity 0.85s ease;
}

.yg-about-mission-frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.yg-about-mission-frame svg {
    display: block;
    width: 100%;
    height: 100%;
}

.yg-about-mission.has-animate:not(.is-complete):not(.is-drawn) .yg-mission-stroke-pink,
.yg-about-mission.has-animate:not(.is-complete):not(.is-drawn) .yg-mission-stroke-blue {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.yg-about-mission.is-playing .yg-mission-stroke-pink {
    -webkit-animation: yg-mission-draw-pink 0.65s ease-in-out forwards;
    animation: yg-mission-draw-pink 0.65s ease-in-out forwards;
}

.yg-about-mission.is-playing .yg-mission-stroke-blue {
    -webkit-animation: yg-mission-draw-blue 0.65s ease-in-out 0.75s forwards;
    animation: yg-mission-draw-blue 0.65s ease-in-out 0.75s forwards;
}

.yg-about-mission.is-complete .yg-mission-stroke-pink,
.yg-about-mission.is-complete .yg-mission-stroke-blue,
.yg-about-mission.is-drawn .yg-mission-stroke-pink,
.yg-about-mission.is-drawn .yg-mission-stroke-blue {
    stroke-dashoffset: 0;
    -webkit-animation: none;
    animation: none;
}

@-webkit-keyframes yg-mission-draw-pink {
    from {
        stroke-dashoffset: 1;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes yg-mission-draw-pink {
    from {
        stroke-dashoffset: 1;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes yg-mission-draw-blue {
    from {
        stroke-dashoffset: 1;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes yg-mission-draw-blue {
    from {
        stroke-dashoffset: 1;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    .yg-about-mission.has-animate:not(.is-complete) .yg-mission-stroke-pink,
    .yg-about-mission.has-animate:not(.is-complete) .yg-mission-stroke-blue {
        stroke-dashoffset: 0;
        -webkit-animation: none;
        animation: none;
    }

    .yg-about-mission.has-animate:not(.is-text-visible):not(.is-complete) .yg-about-mission-text {
        opacity: 1;
        -webkit-transition: none;
        transition: none;
    }

    .yg-about-mission.has-animate:not(.is-title-visible):not(.is-complete) .yg-about-brand-label {
        opacity: 1;
        -webkit-transition: none;
        transition: none;
    }
}

.yg-about-vision-sec .yg-about-brand-label {
    padding-top: 0;
}

.yg-about-vision-sec.has-animate:not(.is-title-visible):not(.is-complete) .yg-about-brand-label {
    opacity: 0;
}

.yg-about-vision-sec.is-title-visible .yg-about-brand-label {
    opacity: 1;
    -webkit-transition: opacity 0.45s ease;
    transition: opacity 0.45s ease;
}

.yg-about-vision-sec.has-animate:not(.is-prefix-visible):not(.is-complete) .yg-about-vision-lead-prefix {
    opacity: 0;
}

.yg-about-vision-sec.has-animate:not(.is-chip-pink-visible):not(.is-complete) .yg-about-vision-chip--pink {
    opacity: 0;
}

.yg-about-vision-sec.has-animate:not(.is-chip-blue-visible):not(.is-complete) .yg-about-vision-chip--blue {
    opacity: 0;
}

.yg-about-vision-sec.has-animate:not(.is-suffix-visible):not(.is-complete) .yg-about-vision-lead-suffix {
    opacity: 0;
}

.yg-about-vision-sec.has-animate:not(.is-left-light-visible) .yg-about-vision-beam--left .yg-about-vision-beam-light {
    opacity: 0;
    -webkit-transform: translateX(-63%) scaleY(0);
    transform: translateX(-63%) scaleY(0);
}

.yg-about-vision-sec.has-animate:not(.is-left-beam-copy-visible) .yg-about-vision-beam--left .yg-about-vision-beam-copy {
    opacity: 0;
}

.yg-about-vision-sec.has-animate:not(.is-right-light-visible) .yg-about-vision-beam--right .yg-about-vision-beam-light {
    opacity: 0;
    -webkit-transform: translateX(var(--yg-beam-right-x)) scaleY(0);
    transform: translateX(var(--yg-beam-right-x)) scaleY(0);
}

.yg-about-vision-sec.has-animate:not(.is-right-beam-copy-visible) .yg-about-vision-beam--right .yg-about-vision-beam-copy {
    opacity: 0;
}

.yg-about-vision-sec.is-prefix-visible .yg-about-vision-lead-prefix,
.yg-about-vision-sec.is-chip-pink-visible .yg-about-vision-chip--pink,
.yg-about-vision-sec.is-chip-blue-visible .yg-about-vision-chip--blue,
.yg-about-vision-sec.is-suffix-visible .yg-about-vision-lead-suffix,
.yg-about-vision-sec.is-left-beam-copy-visible .yg-about-vision-beam--left .yg-about-vision-beam-copy,
.yg-about-vision-sec.is-right-beam-copy-visible .yg-about-vision-beam--right .yg-about-vision-beam-copy {
    opacity: 1;
    -webkit-transition: opacity 0.45s ease;
    transition: opacity 0.45s ease;
}

.yg-about-vision-sec.is-left-light-visible .yg-about-vision-beam--left .yg-about-vision-beam-light {
    opacity: 1;
    -webkit-transform: translateX(-63%) scaleY(1);
    transform: translateX(-63%) scaleY(1);
    -webkit-transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.yg-about-vision-sec.is-right-light-visible .yg-about-vision-beam--right .yg-about-vision-beam-light {
    opacity: 1;
    -webkit-transform: translateX(var(--yg-beam-right-x)) scaleY(1);
    transform: translateX(var(--yg-beam-right-x)) scaleY(1);
    -webkit-transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

@media (prefers-reduced-motion: reduce) {

    .yg-about-vision-sec.has-animate:not(.is-title-visible):not(.is-complete) .yg-about-brand-label,
    .yg-about-vision-sec.has-animate:not(.is-prefix-visible):not(.is-complete) .yg-about-vision-lead-prefix,
    .yg-about-vision-sec.has-animate:not(.is-chip-pink-visible):not(.is-complete) .yg-about-vision-chip--pink,
    .yg-about-vision-sec.has-animate:not(.is-chip-blue-visible):not(.is-complete) .yg-about-vision-chip--blue,
    .yg-about-vision-sec.has-animate:not(.is-suffix-visible):not(.is-complete) .yg-about-vision-lead-suffix,
    .yg-about-vision-sec.has-animate:not(.is-left-light-visible) .yg-about-vision-beam--left .yg-about-vision-beam-light,
    .yg-about-vision-sec.has-animate:not(.is-left-beam-copy-visible) .yg-about-vision-beam--left .yg-about-vision-beam-copy,
    .yg-about-vision-sec.has-animate:not(.is-right-light-visible) .yg-about-vision-beam--right .yg-about-vision-beam-light,
    .yg-about-vision-sec.has-animate:not(.is-right-beam-copy-visible) .yg-about-vision-beam--right .yg-about-vision-beam-copy {
        opacity: 1;
        -webkit-transition: none;
        transition: none;
    }

    .yg-about-vision-sec.has-animate:not(.is-left-light-visible) .yg-about-vision-beam--left .yg-about-vision-beam-light {
        -webkit-transform: translateX(-63%) scaleY(1);
        transform: translateX(-63%) scaleY(1);
    }

    .yg-about-vision-sec.has-animate:not(.is-right-light-visible) .yg-about-vision-beam--right .yg-about-vision-beam-light {
        -webkit-transform: translateX(var(--yg-beam-right-x)) scaleY(1);
        transform: translateX(var(--yg-beam-right-x)) scaleY(1);
    }

    .yg-about-vision-sec.is-left-light-visible .yg-about-vision-beam--left .yg-about-vision-beam-light,
    .yg-about-vision-sec.is-right-light-visible .yg-about-vision-beam--right .yg-about-vision-beam-light {
        -webkit-transition: none;
        transition: none;
    }
}

.yg-about-vision-wrap {
    position: relative;
    width: 100%;
    padding-left: 220px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.yg-about-vision-headline,
.yg-about-vision-beams {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 6px;
}

.yg-about-vision-beams {
    margin-top: 0;
}

.yg-about-vision-beam-spacer {
    visibility: hidden;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.yg-about-vision-beam-spacer--prefix,
.yg-about-vision-beam-spacer--suffix {
    padding-top: 4px;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: -0.03em;
}

.yg-about-vision-beam-spacer--chip {
    padding: 0 16px;
    line-height: 0;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.yg-about-vision-beam-slot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.yg-about-vision-beam-slot--blue {
    margin-left: -28px;
}

.yg-about-vision-lead-prefix,
.yg-about-vision-lead-suffix {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-top: 4px;
    color: var(--yg-dark-text);
    font-family: 'Pretendard', sans-serif !important;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: -0.03em;
    word-break: keep-all;
    white-space: nowrap;
}

.yg-about-vision-chip {
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 4px 16px;
    border-radius: 999px;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.yg-about-vision-chip--pink {
    background: #f8cde0;
    color: #d50078;
}

.yg-about-vision-chip--blue {
    background: #bbd4ef;
    color: #00377b;
}

.yg-about-vision-beam {
    position: relative;
    width: 100%;
}

.yg-about-vision-beam-light {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 0;
    width: 454.53px;
    max-width: none;
    height: auto;
    pointer-events: none;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: translateX(-63%) scaleY(0);
    transform: translateX(-63%) scaleY(0);
    will-change: transform;
}

/* 키움 beam 가로 위치. iOS는 글자 폭이 미세하게 달라 슬롯이 밀리므로 아래에서 따로 보정한다. */
.yg-about-vision-beam--right {
    --yg-beam-right-x: -38%;
}

@supports (-webkit-touch-callout: none) {
    .yg-about-vision-beam--right {
        --yg-beam-right-x: -41%;
    }
}

.yg-about-vision-beam--right .yg-about-vision-beam-light {
    width: 461px;
    -webkit-transform: translateX(var(--yg-beam-right-x)) scaleY(0);
    transform: translateX(var(--yg-beam-right-x)) scaleY(0);
}

.yg-about-vision-beam-copy {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 20px 16px 0;
    text-align: center;
}

.yg-about-vision-beam--left .yg-about-vision-beam-copy {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
}

.yg-about-vision-beam--right .yg-about-vision-beam-copy {
    -webkit-transform: translateX(26px);
    transform: translateX(26px);
}

.yg-about-vision-beam-title {
    margin: 0;
    margin-top: 15px;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.yg-about-vision-beam-title--pink {
    color: var(--yg-pink);
}

.yg-about-vision-beam-title--blue {
    color: var(--yg-navy);
}

.yg-about-vision-beam-name {
    font-family: 'Pretendard', sans-serif !important;
    font-weight: 900;
}

.yg-about-vision-beam-hanja {
    font-family: 'Pretendard', sans-serif !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.yg-about-vision-beam-desc {
    margin: 0;
    margin-top: -4px;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -0.02em;
    word-break: keep-all;
}

.yg-about-vision-beam-desc--pink {
    color: var(--yg-pink);
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
}

.yg-about-vision-beam-desc--blue {
    color: var(--yg-navy);
}

.yg-about-vision-beam-em {
    font-size: 15px;
    font-weight: 900;
}

.yg-about-values-grid,
.yg-about-biz-grid {
    display: grid;
    grid-template-columns: minmax(0, 418.6fr) minmax(0, 160.83fr) minmax(0, 418.6fr);
    gap: 0;
    width: 100%;
    max-width: 998px;
    align-items: start;
    overflow: visible;
    --yg-value-center-fr: 160.83;
    --yg-value-side-fr: 418.6;
    --yg-value-side-extend: calc(var(--yg-value-center-fr) / var(--yg-value-side-fr));
    --yg-value-side-shift: calc(var(--yg-value-center-fr) / var(--yg-value-side-fr) / 2 - 0.0515);
    --yg-value-help-icon-inset: calc(var(--yg-value-side-shift) * (1 + var(--yg-value-side-extend)) + 0.26);
    --yg-value-kiwoom-icon-inset: calc(var(--yg-value-side-shift) * (1 + var(--yg-value-side-extend)) + 0.26);
    --yg-value-help-icon-half: 31px;
    --yg-value-help-stack-offset: calc(24px + 100% * var(--yg-value-help-icon-inset) + var(--yg-value-help-icon-half));
    --yg-value-kiwoom-icon-half: 29.5px;
    --yg-value-kiwoom-stack-offset: calc(24px + 100% * var(--yg-value-kiwoom-icon-inset) + var(--yg-value-kiwoom-icon-half));
}

.yg-about-biz-grid {
    container-type: inline-size;
}

.yg-about-value-card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
    text-align: center;
    overflow: visible;
}

.yg-about-value-card--help,
.yg-about-value-card--kiwoom {
    z-index: 1;
}

.yg-about-value-card--help {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.yg-about-value-card--kiwoom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.yg-about-value-card--grow {
    position: relative;
    z-index: 2;
    margin: 0;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.yg-about-value-grow-copy {
    position: relative;
    left: 50%;
    z-index: 1;
    width: calc(var(--yg-value-side-fr) * 1px);
    max-width: calc(100% * var(--yg-value-side-fr) / var(--yg-value-center-fr));
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    box-sizing: border-box;
}

.yg-about-value-grow-copy .yg-about-value-title {
    margin: 8px 0 0;
    font-size: 15px;
    white-space: nowrap;
}

.yg-about-value-card--grow .yg-about-value-desc {
    position: relative;
    left: 50%;
    z-index: 1;
    width: calc(var(--yg-value-side-fr) * 1px);
    max-width: calc(100% * var(--yg-value-side-fr) / var(--yg-value-center-fr));
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
}

.yg-about-value-shape {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 418.6 / 160.83;
    overflow: visible;
}

.yg-about-value-card--grow .yg-about-value-shape {
    aspect-ratio: 1 / 1;
}

.yg-about-value-bg {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    pointer-events: none;
    -o-object-fit: fill;
    object-fit: fill;
}

.yg-about-value-card--help .yg-about-value-bg {
    width: calc(100% * (1 + var(--yg-value-side-extend)));
    max-width: none;
    -webkit-transform: translateX(calc(100% * var(--yg-value-side-shift)));
    transform: translateX(calc(100% * var(--yg-value-side-shift)));
}

.yg-about-value-card--kiwoom .yg-about-value-bg {
    left: calc(-100% * var(--yg-value-side-extend));
    width: calc(100% * (1 + var(--yg-value-side-extend)));
    max-width: none;
    -webkit-transform: translateX(calc(-100% * var(--yg-value-side-shift)));
    transform: translateX(calc(-100% * var(--yg-value-side-shift)));
}

.yg-about-value-card--grow .yg-about-value-bg {
    left: 0;
    width: 100%;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.yg-about-value-shape-content {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    padding: 18px;
    box-sizing: border-box;
}

.yg-about-value-card--help .yg-about-value-shape-content {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: calc(24px + 100% * var(--yg-value-help-icon-inset));
    padding-right: 24px;
}

.yg-about-value-card--kiwoom .yg-about-value-shape-content {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-right: calc(24px + 100% * var(--yg-value-kiwoom-icon-inset));
    padding-left: 24px;
}

.yg-about-value-card--grow .yg-about-value-shape-content {
    padding: 20px;
}

.yg-about-value-icon {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.yg-about-value-card--help .yg-about-value-icon {
    width: 62px;
    max-height: 93px;
}

.yg-about-value-card--grow .yg-about-value-icon {
    width: 72px;
    max-height: 100px;
}

.yg-about-value-card--kiwoom .yg-about-value-icon {
    width: 59px;
    max-height: 99px;
}

.yg-about-value-title {
    margin: 0;
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.yg-about-value-title--pink {
    color: var(--yg-pink);
}

.yg-about-value-title--navy {
    color: var(--yg-navy);
}

.yg-about-value-desc {
    width: 100%;
    margin: 15px 0 0;
    padding: 0 18px;
    color: var(--yg-dark-text);
    font-family: 'Pretendard', sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.02em;
    word-break: keep-all;
    box-sizing: border-box;
}

.yg-about-value-stack--help {
    position: relative;
    left: var(--yg-value-help-stack-offset);
    width: -webkit-max-content;
    width: max-content;
    max-width: calc(100% - 48px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    box-sizing: border-box;
}

.yg-about-biz-col.yg-about-value-stack--help {
    justify-self: start;
}

.yg-about-value-stack--kiwoom {
    position: relative;
    right: var(--yg-value-kiwoom-stack-offset);
    left: auto;
    width: -webkit-max-content;
    width: max-content;
    max-width: calc(100% - 48px);
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    text-align: center;
    box-sizing: border-box;
}

.yg-about-biz-col.yg-about-value-stack--kiwoom {
    justify-self: end;
}

.yg-about-value-stack--help .yg-about-value-desc {
    width: auto;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.yg-about-value-desc-line {
    display: block;
}

.yg-about-value-card--help .yg-about-value-desc {
    padding-right: 0;
}

.yg-about-value-stack--kiwoom .yg-about-value-desc {
    width: auto;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.yg-about-value-card--kiwoom .yg-about-value-desc {
    padding-left: 0;
}

.yg-about-values-sec {
    container-type: inline-size;
    padding-top: 50px;
}

.yg-about-values-sec.has-animate:not(.is-title-visible):not(.is-complete)>.yg-about-brand-label {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-help-bg-visible):not(.is-complete) .yg-about-value-card--help .yg-about-value-bg {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-help-icon-visible):not(.is-complete) .yg-about-value-card--help .yg-about-value-icon {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-help-desc-visible):not(.is-complete) .yg-about-value-card--help .yg-about-value-desc-line {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-help-arrow-visible):not(.is-complete)~.yg-about-biz-sec .yg-about-biz-col--help .yg-about-biz-arrow {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-help-biz-visible):not(.is-complete)~.yg-about-biz-sec .yg-about-biz-col--help .yg-about-biz-name {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-help-biz-visible):not(.is-complete)~.yg-about-biz-sec>.yg-about-brand-label {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-kiwoom-bg-visible):not(.is-complete) .yg-about-value-card--kiwoom .yg-about-value-bg {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-kiwoom-icon-visible):not(.is-complete) .yg-about-value-card--kiwoom .yg-about-value-icon {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-kiwoom-desc-visible):not(.is-complete) .yg-about-value-card--kiwoom .yg-about-value-desc-line {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-kiwoom-arrow-visible):not(.is-complete)~.yg-about-biz-sec .yg-about-biz-col--kiwoom .yg-about-biz-arrow {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-kiwoom-biz-visible):not(.is-complete)~.yg-about-biz-sec .yg-about-biz-col--kiwoom .yg-about-biz-name {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-grow-bg-visible):not(.is-complete) .yg-about-value-card--grow .yg-about-value-bg {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-grow-icon-visible):not(.is-complete) .yg-about-value-card--grow .yg-about-value-icon {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-grow-desc-visible):not(.is-complete) .yg-about-value-card--grow .yg-about-value-desc-line {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-grow-arrow-visible):not(.is-complete)~.yg-about-biz-sec .yg-about-biz-col--grow .yg-about-biz-arrow {
    opacity: 0;
}

.yg-about-values-sec.has-animate:not(.is-grow-biz-visible):not(.is-complete)~.yg-about-biz-sec .yg-about-biz-col--grow .yg-about-biz-name {
    opacity: 0;
}

.yg-about-values-sec.is-title-visible>.yg-about-brand-label,
.yg-about-values-sec.is-help-bg-visible .yg-about-value-card--help .yg-about-value-bg,
.yg-about-values-sec.is-help-icon-visible .yg-about-value-card--help .yg-about-value-icon,
.yg-about-values-sec.is-help-arrow-visible~.yg-about-biz-sec .yg-about-biz-col--help .yg-about-biz-arrow,
.yg-about-values-sec.is-help-biz-visible~.yg-about-biz-sec .yg-about-biz-col--help .yg-about-biz-name,
.yg-about-values-sec.is-help-biz-visible~.yg-about-biz-sec>.yg-about-brand-label,
.yg-about-values-sec.is-kiwoom-bg-visible .yg-about-value-card--kiwoom .yg-about-value-bg,
.yg-about-values-sec.is-kiwoom-icon-visible .yg-about-value-card--kiwoom .yg-about-value-icon,
.yg-about-values-sec.is-kiwoom-arrow-visible~.yg-about-biz-sec .yg-about-biz-col--kiwoom .yg-about-biz-arrow,
.yg-about-values-sec.is-kiwoom-biz-visible~.yg-about-biz-sec .yg-about-biz-col--kiwoom .yg-about-biz-name,
.yg-about-values-sec.is-grow-bg-visible .yg-about-value-card--grow .yg-about-value-bg,
.yg-about-values-sec.is-grow-icon-visible .yg-about-value-card--grow .yg-about-value-icon,
.yg-about-values-sec.is-grow-arrow-visible~.yg-about-biz-sec .yg-about-biz-col--grow .yg-about-biz-arrow,
.yg-about-values-sec.is-grow-biz-visible~.yg-about-biz-sec .yg-about-biz-col--grow .yg-about-biz-name {
    opacity: 1;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}

.yg-about-values-sec.is-help-desc-visible .yg-about-value-card--help .yg-about-value-desc-line,
.yg-about-values-sec.is-kiwoom-desc-visible .yg-about-value-card--kiwoom .yg-about-value-desc-line,
.yg-about-values-sec.is-grow-desc-visible .yg-about-value-card--grow .yg-about-value-desc-line {
    opacity: 1;
    -webkit-transition: opacity 0.42s ease;
    transition: opacity 0.42s ease;
}

@media (prefers-reduced-motion: reduce) {

    .yg-about-values-sec.has-animate:not(.is-title-visible):not(.is-complete)>.yg-about-brand-label,
    .yg-about-values-sec.has-animate:not(.is-help-bg-visible):not(.is-complete) .yg-about-value-card--help .yg-about-value-bg,
    .yg-about-values-sec.has-animate:not(.is-help-icon-visible):not(.is-complete) .yg-about-value-card--help .yg-about-value-icon,
    .yg-about-values-sec.has-animate:not(.is-help-desc-visible):not(.is-complete) .yg-about-value-card--help .yg-about-value-desc-line,
    .yg-about-values-sec.has-animate:not(.is-help-arrow-visible):not(.is-complete)~.yg-about-biz-sec .yg-about-biz-col--help .yg-about-biz-arrow,
    .yg-about-values-sec.has-animate:not(.is-help-biz-visible):not(.is-complete)~.yg-about-biz-sec .yg-about-biz-col--help .yg-about-biz-name,
    .yg-about-values-sec.has-animate:not(.is-help-biz-visible):not(.is-complete)~.yg-about-biz-sec>.yg-about-brand-label,
    .yg-about-values-sec.has-animate:not(.is-kiwoom-bg-visible):not(.is-complete) .yg-about-value-card--kiwoom .yg-about-value-bg,
    .yg-about-values-sec.has-animate:not(.is-kiwoom-icon-visible):not(.is-complete) .yg-about-value-card--kiwoom .yg-about-value-icon,
    .yg-about-values-sec.has-animate:not(.is-kiwoom-desc-visible):not(.is-complete) .yg-about-value-card--kiwoom .yg-about-value-desc-line,
    .yg-about-values-sec.has-animate:not(.is-kiwoom-arrow-visible):not(.is-complete)~.yg-about-biz-sec .yg-about-biz-col--kiwoom .yg-about-biz-arrow,
    .yg-about-values-sec.has-animate:not(.is-kiwoom-biz-visible):not(.is-complete)~.yg-about-biz-sec .yg-about-biz-col--kiwoom .yg-about-biz-name,
    .yg-about-values-sec.has-animate:not(.is-grow-bg-visible):not(.is-complete) .yg-about-value-card--grow .yg-about-value-bg,
    .yg-about-values-sec.has-animate:not(.is-grow-icon-visible):not(.is-complete) .yg-about-value-card--grow .yg-about-value-icon,
    .yg-about-values-sec.has-animate:not(.is-grow-desc-visible):not(.is-complete) .yg-about-value-card--grow .yg-about-value-desc-line,
    .yg-about-values-sec.has-animate:not(.is-grow-arrow-visible):not(.is-complete)~.yg-about-biz-sec .yg-about-biz-col--grow .yg-about-biz-arrow,
    .yg-about-values-sec.has-animate:not(.is-grow-biz-visible):not(.is-complete)~.yg-about-biz-sec .yg-about-biz-col--grow .yg-about-biz-name {
        opacity: 1;
        -webkit-transition: none;
        transition: none;
    }

    .yg-about-values-sec.is-help-desc-visible .yg-about-value-card--help .yg-about-value-desc-line,
    .yg-about-values-sec.is-kiwoom-desc-visible .yg-about-value-card--kiwoom .yg-about-value-desc-line,
    .yg-about-values-sec.is-grow-desc-visible .yg-about-value-card--grow .yg-about-value-desc-line {
        -webkit-transition: none;
        transition: none;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }
}

.yg-about-values-sec>.yg-about-brand-label {
    padding-top: 0;
}

@media (max-width: 1100px) {
    .yg-about-brand {
        padding: 0 4px;
    }

    .yg-about-vision-wrap {
        padding-left: 220px;
    }

    .yg-about-values-sec>.yg-about-brand-label {
        margin-top: 0;
    }
}

.yg-about-values-sec+.yg-about-biz-sec {
    margin-top: 10px;
}

.yg-about-biz-sec {
    container-type: inline-size;
    --yg-biz-grid-width: calc(100cqw - 108px);
    --yg-biz-arrow-height: calc(12px * 121.24 / 12.27);
    --yg-biz-name-height: calc(var(--yg-biz-grid-width) * 160.83 / 998 * 95.57 / 185.7 * 1.1);
}

.yg-about-biz-sec>.yg-about-brand-label {
    padding-top: 0;
    margin-top: calc(var(--yg-biz-arrow-height) + 6px + var(--yg-biz-name-height) * 0.5 - 0.5em - 10px);
}

@media (max-width: 1100px) {
    .yg-about-biz-sec>.yg-about-brand-label {
        display: none;
    }
}

.yg-about-biz-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding-top: 0;
}

.yg-about-biz-arrow {
    display: block;
    width: 12px;
    height: auto;
}

/* 그리드는 998px 설계 폭 안에 고정이라 100cqw는 항상 998px이다.
   cqw로 두면 축소를 zoom으로 처리하는 브라우저에서 축소된 폭이 잡혀 크기가 어긋난다. */
.yg-about-biz-name {
    display: block;
    width: auto;
    height: calc(160.83px * 95.57 / 185.7 * 1.1);
    max-width: calc(185.7px * 1.1);
}

.yg-about-point-semicircle {
    width: 100%;
    max-width: 760px;
    margin: 72px auto 0;
    container-type: inline-size;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yg-about-point-semicircle+.yg-about-point-semicircle {
    margin-top: 72px;
}

.yg-about-point-semicircle-arc {
    position: relative;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    line-height: 0;
    container-type: inline-size;
}

.yg-about-point-semicircle-arc .yg-point-semicircle-svg {
    display: block;
    width: 100%;
    height: auto;
}

/* 반원 — 좌→우 mask 라인 그리기 */
.yg-about-point-semicircle .yg-semicircle-mask {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.yg-about-point-semicircle.is-playing .yg-semicircle-mask {
    animation: yg-semicircle-line-draw 1.8s ease forwards;
}

.yg-about-point-semicircle.is-complete .yg-semicircle-mask {
    stroke-dashoffset: 0;
}

.yg-about-point-semicircle.is-complete .yg-semicircle-fill {
    mask: none;
}

@keyframes yg-semicircle-line-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes yg-semicircle-caption-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.yg-about-point-semicircle-title {
    position: absolute;
    left: 50%;
    top: 76%;
    transform: translate(-50%, -50%);
    color: #00377b;
    font-family: 'Pretendard', 'Malgun Gothic', 'Apple SD Gothic Neo', dotum, sans-serif;
    font-size: clamp(21px, 10.8cqi, 30px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.yg-about-point-semicircle.is-complete .yg-about-point-semicircle-title {
    opacity: 1;
}

.yg-about-lead .yg-about-point-semicircle-caption {
    margin: 0 auto;
    padding: 14px 32px;
    max-width: 100%;
    background: #e6e6e6;
    border-radius: 999px;
    color: #00377b;
    font-family: 'Pretendard', 'Malgun Gothic', 'Apple SD Gothic Neo', dotum, sans-serif !important;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.03em;
    text-align: center;
    word-break: keep-all;
    box-sizing: border-box;
    opacity: 0;
}

.yg-about-point-semicircle.is-playing .yg-about-point-semicircle-caption {
    animation: yg-semicircle-caption-fade 1.8s ease forwards;
}

.yg-about-point-semicircle.is-complete .yg-about-point-semicircle-caption {
    opacity: 1;
    animation: none;
}

.yg-about-point-img {
    display: block;
    width: 100%;
    height: auto;
}

.yg-about-point-img--core {
    width: 100%;
    max-width: 610px;
}

.yg-about-point-img--compact {
    width: 100%;
    max-width: 530px;
}

.yg-about-point-img--mission {
    width: 100%;
    max-width: 760px;
}

.yg-about-point-img--three {
    width: 100%;
    max-width: 960px;
}

.yg-about-point-text {
    margin: 0;
    color: var(--yg-dark-text);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.03em;
    word-break: keep-all;
    overflow-wrap: normal;
}

.yg-about-point-block--values .yg-about-point-text {
    width: -webkit-max-content;
    width: max-content;
    min-width: -webkit-max-content;
    min-width: max-content;
    max-width: 100%;
    opacity: 0;
}

.yg-about-point-values-layout.is-values-playing .yg-about-point-text--kiwoom {
    animation: yg-point-text-in 1.1s ease forwards;
    animation-delay: 0s;
}

.yg-about-point-values-layout.is-values-playing .yg-about-point-text--helper {
    animation: yg-point-text-in 1.1s ease forwards;
    animation-delay: 2.2s;
}

.yg-about-point-values-layout.is-values-playing .yg-about-point-text--help {
    animation: yg-point-text-in 1.1s ease forwards;
    animation-delay: 4.4s;
}

.yg-about-point-values-layout.is-values-complete .yg-about-point-text {
    opacity: 1;
    transform: scale(1);
}

.yg-about-point-text--kiwoom {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    padding-top: 72px;
    margin-left: -170px;
    text-align: left;
}

.yg-about-point-text--help {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    justify-self: end;
    text-align: right;
    padding-right: 4px;
    margin-right: -24px;
}

.yg-about-point-text--helper {
    grid-column: 3;
    grid-row: 2;
    align-self: center;
    text-align: left;
    padding-left: 4px;
    margin-left: -24px;
}

/* 배경 나뭇잎 — 세로 반복 */
.yg-leaf-repeat {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    background-repeat: repeat-y;
}

.yg-about .yg-leaf-repeat--left {
    top: 340px;
    left: -208px;
    bottom: 0;
    width: 160px;
    background-image: url('../img/custom/main_bg_icon_left_repeat.svg');
    background-size: 160px 1216px;
    background-position: top left;
}

.yg-about .yg-leaf-repeat--right {
    top: 210px;
    right: -148px;
    bottom: 0;
    width: 160px;
    background-image: url('../img/custom/main_bg_icon_right_repeat.svg');
    background-size: 160px 1176px;
    background-position: top right;
}

.yg-about .yg-page-intro,
.yg-about .yg-about-lead,
.yg-about .yg-about-point,
.yg-about .yg-about-ci-sec {
    position: relative;
    z-index: 1;
}

/* 재단소개 — CI·오시는 길 */
.yg-about-ci-sec {
    margin-top: 130px;
}

.yg-about-ci-sec+.yg-about-ci-sec {
    margin-top: 122px;
}

.yg-about-ci-sec--location {
    margin-bottom: 50px;
}

.yg-about-ci-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    margin: 0 0 40px;
    font-size: inherit;
    font-weight: inherit;
}

.yg-about-ci-head::before,
.yg-about-ci-head::after {
    content: '';
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    height: 1px;
    background: #c9caca;
}

.yg-about-ci-tit {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0;
    color: #000;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.yg-about-ci-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 72px;
}

.yg-about-ci-sec:not(.yg-about-ci-sec--location) .yg-about-ci-body {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.yg-about-ci-visual {
    -ms-flex: 0 0 42%;
    flex: 0 0 42%;
    max-width: 42%;
    text-align: center;
}

.yg-about-ci-logo {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: 0 auto;
}

.yg-about-ci-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    min-width: 0;
}

.yg-about-ci-lead {
    margin: 0 0 18px;
    color: #00377b;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.55;
    letter-spacing: -0.02em;
}

.yg-about-ci-desc {
    margin: 0 0 28px;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.85;
    letter-spacing: -0.02em;
}

.yg-about-ci-downloads {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
}

.yg-about-ci-download {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    min-width: 208px;
    padding: 13px 18px 13px 22px;
    border: 1px solid #00377b;
    border-radius: 8px;
    background: #fff;
    color: #00377b;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.02em;
    box-sizing: border-box;
}

.yg-about-ci-download:hover {
    background: #f4f7fc;
}

.yg-about-ci-download img {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
}

.yg-about-location-body {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 72px;
}

.yg-about-location-map {
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    max-width: 48%;
    height: 300px;
    min-height: 300px;
    padding: 0;
    border-radius: 20px;
    background: #eef1f4;
    box-sizing: border-box;
    overflow: hidden;
}

.yg-about-location-map-canvas {
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.yg-about-location-map .nmap_control_zoom,
.yg-about-location-map .nmap_control_scale,
.yg-about-location-map .nmap_control_logo {
    display: none !important;
}

.yg-about-location-map-placeholder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 300px;
    margin: 0;
    padding: 0 20px;
    color: #555;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.65;
    text-align: center;
    letter-spacing: -0.02em;
    box-sizing: border-box;
}

.yg-about-location-info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    padding-top: 4px;
}

.yg-about-location-info dt {
    margin: 0 0 4px;
    color: #00377b;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.yg-about-location-info dd {
    margin: 0 0 40px;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: -0.02em;
}

.yg-about-location-info dd:last-child {
    margin-bottom: 0;
}

.yg-about-location-info dd p {
    margin: 0 0 3px;
}

.yg-about-location-info dd p:last-child {
    margin-bottom: 0;
}

.yg-about-location-org {
    font-weight: 500;
}

.yg-about-location-info a {
    color: inherit;
    text-decoration: none;
}

.yg-about-location-info a:hover {
    text-decoration: underline;
}

/* 설립자 페이지 */
.yg-founder-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 48px;
    margin-top: 70px;
}

.yg-founder-visual {
    -ms-flex: 0 0 38%;
    flex: 0 0 38%;
    max-width: 38%;
}

.yg-founder-photo {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.yg-founder-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
}

.yg-founder-text p {
    margin: 0 0 28px;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.85;
    letter-spacing: -0.02em;
}

.yg-founder-text p:last-child {
    margin-bottom: 0;
}

.yg-founder-text .yg-brand-navy,
.yg-founder-text .yg-brand-pink {
    font-weight: 700;
}

.yg-founder-sign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 48px;
    padding-right: 80px;
}

.yg-founder-sign-org {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.yg-founder-sign-seal {
    color: var(--yg-dark-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
}

.yg-founder-sign-name {
    color: #000;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.yg-founder .yg-leaf-repeat--left {
    top: 360px;
    left: -208px;
    bottom: 0;
    width: 160px;
    background-image: url('../img/custom/main_bg_icon_left_repeat_200.svg');
    background-size: 160px 1176px;
    background-position: top left;
}

.yg-founder .yg-leaf-repeat--right {
    top: 230px;
    right: -148px;
    bottom: 0;
    width: 160px;
    background-image: url('../img/custom/main_bg_icon_right_repeat_200.svg');
    background-size: 160px 1216px;
    background-position: top right;
}

.yg-founder .yg-leaf-deco.d4 {
    width: 60px;
    top: 460px;
    right: -158px;
    left: auto;
    bottom: auto;
}

/* 함께하는 사람들 페이지 */
.yg-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 196px);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 56px 128px;
    margin: 0;
    padding: 8px 0 0;
    list-style: none;
    -webkit-perspective: 900px;
    perspective: 900px;
}

.yg-team-grid.has-animate:not(.is-complete) .yg-team-photo-wrap,
.yg-team-grid.has-animate:not(.is-complete) .yg-team-role,
.yg-team-grid.has-animate:not(.is-complete) .yg-team-name,
.yg-team-grid.has-animate:not(.is-complete) .yg-team-career {
    opacity: 0;
}

.yg-team-photo-wrap {
    width: 196px;
    height: 196px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f4f6;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.yg-team-grid.is-playing .yg-team-card .yg-team-photo-wrap {
    -webkit-animation: yg-prog-flow-flip-y 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation: yg-prog-flow-flip-y 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.yg-team-grid.is-playing .yg-team-card .yg-team-role,
.yg-team-grid.is-playing .yg-team-card .yg-team-name,
.yg-team-grid.is-playing .yg-team-card .yg-team-career {
    -webkit-animation: yg-prog-flow-fade-in 0.65s ease both;
    animation: yg-prog-flow-fade-in 0.65s ease both;
}

.yg-team-grid.is-playing .yg-team-card:nth-child(1) .yg-team-photo-wrap,
.yg-team-grid.is-playing .yg-team-card:nth-child(1) .yg-team-role,
.yg-team-grid.is-playing .yg-team-card:nth-child(1) .yg-team-name,
.yg-team-grid.is-playing .yg-team-card:nth-child(1) .yg-team-career {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.yg-team-grid.is-playing .yg-team-card:nth-child(2) .yg-team-photo-wrap,
.yg-team-grid.is-playing .yg-team-card:nth-child(2) .yg-team-role,
.yg-team-grid.is-playing .yg-team-card:nth-child(2) .yg-team-name,
.yg-team-grid.is-playing .yg-team-card:nth-child(2) .yg-team-career {
    -webkit-animation-delay: 0.28s;
    animation-delay: 0.28s;
}

.yg-team-grid.is-playing .yg-team-card:nth-child(3) .yg-team-photo-wrap,
.yg-team-grid.is-playing .yg-team-card:nth-child(3) .yg-team-role,
.yg-team-grid.is-playing .yg-team-card:nth-child(3) .yg-team-name,
.yg-team-grid.is-playing .yg-team-card:nth-child(3) .yg-team-career {
    -webkit-animation-delay: 0.56s;
    animation-delay: 0.56s;
}

.yg-team-grid.is-playing .yg-team-card:nth-child(4) .yg-team-photo-wrap,
.yg-team-grid.is-playing .yg-team-card:nth-child(4) .yg-team-role,
.yg-team-grid.is-playing .yg-team-card:nth-child(4) .yg-team-name,
.yg-team-grid.is-playing .yg-team-card:nth-child(4) .yg-team-career {
    -webkit-animation-delay: 0.84s;
    animation-delay: 0.84s;
}

.yg-team-grid.is-playing .yg-team-card:nth-child(5) .yg-team-photo-wrap,
.yg-team-grid.is-playing .yg-team-card:nth-child(5) .yg-team-role,
.yg-team-grid.is-playing .yg-team-card:nth-child(5) .yg-team-name,
.yg-team-grid.is-playing .yg-team-card:nth-child(5) .yg-team-career {
    -webkit-animation-delay: 1.12s;
    animation-delay: 1.12s;
}

.yg-team-grid.is-playing .yg-team-card:nth-child(6) .yg-team-photo-wrap,
.yg-team-grid.is-playing .yg-team-card:nth-child(6) .yg-team-role,
.yg-team-grid.is-playing .yg-team-card:nth-child(6) .yg-team-name,
.yg-team-grid.is-playing .yg-team-card:nth-child(6) .yg-team-career {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.yg-team-grid.is-complete .yg-team-photo-wrap,
.yg-team-grid.is-complete .yg-team-role,
.yg-team-grid.is-complete .yg-team-name,
.yg-team-grid.is-complete .yg-team-career {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {

    .yg-team-grid.has-animate:not(.is-complete) .yg-team-photo-wrap,
    .yg-team-grid.has-animate:not(.is-complete) .yg-team-role,
    .yg-team-grid.has-animate:not(.is-complete) .yg-team-name,
    .yg-team-grid.has-animate:not(.is-complete) .yg-team-career {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        -webkit-animation: none;
        animation: none;
    }
}

.yg-team-card {
    width: 196px;
    text-align: center;
}

.yg-team-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.yg-team-role {
    margin: 0 0 8px;
    color: #00377b;
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.yg-team-name {
    display: block;
    margin: 0 0 4px;
    color: #000;
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.08em;
}

.yg-team-career {
    margin: 0;
    color: #000;
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.yg-team .yg-leaf-deco.d1 {
    width: 60px;
    top: 320px;
    left: -208px;
    right: auto;
    bottom: auto;
}

.yg-team .yg-leaf-deco.d2 {
    width: 60px;
    top: 520px;
    left: -108px;
    right: auto;
    bottom: auto;
}

.yg-team .yg-leaf-deco.d3 {
    width: 60px;
    top: 280px;
    right: -88px;
    left: auto;
    bottom: auto;
}

.yg-team .yg-leaf-deco.d4 {
    width: 60px;
    top: 480px;
    right: -158px;
    left: auto;
    bottom: auto;
}

.yg-impact-icon.yg-impact-icon--hand {
    width: 140px;
}

/* 키움런 탭 */
.yg-run-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 56px;
}

.yg-run-visual {
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    max-width: 300px;
}

.yg-run-logo {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
}

.yg-run-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
}

.yg-sec-lead--run {
    margin-bottom: 36px;
}

.yg-run-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 14px;
}

/* 인트로(로고 + 설명) */
.yg-page-intro {
    text-align: center;
    padding: 20px 0 36px;
}

.yg-page-logo {
    display: inline-block;
    position: relative;
    margin: 0;
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 32px;
    font-weight: 800;
    color: #00377b;
    letter-spacing: -0.02em;
}

.yg-page-logo img {
    position: absolute;
    top: -14px;
    right: -22px;
    width: 22px;
    height: auto;
}

.yg-page-desc {
    margin: 16px 0 0;
    color: #00377b;
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.7;
}

.yg-page-desc.yg-page-desc--founder {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.75;
}

/* 탭 */
.yg-ktabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #d9deea;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 36px;
}

.yg-ktabs .yg-ktab {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    height: 40px;
    border: 0;
    background: #fff;
    color: #5b6577;
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    border-left: 1px solid #d9deea;
}

.yg-ktabs .yg-ktab:first-child {
    border-left: 0;
}

.yg-ktabs .yg-ktab.is-on {
    background: #00377b;
    color: #fff;
}

/* 성과 아카이빙 탭 + 드롭다운 */
.yg-page.yg-archive>.yg-ktabs.yg-ktabs--archive {
    position: relative;
    z-index: 200;
    overflow: visible !important;
    margin-bottom: 36px;
}

.yg-ktabs--archive {
    overflow: visible !important;
    position: relative;
    z-index: 200;
}

.yg-ktabs--archive .yg-ktab-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    position: relative;
    z-index: 1;
}

.yg-ktab-item.has-drop:hover,
.yg-ktab-item.has-drop.is-open {
    z-index: 210;
}

.yg-ktab-item.has-drop:hover::after,
.yg-ktab-item.has-drop.is-open::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 140px;
}

.yg-page.yg-archive:has(.yg-ktab-item.has-drop:hover) .yg-ktab-panel,
.yg-page.yg-archive.is-drop-open .yg-ktab-panel {
    pointer-events: none;
}

.yg-ktabs--archive .yg-ktab-item .yg-ktab {
    position: relative;
    z-index: 2;
    width: 100%;
    border-left: 0;
}

.yg-ktabs--archive>.yg-ktab {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
}

.yg-ktab-drop {
    display: none;
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    z-index: 1;
    margin-top: -1px;
    border: 1px solid #d9deea;
    border-top: 0;
    background: #efefef;
    box-sizing: border-box;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.yg-ktab-item.has-drop:hover .yg-ktab-drop,
.yg-ktab-item.has-drop.is-open .yg-ktab-drop {
    display: block;
}

.yg-page.yg-archive>.yg-ktab-panel {
    z-index: 0;
}

.yg-ktab-divider {
    display: block;
    height: 1px;
    margin: 0;
    padding: 0;
    background: #d9deea;
    border: 0;
}

.yg-ktab-sub {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 12px 10px;
    border: 0;
    background: #efefef;
    color: #898989;
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    cursor: pointer;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
}

.yg-ktab-sub::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--yg-pink);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform .28s ease;
    transition: transform .28s ease;
}

.yg-ktab-sub:hover,
.yg-ktab-sub:focus {
    color: var(--yg-dark-text);
}

.yg-ktab-sub:hover::after,
.yg-ktab-sub:focus::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.yg-ktab-sub.is-on {
    background: #efefef;
    color: var(--yg-dark-text);
    font-weight: 800;
}

.yg-ktab-sub.is-on::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.yg-arch-sub {
    display: none;
}

.yg-arch-sub.is-on {
    display: block;
}

.yg-arch-hero {
    text-align: center;
    padding: 60px 0 40px;
}

.yg-arch-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid #d50078;
    color: #d50078;
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
}

.yg-arch-title {
    margin: 0 0 22px;
    color: #00377b;
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.yg-arch-summary {
    margin: 0 0 10px;
    color: #00377b;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: -0.02em;
}

.yg-arch-desc {
    margin: 0;
    color: #000;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -0.02em;
}

.yg-arch-video {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.yg-page.yg-archive .yg-arch-video .yg-prog-vtit,
.yg-page.yg-archive .yg-arch-video .yg-prog-more {
    font-family: 'Pretendard', sans-serif !important;
    letter-spacing: -0.02em;
}

.yg-arch-block--video-w {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.yg-arch-video .yg-prog-vhead {
    max-width: 100%;
}

.yg-arch-video .yg-prog-video {
    border-radius: 16px;
}

.yg-arch-empty {
    text-align: center;
    padding: 80px 20px;
    color: #5b6577;
    font-size: 15px;
}

/* 성과 아카이빙 — 리커버리야구단 상세 */
.yg-arch-block {
    margin-top: 48px;
}

.yg-arch-video+.yg-arch-block {
    margin-top: 72px;
}

.yg-arch-block-head {
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid #898989;
}

.yg-arch-block:has(.yg-arch-result)>.yg-arch-block-head .yg-arch-block-tit {
    font-family: 'Pretendard', sans-serif !important;
    letter-spacing: -0.02em;
}

.yg-page.yg-archive .yg-arch-block:has(.yg-arch-download)>.yg-arch-block-head .yg-arch-block-tit {
    font-family: 'Pretendard', sans-serif !important;
    letter-spacing: -0.02em;
}

.yg-arch-block-tit {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-weight: 800;
}

.yg-arch-block-tit--in {
    margin-bottom: 24px;
}

.yg-arch-download {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 48px;
    padding: 36px 40px;
    border-radius: 16px;
    background: #efefef;
}

.yg-arch-download-visual {
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
    max-width: 240px;
}

.yg-arch-download-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.yg-arch-download-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
}

.yg-arch-download-name {
    margin: 0 0 12px;
    color: #00377b;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.yg-arch-download-name-b {
    font-weight: 900;
}

.yg-arch-download-desc {
    margin: 0;
    color: #000;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.yg-arch-download-link.yg-prog-link {
    -ms-flex-item-align: start;
    align-self: flex-start;
    gap: 20px;
    margin-top: 0;
    padding: 12px 22px;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 15px;
    letter-spacing: -0.02em;
    background: #fff;
}

.yg-arch-download-link.yg-prog-link .yg-prog-link-txt {
    font-family: inherit;
}

.yg-arch-download-link.yg-prog-link:hover {
    background: #fff;
}

.yg-arch-download--row {
    display: block;
    padding: 32px 40px;
}

.yg-arch-download--row .yg-arch-download-body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 32px;
}

.yg-arch-download--row .yg-arch-download-name {
    margin: 0;
}

.yg-arch-download--row .yg-arch-download-link.yg-prog-link {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    align-self: auto;
}

.yg-arch-poc-check {
    position: relative;
    margin: -20px 0 28px;
    padding-left: 22px;
    color: #00377b;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -0.02em;
}

.yg-arch-poc-check::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #00377b;
    font-weight: 700;
}

.yg-arch-poc-project-visual {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 680px;
    margin: 0 auto;
}

.yg-arch-poc-project-count {
    position: absolute;
    left: 50.75%;
    top: 65.5%;
    z-index: 2;
    display: block;
    margin: 0;
    color: #00377b;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.yg-arch-poc-project-val {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.yg-arch-poc-project-unit {
    font-family: inherit;
    font-size: 0.72em;
    font-weight: 900;
}

.yg-arch-poc-project-visual img {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 240px;
    height: auto;
    margin: 0 auto;
}

.yg-arch-result+.yg-arch-result.yg-arch-poc-verify {
    margin-top: 32px;
}

.yg-arch-poc-verify .yg-arch-block-tit--in {
    margin-bottom: 28px;
}

.yg-arch-result {
    padding: 32px 36px 40px;
    border: 1px solid #d9deea;
    border-radius: 16px;
    background: #fff;
}

.yg-arch-result-lead,
.yg-arch-esteem .yg-arch-block-tit--in,
.yg-arch-join .yg-arch-block-tit--in,
.yg-arch-poc-verify .yg-arch-block-tit--in {
    color: #00377b;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    text-align: left;
}

.yg-arch-result-lead {
    margin: 0 0 32px;
}

.yg-arch-esteem .yg-arch-block-tit--in {
    margin-bottom: 28px;
}

.yg-arch-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 190px);
    justify-content: center;
    row-gap: 32px;
    column-gap: 20px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.yg-arch-result-item {
    text-align: center;
}

.yg-arch-result-icon {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto 14px;
}

.yg-arch-result-label {
    display: block;
    margin-bottom: 4px;
    color: #00377b;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.yg-arch-result-num {
    display: block;
    color: #00377b;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.yg-arch-result-unit {
    font-family: inherit;
    font-size: 0.72em;
    font-weight: 900;
}

.yg-arch-result-grid--4 {
    grid-template-columns: repeat(4, 190px);
}

.yg-arch-result-grid--2 {
    grid-template-columns: repeat(2, 190px);
}

.yg-arch-result-grid--3 {
    grid-template-columns: repeat(3, 190px);
}

.yg-arch-result-sub {
    margin: 8px 0 0;
    color: #00377b;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.yg-arch-lecture-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.yg-arch-lecture-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 28px;
    border-radius: 16px;
    background: #efefef;
}

.yg-arch-lecture-text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
}

.yg-arch-lecture-title {
    margin: 0 0 6px;
    color: #00377b;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.yg-arch-lecture-tag {
    font-weight: 900;
}

.yg-arch-lecture-speaker {
    margin: 0;
    color: #000;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.yg-arch-lecture-link.yg-prog-link {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    gap: 20px;
    padding: 12px 22px;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 14px;
    letter-spacing: -0.02em;
    background: #fff;
}

.yg-arch-lecture-link.yg-prog-link:hover {
    background: #fff;
}

.yg-arch-result-item--donut .yg-arch-result-label {
    margin-top: 0;
    font-weight: 700;
}

.yg-arch-donut {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 14px;
    --yg-donut-pct: 0;
    --yg-donut-circ: 320.442;
}

.yg-arch-donut-svg {
    display: block;
    width: 100%;
    height: 100%;
    transform: rotate(-120deg);
}

.yg-arch-donut-track,
.yg-arch-donut-fill {
    fill: none;
    stroke-width: 18;
}

.yg-arch-donut-track {
    stroke: #dce3ef;
}

.yg-arch-donut-fill {
    stroke: #00377b;
    stroke-dasharray: var(--yg-donut-circ);
    stroke-dashoffset: calc(var(--yg-donut-circ) * (1 - var(--yg-donut-pct, 0) / 100));
}

.yg-arch-donut-num {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: block;
    color: #d50078;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.yg-arch-donut-num--sm {
    font-size: 21px;
}

.yg-arch-donut-num .yg-arch-result-val,
.yg-arch-donut-num .yg-arch-result-unit {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.yg-arch-result-grid+.yg-arch-result-grid {
    margin-top: 32px;
}

.yg-arch-result-note {
    margin: 28px -8px 0 0;
    color: #898989;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    text-align: right;
}

.yg-arch-block .yg-arch-result+.yg-arch-result {
    margin-top: 24px;
}

.yg-arch-prism-diagram img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
}

.yg-arch-esteem {
    padding: 32px 36px 36px;
    border: 1px solid #d9deea;
    border-radius: 16px;
    background: #fff;
}

.yg-arch-esteem-chart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
}

.yg-arch-esteem-mid {
    position: relative;
    width: 100%;
    max-width: 560px;
    min-height: 150px;
    padding-top: 38px;
    overflow: visible;
}

.yg-arch-esteem-arrow {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: auto;
    z-index: 1;
}

.yg-arch-esteem-before,
.yg-arch-esteem-after {
    position: absolute;
    top: auto;
    bottom: 12px;
    color: #00377b;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    z-index: 2;
    -webkit-transform: none;
    transform: none;
}

.yg-arch-esteem-before {
    left: 6%;
    font-size: 26px;
}

.yg-arch-esteem-after {
    right: 10%;
}

.yg-arch-esteem-person {
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 92px;
    height: auto;
    z-index: 3;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: yg-arch-person-sway 2.4s ease-in-out infinite;
    animation: yg-arch-person-sway 2.4s ease-in-out infinite;
}

@-webkit-keyframes yg-arch-person-sway {

    0%,
    100% {
        -webkit-transform: translateX(-50%) rotate(0deg);
    }

    25% {
        -webkit-transform: translateX(-50%) rotate(-7deg);
    }

    75% {
        -webkit-transform: translateX(-50%) rotate(7deg);
    }
}

@keyframes yg-arch-person-sway {

    0%,
    100% {
        transform: translateX(-50%) rotate(0deg);
    }

    25% {
        transform: translateX(-50%) rotate(-7deg);
    }

    75% {
        transform: translateX(-50%) rotate(7deg);
    }
}

.yg-arch-esteem-up {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2px;
    color: #d50078;
    font-weight: 900;
    line-height: 1.3;
    white-space: nowrap;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.yg-arch-esteem-up-val {
    font-size: 16px;
}

.yg-arch-esteem-up-pct {
    font-size: 14px;
}

.yg-arch-esteem-note {
    margin: 0;
    color: #00377b;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.yg-arch-join {
    padding: 32px 36px 40px;
    border: 1px solid #d9deea;
    border-radius: 16px;
    background: #fff;
}

.yg-arch-join .yg-arch-block-tit--in {
    margin-bottom: 32px;
}

.yg-arch-join-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 280px));
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.yg-arch-join-item {
    text-align: center;
}

.yg-arch-join-icon {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
}

.yg-arch-join-title {
    margin: 0;
    color: #00377b;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.55;
}

.yg-arch-join-desc {
    margin: 6px 0 0;
    color: #00377b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

/* 성과 아카이빙 — AI 이노베이터 교육 */
.yg-arch-ai-grow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 48px;
}

.yg-arch-ai-grow-item {
    text-align: center;
}

.yg-arch-ai-grow-up {
    display: block;
    margin: 0 0 2px;
    color: #d50078;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.yg-arch-ai-grow-chart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
}

.yg-arch-ai-grow-mid {
    position: relative;
    width: 100%;
    max-width: 643px;
    min-height: 108px;
    overflow: visible;
}

.yg-arch-ai-grow-arrow {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: auto;
    z-index: 1;
}

.yg-arch-ai-grow-icon {
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 104px;
    height: auto;
    z-index: 3;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: yg-arch-ai-icon-pulse 2.2s ease-in-out infinite;
    animation: yg-arch-ai-icon-pulse 2.2s ease-in-out infinite;
}

@-webkit-keyframes yg-arch-ai-icon-pulse {

    0%,
    100% {
        -webkit-transform: translateX(-50%) scale(1);
    }

    50% {
        -webkit-transform: translateX(-50%) scale(1.05);
    }
}

@keyframes yg-arch-ai-icon-pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.yg-arch-ai-grow-icon--proto {
    width: 92px;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.yg-arch-ai-grow-note {
    margin: 0;
    color: #00377b;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.yg-arch-result+.yg-arch-result.yg-arch-ai-project {
    margin-top: 32px;
}

.yg-arch-ai-project {
    padding: 28px 24px 32px;
}

.yg-arch-ai-project-visual {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.yg-arch-ai-project-count {
    position: absolute;
    left: 49.3%;
    top: 53.4%;
    z-index: 2;
    display: block;
    margin: 0;
    color: #00377b;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.yg-arch-ai-project-val {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.yg-arch-ai-project-unit {
    font-family: inherit;
    font-size: 0.72em;
    font-weight: 900;
}

.yg-arch-ai-project-visual img {
    display: block;
    width: 92%;
    max-width: 100%;
    min-width: 300px;
    height: auto;
    margin: 0 auto;
}

/* 성과 아카이빙 — Pretendard 통일 (타이틀·뱃지 제외) */
.yg-page.yg-archive .yg-arch-sub :is(.yg-arch-summary,
    .yg-arch-desc,
    .yg-arch-block-tit,
    .yg-arch-download-name,
    .yg-arch-download-desc,
    .yg-arch-download-link,
    .yg-arch-download-link .yg-prog-link-txt,
    .yg-arch-result-lead,
    .yg-arch-result-label,
    .yg-arch-result-num,
    .yg-arch-result-val,
    .yg-arch-result-unit,
    .yg-arch-esteem-before,
    .yg-arch-esteem-after,
    .yg-arch-esteem-up,
    .yg-arch-esteem-up-val,
    .yg-arch-esteem-up-pct,
    .yg-arch-esteem-note,
    .yg-arch-join-title,
    .yg-arch-join-desc,
    .yg-arch-poc-check,
    .yg-arch-poc-project-val,
    .yg-arch-poc-project-unit,
    .yg-arch-lecture-title,
    .yg-arch-lecture-tag,
    .yg-arch-lecture-speaker,
    .yg-arch-lecture-link,
    .yg-arch-lecture-link .yg-prog-link-txt,
    .yg-arch-result-sub,
    .yg-arch-donut-num,
    .yg-arch-ai-grow-up,
    .yg-arch-ai-grow-note,
    .yg-prog-vtit,
    .yg-prog-more) {
    font-family: 'Pretendard', sans-serif !important;
    letter-spacing: -0.02em;
}

/* 탭 패널 */
.yg-ktab-panel {
    display: none;
}

.yg-ktab-panel.is-on {
    display: block;
}

/* 섹션 제목 + 리드문구 */
.yg-sec-title {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.yg-sec-title .yg-sec-navy {
    color: #00377b;
}

.yg-sec-title .yg-sec-pink {
    color: #d50078;
}

.yg-brand-navy {
    color: #00377b;
}

.yg-brand-pink {
    color: #d50078;
}

.yg-sec-lead {
    position: relative;
    border-left: 0;
    padding: 0 0 0 20px;
    margin-bottom: 50px;
}

.yg-sec-lead::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 7px;
    background: #00377b;
}

.yg-sec-lead p {
    margin: 0 0 4px;
    font-weight: 500;
    color: #000;
    font-size: 14px;
    line-height: 1.5;
}

.yg-sec-lead p:last-child {
    margin-bottom: 0;
}

/* 예강메이트 — 탭 내장 배너 + 2열 카드 */
.yg-kiwoom-card {
    margin-bottom: 0;
    padding: 16px 28px 18px 30px;
    border: 1px solid #d9deea;
    border-radius: 10px;
    background: #efefef;
    box-sizing: border-box;
}

.yg-page.yg-kiwoom:has(#yg-tab-mate.is-on) .yg-kiwoom-card {
    padding-bottom: 0;
}

.yg-page.yg-kiwoom:has(#yg-tab-impact.is-on) .yg-kiwoom-card {
    padding-bottom: 0;
}

.yg-page.yg-kiwoom:has(#yg-tab-mate.is-on) .yg-impact-hero {
    display: none;
}

.yg-page.yg-kiwoom:has(#yg-tab-impact.is-on) .yg-mate-hero {
    display: none;
}

#yg-tab-mate.is-on,
#yg-tab-impact.is-on {
    margin-top: 72px;
}

.yg-kiwoom-card .yg-ktabs--inbox {
    margin-bottom: 16px;
    border: 1px solid #d9deea;
    border-radius: 4px;
    overflow: hidden;
}

.yg-kiwoom-card .yg-ktabs--inbox .yg-ktab {
    height: 42px;
    border-left: 0;
    background: #fff;
    color: #00377b;
}

.yg-kiwoom-card .yg-ktabs--inbox .yg-ktab.is-on {
    background: #00377b;
    color: #fff;
}

.yg-mate-hero,
.yg-impact-hero {
    margin: 0;
    padding: 20px 0 0;
    background: transparent;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
}

.yg-mate-hero-body {
    display: grid;
    grid-template-columns: minmax(0, 182px) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 20px 44px;
    width: calc(100% - 60px);
    max-width: 100%;
    min-width: 0;
    margin-left: 60px;
    box-sizing: border-box;
}

.yg-mate-hero-logo {
    grid-column: 1;
    grid-row: 1;
    display: block;
    width: 132px;
    max-width: 100%;
    height: auto;
    margin: 0 0 0 14px;
}

.yg-mate-hero-logo--impact {
    width: 132px;
    max-width: 100%;
    height: auto;
    margin: 0 0 0 14px;
}

.yg-mate-hero-text {
    grid-column: 2;
    grid-row: 1 / -1;
    min-width: 0;
    padding: 0 0 20px;
    overflow-wrap: break-word;
    word-break: keep-all;
}

.yg-mate-hero-person {
    grid-column: 1;
    grid-row: 2;
    display: block;
    width: 152px;
    max-width: 100%;
    height: auto;
    margin: 0;
    -ms-flex-item-align: end;
    align-self: end;
    justify-self: start;
}

.yg-mate-hero-text p {
    margin: 0;
    color: #00377b;
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: -0.02em;
    text-align: left;
}

@media (max-width: 1100px) {
    .yg-mate-hero-body {
        width: calc(100% - 30px);
        margin-left: 30px;
        gap: 16px 24px;
        grid-template-columns: minmax(0, 150px) minmax(0, 1fr);
    }

    .yg-mate-hero-text p {
        font-size: 15px;
        line-height: 1.85;
    }
}

@media (max-width: 900px) {
    .yg-mate-hero-body {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto auto;
        gap: 14px 0;
        width: 100%;
        margin-left: 0;
    }

    .yg-mate-hero-text .yg-pcbr {
        display: none;
    }

    .yg-mate-hero-logo {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
        margin: 0;
    }

    .yg-mate-hero-text {
        grid-column: 1;
        grid-row: 2;
        padding: 0 0 16px;
    }

    .yg-mate-hero-person {
        grid-column: 1;
        grid-row: 3;
        align-self: end;
        justify-self: center;
    }

    .yg-bridge-hero-illust {
        grid-column: 1;
        grid-row: 3;
        align-self: end;
        justify-self: center;
    }

    .yg-bridge-hero .yg-mate-hero-body {
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        margin-left: 0;
    }

    .yg-bridge-hero .yg-mate-hero-logo,
    .yg-bridge-hero .yg-mate-hero-logo--bridge,
    .yg-bridge-hero .yg-mate-hero-logo--hero {
        margin: 0 0 8px;
        justify-self: center;
    }

    .yg-grow .yg-bridge-hero .yg-mate-hero-body {
        grid-template-rows: auto auto auto;
    }

    .yg-grow .yg-bridge-hero .yg-bridge-hero-illust {
        position: static;
        right: auto;
        bottom: auto;
        z-index: auto;
        width: 140px;
        max-width: 100%;
        margin: 0 auto;
    }
}

/* 예강브릿지 — 단일 탭 배너 + 2열 카드 */
.yg-help-card {
    margin-bottom: 0;
    padding: 16px 28px 0 30px;
    border: 1px solid #d9deea;
    border-radius: 10px;
    background: #efefef;
    box-sizing: border-box;
}

.yg-help-card .yg-ktabs--inbox {
    margin-bottom: 16px;
    border: 1px solid #d9deea;
    border-radius: 4px;
    overflow: hidden;
}

.yg-help-card .yg-ktabs--single {
    display: block;
}

.yg-help-card .yg-ktabs--single .yg-ktab {
    display: block;
    width: 100%;
    height: 42px;
    border-left: 0;
    background: #00377b;
    color: #fff;
    line-height: 42px;
    text-align: center;
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 16px;
    font-weight: 800;
    cursor: default;
}

.yg-bridge-hero {
    margin: 0;
    padding: 20px 0 0;
    background: transparent;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
}

.yg-bridge-hero .yg-mate-hero-logo,
.yg-mate-hero-logo--bridge,
.yg-mate-hero-logo--hero {
    margin: 0 0 0 38px;
}

@media (min-width: 901px) {
    .yg-bridge-hero .yg-mate-hero-body {
        grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    }
}

.yg-bridge-hero-illust {
    grid-column: 1;
    grid-row: 2;
    display: block;
    width: 200px;
    max-width: 100%;
    height: auto;
    margin: 0;
    -ms-flex-item-align: end;
    align-self: end;
    justify-self: start;
}

/* 예강히어로 — 상단 일러스트 배경 배치 (데스크톱) */
.yg-grow .yg-help-card {
    position: relative;
}

@media (min-width: 901px) {
    .yg-grow .yg-help-card {
        padding-bottom: 44px;
    }

    .yg-grow .yg-bridge-hero {
        position: static;
        padding-bottom: 0;
    }

    .yg-grow .yg-bridge-hero .yg-mate-hero-body {
        position: static;
        z-index: 1;
    }

    .yg-grow .yg-bridge-hero .yg-mate-hero-text {
        position: relative;
        z-index: 1;
        padding-bottom: 16px;
    }

    .yg-grow .yg-bridge-hero .yg-bridge-hero-illust {
        position: absolute;
        right: 80px;
        bottom: 0;
        z-index: 0;
        width: 168px;
        max-width: 34%;
        height: auto;
        margin: 0;
        pointer-events: none;
        -webkit-user-select: none;
        user-select: none;
    }
}

.yg-help-panel {
    margin-top: 72px;
}

.yg-grow .yg-prog-hero-icon {
    display: block;
    width: 128px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 32px;
}

.yg-help .yg-prog-foot {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    margin-top: auto;
    padding-top: 52px;
    padding-bottom: 8px;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.yg-help .yg-prog-foot .yg-prog-link {
    margin-top: 0;
}

.yg-mate-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.yg-mate-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yg-mate-grid--three .yg-prog-name {
    font-size: 18px;
}

.yg-mate-grid--three .yg-prog-main {
    width: 100%;
}

.yg-mate-grid .yg-prog-impact-icon {
    display: block;
    width: 148px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.yg-mate-grid--three .yg-prog-head {
    margin-bottom: 18px;
}

.yg-mate-grid--three .yg-prog-summary {
    margin-top: 0;
}

.yg-mate-grid .yg-prog--card {
    position: relative;
    container-type: inline-size;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0;
    padding: 38px 28px 48px;
    border: 1px solid #d9deea;
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
    height: 100%;
}

.yg-mate-grid .yg-prog+.yg-prog {
    margin-top: 0;
    padding-top: 38px;
}

.yg-mate-grid .yg-prog-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.yg-mate-grid .yg-prog-num {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    min-width: 36px;
    padding: 7px 14px 6px;
    border-radius: 10px;
    background: #00377b;
    color: #fff;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.yg-mate-grid .yg-prog-name {
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.yg-mate-grid .yg-prog-body--card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    gap: 0;
}

.yg-mate-grid .yg-prog-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.yg-mate-grid .yg-prog-intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    align-self: stretch;
    gap: 14px;
    margin-bottom: 18px;
    text-align: center;
}

.yg-mate-grid .yg-prog-intro.yg-prog-intro--impact {
    gap: 0;
    margin-top: -8px;
    margin-bottom: 0;
}

.yg-mate-grid--three .yg-prog-impact-icon {
    margin: 0 auto 40px;
}

.yg-mate-grid .yg-prog-logo {
    width: 160px;
    margin-bottom: 32px;
}

.yg-mate-grid .yg-prog-logo.yg-prog-logo--heart {
    width: 320px;
    max-width: 100%;
    margin-bottom: 32px;
}

.yg-mate-grid .yg-prog-summary {
    margin: 0;
    text-align: center;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.65;
}

.yg-mate-grid .yg-prog-text {
    align-self: stretch;
    width: 100%;
    margin: 10px 0 22px;
    color: var(--yg-dark-text);
    font-family: 'Pretendard', sans-serif !important;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.yg-help .yg-mate-grid .yg-prog-intro,
.yg-grow .yg-mate-grid .yg-prog-intro {
    margin-bottom: 0;
}

.yg-help .yg-mate-grid .yg-prog-text,
.yg-grow .yg-mate-grid .yg-prog-text {
    margin: 18px 0 0;
}

.yg-mate-grid--three .yg-prog-text {
    margin: 24px 0 0;
}

.yg-mate-grid .yg-prog-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 20px 0 0;
    padding: 12px 24px;
    gap: 24px;
    border-radius: 8px;
    font-size: 14px;
}

.yg-mate-grid .yg-prog-link-txt {
    text-align: left;
    line-height: 1.5;
}

.yg-mate-grid .yg-prog-link-txt br {
    display: block;
}

.yg-mate-grid .yg-prog-arrow {
    width: 28px;
}

.yg-mate-grid .yg-prog-right,
.yg-mate-grid .yg-prog-icons {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-top: auto;
    padding-top: 52px;
    padding-bottom: 8px;
    box-sizing: border-box;
}

.yg-mate-grid .yg-prog-icons {
    display: grid;
    grid-template-rows: 54px minmax(0, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(118px + 56.25cqw);
    padding-top: 52px;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
    background: transparent;
}

.yg-mate-grid .yg-prog-icons::before {
    content: '';
    display: block;
    grid-row: 1;
    width: 100%;
    height: 54px;
}

.yg-mate-grid .yg-prog-three-icon {
    display: block;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
}

.yg-help .yg-mate-grid .yg-prog--card:first-child .yg-prog-body--card {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 0;
}

.yg-help .yg-mate-grid .yg-prog--card:first-child .yg-prog-main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    align-self: stretch;
    min-height: 0;
}

/* 예강히어로 — 구형 영상 영역 (레거시) */
.yg-mate-grid .yg-prog-vhead {
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom-color: #c9caca;
}

.yg-mate-grid .yg-prog-vtit {
    font-size: 15px;
    font-weight: 700;
    color: var(--yg-dark-text);
}

.yg-mate-grid .yg-prog-more {
    color: #888888;
    font-size: 12px;
}

.yg-mate-grid .yg-prog-video {
    border-radius: 8px;
    margin-bottom: 4px;
}

/* 예강메이트 01·02 — 제목·로고·요약 상단 출발선 정렬 */
.yg-kiwoom .yg-mate-grid .yg-prog-head {
    min-height: 56px;
}

.yg-kiwoom .yg-mate-grid .yg-prog-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: calc(20px * 1.35 * 2);
}

.yg-kiwoom .yg-mate-grid .yg-prog-logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    min-height: 96px;
    margin-bottom: 32px;
}

.yg-kiwoom .yg-mate-grid .yg-prog-logo {
    width: auto;
    max-width: 160px;
    max-height: 90px;
    height: auto;
    margin-bottom: 0;
    -o-object-fit: contain;
    object-fit: contain;
}

.yg-kiwoom .yg-mate-grid .yg-prog-logo.yg-prog-logo--heart {
    max-width: 320px;
    max-height: 73px;
    margin-bottom: 0;
}

/* 예강브릿지 01·02 — 제목·로고·요약 상단 출발선 정렬 */
.yg-help .yg-mate-grid .yg-prog-head {
    min-height: 56px;
}

.yg-help .yg-mate-grid .yg-prog-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: calc(20px * 1.35 * 2);
}

.yg-help .yg-mate-grid .yg-prog-logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 128px;
    min-height: 128px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 128px;
    flex: 0 0 128px;
    margin-bottom: 32px;
    box-sizing: border-box;
}

.yg-help .yg-mate-grid .yg-prog-intro.yg-prog-intro--stack {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
    gap: 0;
}

.yg-help .yg-mate-grid .yg-prog-logo-box .yg-prog-bridge-icon {
    width: auto;
    max-width: 128px;
    max-height: 124px;
    height: auto;
    margin: 0;
    -o-object-fit: contain;
    object-fit: contain;
}

.yg-help .yg-mate-grid .yg-prog-logo-box .yg-prog-logo.yg-prog-logo--run {
    width: auto;
    max-width: 340px;
    max-height: 110px;
    height: auto;
    margin: 0;
    -o-object-fit: contain;
    object-fit: contain;
}

.yg-help .yg-mate-grid .yg-prog-summary {
    align-self: stretch;
    width: 100%;
    margin-top: 0;
}

.yg-help .yg-mate-grid .yg-prog-text {
    margin-bottom: 0;
}

/* 예강히어로 01·02 — 제목·로고·요약 상단 출발선 정렬 */
.yg-grow .yg-mate-grid .yg-prog-head {
    min-height: 56px;
}

.yg-grow .yg-mate-grid .yg-prog-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: calc(20px * 1.35 * 2);
}

.yg-grow .yg-mate-grid .yg-prog-logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 128px;
    min-height: 128px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 128px;
    flex: 0 0 128px;
    margin-bottom: 32px;
    box-sizing: border-box;
}

.yg-grow .yg-mate-grid .yg-prog-intro.yg-prog-intro--stack {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
    gap: 0;
}

.yg-grow .yg-mate-grid .yg-prog-logo-box .yg-prog-hero-icon {
    width: auto;
    max-width: 128px;
    max-height: 124px;
    height: auto;
    margin: 0;
    -o-object-fit: contain;
    object-fit: contain;
}

.yg-grow .yg-mate-grid .yg-prog-summary {
    align-self: stretch;
    width: 100%;
    margin-top: 0;
}

.yg-grow .yg-mate-grid .yg-prog-text {
    margin-bottom: 0;
}

.yg-grow .yg-mate-grid .yg-prog--card .yg-prog-body--card {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 0;
}

.yg-grow .yg-mate-grid .yg-prog--card .yg-prog-main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    align-self: stretch;
    min-height: 0;
}

.yg-kiwoom .yg-mate-grid .yg-prog-summary {
    min-height: calc(17px * 1.65 * 2);
}

.yg-kiwoom .yg-mate-grid .yg-prog-text {
    margin-bottom: 0;
}

.yg-kiwoom .yg-prog-bottom,
.yg-help .yg-prog-bottom,
.yg-grow .yg-prog-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 64px;
    width: 100%;
    margin-top: 64px;
}

.yg-kiwoom .yg-prog-flow,
.yg-help .yg-prog-flow,
.yg-grow .yg-prog-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) -webkit-max-content minmax(0, 1fr) -webkit-max-content minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr) max-content minmax(0, 1fr) max-content minmax(0, 1fr);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    justify-items: center;
    -webkit-column-gap: clamp(10px, 2vw, 18px);
    -moz-column-gap: clamp(10px, 2vw, 18px);
    column-gap: clamp(10px, 2vw, 18px);
    width: 100%;
    min-height: 150px;
    -webkit-perspective: 900px;
    perspective: 900px;
}

@-webkit-keyframes yg-prog-flow-flip-y {
    from {
        opacity: 0;
        -webkit-transform: perspective(600px) rotateY(-88deg);
        transform: perspective(600px) rotateY(-88deg);
    }

    to {
        opacity: 1;
        -webkit-transform: perspective(600px) rotateY(0deg);
        transform: perspective(600px) rotateY(0deg);
    }
}

@keyframes yg-prog-flow-flip-y {
    from {
        opacity: 0;
        -webkit-transform: perspective(600px) rotateY(-88deg);
        transform: perspective(600px) rotateY(-88deg);
    }

    to {
        opacity: 1;
        -webkit-transform: perspective(600px) rotateY(0deg);
        transform: perspective(600px) rotateY(0deg);
    }
}

@-webkit-keyframes yg-prog-flow-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes yg-prog-flow-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.yg-kiwoom .yg-prog-flow.has-animate:not(.is-complete) .yg-prog-flow-circle,
.yg-help .yg-prog-flow.has-animate:not(.is-complete) .yg-prog-flow-circle,
.yg-grow .yg-prog-flow.has-animate:not(.is-complete) .yg-prog-flow-circle,
.yg-kiwoom .yg-prog-flow.has-animate:not(.is-complete) .yg-prog-flow-sep,
.yg-help .yg-prog-flow.has-animate:not(.is-complete) .yg-prog-flow-sep,
.yg-grow .yg-prog-flow.has-animate:not(.is-complete) .yg-prog-flow-sep,
.yg-kiwoom .yg-prog-flow.has-animate:not(.is-complete) .yg-prog-flow-label,
.yg-help .yg-prog-flow.has-animate:not(.is-complete) .yg-prog-flow-label,
.yg-grow .yg-prog-flow.has-animate:not(.is-complete) .yg-prog-flow-label {
    opacity: 0;
}

.yg-kiwoom .yg-prog-flow-circle,
.yg-help .yg-prog-flow-circle,
.yg-grow .yg-prog-flow-circle,
.yg-kiwoom .yg-prog-flow-sep,
.yg-help .yg-prog-flow-sep,
.yg-grow .yg-prog-flow-sep {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.yg-kiwoom .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(1) .yg-prog-flow-circle,
.yg-help .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(1) .yg-prog-flow-circle,
.yg-grow .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(1) .yg-prog-flow-circle,
.yg-kiwoom .yg-prog-flow.is-playing>.yg-prog-flow-sep:nth-child(2),
.yg-help .yg-prog-flow.is-playing>.yg-prog-flow-sep:nth-child(2),
.yg-grow .yg-prog-flow.is-playing>.yg-prog-flow-sep:nth-child(2),
.yg-kiwoom .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(3) .yg-prog-flow-circle,
.yg-help .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(3) .yg-prog-flow-circle,
.yg-grow .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(3) .yg-prog-flow-circle,
.yg-kiwoom .yg-prog-flow.is-playing>.yg-prog-flow-sep:nth-child(4),
.yg-help .yg-prog-flow.is-playing>.yg-prog-flow-sep:nth-child(4),
.yg-grow .yg-prog-flow.is-playing>.yg-prog-flow-sep:nth-child(4),
.yg-kiwoom .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(5) .yg-prog-flow-circle,
.yg-help .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(5) .yg-prog-flow-circle,
.yg-grow .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(5) .yg-prog-flow-circle {
    -webkit-animation: yg-prog-flow-flip-y 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation: yg-prog-flow-flip-y 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.yg-kiwoom .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(1) .yg-prog-flow-label,
.yg-help .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(1) .yg-prog-flow-label,
.yg-grow .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(1) .yg-prog-flow-label,
.yg-kiwoom .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(3) .yg-prog-flow-label,
.yg-help .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(3) .yg-prog-flow-label,
.yg-grow .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(3) .yg-prog-flow-label,
.yg-kiwoom .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(5) .yg-prog-flow-label,
.yg-help .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(5) .yg-prog-flow-label,
.yg-grow .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(5) .yg-prog-flow-label {
    -webkit-animation: yg-prog-flow-fade-in 0.65s ease both;
    animation: yg-prog-flow-fade-in 0.65s ease both;
}

.yg-kiwoom .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(1) .yg-prog-flow-circle,
.yg-help .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(1) .yg-prog-flow-circle,
.yg-grow .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(1) .yg-prog-flow-circle,
.yg-kiwoom .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(1) .yg-prog-flow-label,
.yg-help .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(1) .yg-prog-flow-label,
.yg-grow .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(1) .yg-prog-flow-label {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.yg-kiwoom .yg-prog-flow.is-playing>.yg-prog-flow-sep:nth-child(2),
.yg-help .yg-prog-flow.is-playing>.yg-prog-flow-sep:nth-child(2),
.yg-grow .yg-prog-flow.is-playing>.yg-prog-flow-sep:nth-child(2) {
    -webkit-animation-delay: 0.28s;
    animation-delay: 0.28s;
}

.yg-kiwoom .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(3) .yg-prog-flow-circle,
.yg-help .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(3) .yg-prog-flow-circle,
.yg-grow .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(3) .yg-prog-flow-circle,
.yg-kiwoom .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(3) .yg-prog-flow-label,
.yg-help .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(3) .yg-prog-flow-label,
.yg-grow .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(3) .yg-prog-flow-label {
    -webkit-animation-delay: 0.56s;
    animation-delay: 0.56s;
}

.yg-kiwoom .yg-prog-flow.is-playing>.yg-prog-flow-sep:nth-child(4),
.yg-help .yg-prog-flow.is-playing>.yg-prog-flow-sep:nth-child(4),
.yg-grow .yg-prog-flow.is-playing>.yg-prog-flow-sep:nth-child(4) {
    -webkit-animation-delay: 0.84s;
    animation-delay: 0.84s;
}

.yg-kiwoom .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(5) .yg-prog-flow-circle,
.yg-help .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(5) .yg-prog-flow-circle,
.yg-grow .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(5) .yg-prog-flow-circle,
.yg-kiwoom .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(5) .yg-prog-flow-label,
.yg-help .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(5) .yg-prog-flow-label,
.yg-grow .yg-prog-flow.is-playing .yg-prog-flow-step:nth-child(5) .yg-prog-flow-label {
    -webkit-animation-delay: 1.12s;
    animation-delay: 1.12s;
}

.yg-kiwoom .yg-prog-flow.is-complete .yg-prog-flow-circle,
.yg-help .yg-prog-flow.is-complete .yg-prog-flow-circle,
.yg-grow .yg-prog-flow.is-complete .yg-prog-flow-circle,
.yg-kiwoom .yg-prog-flow.is-complete .yg-prog-flow-sep,
.yg-help .yg-prog-flow.is-complete .yg-prog-flow-sep,
.yg-grow .yg-prog-flow.is-complete .yg-prog-flow-sep,
.yg-kiwoom .yg-prog-flow.is-complete .yg-prog-flow-label,
.yg-help .yg-prog-flow.is-complete .yg-prog-flow-label,
.yg-grow .yg-prog-flow.is-complete .yg-prog-flow-label {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {

    .yg-kiwoom .yg-prog-flow:not(.is-complete) .yg-prog-flow-circle,
    .yg-help .yg-prog-flow:not(.is-complete) .yg-prog-flow-circle,
    .yg-grow .yg-prog-flow:not(.is-complete) .yg-prog-flow-circle,
    .yg-kiwoom .yg-prog-flow:not(.is-complete) .yg-prog-flow-sep,
    .yg-help .yg-prog-flow:not(.is-complete) .yg-prog-flow-sep,
    .yg-grow .yg-prog-flow:not(.is-complete) .yg-prog-flow-sep,
    .yg-kiwoom .yg-prog-flow:not(.is-complete) .yg-prog-flow-label,
    .yg-help .yg-prog-flow:not(.is-complete) .yg-prog-flow-label,
    .yg-grow .yg-prog-flow:not(.is-complete) .yg-prog-flow-label {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        -webkit-animation: none;
        animation: none;
    }
}

.yg-kiwoom .yg-prog-flow-step,
.yg-help .yg-prog-flow-step,
.yg-grow .yg-prog-flow-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
}

.yg-kiwoom .yg-prog-flow-circle,
.yg-help .yg-prog-flow-circle,
.yg-grow .yg-prog-flow-circle {
    display: block;
    width: min(100%, 118px);
    max-width: 118px;
    height: auto;
    aspect-ratio: 1;
}

.yg-kiwoom .yg-prog-flow-label,
.yg-help .yg-prog-flow-label,
.yg-grow .yg-prog-flow-label {
    margin: 0;
    color: #00377b;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    word-break: keep-all;
    width: 100%;
}

.yg-kiwoom .yg-prog-flow-sep,
.yg-help .yg-prog-flow-sep,
.yg-grow .yg-prog-flow-sep {
    display: block;
    width: 28px;
    min-width: 28px;
    max-width: 28px;
    height: auto;
    -ms-flex-item-align: start;
    align-self: start;
    margin-top: 46px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.yg-kiwoom .yg-prog-flow-sep--sym,
.yg-help .yg-prog-flow-sep--sym,
.yg-grow .yg-prog-flow-sep--sym {
    width: 24px;
    min-width: 24px;
    max-width: 24px;
}

.yg-kiwoom .yg-prog-flow-item,
.yg-help .yg-prog-flow-item,
.yg-grow .yg-prog-flow-item {
    display: block;
    width: min(100%, 118px);
    max-width: 118px;
    height: auto;
}

.yg-kiwoom .yg-prog-flow-item--wide,
.yg-help .yg-prog-flow-item--wide,
.yg-grow .yg-prog-flow-item--wide {
    max-width: 118px;
    -webkit-transform: none;
    transform: none;
}

.yg-kiwoom .yg-prog-links,
.yg-help .yg-prog-links,
.yg-grow .yg-prog-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.yg-kiwoom .yg-prog-links--pair,
.yg-help .yg-prog-links--pair,
.yg-grow .yg-prog-links--pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.yg-kiwoom .yg-prog-links--pair .yg-prog-link:last-child .yg-prog-link-txt,
.yg-help .yg-prog-links--pair .yg-prog-link:last-child .yg-prog-link-txt,
.yg-grow .yg-prog-links--pair .yg-prog-link:last-child .yg-prog-link-txt {
    white-space: nowrap;
}

.yg-kiwoom .yg-prog-links .yg-prog-link,
.yg-help .yg-prog-links .yg-prog-link,
.yg-grow .yg-prog-links .yg-prog-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.yg-kiwoom .yg-prog-links:not(.yg-prog-links--pair) .yg-prog-link,
.yg-help .yg-prog-links:not(.yg-prog-links--pair) .yg-prog-link,
.yg-grow .yg-prog-links:not(.yg-prog-links--pair) .yg-prog-link {
    width: calc((100% - 32px) / 2);
    max-width: calc((100% - 32px) / 2);
    min-height: calc(12px * 2 + 14px * 1.5 * 2 + 2px);
}

.yg-grow .yg-prog-links:not(.yg-prog-links--pair) .yg-prog-link-txt {
    white-space: nowrap;
}

.yg-help .yg-prog-links--reserve,
.yg-grow .yg-prog-links--reserve {
    visibility: hidden;
    pointer-events: none;
}

.yg-help .yg-prog-links--reserve .yg-prog-link,
.yg-grow .yg-prog-links--reserve .yg-prog-link {
    cursor: default;
}

@media (min-width: 769px) {

    .yg-kiwoom .yg-mate-grid .yg-prog-main,
    .yg-help .yg-mate-grid .yg-prog-main,
    .yg-grow .yg-mate-grid .yg-prog-main {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        align-self: stretch;
        min-height: 0;
    }

    .yg-kiwoom .yg-prog-bottom,
    .yg-help .yg-prog-bottom,
    .yg-grow .yg-prog-bottom {
        margin-top: auto;
        padding-top: 72px;
    }

    .yg-kiwoom .yg-prog-flow,
    .yg-help .yg-prog-flow,
    .yg-grow .yg-prog-flow {
        min-height: 168px;
    }

    .yg-kiwoom .yg-prog-flow-circle,
    .yg-help .yg-prog-flow-circle,
    .yg-grow .yg-prog-flow-circle {
        width: min(100%, 128px);
        max-width: 128px;
    }

    .yg-kiwoom .yg-prog-flow-label,
    .yg-help .yg-prog-flow-label,
    .yg-grow .yg-prog-flow-label {
        font-size: 16px;
        min-height: calc(16px * 1.45 * 2);
    }

    .yg-kiwoom .yg-prog-flow-sep,
    .yg-help .yg-prog-flow-sep,
    .yg-grow .yg-prog-flow-sep {
        width: 30px;
        min-width: 30px;
        max-width: 30px;
        margin-top: 50px;
    }

    .yg-kiwoom .yg-prog-flow-sep--sym,
    .yg-help .yg-prog-flow-sep--sym,
    .yg-grow .yg-prog-flow-sep--sym {
        width: 26px;
        min-width: 26px;
        max-width: 26px;
    }
}

.yg-prog {
    margin-top: 20px;
}

.yg-prog+.yg-prog {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #e7e9ef;
}

.yg-prog-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.yg-prog-num,
.yg-impact-num {
    display: inline-block;
    padding: 6px 10px 5px 10px;
    border-radius: 0 999px 999px 0;
    background: #00377b;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.yg-prog-name {
    color: #00377b;
    font-family: 'NanumSquareRound', 'Pretendard', sans-serif !important;
    font-size: 20px;
    font-weight: 800;
}

.yg-prog-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 90px;
}

.yg-prog-body--single {
    gap: 0;
}

.yg-prog-intro--stack {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 18px;
}

.yg-prog-intro--stack .yg-prog-summary {
    margin-top: 0;
}

.yg-prog-left {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 380px;
    flex: 1 1 380px;
    min-width: 0;
}

.yg-prog-right {
    -ms-flex: 0 0 460px;
    flex: 0 0 460px;
    max-width: 460px;
}

.yg-prog-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 22px;
}

.yg-prog-logo {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 130px;
    height: auto;
}

.yg-prog-logo.yg-prog-logo--heart {
    width: 270px;
    max-width: 100%;
}

.yg-pcbr {
    display: inline;
}

.mo-br {
    display: none;
}

.yg-prog-summary {
    margin: 0;
    margin-top: -5px;
    color: #00377b;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.6;
}

.yg-prog-text {
    margin: 20px 0 28px;
    color: black;
    font-size: 14px;
    line-height: 1.7;
}

.yg-prog-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    padding: 14px 24px;
    border: 1px solid #00377b;
    border-radius: 10px;
    color: #00377b;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.yg-prog-link:hover {
    background: #f4f7fc;
}

.yg-prog-link-txt {
    text-align: left;
    line-height: 1.45;
}

.yg-prog-arrow {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 34px;
    height: auto;
}

/* 대표 영상 */
.yg-prog-vhead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid #898989;
}

.yg-prog-vtit {
    color: #1d2330;
    font-size: 16px;
    font-weight: 700;
}

.yg-prog-more {
    color: #898989;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.yg-prog-video {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    line-height: 0;
    padding-top: 56.25%;
}

.yg-prog-video--shorts {
    max-width: 315px;
    margin-left: auto;
    padding-top: 177.78%;
}

.yg-prog-video video,
.yg-prog-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* YouTube 고화질 썸네일 (재생 전) */
.yg-yt-facade .yg-yt-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: #000;
    cursor: pointer;
}

.yg-yt-facade .yg-yt-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.06) saturate(1.08);
    transform: translateZ(0);
}

.yg-yt-facade .yg-yt-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(255, 0, 0, 0.88);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    transition: background 0.2s ease, transform 0.2s ease;
}

.yg-yt-facade .yg-yt-play:hover .yg-yt-play-icon,
.yg-yt-facade .yg-yt-play:focus-visible .yg-yt-play-icon {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.05);
}

.yg-yt-facade .yg-yt-play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
}

/* 예강임팩트 카드 */
.yg-impact-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.yg-impact-card {
    position: relative;
    padding: 32px 48px 28px 40px;
    border-radius: 16px;
    background: #efefef;
}

.yg-impact-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.yg-impact-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 24px;
}

.yg-impact-text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 130px);
}

.yg-impact-name {
    color: #00377b;
    font-size: 20px;
    font-weight: 800;
}

.yg-impact-summary {
    margin: 0 0 10px;
    padding-left: 50px;
    color: #00377b;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.65;
}

.yg-impact-desc {
    margin: 0;
    padding-left: 50px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
}

.yg-impact-icon {
    position: absolute;
    right: 96px;
    bottom: 14px;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    pointer-events: none;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

.yg-impact-icon--01 {
    width: 100px;
    -webkit-animation: yg-impact-float 3.2s ease-in-out infinite;
    animation: yg-impact-float 3.2s ease-in-out infinite;
}

.yg-impact-icon--02 {
    width: 124px;
    -webkit-animation: yg-impact-sway 3.6s ease-in-out infinite 0.5s;
    animation: yg-impact-sway 3.6s ease-in-out infinite 0.5s;
}

.yg-impact-icon--03 {
    width: 118px;
    -webkit-animation: yg-impact-rise 3.4s ease-in-out infinite 1s;
    animation: yg-impact-rise 3.4s ease-in-out infinite 1s;
}

@-webkit-keyframes yg-impact-float {

    0%,
    100% {
        -webkit-transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-8px);
    }
}

@keyframes yg-impact-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@-webkit-keyframes yg-impact-sway {

    0%,
    100% {
        -webkit-transform: translateY(0) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-6px) rotate(-2deg);
    }
}

@keyframes yg-impact-sway {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-6px) rotate(-2deg);
    }
}

@-webkit-keyframes yg-impact-rise {

    0%,
    100% {
        -webkit-transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-10px);
    }
}

@keyframes yg-impact-rise {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .yg-impact-icon--01,
    .yg-impact-icon--02,
    .yg-impact-icon--03 {
        -webkit-animation: none;
        animation: none;
    }

    .yg-ktab-item.has-drop:hover .yg-ktab-drop,
    .yg-ktab-item.has-drop.is-open .yg-ktab-drop {
        display: block;
    }
}

@media (max-width: 1024px) {
    .yg-impact-icon {
        display: none;
    }

    .yg-impact-summary,
    .yg-impact-desc {
        padding-left: 0;
    }

    .yg-impact-text {
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .yg-page {
        padding: 16px 16px 60px;
    }

    .yg-page-logo {
        font-size: 26px;
    }

    .yg-about-lead p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 18px;
    }

    .yg-about-infographic {
        max-width: 100%;
        margin-top: 44px;
        padding: 0 12px;
    }

    .yg-about-point {
        max-width: 100%;
        margin-top: 52px;
        padding: 0 12px;
    }

    .yg-about-point-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        column-gap: 0;
        row-gap: 0;
    }

    .yg-about-point-diagram {
        max-width: 100%;
        width: 100%;
        gap: 40px;
        margin: 0 auto;
        padding: 0 4px;
    }

    .yg-about-point-block--core {
        gap: 24px;
    }

    .yg-about-point-values-layout {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        gap: 0;
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .yg-about-point-block--values .yg-about-point-mark {
        grid-column: unset;
        grid-row: unset;
        order: 1;
        -ms-flex-item-align: center;
        align-self: center;
        width: 100%;
        max-width: min(100%, 300px);
        margin: 0 auto 16px;
        padding-bottom: 36px;
        box-sizing: content-box;
    }

    .yg-about-point-mark {
        max-width: 380px;
    }

    .yg-about-point-mark--values .yg-about-point-node--top {
        top: 27%;
        left: 50%;
        width: 34%;
    }

    .yg-about-point-mark--values .yg-about-point-node--left {
        top: 72%;
        left: 22%;
        width: 34%;
    }

    .yg-about-point-mark--values .yg-about-point-node--right {
        top: 72%;
        left: 79%;
        width: 38%;
    }

    .yg-about-point-mark--values .yg-about-point-center {
        top: calc(64% - 14px);
    }

    .yg-about-point-mark--values .yg-about-point-node--top .yg-about-point-node-icon {
        width: 34%;
        margin-top: -7%;
    }

    .yg-about-point-mark--values .yg-about-point-node--left .yg-about-point-node-icon {
        width: 36%;
        margin-top: 6%;
    }

    .yg-about-point-mark--values .yg-about-point-node--right .yg-about-point-node-icon {
        width: 44%;
        margin-top: 7%;
    }

    .yg-about-point-center-title {
        font-size: clamp(16px, 5.5cqi, 22px);
    }

    .yg-point-label {
        font-size: clamp(8px, 3.05cqi, 12px);
        line-height: 1.4;
    }

    .yg-point-label--top {
        width: 30%;
    }

    .yg-point-label--right {
        width: 32%;
    }

    .yg-point-label--left {
        width: 30%;
    }

    .yg-about-point-block--core .yg-about-point-desc {
        margin-top: 16px;
    }

    .yg-about-brand {
        max-width: none;
        width: calc(100% + 32px);
        margin-top: 72px;
        margin-bottom: 48px;
        margin-left: -16px;
        margin-right: -16px;
        padding: 0;
        --yg-about-brand-boost: 1.3;
    }

    .yg-about-brand-row {
        margin-top: 32px;
        gap: 16px;
    }

    .yg-about-brand-label {
        font-size: 24px;
    }

    .yg-about-vision-wrap {
        padding-left: 220px;
    }

    .yg-about-values-sec {
        padding-top: 32px;
    }

    .yg-about-value-desc {
        font-size: 18px;
        line-height: 1.5;
    }

    .yg-about-vision-beam-desc {
        -webkit-transform: scale(calc(15 / 13));
        transform: scale(calc(15 / 13));
        -webkit-transform-origin: top center;
        transform-origin: top center;
    }

    .yg-about-vision-beam-desc--pink {
        -webkit-transform: translateX(-6px) scale(calc(15 / 13));
        transform: translateX(-6px) scale(calc(15 / 13));
        -webkit-transform-origin: top center;
        transform-origin: top center;
    }

    .yg-about-point-semicircle {
        max-width: 100%;
        margin-top: 48px;
    }

    .yg-about-point-semicircle+.yg-about-point-semicircle {
        margin-top: 52px;
    }

    .yg-about-point-semicircle-arc {
        max-width: 200px;
    }

    .yg-about-point-semicircle-title {
        font-size: clamp(18px, 11.25cqi, 24px);
    }

    .yg-about-lead .yg-about-point-semicircle-caption {
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 17px;
        line-height: 1.45;
        border-radius: 999px;
    }

    .yg-about-point-desc {
        padding: 0;
    }

    .yg-about-point-img--core {
        width: 100%;
        max-width: 100%;
    }

    .yg-about-point-img--compact {
        width: 100%;
        max-width: 90%;
    }

    .yg-about-point-img--mission {
        width: 100%;
        max-width: 100%;
    }

    .yg-about-point-img--three {
        width: 100%;
        max-width: 100%;
    }

    .yg-about-point-block--values .yg-about-point-text {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin: 0 0 12px !important;
        padding: 14px 16px 16px 18px;
        font-size: 14px;
        line-height: 1.65;
        text-align: left !important;
        word-break: keep-all;
        overflow-wrap: break-word;
        background: #f7f9fc;
        border-left: 3px solid #00377b;
        border-radius: 0 10px 10px 0;
        box-sizing: border-box;
    }

    .yg-about-point-block--values .yg-about-point-text::before {
        display: block;
        margin-bottom: 6px;
        color: #00377b;
        font-size: 15px;
        font-weight: 800;
        line-height: 1.3;
        letter-spacing: -0.03em;
    }

    .yg-about-point-text--kiwoom {
        grid-column: unset;
        grid-row: unset;
        order: 2;
        margin-top: 68px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-top: 14px;
    }

    .yg-about-point-text--kiwoom::before {
        content: '키움';
    }

    .yg-about-point-text--help {
        grid-column: unset;
        grid-row: unset;
        order: 4;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        padding-right: 16px;
    }

    .yg-about-point-text--help::before {
        content: '도움';
    }

    .yg-about-point-text--helper {
        grid-column: unset;
        grid-row: unset;
        order: 3;
        margin: 0 0 12px !important;
    }

    .yg-about-point-text--helper::before {
        content: '돕는 사람을 키움';
    }

    .yg-about-ci-sec {
        margin-top: 106px;
    }

    .yg-about-ci-sec+.yg-about-ci-sec {
        margin-top: 98px;
    }

    .yg-about-ci-sec--location {
        margin-bottom: 40px;
    }

    .yg-about-ci-head {
        gap: 16px;
        margin-bottom: 28px;
    }

    .yg-about-ci-body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 32px;
    }

    .yg-about-ci-visual,
    .yg-about-location-map {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .yg-about-ci-logo {
        max-width: min(100%, 320px);
    }

    .yg-about-ci-lead {
        font-size: 16px;
        text-align: center;
    }

    .yg-about-ci-desc {
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 1.75;
        text-align: center;
    }

    .yg-about-ci-downloads {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .yg-about-ci-download {
        min-width: 0;
        font-size: 14px;
        padding: 11px 16px;
    }

    .yg-about-ci-download img {
        width: 28px;
        height: 28px;
    }

    .yg-about-location-map {
        height: 220px;
        min-height: 220px;
        border-radius: 16px;
        font-size: 14px;
    }

    .yg-about-location-info {
        width: 100%;
        padding-top: 0;
        text-align: left;
    }

    .yg-about-location-info dt {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .yg-about-location-info dd {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 32px;
    }

    .yg-founder-body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 32px;
        margin-top: 48px;
    }

    .yg-founder-visual {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .yg-founder-photo {
        border-radius: 20px;
    }

    .yg-founder-text p {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.75;
    }

    .yg-founder-sign {
        margin-top: 36px;
        padding-right: 48px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 8px;
    }

    .yg-founder-sign-org {
        font-size: 14px;
    }

    .yg-founder-sign-name {
        font-size: 20px;
    }

    .yg-team-grid {
        grid-template-columns: repeat(2, 150px);
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 40px 48px;
    }

    .yg-team-card {
        width: 150px;
    }

    .yg-team-photo-wrap {
        width: 150px;
        height: 150px;
        margin-bottom: 14px;
    }

    .yg-team-role {
        font-size: 14px;
    }

    .yg-team-name {
        font-size: 19px;
        margin-bottom: 4px;
    }

    .yg-team-career {
        font-size: 13px;
    }

    .yg-ktabs .yg-ktab {
        height: 40px;
        font-size: 15px;
    }

    .yg-ktab-sub {
        font-size: 12px;
        padding: 10px 8px;
    }

    .yg-arch-title {
        font-size: 20px;
    }

    .yg-arch-summary {
        font-size: 15px;
    }

    .yg-arch-desc {
        font-size: 15px;
    }

    .yg-arch-block {
        margin-top: 32px;
    }

    .yg-arch-video+.yg-arch-block {
        margin-top: 48px;
    }

    .yg-arch-download {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px;
        padding: 28px 20px;
    }

    .yg-arch-download-visual {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 180px;
        width: 100%;
    }

    .yg-arch-download-body {
        min-height: 0;
        width: 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 24px;
    }

    .yg-arch-download-name {
        font-size: 17px;
    }

    .yg-arch-download-link.yg-prog-link {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .yg-arch-download--row {
        padding: 28px 20px;
    }

    .yg-arch-download--row .yg-arch-download-body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        gap: 20px;
    }

    .yg-arch-download--row .yg-arch-download-link.yg-prog-link {
        width: 100%;
    }

    .yg-arch-poc-check {
        margin: -16px 0 20px;
        font-size: 13px;
    }

    .yg-arch-poc-project-count {
        font-size: 20px;
    }

    .yg-arch-result+.yg-arch-result.yg-arch-poc-verify {
        margin-top: 24px;
    }

    .yg-arch-lecture-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        gap: 20px;
        padding: 20px;
    }

    .yg-arch-lecture-link.yg-prog-link {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .yg-arch-lecture-title {
        font-size: 15px;
    }

    .yg-arch-result-grid--3 {
        grid-template-columns: repeat(2, 160px);
    }

    .yg-arch-donut {
        width: 100px;
        height: 100px;
        margin-bottom: 12px;
    }

    .yg-arch-donut-num {
        font-size: 20px;
    }

    .yg-arch-donut-num--sm {
        font-size: 18px;
    }

    .yg-arch-result {
        padding: 24px 20px 28px;
    }

    .yg-arch-ai-grow {
        gap: 36px;
    }

    .yg-arch-ai-grow-up {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .yg-arch-ai-grow-mid {
        min-height: 92px;
    }

    .yg-arch-ai-grow-icon {
        width: 80px;
    }

    .yg-arch-ai-grow-icon--proto {
        width: 76px;
    }

    .yg-arch-ai-project {
        padding: 20px 12px 24px;
    }

    .yg-arch-ai-project-count {
        font-size: 20px;
    }

    .yg-arch-result+.yg-arch-result.yg-arch-ai-project {
        margin-top: 24px;
    }

    .yg-arch-result-lead,
    .yg-arch-esteem .yg-arch-block-tit--in,
    .yg-arch-join .yg-arch-block-tit--in,
    .yg-arch-poc-verify .yg-arch-block-tit--in {
        font-size: 16px;
    }

    .yg-arch-result-lead {
        margin-bottom: 24px;
    }

    .yg-arch-result-grid {
        grid-template-columns: repeat(2, 160px);
        justify-content: center;
        row-gap: 28px;
        column-gap: 16px;
    }

    .yg-arch-result-grid--4 {
        grid-template-columns: repeat(2, 160px);
    }

    .yg-arch-result-grid--2 {
        grid-template-columns: repeat(2, 160px);
    }

    .yg-arch-result-grid+.yg-arch-result-grid {
        margin-top: 28px;
    }

    .yg-arch-result-note {
        margin: 24px 0 0;
        font-size: 12px;
    }

    .yg-arch-block .yg-arch-result+.yg-arch-result {
        margin-top: 20px;
    }

    .yg-arch-prism-diagram img {
        max-width: 100%;
    }

    .yg-arch-result-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }

    .yg-arch-result-label {
        font-size: 13px;
    }

    .yg-arch-result-num {
        font-size: 20px;
    }

    .yg-arch-esteem {
        padding: 24px 20px 28px;
    }

    .yg-arch-esteem .yg-arch-block-tit--in {
        margin-bottom: 20px;
    }

    .yg-arch-esteem-mid {
        max-width: 100%;
        min-height: 115px;
        padding-top: 32px;
    }

    .yg-arch-esteem-before,
    .yg-arch-esteem-after {
        font-size: 24px;
        bottom: 7px;
    }

    .yg-arch-esteem-before {
        left: 4%;
        font-size: 19px;
    }

    .yg-arch-esteem-after {
        right: 8%;
    }

    .yg-arch-esteem-person {
        bottom: -4px;
        width: 66px;
    }

    .yg-arch-esteem-up-val {
        font-size: 14px;
    }

    .yg-arch-esteem-up-pct {
        font-size: 12px;
    }

    .yg-arch-join {
        padding: 24px 20px 28px;
    }

    .yg-arch-join .yg-arch-block-tit--in {
        margin-bottom: 24px;
    }

    .yg-arch-join-list {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .yg-arch-join-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 14px;
    }

    .yg-arch-join-title {
        font-size: 14px;
    }

    .yg-arch-join-desc {
        font-size: 13px;
    }

    .yg-prog-body {
        gap: 28px;
    }

    .yg-pcbr {
        display: none;
    }

    .mo-br {
        display: inline;
    }

    .yg-prog-right {
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        max-width: 100%;
    }

    .yg-prog-intro {
        gap: 16px;
    }

    .yg-prog-logo {
        width: 100px;
    }

    .yg-prog-logo.yg-prog-logo--heart {
        width: 337px;
    }

    .yg-prog+.yg-prog {
        margin-top: 36px;
        padding-top: 36px;
    }

    .yg-kiwoom-card {
        padding: 14px 18px 16px 10px;
    }

    .yg-page.yg-kiwoom:has(#yg-tab-mate.is-on) .yg-kiwoom-card {
        padding-bottom: 0;
    }

    .yg-page.yg-kiwoom:has(#yg-tab-impact.is-on) .yg-kiwoom-card {
        padding-bottom: 0;
    }

    #yg-tab-mate.is-on,
    #yg-tab-impact.is-on {
        margin-top: 52px;
    }

    .yg-kiwoom-card .yg-ktabs--inbox {
        margin-bottom: 14px;
    }

    .yg-kiwoom-card .yg-ktabs--inbox .yg-ktab {
        height: 40px;
        font-size: 15px;
    }

    .yg-mate-hero,
    .yg-impact-hero {
        padding: 16px 0 0;
    }

    .yg-mate-hero-body {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto auto;
        gap: 14px 0;
        width: 100%;
        margin-left: 0;
    }

    .yg-mate-hero-logo {
        grid-column: 1;
        grid-row: 1;
        width: 122px;
        justify-self: center;
        margin: 0 0 8px;
    }

    .yg-mate-hero-logo--impact {
        width: 122px;
        justify-self: center;
        margin: 0 0 8px;
    }

    .yg-mate-hero-text {
        grid-column: 1;
        grid-row: 2;
        padding: 0 0 16px;
    }

    .yg-mate-hero-person {
        grid-column: 1;
        grid-row: 3;
        width: 140px;
        align-self: end;
        justify-self: center;
    }

    .yg-help-card {
        padding: 14px 18px 0 10px;
    }

    .yg-grow .yg-help-card {
        padding-bottom: 0;
    }

    .yg-help-card .yg-ktabs--inbox {
        margin-bottom: 14px;
    }

    .yg-help-card .yg-ktabs--single .yg-ktab {
        height: 40px;
        line-height: 40px;
        font-size: 15px;
    }

    .yg-bridge-hero {
        padding: 16px 0 0;
    }

    .yg-bridge-hero-illust {
        grid-column: 1;
        grid-row: 3;
        width: 140px;
        align-self: end;
        justify-self: center;
    }

    .yg-grow .yg-bridge-hero .yg-bridge-hero-illust {
        position: static;
        width: 118px;
        max-width: 100%;
        margin: 0 auto;
    }

    .yg-help-panel {
        margin-top: 52px;
    }

    .yg-help .yg-mate-grid .yg-prog-logo-box {
        height: 100px;
        min-height: 100px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
        flex: 0 0 100px;
        margin-bottom: 24px;
    }

    .yg-help .yg-mate-grid .yg-prog-logo-box .yg-prog-bridge-icon {
        max-width: 100px;
        max-height: 96px;
    }

    .yg-help .yg-mate-grid .yg-prog-logo-box .yg-prog-logo.yg-prog-logo--run {
        max-width: 320px;
        max-height: 88px;
    }

    .yg-grow .yg-mate-grid .yg-prog-logo-box {
        height: 100px;
        min-height: 100px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
        flex: 0 0 100px;
        margin-bottom: 24px;
    }

    .yg-grow .yg-mate-grid .yg-prog-logo-box .yg-prog-hero-icon {
        max-width: 100px;
        max-height: 96px;
    }

    .yg-mate-hero-text p {
        font-size: 14px;
        line-height: 1.8;
        text-align: left;
    }

    .yg-mate-grid,
    .yg-mate-grid--three {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .yg-help .yg-mate-grid,
    .yg-kiwoom .yg-mate-grid,
    .yg-grow .yg-mate-grid {
        gap: 40px;
    }

    .yg-mate-grid .yg-prog--card {
        padding: 32px 18px 40px;
    }

    .yg-mate-grid .yg-prog+.yg-prog {
        padding-top: 32px;
    }

    .yg-mate-grid .yg-prog-head {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .yg-mate-grid .yg-prog-name {
        text-align: center;
    }

    .yg-mate-grid .yg-prog-intro {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .yg-mate-grid .yg-prog-summary {
        text-align: center;
    }

    .yg-mate-grid .yg-prog-main {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .yg-mate-grid .yg-prog-text {
        text-align: center;
    }

    .yg-mate-grid .yg-prog-link-txt br {
        display: block;
    }

    .yg-mate-grid .yg-prog-logo.yg-prog-logo--heart {
        width: 100%;
        max-width: 360px;
    }

    .yg-kiwoom .yg-mate-grid .yg-prog-logo-box {
        min-height: 80px;
        margin-bottom: 24px;
    }

    .yg-kiwoom .yg-mate-grid .yg-prog-logo {
        max-width: 140px;
        max-height: 82px;
    }

    .yg-kiwoom .yg-mate-grid .yg-prog-logo.yg-prog-logo--heart {
        max-width: 100%;
        max-height: 68px;
    }

    .yg-kiwoom .yg-prog-bottom,
    .yg-help .yg-prog-bottom,
    .yg-grow .yg-prog-bottom {
        gap: 48px;
        margin-top: 48px;
        padding-top: 0;
    }

    .yg-kiwoom .yg-prog-flow,
    .yg-help .yg-prog-flow,
    .yg-grow .yg-prog-flow {
        display: grid;
        grid-template-columns: minmax(0, 1fr) -webkit-max-content minmax(0, 1fr) -webkit-max-content minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr) max-content minmax(0, 1fr) max-content minmax(0, 1fr);
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        justify-items: center;
        -webkit-column-gap: 4px;
        -moz-column-gap: 4px;
        column-gap: 4px;
        width: 100%;
        min-height: 0;
        overflow-x: visible;
        padding: 0;
    }

    .yg-kiwoom .yg-prog-flow-step,
    .yg-help .yg-prog-flow-step,
    .yg-grow .yg-prog-flow-step {
        width: 100%;
        min-width: 0;
        gap: 8px;
    }

    .yg-kiwoom .yg-prog-flow-circle,
    .yg-help .yg-prog-flow-circle,
    .yg-grow .yg-prog-flow-circle {
        width: min(100%, 84px);
        max-width: 84px;
    }

    .yg-kiwoom .yg-prog-flow-label,
    .yg-help .yg-prog-flow-label,
    .yg-grow .yg-prog-flow-label {
        font-size: 13px;
        line-height: 1.4;
        min-height: 0;
    }

    .yg-kiwoom .yg-prog-flow-sep,
    .yg-help .yg-prog-flow-sep,
    .yg-grow .yg-prog-flow-sep {
        width: 18px;
        min-width: 18px;
        max-width: 18px;
        margin-top: 32px;
    }

    .yg-kiwoom .yg-prog-flow-sep--sym,
    .yg-help .yg-prog-flow-sep--sym,
    .yg-grow .yg-prog-flow-sep--sym {
        width: 16px;
        min-width: 16px;
        max-width: 16px;
    }

    .yg-kiwoom .yg-prog-flow-item,
    .yg-help .yg-prog-flow-item,
    .yg-kiwoom .yg-prog-flow-item--wide,
    .yg-help .yg-prog-flow-item--wide,
    .yg-grow .yg-prog-flow-item,
    .yg-grow .yg-prog-flow-item--wide {
        width: 84px;
        max-width: 84px;
    }

    .yg-kiwoom .yg-prog-links--pair,
    .yg-help .yg-prog-links--pair,
    .yg-grow .yg-prog-links--pair {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .yg-kiwoom .yg-prog-links--pair .yg-prog-link,
    .yg-help .yg-prog-links--pair .yg-prog-link,
    .yg-grow .yg-prog-links--pair .yg-prog-link {
        min-height: calc(12px * 2 + 14px * 1.5 * 2 + 2px);
    }

    .yg-kiwoom .yg-prog-links:not(.yg-prog-links--pair) .yg-prog-link,
    .yg-help .yg-prog-links:not(.yg-prog-links--pair) .yg-prog-link,
    .yg-grow .yg-prog-links:not(.yg-prog-links--pair) .yg-prog-link {
        width: 100%;
        max-width: 100%;
        min-height: calc(12px * 2 + 14px * 1.5 * 2 + 2px);
    }

    .yg-mate-grid .yg-prog-right {
        padding-top: 44px;
    }

    .yg-mate-grid .yg-prog-icons {
        display: block;
        min-height: 0;
        padding-top: 32px;
    }

    .yg-mate-grid .yg-prog-icons::before {
        display: none;
    }

    .yg-mate-grid .yg-prog-three-icon {
        grid-row: auto;
    }

    .yg-impact-card {
        padding: 22px 20px 24px;
    }

    .yg-impact-body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        gap: 16px;
    }

    .yg-run-body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 24px;
    }

    .yg-run-visual {
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        max-width: 100%;
    }

    .yg-run-logo {
        max-width: 250px;
    }

    .yg-sec-lead--run {
        margin-bottom: 28px;
    }

    .yg-run-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .yg-run-links .yg-prog-link {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        padding: 12px 14px;
        font-size: 13px;
        box-sizing: border-box;
    }

    .yg-run-links .yg-prog-arrow {
        width: 26px;
    }
}

/* =========================================================
   모달 (이메일무단수집거부 등)
   ========================================================= */
.yg-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
}

.yg-modal.is-open {
    display: block;
}

.yg-modal-dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.yg-modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    max-width: 620px;
    max-height: 84vh;
    margin: 0;
    background: transparent;
    border-radius: 14px;
    -webkit-box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.yg-modal-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 24px;
    background: #00377b;
    color: #fff;
    border-radius: 14px 14px 0 0;
}

.yg-modal-head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.yg-modal-close {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
}

.yg-modal-body {
    padding: 24px;
    overflow-y: auto;
    background: #fff;
    border-radius: 0 0 14px 14px;
    color: #444;
    font-size: 15px;
    line-height: 1.75;
}

.yg-modal-body p {
    margin: 0 0 14px;
}

.yg-modal-law {
    font-weight: 700;
    color: #00377b;
}

.yg-modal-list {
    margin: 0;
    padding-left: 20px;
}

.yg-modal-list li {
    margin: 0 0 10px;
    list-style: decimal;
}

@media (max-width: 768px) {
    .yg-modal-body {
        font-size: 14px;
        padding: 20px;
    }

    .yg-modal-head {
        padding: 16px 18px;
    }
}

/* =========================================================
   팝업창 관리
   ========================================================= */
.yg-popup-wrap .yg-popup-write-btn {
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    padding: 11px 24px;
    line-height: 1 !important;
    font-size: 15px;
    font-weight: 700;
    border-radius: 24px !important;
    border: 1px solid #00377b;
    background: #00377b;
    color: #fff !important;
    box-shadow: none;
    text-decoration: none;
}

.yg-popup-wrap .yg-popup-write-btn:hover {
    background: #002a5e;
    border-color: #002a5e;
    color: #fff !important;
}

.yg-popup-wrap .yg-popup-write-btn i {
    margin-left: 4px;
}

.yg-popup-wrap #bo_list th:nth-of-type(2),
.yg-popup-wrap #bo_list td:nth-of-type(2) {
    width: auto !important;
    text-align: inherit;
}

.yg-popup-wrap #bo_list.yg-board .yg-board-table .yg-th-subject,
.yg-popup-wrap #bo_list.yg-board .yg-board-table .yg-td-subject {
    text-align: left !important;
}

.yg-popup-wrap .yg-popup-table col.yg-col-subject {
    width: auto;
}

.yg-popup-wrap .yg-popup-table col.yg-col-date {
    width: 190px;
}

.yg-popup-wrap #bo_list.yg-board .yg-board-table .yg-th-date,
.yg-popup-wrap #bo_list.yg-board .yg-board-table .yg-td-date {
    width: 190px !important;
    max-width: 190px;
    min-width: 130px;
    text-align: center !important;
    white-space: nowrap;
}

.yg-popup-wrap #bo_list.yg-board .yg-board-table .yg-th-view,
.yg-popup-wrap #bo_list.yg-board .yg-board-table .yg-td-view {
    width: 100px !important;
    max-width: 100px;
    min-width: 100px;
    text-align: center !important;
}

.yg-popup-wrap .yg-popup-table col.yg-col-view {
    width: 100px;
}

.yg-popup-view-badge {
    display: inline-block;
    min-width: 52px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef0f4;
    color: #888;
    font-size: 13px;
    font-weight: 600;
}

.yg-popup-view-badge.is-show {
    background: #e8f0fb;
    color: #00377b;
}

.yg-popup-form-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.yg-popup-back {
    flex-shrink: 0;
    color: #555;
    font-size: 14px;
    text-decoration: none;
}

.yg-popup-back:hover {
    color: #00377b;
}

.yg-popup-form-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.yg-popup-set {
    max-width: 100%;
}

.yg-popup-set-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
}

.yg-popup-set-title {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.02em;
}

.yg-popup-add-btn {
    flex-shrink: 0;
    min-width: 120px;
    height: 42px;
    padding: 0 18px;
    border: 1px solid var(--yg-navy);
    border-radius: 6px;
    background: var(--yg-navy);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.yg-popup-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.yg-popup-item {
    display: grid;
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
    gap: 28px 36px;
    padding: 28px 0;
    border-top: 1px solid #eceef2;
}

.yg-popup-item:last-child {
    border-bottom: 1px solid #eceef2;
}

.yg-popup-uploads {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.yg-popup-upload {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    border: 1px solid #e3e6eb;
    border-radius: 8px;
    background: #f3f4f6;
    overflow: hidden;
    cursor: pointer;
}

.yg-popup-upload--pc {
    aspect-ratio: 7 / 4;
}

.yg-popup-upload--mo {
    aspect-ratio: 4 / 5;
    max-height: 260px;
}

.yg-popup-file {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.yg-popup-upload-guide {
    position: relative;
    z-index: 1;
    text-align: center;
    pointer-events: none;
}

.yg-popup-upload-label {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.yg-popup-upload-size {
    margin: 0;
    font-size: 12px;
    color: #888;
}

.yg-popup-upload-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: 14px;
    border-radius: 50%;
    background: var(--yg-navy);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    font-weight: 300;
}

.yg-popup-upload img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yg-popup-upload.has-image .yg-popup-upload-guide {
    position: absolute;
    right: 10px;
    bottom: 10px;
    margin: 0;
}

.yg-popup-upload.has-image .yg-popup-upload-icon {
    width: 36px;
    height: 36px;
    margin-top: 0;
    font-size: 22px;
    opacity: 0.92;
}

.yg-popup-upload.has-image .yg-popup-upload-label,
.yg-popup-upload.has-image .yg-popup-upload-size {
    display: none;
}

.yg-popup-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.yg-popup-field {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: center;
    min-height: 52px;
    border: 1px solid #e3e6eb;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.yg-popup-field-label {
    display: flex;
    align-items: center;
    align-self: stretch;
    padding: 0 16px;
    background: #f3f4f6;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.yg-popup-field-body {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 8px 12px;
}

.yg-popup-input {
    width: 100%;
    min-width: 0;
    height: 36px;
    padding: 0 10px;
    border: 0;
    background: transparent;
    color: #222;
    font-size: 14px;
}

.yg-popup-input:focus {
    outline: none;
}

.yg-popup-input--sort {
    max-width: 72px;
}

.yg-popup-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    color: #555;
    font-size: 13px;
    white-space: nowrap;
    cursor: pointer;
}

.yg-popup-check input {
    margin: 0;
}

.yg-popup-field--term .yg-popup-term-body {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.yg-popup-term-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.yg-popup-term-label {
    flex-shrink: 0;
    width: 64px;
    font-size: 13px;
    color: #666;
}

.yg-popup-term-item .yg-popup-input {
    flex: 1;
    border: 1px solid #e3e6eb;
    border-radius: 4px;
    background: #fff;
    padding: 0 10px;
}

.yg-popup-field--meta {
    grid-template-columns: 1fr;
    padding: 12px;
    background: #fff;
}

.yg-popup-field--meta .yg-popup-field-label {
    display: none;
}

.yg-popup-field--meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
}

.yg-popup-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.yg-popup-meta .yg-popup-field-label {
    width: auto;
    padding: 0;
    background: transparent;
    white-space: nowrap;
}

.yg-popup-select {
    min-width: 100px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #d8dce3;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-size: 14px;
}

.yg-popup-meta--action {
    margin-left: auto;
    gap: 8px;
}

.yg-popup-wrap .yg-popup-submit,
.yg-popup-wrap button.yg-popup-submit {
    min-width: 120px;
    height: 42px;
    padding: 0 18px;
    border: 1px solid #00377b !important;
    border-radius: 6px;
    background: #00377b !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.yg-popup-wrap .yg-popup-submit:hover,
.yg-popup-wrap button.yg-popup-submit:hover {
    background: #002a5e !important;
    border-color: #002a5e !important;
    color: #fff !important;
}

.yg-popup-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #e3e6eb;
    border-radius: 6px;
    background: #fff;
    color: #888;
    font-size: 18px;
    cursor: pointer;
}

.yg-popup-delete:hover {
    color: #c0392b;
    border-color: #e8b4b0;
}

@media (max-width: 992px) {
    .yg-popup-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .yg-popup-upload--mo {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .yg-popup-form-head {
        flex-wrap: wrap;
        margin-bottom: 18px;
    }

    .yg-popup-form-title {
        font-size: 18px;
    }

    .yg-popup-set-head {
        margin-bottom: 20px;
    }

    .yg-popup-set-title {
        font-size: 22px;
    }

    .yg-popup-field {
        grid-template-columns: 1fr;
    }

    .yg-popup-field-label {
        min-height: 40px;
    }

    .yg-popup-field--link .yg-popup-field-body {
        flex-direction: column;
        align-items: stretch;
    }

    .yg-popup-term-item {
        flex-direction: column;
        align-items: stretch;
    }

    .yg-popup-term-label {
        width: auto;
    }

    .yg-popup-field--meta {
        flex-direction: column;
        align-items: stretch;
    }

    .yg-popup-meta {
        justify-content: space-between;
    }

    .yg-popup-meta--action {
        margin-left: 0;
        width: 100%;
    }

    .yg-popup-submit {
        flex: 1;
    }

    .yg-popup-wrap .yg-popup-table col.yg-col-date {
        width: 108px;
    }

    .yg-popup-wrap #bo_list.yg-board .yg-board-table .yg-th-date,
    .yg-popup-wrap #bo_list.yg-board .yg-board-table .yg-td-date {
        width: 108px !important;
        max-width: 108px;
        min-width: 96px;
        font-size: 11px;
    }

    .yg-popup-wrap #bo_list.yg-board .yg-board-table .yg-th-view,
    .yg-popup-wrap #bo_list.yg-board .yg-board-table .yg-td-view {
        width: 72px !important;
        max-width: 72px;
        min-width: 72px;
    }

    .yg-popup-wrap .yg-popup-table col.yg-col-view {
        width: 72px;
    }
}

/* =========================================================
   메인 팝업 레이어
   ========================================================= */
.yg-main-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.yg-main-popup.is-open {
    display: flex;
}

.yg-main-popup__dim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.yg-main-popup__window {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 700px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.yg-main-popup__body {
    position: relative;
    background: #fff;
}

.yg-main-popup__swiper,
.yg-main-popup__slide--single {
    width: 100%;
}

.yg-main-popup__link {
    display: block;
    line-height: 0;
}

.yg-main-popup__link img {
    display: block;
    width: 100%;
    height: auto;
}

.yg-main-popup__pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.yg-main-popup__pagination .swiper-pagination-bullet {
    width: 28px;
    height: 28px;
    margin: 0 !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    color: #333;
    font-size: 12px;
    line-height: 28px;
    text-align: center;
    opacity: 1;
}

.yg-main-popup__pagination .swiper-pagination-bullet-active {
    background: #243c7a;
    color: #fff;
}

.yg-main-popup__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: #111;
    color: #fff;
}

.yg-main-popup__reject {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    cursor: pointer;
}

.yg-main-popup__reject input {
    margin: 0;
}

.yg-main-popup__close {
    flex-shrink: 0;
    min-width: 72px;
    height: 34px;
    padding: 0 14px;
    border: 0;
    border-radius: 4px;
    background: #393939;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .yg-main-popup {
        align-items: center;
        padding: 0 20px;
    }

    .yg-main-popup__window {
        max-width: 100%;
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
    }

    .yg-main-popup__foot {
        padding: 12px 14px;
    }
}