/* apply.css 배포일:2026.09.04 15:42:24 */ 
@charset "utf-8";

/* 지원신청: 페이지 타이틀 */
.apply-wrap {
    --apply-text-bolder: #131416;
    --apply-table-text: #000;
    --apply-table-divider: #f5f5f5;
    --apply-table-muted: #fafafa;
    color: var(--color-text);
    background: var(--color-surface);
}

/* 지원신청: 단계 안내 */
.apply-content {
    padding: 64px 0 120px;
}

.apply-step-area {
    margin-bottom: 48px;
}

.apply-step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.apply-step-head h2 {
    color: var(--apply-text-bolder);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
}

.apply-stepper {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    width: 679px;
}

.apply-stepper__item {
    position: relative;
    flex: 0 0 205px;
    width: 205px;
}

.apply-stepper__link {
    display: grid;
    grid-template-columns: 28px 14px auto 6px minmax(0, 1fr);
    grid-template-areas: "num . text . line";
    align-items: center;
    width: 100%;
    min-height: 43px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.apply-stepper__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    grid-area: num;
    align-self: start;
    border: 1px solid var(--color-line);
    border-radius: 20px;
    background: var(--color-surface);
    color: var(--color-text-disabled);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.apply-stepper__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    grid-area: text;
    min-width: 0;
}

.apply-stepper__line {
    display: block;
    width: 100%;
    min-width: 1px;
    height: 2px;
    grid-area: line;
    align-self: center;
    margin-top: 0;
    transform: translateX(16px);
    background: repeating-linear-gradient(to right, var(--color-line-input) 0 4px, transparent 4px 8px);
}

.apply-stepper__item:last-child .apply-stepper__line {
    background: none;
}

.apply-stepper__item.is-complete:not(:last-child) .apply-stepper__line {
    background: var(--color-primary-dark);
}

.apply-stepper__text strong {
    color: var(--color-text-muted);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.apply-stepper__text span {
    color: var(--color-text-disabled);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.apply-stepper__item.is-complete .apply-stepper__num {
    border-color: var(--color-primary-dark);
    background: var(--color-primary-dark);
    color: var(--color-surface);
    font-weight: 600;
}

.apply-stepper__item.is-current .apply-stepper__num {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-surface);
    font-weight: 600;
}

.apply-stepper__item.is-complete .apply-stepper__text strong,
.apply-stepper__item.is-current .apply-stepper__text strong {
    color: var(--color-text);
}

.apply-step-notice {
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 22px;
    margin-top: 64px;
    padding-left: 8px;
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.4;
}

.apply-step-notice img {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
}

.apply-step-area > .apply-guide {
    margin: 10px 0 0;
}

.apply-step-area > .apply-guide ul {
    gap: 8px;
}

/* 지원신청: 폼 공통 */
.apply-form {
    display: block;
}

.apply-required-note {
    margin-bottom: 24px;
    color: var(--color-text-muted);
    font-size: 17px;
    line-height: 1.4;
    text-align: right;
}

.apply-required-note span.required {
    font-weight: 400;
}

.apply-card {
    padding: 40px;
    border: 1px solid var(--color-line);
    border-radius: 12px;
    background: var(--color-surface);
}

.apply-card + .apply-card {
    margin-top: 24px;
}

.apply-card__title {
    margin-bottom: 40px;
    color: var(--color-primary);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
}

.apply-card__title:has(+ .apply-guide) {
    margin-bottom: 16px;
}

.apply-card__title:has(+ .apply-card__notice) {
    margin-bottom: 10px;
}

.apply-card__notice {
    margin-bottom: 40px;
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.4;
}

.apply-guide {
    margin-bottom: 40px;
    padding: 20px 24px;
    border-radius: 8px;
    background: var(--color-bg-soft);
}

.apply-guide--subtle {
    width: 100%;
    margin-bottom: 0;
    background: var(--color-line-light);
}

.apply-guide--plain li {
    padding-left: 0;
}

.apply-guide--plain li::before {
    content: none;
}

.apply-guide strong {
    display: block;
    margin-bottom: 12px;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.apply-guide ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.apply-guide li {
    position: relative;
    padding-left: 14px;
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.4;
}

.apply-guide li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-text-muted);
}

.apply-guide ol {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding-left: 22px;
    list-style: decimal;
}

.apply-guide ol li {
    padding-left: 0;
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.4;
}

.apply-guide ol li::before {
    content: none;
}

.apply-form-section + .apply-form-section {
    margin-top: 80px;
}

.apply-form-section--plain + .apply-repeat-section,
.apply-repeat-section + .apply-repeat-section,
.apply-form-section:has(.apply-repeat-list) + .apply-check-section {
    margin-top: 64px;
}

.apply-check-section + .apply-check-section,
.apply-check-section + .apply-form-section {
    margin-top: 40px;
}

.apply-form-section__head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-text);
}

.apply-form-section__head--guide {
    flex-direction: column;
    align-items: flex-start;
}

.apply-form-section__head:has(+ table),
.apply-form-section__head:has(+ .apply-table-scroll > table),
.apply-form-section__head:has(+ .apply-table-wrap table),
.apply-form-section__head:has(+ .apply-repeat-list table) {
    margin-bottom: 0;
}

.apply-form-section__head h3,
.apply-table-wrap h4,
:where(.apply-check-section) legend {
    color: var(--apply-text-bolder);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
}

.apply-form-section__head p,
:where(.apply-check-section) p {
    margin-top: 0;
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.4;
}

.apply-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.apply-fields--tight {
    gap: 20px;
}

.apply-field {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
}

.apply-label {
    display: inline-flex;
    align-items: flex-start;
    gap: 2px;
    min-height: 40px;
    padding: 8px 0;
    color: var(--color-text);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.apply-control {
    min-width: 0;
}

.apply-control--name {
    width: 252px;
}

.apply-control--date {
    width: 252px;
}

.apply-control--wide {
    width: 1032px;
    max-width: 100%;
}

.apply-control--short {
    width: 216px;
    max-width: 100%;
}

.apply-input,
.apply-select {
    display: block;
    width: 100%;
    height: 40px;
    border: 1px solid var(--color-line-input);
    border-radius: 6px;
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.apply-input {
    padding: 0 16px;
}

.apply-select {
    padding: 0 40px 0 16px;
    appearance: none;
    background-color: var(--color-surface);
    background-image: url("/common/images/icn_arrow_down.svg");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px 16px;
}

.apply-select option {
    font-weight: 500;
}

.apply-input::placeholder {
    color: var(--color-text-disabled);
}

.apply-input[readonly] {
    background: var(--color-line);
    color: var(--color-text-muted);
}

.apply-input:disabled,
.apply-select:disabled {
    background-color: var(--color-line);
    color: var(--color-text-light);
}

.apply-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--color-line-input);
    border-radius: 6px;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.apply-button--line {
    border-color: var(--color-text-disabled);
}

.apply-button--line:hover,
.apply-button--line:focus-visible {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.apply-button--add {
    display: flex;
    width: auto;
    min-width: 138px;
    height: 48px;
    margin-left: auto;
    gap: 4px;
    border-color: var(--color-primary-border);
    border-radius: 8px;
    background: var(--color-bg-soft);
    color: var(--color-primary-dark);
    white-space: nowrap;
}

.apply-button--add img {
    width: 20px;
    height: 20px;
}

.apply-help {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-top: 10px;
    color: var(--color-text-help);
    font-size: 13px;
    line-height: 1.5;
}

.apply-help img {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 1px;
}

.apply-help__mobile-line {
    display: inline;
}

/* 지원신청: 기본정보 */
.apply-birth {
    display: flex;
    gap: 10px;
}

.apply-birth__type {
    flex: 0 0 120px;
    width: 120px;
}

.apply-phone {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 7px minmax(0, 1fr) 7px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    width: 312px;
    max-width: 100%;
}

.apply-phone > span {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
}

.apply-phone .apply-input,
.apply-phone .apply-select {
    min-width: 0;
}

.apply-photo-upload {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 512px;
    max-width: 100%;
}

.apply-photo-upload .apply-help {
    margin-top: 0;
}

.apply-address {
    display: grid;
    gap: 10px;
    width: 1032px;
    max-width: 100%;
}

.apply-address__zip {
    display: grid;
    grid-template-columns: 252px 64px;
    gap: 8px;
    justify-content: start;
}

.apply-address__detail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 512px));
    gap: 8px;
}

.apply-email {
    display: grid;
    grid-template-columns: minmax(0, 240px) 15px minmax(0, 240px) minmax(0, 240px);
    align-items: center;
    gap: 8px;
    width: 760px;
    max-width: 100%;
}

.apply-email .apply-input,
.apply-email .apply-select {
    min-width: 0;
}

.apply-email__at {
    color: var(--color-text);
    font-size: 17px;
    line-height: 1.4;
    text-align: center;
}

.apply-phone--wide {
    width: 464px;
}

.apply-school-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 252px));
    gap: 8px;
    max-width: 100%;
}

.apply-table-wrap {
    margin-top: 80px;
    min-width: 0;
    max-width: 100%;
}

.apply-table-scroll {
    --table-scroll-min-width: 1198px;
}

.apply-table-wrap > h4 {
    min-height: 62px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-text);
}

/* 지원신청: 폼 테이블 변형 */
.apply-form-table__action-col,
.apply-table-actions {
    width: 112px;
}

.apply-form-table th,
.apply-form-table td {
    height: 64px;
    color: var(--apply-table-text);
}

.apply-form-table th {
    font-weight: 400;
    text-align: left;
}

.apply-table-actions {
    min-width: 112px;
    padding-left: 0;
    text-align: right;
}

.apply-table-actions .apply-button {
    width: 100px;
    min-width: 100px;
    max-width: none;
}

/* 지원신청: 학력사항 테이블 */
.apply-education-table col:nth-child(1) {
    width: 6.666667%;
}

.apply-education-table col:nth-child(2) {
    width: 28.833333%;
}

.apply-education-table col:nth-child(3) {
    width: 13.666667%;
}

.apply-education-table col:nth-child(4) {
    width: 38.333333%;
}

.apply-education-table col:nth-child(5) {
    width: 12.5%;
}

.apply-education-table tbody th {
    padding-inline: 2px;
    background: inherit;
    overflow-wrap: anywhere;
    word-break: keep-all;
    white-space: normal;
    text-align: center;
}

/* rowspan으로 마지막 행까지 이어지는 th의 하단선 보정 */
.apply-education-table tbody tr:has(+ .apply-education-score) > th {
    border-bottom: 1px solid var(--apply-table-divider);
}

.apply-education-school {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    min-width: 0;
}

.apply-education-school__main {
    display: flex;
    align-items: center;
    flex: 1 1 212px;
    gap: 8px;
    width: auto;
    max-width: 212px;
    min-width: 0;
}

.apply-education-school__main .apply-input {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
}

.apply-education-school__name {
    color: var(--color-text-muted);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
}

.apply-choice.apply-education-school__exam {
    flex: 0 1 auto;
    min-width: 0;
    min-height: 26px;
    gap: 8px;
    color: var(--apply-table-text);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
}

.apply-choice.apply-education-school__exam input[type="checkbox"],
.apply-choice--note input[type="checkbox"] {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background-size: 14px 14px;
}

.apply-period {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 12px minmax(0, 1fr) minmax(88px, 100px);
    align-items: center;
    gap: 8px;
}

.apply-period .calendar-field,
.apply-period .apply-select {
    min-width: 0;
}

@media (min-width: 901px) and (max-width: 1120px) {
    .apply-period {
        grid-template-columns: minmax(0, 1fr) 12px minmax(0, 1fr);
    }

    .apply-period .apply-select {
        grid-column: 1 / -1;
        width: min(100%, 100px);
    }

    .apply-entry-table .apply-form-table__label-col {
        width: 112px;
    }

    .apply-entry-table .apply-form-table__pair-value-col {
        width: calc(50% - 112px);
    }
}

.apply-period > span,
.apply-score-group > span {
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
}

.apply-score-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 40px;
}

.apply-score-group {
    display: grid;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.apply-score-group--grade {
    flex: 0 1 348px;
    grid-template-columns: 77px minmax(0, 140px) 7px minmax(80px, 100px);
}

.apply-score-group--credits {
    flex: 0 1 256px;
    grid-template-columns: 108px minmax(0, 140px);
}

.apply-score-group--tuition {
    flex: 1 1 320px;
    grid-template-columns: 117px minmax(0, 263px) 16px;
}

:where(.apply-score-group) label {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-muted);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    white-space: normal;
}

/* 지원신청: 활동정보 */
.apply-form-section--plain .apply-form-section__head {
    padding-bottom: 0;
    border-bottom: 0;
}

.apply-form-section--plain .apply-form-section__head h3,
.apply-repeat-section .apply-form-section__head h3 {
    font-size: 24px;
    line-height: 1.4;
}

/* 지원신청: 자기소개서/에세이 */
.apply-form-section--divided {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-line-input);
}

.apply-form-section--divided + .apply-form-section {
    margin-top: 24px;
}

@media (min-width: 901px) {
    .apply-form-section--padded {
        padding-bottom: 40px;
    }

    .apply-form-section--padded + .apply-form-section {
        margin-top: 24px;
    }

    .apply-form-section--question + .apply-form-section--question {
        margin-top: 40px;
    }

    .apply-form-section--question:last-child {
        padding-bottom: 40px;
    }

    .apply-form-section--question .apply-form-section__head {
        margin-bottom: 24px;
    }

    .apply-form-section--plain.apply-form-section--question .apply-form-section__head h3 {
        font-size: 20px;
        line-height: 1.4;
    }
}

.apply-fields--stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.apply-field--stack {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 8px;
}

.apply-field--stack .apply-label {
    display: block;
    width: 100%;
    min-height: 28px;
    padding: 0;
    font-size: 18px;
    word-break: keep-all;
}

.apply-field--stack .apply-textarea-wrap,
.apply-field--stack .apply-textarea {
    width: 100%;
}

.apply-field--medium {
    width: 480px;
    max-width: 100%;
}

.apply-field--wide {
    width: 720px;
    max-width: 100%;
}

.apply-field--wide .apply-control {
    width: 100%;
}

.apply-repeat-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.apply-repeat-item {
    width: 100%;
}

.apply-repeat-item--new {
    outline: 2px solid var(--color-primary-pressed);
    outline-offset: -2px;
    border-radius: 8px;
    animation: apply-repeat-item-new-fade 1s ease-out forwards;
}

@keyframes apply-repeat-item-new-fade {
    0%,
    30% {
        outline-color: var(--color-primary-pressed);
    }

    100% {
        outline-color: transparent;
    }
}

/* 지원신청: 활동정보 반복 테이블 */
.apply-entry-table {
    --table-scroll-min-width: 100%;
}

.apply-entry-table label {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
}

.apply-entry-table .apply-input,
.apply-entry-table .apply-select,
.apply-control--entry {
    width: 240px;
    max-width: 100%;
}

.apply-entry-table .apply-control--entry-wide,
.apply-entry-table .apply-textarea-wrap {
    width: 100%;
}

.apply-entry-table .apply-control--entry-lg {
    max-width: 560px;
}

.apply-control--entry-md {
    width: 536px;
    max-width: 100%;
}

.apply-control-with-unit {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

.apply-control-with-unit .apply-input {
    flex: 1 1 240px;
    min-width: 0;
    max-width: 240px;
}

.apply-period--simple {
    grid-template-columns: minmax(0, 160px) 11px minmax(0, 160px);
    width: 347px;
    max-width: 100%;
}

.apply-period--simple > span {
    color: var(--color-text);
    font-size: 17px;
    line-height: 1.4;
}

.apply-textarea-wrap,
.apply-counted-control {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.apply-textarea {
    display: block;
    width: 100%;
    min-height: 92px;
    padding: 16px;
    border: 1px solid var(--color-line-input);
    border-radius: 8px;
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    resize: vertical;
}

.apply-textarea--lg {
    width: 100%;
    height: 256px;
    min-height: 256px;
}

.apply-textarea--xl {
    height: 292px;
    min-height: 292px;
}

.apply-textarea::placeholder {
    color: var(--color-text-disabled);
}

.apply-counter {
    display: flex;
    justify-content: flex-end;
    gap: 2px;
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.4;
}

.apply-counter span {
    color: var(--color-primary);
}

.apply-inline-help {
    display: flex;
    align-items: center;
    gap: 24px;
}

.apply-help--inline {
    margin-top: 0;
    color: var(--color-text-light);
    white-space: nowrap;
}

.apply-form-section__head--with-choice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 20px 40px;
}

.apply-form-section__head--with-choice h3 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.apply-form-section__head--with-choice .apply-guide {
    grid-column: 1 / -1;
}

.apply-form-section__head--stack {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.apply-form-section--plain .apply-form-section__head--stack {
    margin-bottom: 20px;
}

.apply-choice--note {
    gap: 8px;
    min-height: 26px;
    font-size: 17px;
    font-weight: 400;
}

.apply-choice--note em {
    color: var(--color-text);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
}

.apply-repeat-list + .apply-button--add {
    width: fit-content;
    min-width: 100px;
    margin-top: 16px;
    margin-left: auto;
}

/* 지원신청: 장학 심사정보 */

.apply-choice--wide {
    width: 320px;
}

.apply-option-with-input,
.apply-option-detail,
.apply-inline-control,
.apply-radio-group,
.apply-choice__control,
.apply-sibling-count,
.apply-sibling-breakdown {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.apply-option-with-input {
    gap: 48px;
}

.apply-option-with-input .apply-input {
    width: 240px;
}

.apply-option-details {
    display: flex;
    flex-direction: column;
    clear: both;
    gap: 16px;
}

.apply-option-details .apply-choice {
    font-size: 18px;
    font-weight: 400;
}

.apply-option-details .apply-choice:has(input[type="checkbox"]:checked) {
    font-weight: 700;
}

.apply-option-detail {
    gap: 48px;
}

.apply-option-detail .apply-choice {
    min-height: 30px;
}

.apply-radio-group {
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.4;
}

.apply-radio-group .apply-choice--radio {
    min-height: 30px;
    color: var(--color-text-muted);
    font-size: 18px;
    font-weight: 400;
}

.apply-radio-group .apply-choice--radio + .apply-choice--radio {
    margin-left: 56px;
}

.apply-inline-control {
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.4;
}

.apply-inline-control .apply-input,
.apply-inline-control .apply-select {
    width: 160px;
}

/* 지원신청: 첨부파일 */
.apply-upload-section .apply-form-section__head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 0;
    border-bottom: 0;
}

.apply-upload-section .apply-form-section__head h3 {
    font-size: 24px;
    line-height: 1.4;
}

.apply-upload-section .apply-form-section__head .apply-guide {
    grid-column: 1 / -1;
}

.apply-upload-group + .apply-upload-group {
    margin-top: 32px;
}

.apply-upload-group h4 {
    margin-bottom: 16px;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.apply-upload-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.apply-upload-field {
    display: grid;
    grid-template-columns: 320px minmax(0, 512px);
    align-items: start;
    gap: 8px;
    width: 840px;
    max-width: 100%;
}

.apply-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    min-height: 40px;
    padding: 8px 0;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.4;
    word-break: keep-all;
}

.apply-upload-field .apply-help {
    margin-top: 8px;
}

.apply-actions__group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.apply-action__mobile-text {
    display: none;
}

/* 지원신청: 가족정보 */
.apply-family-table .apply-input,
.apply-family-table .apply-select,
.apply-family-table .apply-control {
    width: 240px;
    max-width: 100%;
}

.apply-family-table .apply-phone {
    width: 100%;
    max-width: 416px;
}

.apply-family-table .apply-phone .apply-input,
.apply-family-table .apply-phone .apply-select {
    width: 100%;
}

.apply-family-table td.apply-table-actions {
    width: auto;
    min-width: 112px;
    padding-right: 12px;
}

.apply-family-table .apply-table-actions .apply-button {
    border-color: var(--color-text-disabled);
    color: var(--color-text-muted);
}

.apply-check-section {
    padding-bottom: 40px;
    border: 0;
}

.apply-check-section legend {
    overflow: visible;
    position: static;
    float: left;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: auto;
    height: auto;
    margin: 0 20px 24px 0;
    clip: auto;
    font-size: 24px;
    line-height: 1.4;
    vertical-align: middle;
    white-space: nowrap;
}

.apply-check-section p {
    display: inline-block;
    margin: 0 0 24px;
    padding-top: 8px;
    vertical-align: middle;
    white-space: nowrap;
}

.apply-check-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    clear: both;
    gap: 16px 64px;
}

.apply-check-list--column {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.apply-choice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    color: var(--color-text);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}

.apply-choice input[type="checkbox"],
.apply-choice input[type="radio"],
.apply-choice__control input[type="checkbox"],
.apply-choice__control input[type="radio"] {
    appearance: none;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border: 1px solid var(--color-line-input);
    background-color: var(--color-surface);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    cursor: pointer;
}

.apply-choice input[type="checkbox"],
.apply-choice__control input[type="checkbox"] {
    border-radius: 6px;
}

.apply-choice input[type="checkbox"]:checked,
.apply-choice__control input[type="checkbox"]:checked {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M13.333 5L7.333 11L4 7.667' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.apply-choice input[type="radio"],
.apply-choice__control input[type="radio"] {
    border-color: var(--color-text-muted);
    border-radius: 50%;
}

.apply-choice input[type="radio"]:checked,
.apply-choice__control input[type="radio"]:checked {
    border: 1.6px solid var(--color-primary);
    background-image: radial-gradient(circle, var(--color-primary) 0 6px, transparent 6px);
}

.apply-choice input:disabled,
.apply-choice__control input:disabled {
    border-color: var(--color-line-input);
    background-color: var(--color-line-input);
    background-image: none;
    cursor: default;
}

.apply-choice:has(input:disabled) label,
.apply-choice__control:has(input:disabled) label {
    color: var(--color-text-disabled);
    cursor: default;
}

.apply-sibling {
    display: inline-flex;
    align-items: center;
    gap: 0;
    min-height: 40px;
    color: var(--color-text);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}

.apply-sibling-count {
    margin-left: 48px;
}

.apply-sibling-breakdown {
    margin-left: 40px;
    color: var(--color-text-muted);
    font-size: 18px;
    font-weight: 400;
}

.apply-sibling .apply-input {
    width: 140px;
}

.apply-check-section--inline .apply-check-list {
    gap: 64px;
}

.apply-check-section__note {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.apply-check-section--inline .required {
    font-size: 17px;
    line-height: 1.4;
}

.apply-check-section--stack legend {
    float: none;
    display: block;
    width: 100%;
    margin: 0 0 24px;
    white-space: normal;
    font-size: 20px;
    line-height: 1.4;
    word-break: keep-all;
}

.apply-check-section--stack .apply-check-list {
    gap: 16px 64px;
}

.apply-form-section__head--stack .required,
.apply-field--stack .required,
.apply-check-section--stack .required {
    font-size: 17px;
    line-height: 1.4;
}

@media (min-width: 901px) {
    .apply-check-section--stack .apply-check-list__row {
        display: flex;
        align-items: center;
        gap: 64px;
    }

    .apply-check-section--stack .apply-choice {
        font-size: 18px;
        font-weight: 400;
    }

    .apply-check-section--stack .apply-choice:has(input:checked) {
        font-weight: 700;
    }
}

/* 지원신청: 하단 버튼 */
.apply-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 40px;
}

.apply-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 56px;
    padding: 0 24px;
    border: 1px solid var(--color-text-disabled);
    border-radius: 8px;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    box-sizing: border-box;
}

.apply-action:not(.apply-action--primary):not(.apply-action--secondary):hover,
.apply-action:not(.apply-action--primary):not(.apply-action--secondary):focus-visible {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.apply-action--primary {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-surface);
}

.apply-action--secondary {
    border-color: var(--color-primary-border);
    background: var(--color-bg-soft);
    color: var(--color-primary-dark);
}

/* 지원서작성: 인트로 */
.apply-intro {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: var(--color-bg-soft);
}

.apply-intro__visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.apply-intro__visual img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2050px;
    max-width: none;
    height: 1078px;
    transform: translate(calc(-50% + 28px), calc(-50% - 57px));
    object-fit: cover;
}

.apply-intro__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(267.16deg, rgba(254, 249, 239, 0) 22.46%, rgb(254, 249, 239) 59.47%);
}

.apply-intro__inner {
    position: relative;
    z-index: 1;
}

.apply-intro__card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 65px;
    border: 1px solid var(--color-surface);
    border-radius: 16px;
    background: linear-gradient(122.07deg, rgba(255, 255, 255, 0.4) 1.87%, rgba(255, 255, 255, 0.16) 64.12%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.apply-intro__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
}

.apply-intro__brand {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}

.apply-intro__logo {
    display: block;
    width: 129px;
    height: 40px;
}

.apply-intro__title {
    margin: 0;
    color: var(--color-text);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    word-break: keep-all;
}

.apply-intro__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.apply-intro__button {
    display: inline-grid;
    grid-template-columns: 26px minmax(0, 1fr) 26px;
    align-items: center;
    column-gap: 6px;
    min-width: 200px;
    height: 62px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apply-intro__button-label {
    white-space: nowrap;
}

.apply-intro__button-content {
    display: contents;
}

.apply-intro__button-icon,
.apply-intro__button-arrow {
    display: block;
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.apply-intro__button--primary .apply-intro__button-icon {
    filter: brightness(0) invert(1);
}

.apply-intro__button--primary {
    background: linear-gradient(144.98deg, var(--color-primary-gradient-end) 1.62%, var(--color-primary-gradient-start) 66.43%);
    box-shadow: 0 10px 10px rgba(255, 132, 0, 0.4);
    color: var(--color-surface);
}

.apply-intro__button--secondary {
    border: 1px solid var(--color-primary-border);
    background: var(--color-bg-soft);
    color: var(--color-primary);
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
    .apply-intro__button:hover {
        transform: translateY(-2px);
    }

    .apply-intro__button--secondary:hover {
        box-shadow: var(--shadow-login-card);
    }
}

.apply-notice {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid var(--color-line);
}

.apply-notice__head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.apply-notice__icon {
    display: block;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
}

.apply-notice__title {
    margin: 0;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.apply-notice__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--color-text);
}

.apply-notice__item {
    position: relative;
    padding-left: 27px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    word-break: keep-all;
}

.apply-notice__item::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
}

/* 지원서작성: 수정 본인 확인 */
.apply-edit {
    padding: 80px 0 120px;
    background: var(--color-surface-soft);
}

.apply-edit__inner,
.apply-card--edit,
.apply-edit__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.apply-card--edit {
    gap: 64px;
    width: 100%;
    padding: 64px 40px 80px;
    border: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-login-card);
}

.apply-edit__heading {
    gap: 20px;
    width: 100%;
    padding-bottom: 20px;
    text-align: center;
}

.apply-edit__heading h2 {
    color: var(--color-text);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
}

.apply-edit__heading p {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.4;
    word-break: keep-all;
}

.apply-card--edit .apply-fields {
    width: 550px;
}

.apply-edit__label-text--mobile {
    display: none;
}

.apply-edit__error {
    justify-content: center;
    width: 640px;
    margin-top: 40px;
    color: var(--color-danger);
    font-size: 16px;
    line-height: 1.4;
    white-space: nowrap;
}

.apply-edit__error img {
    margin-top: 3px;
}

.apply-actions--single {
    justify-content: center;
    width: 640px;
    margin-top: 32px;
}

/* 지원서작성: 제출 완료 */
.apply-complete {
    padding: 64px 0 0;
}

.apply-complete__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 792px;
    margin: 0 auto;
}

.apply-complete__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.apply-complete__visual {
    display: block;
    width: 282px;
    height: 188px;
}

.apply-complete__title {
    margin: 0;
    color: var(--color-text);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    word-break: keep-all;
}

.apply-complete__message {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    padding: 40px;
    border-radius: 12px;
    background: var(--color-bg-soft);
    color: var(--color-text);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    word-break: keep-all;
    box-sizing: border-box;
}

.apply-complete__message p {
    margin: 0;
}

.apply-complete__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 98px;
    height: 64px;
    padding: 0 24px;
    border-radius: 10px;
    background: var(--color-primary);
    color: var(--color-surface);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.apply-wrap:has(.apply-complete) .site-footer {
    margin-top: 120px;
}

/* 온라인상담: 인트로 */
.apply-consult__intro {
    overflow: hidden;
    background: var(--color-bg-soft);
}

.apply-consult__intro-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 330px;
    padding: 80px 0;
}

.apply-consult__intro-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    max-width: 896px;
}

.apply-consult__intro-title {
    color: var(--color-text);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    word-break: keep-all;
}

.apply-consult__intro-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 48px;
    padding: 0 16px;
    border-radius: 8px;
    background: var(--color-primary);
    color: var(--color-surface);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.apply-consult__intro-visual {
    position: absolute;
    top: 50%;
    right: 0;
    width: 376px;
    height: auto;
    transform: translateY(-50%);
    pointer-events: none;
}

/* 온라인상담: FAQ 목록 */
.apply-consult__list-wrap {
    padding: 80px 0 0;
}

.apply-consult-item__trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 80px;
    padding: 16px 24px 16px 16px;
    border-top: 1px solid var(--color-line);
    background: var(--color-surface);
    color: inherit;
    cursor: pointer;
}

.apply-consult-item__badge {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-surface-soft);
    color: var(--color-text-disabled);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.apply-consult-item[open] .apply-consult-item__badge {
    background: var(--color-bg-soft);
    color: var(--color-primary);
}

.apply-consult-item__question {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.apply-consult-item__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.apply-consult-item__icon img {
    width: 24px;
    height: 24px;
}

.apply-consult-item__icon .apply-consult-item__icon-down {
    display: none;
}

.apply-consult-item[open] .apply-consult-item__icon .apply-consult-item__icon-down {
    display: block;
}

.apply-consult-item[open] .apply-consult-item__icon .apply-consult-item__icon-up {
    display: none;
}

.apply-consult-item__panel {
    padding: 24px;
    border-left: 1px solid var(--color-line-light);
    border-right: 1px solid var(--color-line-light);
    background: var(--color-surface-soft);
}

.apply-consult-item__answer {
    color: var(--color-text-muted);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.apply-wrap:has(.apply-consult) .site-footer {
    margin-top: 120px;
}

/* 지원신청: 작성하기 */
.apply-content.apply-content--write {
    padding: 80px 0 0;
}

.apply-write__panel {
    display: grid;
    grid-template-columns: clamp(180px, 25vw, 320px) minmax(0, 1fr);
    gap: 24px;
    min-height: 616px;
}

.apply-write__panel > .apply-form-section {
    min-width: 0;
}

.apply-write__title,
.apply-agreement__content h2 {
    margin: 0;
    color: var(--color-text);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
}

.apply-write__label {
    min-height: 48px;
    padding: 12px 0;
}

.apply-write__input {
    height: 48px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 400;
}

.apply-write__textarea {
    height: 192px;
    min-height: 192px;
    resize: none;
}

.apply-write__counter {
    margin-top: 8px;
}

.apply-write__actions {
    margin-top: 32px;
}

.apply-write__actions--compact .apply-action {
    min-width: 120px;
}

.apply-agreement {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.apply-agreement__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px;
    border: 1px solid var(--color-line);
    border-radius: 12px;
    background: var(--color-surface-soft);
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.4;
}

.apply-agreement__section strong,
.apply-agreement__section p {
    display: block;
    margin-bottom: 8px;
}

.apply-agreement__section strong {
    font-weight: 600;
}

.apply-agreement__section li {
    position: relative;
    padding-left: 24px;
}

.apply-agreement__section li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
}

.apply-agreement__check {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    padding: 24px;
    border-radius: 12px;
    background: var(--color-bg-soft);
}

.apply-agreement__check .apply-choice {
    min-height: 30px;
    font-size: 20px;
    font-weight: 700;
}

.apply-agreement__check em {
    color: var(--color-primary-dark);
    font-style: normal;
}

.apply-wrap:has(.apply-content--write) .site-footer {
    margin-top: 120px;
}

/* 지원신청: 반응형 */
@media (max-width: 900px) {
    .apply-wrap .content-heading__inner {
        width: min(100% - 32px, var(--layout-max));
    }

    .apply-edit {
        padding: 0;
        background: var(--color-surface);
    }

    .apply-edit__inner {
        width: 100%;
    }

    .apply-card.apply-card--edit {
        align-items: stretch;
        gap: 24px;
        padding: 40px 16px 80px;
        border-radius: 0;
        box-shadow: none;
    }

    .apply-edit__heading {
        align-items: flex-start;
        gap: 12px;
        text-align: left;
    }

    .apply-edit__heading h2 {
        font-size: 24px;
    }

    .apply-edit__heading p {
        width: 100%;
        font-size: 14px;
    }

    .apply-card--edit .apply-fields {
        width: 100%;
    }

    .apply-edit__label-text--desktop {
        display: none;
    }

    .apply-edit__label-text--mobile {
        display: inline;
    }

    .apply-card--edit .apply-birth {
        margin-top: 4px;
    }

    .apply-card--edit .apply-input,
    .apply-card--edit .apply-select {
        height: 48px;
        border-radius: 8px;
        font-size: 17px;
        font-weight: 400;
    }

    .apply-card--edit .apply-select {
        background-size: 20px 20px;
    }

    .apply-edit__error {
        width: 100%;
        min-height: 20px;
        font-size: 14px;
    }

    .apply-edit__error img {
        margin-top: 2px;
    }

    .apply-actions.apply-actions--single {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .apply-complete {
        padding: 64px 16px 40px;
    }

    .apply-complete__inner {
        gap: 32px;
        max-width: none;
    }

    .apply-complete__visual {
        width: 232px;
        height: 154px;
    }

    .apply-complete__title {
        font-size: 24px;
    }

    .apply-complete__message {
        padding: 40px 16px;
        font-size: 18px;
    }

    .apply-complete__button {
        min-width: 78px;
        height: 48px;
        padding: 0 16px;
        border-radius: 8px;
        font-size: 17px;
        font-weight: 700;
    }

    .apply-wrap:has(.apply-complete) .site-footer {
        margin-top: 0;
    }

    .apply-consult__intro-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        min-height: 0;
        padding: 40px 0;
    }

    .apply-consult__intro-content {
        display: contents;
        max-width: none;
    }

    .apply-consult__intro-title {
        order: 1;
        font-size: 20px;
    }

    .apply-consult__intro-visual {
        position: static;
        order: 2;
        width: 72.78%;
        max-width: 262px;
        margin-left: auto;
        transform: none;
    }

    .apply-consult__intro-button {
        order: 3;
        width: 100%;
        min-width: 0;
        height: 40px;
        padding: 0 12px;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 600;
    }

    .apply-consult__list-wrap {
        padding: 80px 0;
    }

    .apply-consult-item__trigger {
        align-items: center;
        gap: 10px;
        min-height: 0;
        padding: 16px 12px;
    }

    .apply-consult-item__badge {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .apply-consult-item__question {
        font-size: 16px;
    }

    .apply-consult-item__icon {
        display: none;
    }

    .apply-consult-item__panel {
        padding: 16px;
    }

    .apply-consult-item__answer {
        font-size: 16px;
    }

    .apply-wrap:has(.apply-consult) .site-footer {
        margin-top: 0;
    }

    .apply-content.apply-content--write {
        padding: 0;
    }

    .apply-content.apply-content--write .layout {
        width: 100%;
    }

    .apply-write__panel {
        display: block;
        min-height: auto;
    }

    .apply-write__title {
        margin-bottom: 24px;
        font-size: 28px;
        line-height: 1.4;
    }

    .apply-write__label {
        min-height: 48px;
        padding: 12px 0;
    }

    .apply-control--short,
    .apply-phone--wide {
        width: 100%;
    }

    .apply-write__textarea {
        height: 244px;
        min-height: 244px;
    }

    .apply-agreement {
        gap: 0;
        margin-top: 0;
    }

    .apply-agreement__content {
        gap: 24px;
        padding: 48px 24px;
        border: 0;
        border-radius: 0;
        font-size: 14px;
    }

    .apply-agreement__content h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .apply-agreement__check {
        min-height: 94px;
        padding: 32px 10px;
        border-radius: 0;
    }

    .apply-agreement__check .apply-choice {
        font-size: 16px;
    }

    .apply-write__actions--compact .apply-action {
        min-width: 0;
    }

    .apply-wrap:has(.apply-content--write) .site-footer {
        margin-top: 0;
    }

    .apply-content {
        padding: 40px 0 0;
    }

    .apply-content .layout {
        width: 100%;
    }

    .apply-step-area {
        width: min(100% - 32px, var(--layout-max));
        margin: 0 auto 0;
    }

    .apply-step-head {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .apply-step-head h2 {
        font-size: 28px;
        order: 2;
    }

    .apply-stepper {
        display: flex;
        gap: 0;
        order: 1;
        padding: 0 4px;
        width: 100%;
    }

    .apply-stepper__item {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
    }

    .apply-stepper__link {
        grid-template-columns: 28px minmax(0, 1fr);
        grid-template-areas:
            "num line"
            "text text";
        align-items: flex-start;
        min-height: 74px;
        row-gap: 6px;
        padding: 0;
    }

    .apply-stepper__num {
        align-self: start;
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .apply-stepper__text strong {
        font-size: 16px;
    }

    .apply-stepper__text span {
        font-size: 14px;
        font-weight: 400;
    }

    .apply-stepper__line {
        align-self: center;
        margin-top: 0;
        transform: none;
    }

    .apply-step-notice {
        align-items: flex-start;
        min-height: 0;
        margin-top: 52px;
        padding-left: 8px;
        font-size: 16px;
    }

    .apply-step-notice span {
        flex: 1 1 auto;
        min-width: 0;
        white-space: normal;
        word-break: keep-all;
    }

    .apply-step-area > .apply-guide {
        margin-top: 12px;
    }

    .apply-required-note {
        display: none;
    }

    .apply-card {
        padding: 48px 16px;
        border: 0;
        border-radius: 0;
    }

    .apply-card + .apply-card {
        margin-top: 0;
    }

    .apply-card__title {
        margin-bottom: 24px;
        font-size: 28px;
    }

    .apply-card__title:has(+ .apply-guide) {
        margin-bottom: 24px;
    }

    .apply-card__title:has(+ .apply-card__notice) {
        margin-bottom: 24px;
    }

    .apply-card__notice {
        margin-bottom: 24px;
        font-size: 14px;
    }

    .apply-guide {
        margin-bottom: 24px;
        padding: 16px;
    }

    .apply-form-section__head .apply-guide--subtle {
        margin-bottom: 0;
    }

    .apply-guide strong {
        margin-bottom: 8px;
        font-size: 16px;
    }

    .apply-guide li {
        font-size: 14px;
    }

    .apply-guide li::before {
        top: 8px;
    }

    .apply-guide ol {
        padding-left: 20px;
    }

    .apply-guide ol li {
        font-size: 14px;
    }

    .apply-form-section + .apply-form-section {
        margin-top: 80px;
    }

    .apply-form-section--divided + .apply-form-section {
        margin-top: 40px;
    }

    .apply-form-section__head--stack {
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .apply-form-section--plain .apply-form-section__head--stack h3 {
        font-size: 20px;
        line-height: 1.4;
    }

    .apply-form-section__head--stack p {
        margin-top: 0;
        word-break: keep-all;
    }

    .apply-field--stack {
        min-height: 0;
    }

    .apply-field--stack .apply-label {
        font-size: 17px;
        line-height: 1.4;
    }

    .apply-control--entry-md {
        width: 100%;
    }

    .apply-textarea--lg {
        min-height: 292px;
    }

    .apply-form-section__head {
        display: block;
    }

    .apply-form-section__head--guide h3,
    .apply-form-section__head--guide h4 {
        margin-bottom: 12px;
    }

    .apply-form-section__head h3,
    .apply-table-wrap h4,
    :where(.apply-check-section) legend {
        font-size: 24px;
        line-height: 1.4;
    }

    .apply-form-section__head p,
    :where(.apply-check-section) p {
        margin-top: 8px;
    }

    .apply-fields {
        gap: 24px;
    }

    .apply-fields--tight {
        gap: 20px;
    }

    .apply-field:not(.apply-field--stack) {
        display: block;
        min-height: 96px;
    }

    .apply-label {
        width: 100%;
        min-height: 48px;
        padding: 12px 0;
    }

    .apply-control,
    .apply-control--name,
    .apply-control--date,
    .apply-control--wide,
    .apply-address,
    .apply-email {
        width: 100%;
    }

    .apply-birth {
        gap: 8px;
    }

    .apply-phone {
        width: 100%;
    }

    .apply-photo-upload {
        width: 100%;
    }

    .apply-input,
    .apply-select,
    .apply-button {
        height: 48px;
        font-size: 15px;
    }

    .apply-form-table .apply-input,
    .apply-form-table .apply-select,
    .apply-form-table .apply-button {
        height: 40px;
    }

    .apply-address__zip {
        grid-template-columns: minmax(0, 1fr) 78px;
    }

    .apply-address__detail {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .apply-email {
        grid-template-columns: minmax(0, 1fr) 15px minmax(0, 1fr);
    }

    .apply-email__domain-type {
        grid-column: 1 / -1;
    }

    .apply-help {
        font-size: 15px;
        font-weight: 500;
    }

    .apply-school-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
    }

    .apply-table-wrap {
        margin-top: 80px;
    }

    /* 폼 테이블 공통: 모바일 카드형 전환 */
    .apply-form-table {
        display: block;
    }

    .apply-form-table thead,
    .apply-form-table colgroup {
        display: none;
    }

    .apply-form-table tbody {
        display: grid;
        grid-template-columns: var(--form-table-mobile-label-width) minmax(0, 1fr);
        width: 100%;
    }

    .apply-form-table tr {
        display: contents;
    }

    .apply-form-table th,
    .apply-form-table td {
        display: flex;
        align-items: center;
        width: auto;
        height: auto;
    }

    .apply-form-table th,
    .apply-form-table:has(> thead) tbody th {
        grid-column: 1;
    }

    .apply-form-table td {
        grid-column: 2;
        border-right: 0;
    }

    .apply-form-table td[data-label]::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 8px;
        color: var(--apply-table-text);
        font-size: 15px;
        font-weight: 700;
        line-height: 1.4;
    }

    .apply-form-table .apply-form-table__empty {
        display: none;
    }

    .apply-form-table tr:has(.apply-textarea-wrap) th {
        position: absolute;
        width: 1px;
        height: 1px;
        min-height: 0;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        border: 0;
    }

    .apply-form-table tr:has(.apply-textarea-wrap) td {
        grid-column: 1 / -1;
        align-items: stretch;
        min-height: auto;
        padding: 12px;
        border: 0;
    }

    .apply-form-table tr[data-mo-order="1"] > th,
    .apply-form-table tr[data-mo-order="1"] > td:not(.apply-table-actions) {
        order: 1;
    }

    .apply-form-table tr[data-mo-order="2"] > th,
    .apply-form-table tr[data-mo-order="2"] > td:not(.apply-table-actions) {
        order: 2;
    }

    .apply-form-table tr[data-mo-order="3"] > th,
    .apply-form-table tr[data-mo-order="3"] > td:not(.apply-table-actions) {
        order: 3;
    }

    .apply-form-table tr[data-mo-order="4"] > th,
    .apply-form-table tr[data-mo-order="4"] > td:not(.apply-table-actions) {
        order: 4;
    }

    .apply-form-table tr[data-mo-order="5"] > th,
    .apply-form-table tr[data-mo-order="5"] > td:not(.apply-table-actions) {
        order: 5;
    }

    .apply-form-table tr[data-mo-order="6"] > th,
    .apply-form-table tr[data-mo-order="6"] > td:not(.apply-table-actions) {
        order: 6;
    }

    .apply-form-table tr[data-mo-last] > th,
    .apply-form-table tr[data-mo-last] > td:not(.apply-table-actions) {
        border-bottom: 1px solid var(--apply-table-divider);
    }

    .apply-form-table td.apply-table-actions {
        display: flex;
        align-items: center;
        order: 99;
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        height: auto;
        min-height: 48px;
        margin-top: 16px;
        padding: 0;
        border: 0;
        background: transparent;
        text-align: left;
    }

    .apply-table-actions .apply-button {
        width: 100%;
        max-width: none;
        min-width: 0;
        height: 48px;
        font-size: 17px;
        font-weight: 400;
    }

    .apply-repeat-item:first-child .apply-family-table .apply-table-actions {
        display: none;
    }

    /* 학력사항 테이블: 모바일 */
    .apply-education-table tbody th {
        justify-content: center;
        align-self: stretch;
        padding-inline: 12px;
        text-align: center;
    }

    .apply-education-table td {
        display: block;
        min-height: 94px;
    }

    .apply-education-table tbody tr:nth-child(1) > td,
    .apply-education-table tbody tr:nth-child(2) > td,
    .apply-education-table tbody tr:nth-child(3) > td,
    .apply-education-table tbody tr:nth-child(4) > td,
    .apply-education-score > td {
        background: var(--color-surface);
    }

    .apply-education-table tbody tr:nth-child(1) > th,
    .apply-education-table tbody tr:nth-child(2) > th {
        grid-row: span 3;
    }

    .apply-education-table tbody tr:nth-child(3) > th {
        grid-row: span 4;
    }

    .apply-education-table tbody tr:nth-child(4) > th {
        grid-row: span 5;
    }

    .apply-education-school {
        flex-wrap: wrap;
        gap: 8px 16px;
    }

    .apply-education-school__main {
        flex: 1 1 100%;
        width: 100%;
        max-width: none;
    }

    .apply-education-school__main .apply-input {
        flex: 1 1 auto;
        width: auto;
    }

    .apply-education-school__name {
        display: none;
    }

    .apply-education-table tbody tr:not(.apply-education-score) > td:nth-of-type(1) {
        min-height: 134px;
    }

    .apply-education-table tbody tr:not(.apply-education-score) > td:nth-of-type(3) {
        min-height: 148px;
    }

    .apply-education-table tbody tr:nth-child(4) > td:nth-of-type(1) {
        min-height: 100px;
    }

    .apply-period {
        grid-template-columns: minmax(0, 1fr) 11px minmax(0, 1fr);
        gap: 4px;
    }

    .apply-period .apply-select {
        grid-column: 1 / -1;
        margin-top: 4px;
    }

    .apply-education-score {
        display: contents;
        margin-top: 0;
        margin-left: 0;
    }

    .apply-education-score td {
        display: block;
        grid-column: 2;
        width: 100%;
        min-height: 300px;
        padding: 0;
    }

    .apply-score-grid {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .apply-score-group {
        grid-template-columns: 1fr;
        min-height: 100px;
        padding: 12px;
        border-bottom: 1px solid var(--apply-table-divider);
    }

    .apply-score-group--grade {
        grid-template-columns: minmax(0, 102px) 6px 100px;
        justify-content: start;
    }

    .apply-score-group--grade label {
        grid-column: 1 / -1;
    }

    .apply-score-group--tuition {
        grid-template-columns: minmax(0, 202px) 14px;
        justify-content: start;
    }

    .apply-score-group--tuition label {
        grid-column: 1 / -1;
    }

    :where(.apply-score-group) label {
        white-space: normal;
    }

    /* 가족관계 테이블: 모바일 */
    .apply-family-table tbody {
        grid-template-columns: clamp(88px, calc(100vw - 232px), 140px) minmax(0, 1fr);
    }

    .apply-family-table th,
    .apply-family-table td {
        height: auto;
        min-height: 64px;
    }

    .apply-family-table tr:last-child th,
    .apply-family-table tr:last-child td {
        border-bottom: 0;
    }

    .apply-family-table .apply-input,
    .apply-family-table .apply-select,
    .apply-family-table .apply-control {
        width: 100%;
    }

    /* 가족 연락처: 한 줄 배치 */
    .apply-family-table .apply-phone {
        grid-template-columns: minmax(0, 1fr) 7px minmax(0, 1fr) 7px minmax(0, 1fr);
        gap: 4px;
        max-width: none;
    }

    .apply-family-table .apply-phone .apply-input,
    .apply-family-table .apply-phone .apply-select {
        padding-inline: 2px;
        font-size: 15px;
        text-align: center;
    }

    .apply-family-table .apply-phone .apply-select {
        padding-right: 22px;
    }

    .apply-button--add {
        width: 100%;
        min-width: 0;
        height: 48px;
        margin-left: auto;
        font-size: 17px;
        font-weight: 500;
    }

    .apply-form-section:has(.apply-repeat-list) + .apply-check-section,
    .apply-check-section + .apply-check-section {
        margin-top: 40px;
    }

    .apply-check-section + .apply-option-section {
        margin-top: 80px;
    }

    .apply-check-section legend {
        float: none;
        display: block;
        margin: 0 0 12px;
        font-size: 20px;
        line-height: 1.4;
        vertical-align: middle;
        white-space: normal;
        word-break: keep-all;
    }

    .apply-check-section--stack + .apply-check-section--stack,
    .apply-check-section--stack + .apply-form-section {
        margin-top: 80px;
    }

    .apply-check-section--stack legend {
        width: 100%;
        margin-bottom: 24px;
        white-space: normal;
        word-break: keep-all;
    }

    .apply-check-section--stack .apply-check-list,
    .apply-check-list--stack,
    .apply-option-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .apply-check-section--stack .apply-check-list__row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }

    .apply-check-section--stack .apply-option-with-input {
        gap: 48px;
    }

    .apply-check-section--stack .apply-option-with-input .apply-input {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
        max-width: 194px;
        margin-left: 0;
    }

    .apply-check-section p {
        display: block;
        margin: 0 0 24px;
        padding-top: 0;
        font-size: 14px;
        line-height: 1.4;
        vertical-align: middle;
        white-space: nowrap;
    }

    .apply-check-section__note {
        font-size: 16px;
    }

    .apply-check-section--inline legend {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
        margin-bottom: 24px;
    }

    .apply-check-list {
        gap: 16px 40px;
    }

    .apply-check-list--wide {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        overflow-x: visible;
    }

    .apply-check-list--wide .apply-choice {
        flex: 0 0 auto;
        min-height: 40px;
    }

    .apply-check-section--inline .apply-check-list {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0;
        width: 100%;
    }

    .apply-check-section--inline .apply-choice {
        flex: 0 0 auto;
        min-height: 30px;
    }

    .apply-choice,
    .apply-option-details .apply-choice {
        min-height: 40px;
        font-size: 17px;
        font-weight: 500;
    }

    .apply-sibling {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 24px;
        row-gap: 10px;
        width: 100%;
        font-size: 17px;
        font-weight: 500;
    }

    .apply-sibling .apply-input {
        width: 72px;
    }

    .apply-sibling-count {
        margin-left: 0;
    }

    .apply-sibling-breakdown {
        grid-column: 1 / -1;
        margin-left: 50px;
        font-size: 15px;
        font-weight: 500;
    }

    .apply-form-section--plain .apply-form-section__head {
        min-height: auto;
    }

    .apply-field--medium {
        width: 100%;
        max-width: none;
    }

    .apply-repeat-item {
        padding-bottom: 16px;
        border-bottom: 1px solid var(--apply-table-divider);
    }

    .apply-repeat-item:has(.apply-family-table) {
        padding-bottom: 0;
        border-bottom: 0;
    }

    /* 활동정보 반복 테이블: 모바일 */
    .apply-entry-table th,
    .apply-entry-table td {
        min-height: 64px;
    }

    .apply-entry-table th {
        padding-right: 0;
        padding-left: 0;
        justify-content: center;
        overflow-wrap: break-word;
        white-space: normal;
        text-align: center;
    }

    .apply-entry-table th label {
        display: block;
        width: 100%;
        min-height: 0;
    }

    .apply-form-section--plain + .apply-repeat-section .apply-table-actions {
        margin-top: 0;
    }

    .apply-entry-table .apply-input,
    .apply-entry-table .apply-select,
    .apply-control--entry,
    .apply-entry-table .apply-control--entry-wide {
        width: 100%;
    }

    .apply-entry-table .apply-control--entry-lg {
        max-width: none;
    }

    .apply-control-with-unit {
        gap: 12px;
    }

    .apply-control-with-unit .apply-input {
        flex: 1 1 auto;
        min-width: 0;
    }

    .apply-period--simple {
        grid-template-columns: minmax(0, 1fr) 12px minmax(0, 1fr);
        width: 100%;
        gap: 4px;
    }

    .apply-textarea {
        min-height: 132px;
        font-size: 15px;
    }

    .apply-inline-help {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }

    .apply-help--inline {
        white-space: normal;
    }

    .apply-help--inline > span {
        min-width: 0;
    }

    .apply-help--inline .apply-help__mobile-line {
        display: block;
    }

    .apply-form-section__head--with-choice {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .apply-form-section__head--with-choice .apply-choice--note {
        display: grid;
        grid-template-columns: 20px minmax(0, 1fr);
        grid-template-rows: 24px auto;
        align-items: start;
        width: min(100%, 277px);
        min-height: 49px;
        column-gap: 8px;
        row-gap: 4px;
        margin-top: 0;
    }

    .apply-form-section__head--with-choice .apply-choice--note input[type="checkbox"] {
        align-self: center;
        margin-top: 0;
    }

    .apply-form-section__head--with-choice .apply-choice--note > span {
        min-height: 24px;
        line-height: 24px;
    }

    .apply-form-section__head--with-choice .apply-choice--note em {
        grid-column: 2;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4;
    }

    .apply-repeat-list + .apply-button--add {
        width: 100%;
        min-width: 0;
        height: 48px;
        margin-left: auto;
    }

    .apply-form-section:has(.apply-family-table) > .apply-repeat-list + .apply-button--add {
        margin-top: 24px;
    }

    .apply-option-section p {
        white-space: normal;
    }

    .apply-choice--wide {
        width: 100%;
    }

    .apply-option-with-input,
    .apply-inline-control,
    .apply-radio-group {
        flex-wrap: wrap;
    }

    .apply-option-with-input {
        gap: 10px 24px;
        width: 100%;
    }

    .apply-option-with-input .apply-input {
        width: 218px;
        margin-left: 32px;
    }

    .apply-option-section--details legend {
        margin-bottom: 20px;
        font-size: 24px;
        line-height: 1.4;
    }

    .apply-option-section--details p {
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 1.5;
    }

    .apply-option-details {
        width: 100%;
    }

    .apply-option-details > .apply-choice {
        width: min(100%, 320px);
    }

    .apply-option-detail {
        display: grid;
        grid-template-columns: max-content minmax(0, 1fr);
        align-items: center;
        gap: 8px 10px;
        width: 100%;
    }

    .apply-option-detail > .apply-choice {
        grid-column: 1;
    }

    .apply-option-detail > .apply-choice span {
        white-space: nowrap;
    }

    .apply-option-detail__content {
        grid-column: 2;
    }

    .apply-inline-control {
        display: grid;
        grid-template-columns: auto minmax(120px, 160px) auto;
        align-items: center;
        width: 100%;
        max-width: 248px;
        gap: 4px 8px;
        font-size: 16px;
        line-height: 1.4;
    }

    .apply-inline-control .apply-input,
    .apply-inline-control .apply-select {
        width: 100%;
        min-width: 0;
    }

    .apply-inline-control--pair {
        grid-template-columns: auto minmax(120px, 160px) auto minmax(120px, 160px) auto;
        max-width: 452px;
    }

    .apply-radio-group {
        align-items: center;
        height: 26px;
        gap: 8px;
        font-size: 16px;
        line-height: 1.4;
    }

    .apply-radio-group .apply-choice--radio {
        gap: 6px;
        min-height: 26px;
        font-size: 16px;
        font-weight: 400;
    }

    .apply-radio-group .apply-choice--radio + .apply-choice--radio {
        margin-left: 16px;
    }

    .apply-upload-group + .apply-upload-group {
        margin-top: 40px;
    }

    .apply-upload-section .apply-form-section__head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .apply-upload-section .apply-form-section__head p {
        margin-top: 0;
        font-size: 14px;
    }

    .apply-upload-section .apply-form-section__head h3 > .required {
        display: none;
    }

    .apply-upload-group h4 {
        margin-bottom: 16px;
        font-size: 20px;
    }

    .apply-upload-field {
        display: block;
        width: 100%;
    }

    .apply-upload-label {
        width: 100%;
        min-height: auto;
        padding: 0 0 8px;
        font-size: 16px;
        font-weight: 700;
    }

    .apply-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 0;
        padding: 40px 16px;
    }

    .apply-action {
        width: 100%;
        min-width: 0;
        height: 48px;
        font-size: 17px;
        font-weight: 400;
    }

    .apply-actions__group {
        display: contents;
    }

    .apply-action--previous {
        order: 1;
    }

    .apply-action--primary {
        order: 2;
        font-weight: 700;
    }

    .apply-action--secondary {
        grid-column: 1 / -1;
        order: 3;
        font-weight: 400;
    }

    .apply-actions:has(.apply-actions__group) .apply-action--secondary {
        grid-column: auto;
        order: 2;
    }

    .apply-actions:has(.apply-actions__group) .apply-action--primary {
        grid-column: 1 / -1;
        order: 3;
    }

    .apply-action__desktop-text {
        display: none;
    }

    .apply-action__mobile-text {
        display: inline;
    }

    .apply-intro {
        padding: 0;
        background: var(--color-surface);
    }

    .apply-intro__visual {
        height: 507px;
        inset: auto;
        top: 0;
        right: 0;
        left: 0;
        overflow: hidden;
    }

    .apply-intro__visual img {
        top: 25.64%;
        left: -79.43%;
        width: 198.65%;
        height: 74.36%;
        transform: none;
        object-fit: cover;
        object-position: center;
    }

    .apply-intro__visual::after {
        background: linear-gradient(-10.36deg, rgba(254, 249, 239, 0) 8.37%, rgb(254, 249, 239) 65.99%);
    }

    .apply-intro__inner {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .apply-intro__card {
        gap: 0;
        max-width: none;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .apply-intro__head {
        position: relative;
        z-index: 1;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        min-height: 507px;
        padding: 40px 16px;
        box-sizing: border-box;
    }

    .apply-intro__brand {
        align-items: center;
        width: 100%;
        gap: 24px;
    }

    .apply-intro__logo {
        margin: 0 auto;
    }

    .apply-intro__title {
        width: 100%;
        font-size: 24px;
        text-align: center;
    }

    .apply-intro__actions {
        width: 100%;
    }

    .apply-intro__button {
        flex: 1 1 0;
        grid-template-columns: minmax(0, 1fr) 20px;
        column-gap: 4px;
        min-width: 0;
        height: 52px;
        padding: 0 8px;
        border-radius: 6px;
        font-size: 17px;
    }

    .apply-intro__button-content {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-width: 0;
    }

    .apply-intro__button-icon,
    .apply-intro__button-arrow {
        width: 20px;
        height: 20px;
    }

    .apply-intro__button--primary {
        background: linear-gradient(152.79deg, var(--color-primary-gradient-end) 1.62%, var(--color-primary-gradient-start) 66.43%);
    }

    .apply-notice {
        position: relative;
        z-index: 1;
        gap: 12px;
        padding: 24px 16px;
        border-top: 0;
        background: var(--color-surface);
    }

    .apply-notice__title {
        font-size: 18px;
    }

    .apply-notice__item {
        padding-left: 24px;
        font-size: 16px;
    }

    .apply-notice__item::before {
        left: 8px;
    }
}

@media (max-width: 640px) {
    .apply-inline-control--pair {
        grid-template-columns: auto minmax(0, 160px) auto;
        max-width: 248px;
    }

    .apply-inline-control--pair > :nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    .apply-inline-control--pair > :nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }

    .apply-inline-control--pair > :nth-child(5) {
        grid-column: 3;
        grid-row: 2;
    }
}

@media (max-width: 430px) {
    .apply-option-detail:has(> .apply-option-detail__content) {
        grid-template-columns: minmax(0, 1fr);
    }

    .apply-option-detail__content {
        grid-column: 1;
        width: calc(100% - 32px);
        max-width: none;
        margin-left: 32px;
    }
}

/* 장학생 선발: 인트로 */
.selection-intro {
    padding: 60px 0 80px;
    background: var(--color-surface);
}

.selection-intro__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 16px;
    text-align: center;
}

.selection-intro__mark {
    display: block;
    width: 32px;
    height: 24px;
}

.selection-intro__title {
    color: var(--color-text);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    word-break: keep-all;
}

.selection-intro__highlight {
    color: var(--color-text);
}

.selection-intro__mo-break {
    display: none;
}

.selection-docs-table__type-mo {
    display: none;
}

/* 장학생 선발: 섹션 타이틀·목록·노트 */
.selection-content {
    padding: 100px 0 0;
    counter-reset: selection-section;
}

.selection-content__inner {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.selection-section__head {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-line-input);
}

.selection-section__title {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--apply-text-bolder);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
}

.selection-section__title::before {
    counter-increment: selection-section;
    content: counter(selection-section) ".";
    flex: 0 0 auto;
}

.selection-section__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0 0;
}

.selection-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--color-text-muted);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    counter-reset: selection-list;
}

.selection-list li {
    display: flex;
    gap: 4px;
    padding: 0 8px;
    word-break: keep-all;
}

.selection-list li::before {
    counter-increment: selection-list;
    content: counter(selection-list) ")";
    flex: 0 0 auto;
}

.selection-note {
    margin: 0;
    padding: 4px 8px;
    background: var(--color-surface-soft);
    color: var(--color-text-light);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    word-break: keep-all;
}

/* 장학생 선발: 절차 step-card */
.selection-section__body:has(.selection-steps) {
    gap: 0;
}

.selection-steps {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}

.selection-step {
    display: grid;
    grid-template-columns: 120px 84px 240px minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
    min-height: 120px;
    padding: 0 20px;
    border-radius: 24px;
}

.selection-step__track {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    position: relative;
    width: 120px;
    min-height: 120px;
    margin-right: 24px;
}

.selection-step__track::before,
.selection-step__track::after {
    content: "";
    flex: 1 1 auto;
    width: 1px;
    background: var(--color-primary-pressed);
}

.selection-step:first-child .selection-step__track::before {
    background: transparent;
}

.selection-step:last-child .selection-step__track::after {
    background: transparent;
}

.selection-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 48px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(123.12deg, var(--color-primary-gradient-end) 1.62%, var(--color-primary-gradient-start) 66.43%);
    color: var(--color-surface);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.selection-step__icon {
    overflow: hidden;
    width: 84px;
    height: 84px;
}

.selection-step__icon img {
    display: block;
    width: 84px;
    height: 84px;
}

.selection-step__title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    color: var(--color-primary-dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    word-break: keep-all;
}

.selection-step__panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    min-width: 0;
    padding: 20px 24px;
    border-radius: 12px;
    background: var(--color-surface-soft);
}

.selection-step__period {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    color: var(--color-text-light);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.selection-step__period img {
    width: 20px;
    height: 20px;
}

.selection-step__desc {
    margin: 0;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

/* 장학생 선발: 제출서류 표 */
.selection-table-wrap {
    --table-scroll-min-width: 720px;
    width: 100%;
}

.selection-docs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-top: 1px solid var(--color-text);
    table-layout: fixed;
}

.selection-docs-table__type-col {
    width: 240px;
}

.selection-docs-table th,
.selection-docs-table td {
    padding: 16px;
    border-right: 1px solid var(--apply-table-divider);
    border-bottom: 1px solid var(--apply-table-divider);
    color: var(--apply-table-text);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    vertical-align: top;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.selection-docs-table thead th {
    height: 56px;
    padding: 8px 16px;
    background: var(--apply-table-muted);
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
}

.selection-docs-table tbody th {
    background: var(--color-surface);
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
}

.selection-docs-table td:last-child,
.selection-docs-table th:last-child {
    border-right: 0;
}

.selection-docs-table ul {
    margin: 0;
    padding-left: 1.35em;
    list-style: disc;
}

.selection-docs-table li + li {
    margin-top: 0;
}

.selection-docs-table__pair td {
    padding-block: 4px;
    vertical-align: middle;
}

/* 장학생 선발: 문의 CTA */
.selection-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 40px;
    border-radius: 12px;
    background: var(--color-bg-soft);
}

.selection-cta__text {
    margin: 0;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    word-break: keep-all;
}

.selection-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 139px;
    height: 48px;
    padding: 0 16px;
    border-radius: 8px;
    background: var(--color-primary);
    color: var(--color-surface);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.apply-wrap:has(.selection-content) .site-footer {
    margin-top: 120px;
}

/* 장학생 선발: 반응형 */
@media (max-width: 1200px) {
    .selection-step {
        grid-template-columns: 80px 72px minmax(140px, 200px) minmax(0, 1fr);
        column-gap: 12px;
        padding: 0 16px;
    }

    .selection-step__track {
        width: 80px;
        margin-right: 8px;
    }

    .selection-step__icon {
        width: 72px;
        height: 72px;
    }

    .selection-step__icon img {
        width: 72px;
        height: 72px;
    }

    .selection-step__title {
        width: auto;
        font-size: 18px;
    }
}

@media (max-width: 900px) {
    .selection-intro {
        padding: 64px 0;
    }

    .selection-intro__inner {
        gap: 24px;
        padding: 0 16px;
    }

    .selection-intro__title {
        font-size: 20px;
    }

    .selection-intro__mo-break {
        display: inline;
    }

    .selection-section:has(.selection-steps) .selection-section__head {
        padding-bottom: 20px;
    }

    .selection-content {
        padding: 0;
    }

    .selection-content__inner {
        gap: 80px;
        width: 100%;
        max-width: none;
        padding: 0;
    }

    .selection-section {
        padding: 0 16px;
    }

    .selection-section__head {
        padding-bottom: 12px;
    }

    .selection-section__title {
        font-size: 24px;
    }

    .selection-section__body {
        gap: 16px;
        padding-top: 16px;
    }

    .selection-list {
        font-size: 16px;
    }

    .selection-list li {
        align-items: flex-start;
        padding: 0;
    }

    .selection-note {
        padding: 8px;
        font-size: 14px;
    }

    .selection-section__body:has(.selection-steps) {
        gap: 16px;
    }

    .selection-steps {
        gap: 16px;
    }

    .selection-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        min-height: 0;
        padding: 32px 24px;
        border-radius: 12px;
        background: var(--color-surface-soft);
    }

    .selection-step__track {
        display: contents;
        width: auto;
        height: auto;
        margin-right: 0;
    }

    .selection-step__track::before,
    .selection-step__track::after {
        display: none;
    }

    .selection-step__num {
        order: 1;
        margin-bottom: 24px;
    }

    .selection-step__icon {
        order: 2;
        width: 84px;
        height: 84px;
        margin-bottom: 32px;
    }

    .selection-step__icon img {
        width: 84px;
        height: 84px;
    }

    .selection-step__title {
        order: 3;
        justify-content: center;
        width: 100%;
        max-width: 240px;
        height: 28px;
        margin-bottom: 16px;
        font-size: 20px;
        text-align: center;
    }

    .selection-step__panel {
        order: 4;
        align-items: center;
        width: 100%;
        padding: 8px 0;
        background: transparent;
    }

    .selection-step__period {
        justify-content: center;
        font-size: 14px;
    }

    .selection-step__desc {
        font-size: 14px;
        text-align: center;
    }

    .selection-docs-table {
        display: block;
        width: 100%;
        border-top: 0;
        table-layout: auto;
    }

    .selection-docs-table colgroup,
    .selection-docs-table thead {
        display: none;
    }

    .selection-docs-table tbody,
    .selection-docs-table tr,
    .selection-docs-table th,
    .selection-docs-table td {
        display: block;
        width: 100%;
    }

    .selection-docs-table tr {
        margin-top: 0;
    }

    .selection-docs-table tr + tr {
        margin-top: 0;
    }

    .selection-docs-table th,
    .selection-docs-table td {
        padding: 16px;
        border-right: 0;
        border-bottom: 1px solid var(--apply-table-divider);
        font-size: 16px;
    }

    .selection-docs-table tr.selection-docs-table__pair {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .selection-docs-table__pair > th {
        grid-column: 1 / -1;
    }

    .selection-docs-table__pair > td:first-of-type {
        border-right: 1px solid var(--apply-table-divider);
    }

    .selection-docs-table tbody th {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 48px;
        padding: 8px 16px;
        border-top: 1px solid var(--apply-table-divider);
        border-bottom: 1px solid var(--apply-table-divider);
        font-weight: 700;
        text-align: center;
    }

    .selection-docs-table tbody tr + tr > th {
        border-top: 0;
    }

    .selection-docs-table tbody tr:not(.selection-docs-table__pair) > td:empty {
        display: none;
    }

    .selection-docs-table__type-pc {
        display: none;
    }

    .selection-docs-table__type-mo {
        display: inline;
    }

    .selection-docs-table ul {
        padding-left: 1.5em;
    }

    .selection-cta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        padding: 32px 40px;
        border-radius: 12px;
    }

    .selection-cta__text {
        font-size: 17px;
        font-weight: 500;
        text-align: center;
    }

    .selection-cta__button {
        width: auto;
        min-width: 64px;
        height: 40px;
        padding: 0 12px;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 600;
    }

    .apply-wrap:has(.selection-content) .site-footer {
        margin-top: 0;
    }
}



/* ==========================================================================
   STEP3: 개인정보/민감정보 수집·이용 동의 (apply-consent)
   - 별도 CSS 파일로 분리 시 아래 블록만 복사하면 됩니다.
   ========================================================================== */

.apply-consent-agreements {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0 0;
}

.apply-consent {
    padding: 40px;
    border: 1px solid var(--color-line);
    border-radius: 12px;
    background: var(--color-surface);
}

.apply-consent__title {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    margin: 0;
    color: var(--color-text-strong);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    word-break: keep-all;
}

.apply-consent__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    color: var(--color-text-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.apply-consent__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.apply-consent__group h3 {
    margin: 0;
    font-size: inherit;
    font-weight: 600;
}

.apply-consent__group p {
    margin: 0;
}

.apply-consent__group ul {
    padding-left: 24px;
    list-style: disc;
}

.apply-consent__options,
.apply-consent__choices {
    display: flex;
    align-items: center;
    gap: 40px;
}

.apply-consent__options {
    justify-content: flex-end;
    margin-top: 32px;
    padding: 16px 24px;
    border-radius: 12px;
    background: var(--color-surface-soft);
}

.apply-consent__option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    color: var(--color-text);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    cursor: pointer;
}

.apply-consent__option input {
    appearance: none;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border: 1px solid var(--color-line-input);
    border-radius: 6px;
    background: var(--color-surface);
}

.apply-consent__option input:checked {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    box-shadow: inset 0 0 0 5px var(--color-surface);
}

@media (max-width: 900px) {
    .apply-consent-agreements {
        gap: 16px;
        margin-top: 32px;
    }

    .apply-consent {
        padding: 48px 24px;
        border: 0;
        border-radius: 0;
        background: var(--color-surface-soft);
    }

    .apply-consent__content {
        gap: 24px;
        font-size: 14px;
    }

    .apply-consent__options {
        justify-content: center;
        gap: 20px;
        padding: 16px 0 0;
        background: transparent;
    }

    .apply-consent__option {
        font-size: 17px;
        font-weight: 500;
    }
}
