/* sub.css 배포일:2026.08.31 14:59:56 */ 
@charset "utf-8";

/* 인사말: 본문 */
.greeting-section {
    background: var(--color-surface);
}

.greeting-intro {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--color-bg-soft);
}

.greeting-intro img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 102.4%;
    max-width: none;
    height: auto;
    transform: translate(-50%, -50%);
}

.greeting-section__inner {
    padding-top: 120px;
    padding-bottom: 120px;
}

.greeting-message {
    display: grid;
    grid-template-areas: "portrait copy";
    grid-template-columns: 410px minmax(0, 810px);
    column-gap: 60px;
    border-bottom: 1px solid var(--color-text-strong);
}

.greeting-portrait {
    position: relative;
    grid-area: portrait;
    align-self: end;
    width: 410px;
    height: 480px;
    overflow: visible;
}

.greeting-portrait__shadow,
.greeting-portrait__shadow img {
    display: block;
    width: 356.165px;
    height: 546.931px;
}

.greeting-portrait__shadow {
    position: absolute;
    top: -25px;
    left: 99px;
}

.greeting-portrait__photo {
    position: absolute;
    top: -35px;
    left: 0;
    width: 403px;
    height: 515px;
    object-fit: cover;
}

.greeting-copy {
    display: flex;
    grid-area: copy;
    flex-direction: column;
    min-width: 0;
    min-height: 480px;
}

.greeting-copy__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 30px;
    color: var(--color-text-strong);
    font-size: 18px;
    line-height: 1.4;
    word-break: keep-all;
}

.greeting-signature {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 34px;
    margin-top: 20px;
    color: var(--color-text-strong);
    line-height: 1.4;
}

.greeting-signature span {
    font-size: 20px;
}

.greeting-signature strong {
    font-size: 24px;
    font-weight: 700;
}

/* 인재상: 본문 */
.talent-section {
    padding: 64px 0 120px;
    background: var(--color-surface);
}

.talent-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.talent-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.talent-head h2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    padding: 0 20px;
    border-radius: 50px;
    background: var(--color-primary);
    color: var(--color-surface);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
}

.talent-head p {
    color: var(--color-text);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.talent-card {
    width: 100%;
    margin-top: 60px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--color-bg-soft);
}

.talent-card picture {
    display: block;
}

.talent-card img {
    display: block;
    width: 100%;
    height: auto;
}

/* 두을장학사업: 본문 */
.scholarship-section {
    padding: 80px 0 120px;
    background: var(--color-bg-soft);
}

.scholarship-section__inner,
.scholarship-overview,
.scholarship-overview__intro,
.scholarship-details {
    display: flex;
    flex-direction: column;
}

.scholarship-section__inner {
    gap: 40px;
}

.scholarship-overview,
.scholarship-overview__intro,
.scholarship-details {
    align-items: center;
}

.scholarship-overview {
    gap: 32px;
}

.scholarship-overview__intro {
    gap: 16px;
    width: 100%;
    text-align: center;
}

.scholarship-overview__logo {
    display: block;
    width: 206px;
    height: 64px;
    object-fit: contain;
}

.scholarship-overview__text {
    width: 100%;
    color: var(--color-text-light);
    font-size: 20px;
    line-height: 1.4;
    word-break: keep-all;
}

.scholarship-overview__connector {
    position: relative;
    display: block;
    width: 16px;
    height: 40px;
}

.scholarship-overview__connector::before {
    content: "";
    position: absolute;
    top: 0;
    left: 7px;
    width: 2px;
    height: 33px;
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-primary) 100%);
}

.scholarship-overview__connector::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
}

.scholarship-details {
    gap: 40px;
    width: 100%;
}

.scholarship-details__lead {
    width: 100%;
    color: var(--color-text);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    word-break: keep-all;
}

/* 두을장학사업: 핵심 정보 카드 */
.scholarship-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.scholarship-fact-card,
.scholarship-fact-card__body,
.scholarship-fact-card__benefits {
    display: flex;
    flex-direction: column;
}

.scholarship-fact-card {
    --scholarship-fact-transition: 0.2s ease;
    position: relative;
    justify-content: space-between;
    min-width: 0;
    min-height: 270px;
    padding: 40px;
    border-radius: 16px;
    background: var(--color-surface);
    color: var(--color-text-muted);
    transition: box-shadow var(--scholarship-fact-transition), color var(--scholarship-fact-transition);
}

.scholarship-fact-card::before,
.scholarship-fact-card__icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--scholarship-fact-transition);
}

.scholarship-fact-card::before {
    background: linear-gradient(180deg, var(--color-primary-gradient-end) 0%, var(--color-primary-gradient-start) 100%);
}

.scholarship-fact-card > * {
    position: relative;
    z-index: 1;
}

.scholarship-fact-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.scholarship-fact-card__title {
    min-width: 0;
    color: inherit;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    word-break: keep-all;
}

.scholarship-fact-card__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--color-primary-pressed);
    transition: box-shadow var(--scholarship-fact-transition);
}

.scholarship-fact-card__icon::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%), linear-gradient(180deg, var(--color-primary-gradient-start) 0%, var(--color-primary-gradient-end) 100%);
}

.scholarship-fact-card__icon img {
    position: relative;
    z-index: 1;
    display: block;
    max-width: none;
    transition: filter var(--scholarship-fact-transition);
}

.scholarship-fact-card__body {
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.scholarship-fact-card__metric {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    word-break: keep-all;
}

.scholarship-fact-card__value {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    white-space: nowrap;
}

.scholarship-fact-card__value strong {
    color: var(--color-primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.48px;
}

.scholarship-fact-card__value strong,
.scholarship-fact-card__note,
.scholarship-fact-card__benefits {
    transition: color var(--scholarship-fact-transition);
}

.scholarship-fact-card__note,
.scholarship-fact-card__benefits {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.4;
    word-break: keep-all;
}

.scholarship-fact-card--benefits {
    justify-content: flex-start;
    gap: 22px;
}

.scholarship-fact-card__benefits {
    gap: 8px;
    width: 100%;
}

.scholarship-fact-card__benefits li {
    display: flex;
    gap: 4px;
}

.scholarship-fact-card__benefits li::before {
    content: "•";
    flex: 0 0 auto;
}

@media (hover: hover) and (pointer: fine) {
    .scholarship-fact-card:hover {
        box-shadow: 0 10px 10px rgba(255, 132, 0, 0.4);
        color: var(--color-surface);
    }

    .scholarship-fact-card:hover::before,
    .scholarship-fact-card:hover .scholarship-fact-card__icon::before {
        opacity: 1;
    }

    .scholarship-fact-card:hover .scholarship-fact-card__icon {
        box-shadow: 0 10px 5px rgba(255, 162, 0, 0.4), inset 1px 1px 4px rgba(255, 255, 255, 0.25);
    }

    .scholarship-fact-card:hover .scholarship-fact-card__icon img {
        filter: brightness(0) invert(1);
    }

    .scholarship-fact-card:hover .scholarship-fact-card__value strong,
    .scholarship-fact-card:hover .scholarship-fact-card__note,
    .scholarship-fact-card:hover .scholarship-fact-card__benefits {
        color: var(--color-surface);
    }
}

/* 두을장학사업: 선발안내 */
.scholarship-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding: 32px 40px;
    border-radius: 12px;
    background: var(--color-primary-pressed);
}

.scholarship-cta__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.4;
}

.scholarship-cta__text strong {
    color: var(--color-text);
    font-size: 20px;
    font-weight: 700;
}

.scholarship-cta__text p {
    color: var(--color-text-muted);
    font-size: 16px;
}

.scholarship-cta__link {
    flex: 0 0 auto;
    background: var(--color-primary);
    color: var(--color-surface);
    font-weight: 700;
}

/* 연혁: 본문 */
.history-section {
    padding: 48px 0 120px;
    background: var(--color-surface);
}

.history-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 890px;
    max-width: calc(100% - 295px);
    min-height: 120px;
    margin-left: 295px;
    padding: 24px 40px;
    background: var(--color-bg-soft);
    text-align: center;
}

.history-intro__text {
    color: var(--color-text);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    word-break: keep-all;
}

.history-layout {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 0;
    margin-top: 48px;
}

.history-era-nav {
    position: sticky;
    top: 120px;
    align-self: start;
}

.history-era-nav ul {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 184px;
    padding-left: 56px;
}

.history-era-nav ul::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 20px;
    width: 1px;
    background: var(--color-line);
}

.history-era-nav li {
    position: relative;
}

.history-era-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 56px;
    color: var(--color-text-light);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.history-era-nav a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -40px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-line-input);
    transform: translateY(-50%);
}

.history-era-nav a:hover,
.history-era-nav a:focus-visible,
.history-era-nav a.is-active {
    color: var(--color-primary);
}

.history-era-nav a.is-active::before {
    background: var(--color-primary);
}

/* 연혁: 타임라인 */
.history-timeline {
    --history-rail-start: 17px;
    --history-rail-height: 0px;
    --history-rail-progress: 0px;
    position: relative;
    max-width: 890px;
    margin: 0 auto;
}

.history-timeline__rail {
    position: absolute;
    top: var(--history-rail-start);
    left: 50%;
    z-index: 0;
    width: 1px;
    height: var(--history-rail-height);
    overflow: hidden;
    background: var(--color-line);
    transform: translateX(-50%);
}

.history-timeline__rail-progress {
    display: block;
    width: 100%;
    height: var(--history-rail-progress);
    background: var(--color-primary);
}

.history-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.history-item {
    display: grid;
    grid-template-columns: minmax(0, 400px) 14px minmax(0, 400px);
    column-gap: 32px;
    align-items: start;
    justify-content: center;
    min-height: auto;
    scroll-margin-top: 128px;
}

.history-item:last-child {
    padding-bottom: 56px;
}

.history-item__year {
    grid-row: 1;
    color: var(--color-primary);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
}

button.history-item__year {
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}

button.history-item__year:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}

.history-item__marker {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    width: 14px;
    height: 14px;
    margin-top: 21px;
    border-radius: 50%;
    background: var(--color-line-input);
    transition: background-color 0.18s ease;
}

.history-item__marker::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 162, 0, 0.34);
    box-shadow: 0 0 0 rgba(255, 162, 0, 0);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.18s ease;
}

.history-item.is-active .history-item__marker {
    background: var(--color-primary);
}

.history-item.is-active .history-item__marker::before {
    opacity: 1;
    animation: history-marker-glow 2.4s ease-in-out infinite;
}

@keyframes history-marker-glow {
    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(255, 162, 0, 0.1);
        opacity: 0.46;
        transform: translate(-50%, -50%) scale(0.92);
    }

    50% {
        box-shadow: 0 0 24px rgba(255, 162, 0, 0.46);
        opacity: 0.92;
        transform: translate(-50%, -50%) scale(1.24);
    }
}

.history-item__card {
    --history-card-enter-x: -40px;
    grid-row: 1;
    width: 400px;
    margin-top: 10px;
    padding: 24px;
    border: 1px solid var(--color-line);
    border-radius: 12px;
    background: var(--color-surface);
}

.history-events {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.history-events__row {
    display: flex;
    gap: 14px;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.4;
}

.history-events dt {
    flex: 0 0 40px;
    font-weight: 600;
}

.history-events dd {
    min-width: 0;
    font-weight: 400;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.history-item:nth-child(odd) .history-item__year {
    grid-column: 1;
    justify-self: end;
}

.history-item:nth-child(odd) .history-item__card {
    grid-column: 3;
}

.history-item:nth-child(even) .history-item__year {
    grid-column: 3;
    justify-self: start;
}

.history-item:nth-child(even) .history-item__card {
    --history-card-enter-x: 40px;
    grid-column: 1;
}

.history-timeline.is-card-interactive .history-item__card {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(var(--history-card-enter-x));
}

.history-timeline.is-card-interactive.is-card-ready .history-item__card {
    transition:
        opacity 0.42s ease,
        transform 0.56s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.56s;
}

.history-timeline.is-card-interactive .history-item.is-card-open .history-item__card {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
    transition-delay: 0s;
}

/* 조직도: 본문 */
.organization-section {
    background: var(--color-surface);
}

.organization-section__inner {
    display: flex;
    flex-direction: column;
}

.organization-heading {
    min-height: 70px;
    padding-bottom: 20px;
    color: var(--color-text);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
}

.organization-chart-block {
    padding: 64px 0 120px;
}

.organization-duty-block .organization-heading {
    min-height: 56px;
    padding: 8px 0;
}

.organization-board-block {
    padding: 80px 0;
}

/* 조직도: 차트 */
.organization-chart {
    margin-top: 48px;
    overflow-x: auto;
}

.organization-chart picture {
    display: block;
}

.organization-chart img {
    display: block;
    height: auto;
}

/* 조직도: 이사회 */
.organization-member-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px 40px;
    padding: 64px 0 40px;
}

.organization-member {
    display: flex;
    gap: 24px;
    height: 300px;
}

.organization-member__photo {
    flex: 0 0 240px;
    width: 240px;
    height: 300px;
    border-radius: 8px;
    background: var(--color-line-light);
}

.organization-member__photo img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.organization-member__info {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    height: 100%;
    padding: 26px 16px;
    border-top: 1px solid var(--color-line);
    background: var(--color-surface);
}

.organization-member__info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15px;
    width: 66px;
    height: 6px;
    background: var(--color-primary);
}

.organization-member__role h3 {
    color: var(--color-text);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.organization-member__role p {
    margin-top: 10px;
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.4;
}

.organization-member__bio strong {
    display: block;
    color: var(--color-text-disabled);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.organization-member__bio ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.organization-member__bio li {
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.4;
    word-break: keep-all;
}

/* 찾아오시는 길: 본문 */
.location-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-info {
    margin: 0;
}

.location-info__label-col {
    width: 280px;
}

.location-info tbody tr:first-child th,
.location-info tbody tr:first-child td {
    border-top-color: var(--color-text);
}

.location-info tbody th {
    background: var(--color-line-light);
    font-weight: 700;
}

.location-map {
    display: block;
    width: 100%;
    aspect-ratio: 1280 / 419;
    object-fit: cover;
}

.location-guide {
    padding: 20px 24px;
    border-radius: 8px;
    background: var(--color-line-light);
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.4;
    word-break: keep-all;
}

/* 정책 페이지: 공통 레이아웃 */
@counter-style privacy-policy-hangul {
    system: alphabetic;
    symbols: "가" "나" "다" "라" "마" "바" "사" "아" "자" "차" "카" "타" "파" "하";
    suffix: ". ";
}

.policy-page {
    padding: 100px 0 120px;
    background: var(--color-surface);
}

.policy-page__title {
    color: var(--color-text-strong);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    text-align: center;
}

.policy-page__inner {
    margin-top: 80px;
}

.privacy-policy__archive {
    gap: 24px;
}

.privacy-policy__archive-title {
    color: var(--color-text-strong);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.privacy-policy__archive .privacy-policy__intro {
    gap: 22px;
}

.policy-page__card {
    gap: 48px;
    padding: 40px;
    border: 1px solid var(--color-line);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.4;
}

.privacy-policy__intro ol {
    margin-top: 22px;
    padding-left: 24px;
    list-style: decimal;
}

.privacy-policy__contents,
.privacy-policy__sections--hangul {
    padding-inline-start: 32px;
    list-style-type: privacy-policy-hangul;
}

.privacy-policy__sections {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-inline-start: 0;
    list-style: none;
    counter-reset: privacy-policy-section;
}

.privacy-policy__sections > li {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 4px;
    counter-increment: privacy-policy-section;
}

.privacy-policy__sections > li::before,
.privacy-policy__sections--hangul > li::marker {
    color: var(--color-text-strong);
    font-size: 20px;
    font-weight: 700;
}

.privacy-policy__sections > li::before {
    content: counter(privacy-policy-section) ".";
    grid-column: 1;
    line-height: 1.4;
    text-align: start;
    white-space: nowrap;
}

.privacy-policy__sections > li > .privacy-policy__section {
    grid-column: 2;
    min-width: 0;
}

.privacy-policy__sections--hangul {
    display: block;
    counter-reset: none;
}

.privacy-policy__sections--hangul > li {
    display: list-item;
    counter-increment: none;
}

.privacy-policy__sections--hangul > li + li {
    margin-top: 48px;
}

.privacy-policy__sections--hangul > li::before {
    content: none;
}

.privacy-policy__archive,
.privacy-policy__archive .privacy-policy__intro,
.policy-page__card,
.privacy-policy__section,
.privacy-policy__section-head,
.privacy-policy__details,
.privacy-policy__detail,
.privacy-policy__paragraphs,
.privacy-policy__inquiries {
    display: flex;
    flex-direction: column;
}

.privacy-policy__section,
.privacy-policy__details,
.privacy-policy__inquiries {
    gap: 32px;
}

.privacy-policy__section-head,
.privacy-policy__detail {
    gap: 8px;
}

.policy-page__section-title,
.privacy-policy__section-head h2 {
    color: var(--color-text-strong);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    word-break: keep-all;
}

.privacy-policy__detail h3 {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.privacy-policy__detail ul {
    padding-left: 24px;
    list-style: disc;
}

.privacy-policy__paragraphs {
    gap: 22px;
}

.privacy-policy__inquiries > ol {
    padding-left: 24px;
    list-style: decimal;
}

.policy-page__card :is(p, li) {
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.privacy-policy__version {
    display: flex;
    justify-content: flex-end;
    padding-top: 40px;
}

.privacy-policy__version a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 20px;
    border-radius: 8px;
    background: var(--color-primary);
    color: var(--color-surface);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

/* 이메일 무단 수집 거부: 본문 */
.email-refusal__notice,
.email-refusal__law,
.email-refusal__law-content {
    display: flex;
    flex-direction: column;
}

.email-refusal__notice {
    gap: 10px;
    padding-inline-start: 32px;
}

.email-refusal__notice h2,
.email-refusal__list-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.email-refusal__law {
    gap: 8px;
}

.email-refusal__law-content {
    gap: 8px;
    padding-inline-start: 32px;
}

.email-refusal__law ol {
    padding-inline-start: 24px;
    list-style: decimal;
}

/* 서브: 반응형 */
@media (max-width: 1200px) {
    .scholarship-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .scholarship-fact-card--benefits {
        grid-column: 1 / -1;
    }

    .history-intro {
        max-width: calc(100% - 240px);
        margin-left: 240px;
    }

    .history-layout {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .history-item {
        grid-template-columns: minmax(0, 360px) 14px minmax(0, 360px);
        column-gap: 32px;
    }

    .history-item__card {
        width: 100%;
        max-width: 360px;
    }

    .organization-member {
        gap: 20px;
    }

    .organization-member__photo {
        flex-basis: 220px;
        width: 220px;
    }
}

@media (min-width: 901px) and (max-width: 1280px) {
    .greeting-message {
        column-gap: clamp(16px, calc(11.579vw - 88.21px), 60px);
    }

    .greeting-copy__body {
        font-size: clamp(16px, calc(0.526vw + 11.26px), 18px);
    }
}

@media (max-width: 900px) {
	.greeting-section {
        overflow-x: clip;
    }
	
    .policy-page {
        padding: 0;
    }

    .policy-page__title {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 135px;
        padding: 16px;
        font-size: 28px;
        letter-spacing: 0;
    }

    .policy-page__inner {
        width: 100%;
        margin-top: 0;
    }

    .privacy-policy__archive {
        gap: 0;
    }

    .privacy-policy__archive-title {
        display: none;
    }

    .privacy-policy__archive .privacy-policy__intro {
        gap: 20px;
    }

    .policy-page__card {
        padding: 24px 16px;
        border-width: 1px 0 0;
        border-radius: 0;
        font-size: 14px;
    }

    .privacy-policy__intro ol {
        padding-left: 21px;
    }

    .privacy-policy__contents,
    .privacy-policy__sections--hangul {
        padding-inline-start: 24px;
    }

    .privacy-policy__sections > li::before,
    .privacy-policy__sections--hangul > li::marker {
        font-size: 18px;
    }

    .policy-page__section-title,
    .privacy-policy__section-head h2 {
        font-size: 18px;
    }

    .privacy-policy__detail h3 {
        font-size: 14px;
    }

    .privacy-policy__detail ul,
    .privacy-policy__inquiries > ol {
        padding-left: 21px;
    }

    .privacy-policy__paragraphs {
        gap: 20px;
    }

    .privacy-policy__version {
        padding: 40px 16px;
    }

    .privacy-policy__version a {
        width: 100%;
        height: 48px;
        padding: 0 16px;
        font-size: 17px;
        font-weight: 700;
    }

    .email-refusal__notice,
    .email-refusal__law-content {
        padding-inline-start: 24px;
    }

    .email-refusal__law {
        gap: 32px;
    }

    .email-refusal__notice h2,
    .email-refusal__list-title {
        font-size: 14px;
    }

    .email-refusal__law ol {
        padding-inline-start: 21px;
    }

    .location-section {
        padding: 24px 0 80px;
    }

    .location-content {
        gap: 20px;
    }

    .location-map {
        aspect-ratio: 328 / 320;
    }

    .location-info tbody tr,
    .location-info tbody tr:first-child {
        padding: 20px 12px;
        border-top-color: var(--color-line-light);
    }

    .location-info tbody th {
        background: transparent;
    }

    .location-info tbody td {
        margin-top: 8px;
    }

    .location-info tbody tr:first-child td {
        margin-top: 4px;
    }

    .location-guide {
        font-size: 16px;
    }

    .greeting-intro img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform: none;
    }

    .greeting-section__inner {
        width: min(100% - 32px, var(--layout-max));
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .greeting-message {
        grid-template-areas:
            "portrait"
            "copy";
        grid-template-columns: minmax(0, 1fr);
        column-gap: 0;
        row-gap: 40px;
        border-bottom: 0;
    }

    .greeting-copy {
        min-height: 0;
    }

    .greeting-copy__body {
        margin-top: 0;
        margin-bottom: 0;
        font-size: 16px;
    }

    .greeting-portrait {
        justify-self: center;
        width: min(100%, 360px);
        height: auto;
        margin-top: 0px;
        aspect-ratio: 328 / 380;
    }

    .greeting-portrait__shadow {
        width: 89.024%;
        height: 116.053%;
        top: -5.526%;
        left: 21.341%;
    }

    .greeting-portrait__shadow img {
        width: 100%;
        height: 100%;
    }

    .greeting-portrait__photo {
        top: -5.789%;
        width: 95.732%;
        height: 105.526%;
    }

    .greeting-signature {
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        min-height: 66px;
    }

    .talent-section {
        padding: 32px 0 16px;
    }

    .talent-section .layout {
        width: min(100% - 32px, var(--layout-max));
    }

    .talent-head {
        gap: 12px;
    }

    .talent-head h2 {
        min-height: 32px;
        padding: 2px 20px;
        font-size: 20px;
    }

    .talent-head p {
        max-width: 328px;
        font-size: 16px;
    }

    .talent-card {
        margin-top: 28px;
    }

    .scholarship-section {
        --layout-gutter: 32px;
        padding: 0 0 32px;
    }

    .scholarship-content {
        padding: 48px 0 32px;
    }

    .scholarship-section__inner {
        gap: 48px;
    }

    .scholarship-overview__logo {
        width: 154px;
        height: 48px;
    }

    .scholarship-overview__text {
        font-size: 16px;
    }

    .scholarship-details {
        gap: 48px;
    }

    .scholarship-details__lead {
        font-size: 20px;
    }

    .scholarship-facts {
        grid-template-columns: 1fr;
    }

    .scholarship-fact-card {
        min-height: 210px;
        padding: 24px;
    }

    .scholarship-fact-card--benefits {
        grid-column: auto;
        min-height: 230px;
    }

    .scholarship-fact-card__title {
        font-size: 18px;
    }

    .scholarship-fact-card__body {
        gap: 10px;
    }

    .scholarship-fact-card__metric {
        font-size: 20px;
    }

    .scholarship-fact-card__metric--period {
        column-gap: 12px;
    }

    .scholarship-fact-card__value strong {
        font-size: 44px;
        letter-spacing: -0.44px;
    }

    .scholarship-fact-card__value strong.scholarship-fact-card__value--term {
        font-size: 40px;
        letter-spacing: 0;
    }

    .scholarship-fact-card__note,
    .scholarship-fact-card__benefits {
        font-size: 14px;
    }

    .scholarship-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-top: 0;
        padding: 20px;
    }

    .scholarship-cta__text strong {
        font-size: 18px;
    }

    .scholarship-cta__text strong span {
        display: block;
    }

    .scholarship-cta__text p {
        font-size: 14px;
    }

    .scholarship-cta__link {
        height: 40px;
        padding: 0 12px;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 600;
    }

    .organization-chart-block {
        padding: 24px 0 120px;
    }

    .organization-heading,
    .organization-duty-block .organization-heading {
        min-height: 56px;
        padding: 8px 0;
        font-size: 24px;
    }

    .organization-chart-block .organization-heading,
    .organization-board-block .organization-heading {
        min-height: 72px;
        padding: 8px 0 16px;
        border-bottom: 1px solid var(--color-text);
    }

    .organization-chart {
        width: 100%;
        margin: 24px 0 0;
        overflow-x: visible;
    }

    .organization-chart img {
        width: 100%;
        max-width: 328px;
        margin: 0 auto;
    }

    .organization-duty-block {
        padding-bottom: 120px;
    }

    .organization-board-block {
        padding: 0 0 80px;
    }

    .organization-member-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px 0 0;
    }

    .organization-member {
        display: grid;
        grid-template-areas:
            "role"
            "photo"
            "bio";
        grid-template-rows: 60px 370px 1fr;
        gap: 0;
        height: 516px;
        padding: 0 0 16px;
        border: 1px solid var(--color-line-light);
        border-radius: 8px;
        background: var(--color-surface);
    }

    .organization-member__photo {
        grid-area: photo;
        justify-self: center;
        flex: none;
        width: 296px;
        height: 370px;
        aspect-ratio: auto;
        border-radius: 8px;
    }

    .organization-member__info {
        display: contents;
        min-height: 0;
        height: auto;
        padding: 0;
        border-top: 0;
        background: transparent;
    }

    .organization-member__info::before {
        display: none;
    }

    .organization-member__role {
        grid-area: role;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        min-height: 60px;
        padding: 16px 0;
    }

    .organization-member__role h3 {
        font-size: 20px;
        white-space: nowrap;
    }

    .organization-member__role p {
        margin-top: 0;
        color: var(--color-text-muted);
    }

    .organization-member__bio {
        grid-area: bio;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        margin-top: 16px;
        padding: 0 16px;
    }

    .organization-member__bio ul {
        gap: 8px;
        margin-top: 0;
    }

    .organization-member__role p,
    .organization-member__bio strong,
    .organization-member__bio li {
        font-size: 16px;
    }

    .history-section {
        padding: 0 0 16px;
    }

    .history-section .layout {
        width: min(100% - 32px, var(--layout-max));
    }

    .history-intro {
        align-items: flex-start;
        justify-content: flex-start;
        box-sizing: border-box;
        width: calc(100% + 32px);
        max-width: none;
        min-height: 164px;
        margin: 0 -16px;
        padding: 40px 16px;
        background: var(--color-bg-soft);
        text-align: center;
    }

    .history-intro__text {
        width: 100%;
        max-width: 328px;
        margin: 0 auto;
        font-size: 20px;
        line-height: 1.4;
    }

    .history-layout {
        display: block;
        margin-top: 0;
    }

    .history-era-nav {
        position: sticky;
        top: 72px;
        z-index: 9;
        margin: 0 -16px;
        padding: 24px 16px;
        background: var(--color-surface);
    }

    .history-era-nav ul {
        display: grid;
        grid-template-columns: repeat(3, 74px);
        column-gap: 20px;
        box-sizing: border-box;
        justify-content: start;
        width: 328px;
        max-width: calc(100vw - 32px);
        height: 44px;
        margin: 0 auto;
        padding: 0 33px;
        border-radius: 22px;
        background: var(--color-primary);
        border-bottom: 0;
    }

    .history-era-nav ul::before,
    .history-era-nav a::before {
        display: none;
    }

    .history-era-nav a {
        justify-content: center;
        width: 74px;
        min-height: 44px;
        border-bottom: 0;
        color: rgba(255, 255, 255, 0.68);
        font-size: 18px;
        font-weight: 500;
    }

    .history-era-nav a:hover,
    .history-era-nav a:focus-visible {
        color: var(--color-surface);
        font-weight: 500;
    }

    .history-era-nav a.is-active {
        border-bottom-color: transparent;
        color: var(--color-surface);
        font-weight: 500;
    }

    .history-timeline {
        --history-item-width: calc(100% - 28px);
        --history-marker-center-x: 35px;
        width: calc(100% + 32px);
        max-width: none;
        margin-left: -16px;
        margin-right: -16px;
    }

    .history-timeline__rail {
        left: var(--history-marker-center-x);
        transform: none;
    }

    .history-list {
        gap: 24px;
    }

    .history-item,
    .history-item:first-child,
    .history-item:last-child {
        grid-template-columns: 14px minmax(0, calc(100% - 30px));
        column-gap: 16px;
        row-gap: 12px;
        justify-content: end;
        width: var(--history-item-width);
        max-width: 100%;
        margin-left: auto;
        scroll-margin-top: 188px;
    }

    .history-item:last-child {
        padding-bottom: 24px;
    }

    .history-item__marker {
        grid-column: 1;
        grid-row: 1 / span 2;
        z-index: 2;
        margin-top: 10px;
    }

    .history-item__year,
    .history-item:nth-child(odd) .history-item__year,
    .history-item:nth-child(even) .history-item__year {
        grid-column: 2;
        justify-self: start;
        font-size: 24px;
    }

    .history-item__card,
    .history-item:nth-child(odd) .history-item__card,
    .history-item:nth-child(even) .history-item__card {
        --history-card-enter-x: -24px;
        grid-column: 2;
        grid-row: 2;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        padding: 12px;
        border-radius: 8px;
    }

    .history-events {
        gap: 8px;
    }

    .history-events__row {
        gap: 4px;
        font-size: 14px;
    }

    .history-events dt {
        flex: 0 0 36px;
    }

    .history-events dd {
        word-break: keep-all;
    }
}

@media (max-width: 599px) {
    .greeting-intro img {
        top: -73px;
        left: -193px;
        width: 1006px;
        height: 466px;
        object-fit: fill;
    }
}

@media (min-width: 600px) and (max-width: 900px) {
    .history-intro__text {
        max-width: 640px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .history-timeline.is-card-interactive .history-item__card {
        transform: none;
    }

    .history-timeline.is-card-interactive.is-card-ready .history-item__card {
        transition: none;
    }

    .history-item__marker,
    .history-item__marker::before {
        transition: none;
    }

    .history-item.is-active .history-item__marker::before {
        opacity: 1;
        animation: none;
        transform: translate(-50%, -50%);
    }
}