@charset "UTF-8";
/**
 * 통합 컴포넌트 시스템
 * UI 컴포넌트, 컴포넌트 시스템, 서브페이지 스타일을 모두 포함합니다.
 */
/* ========================================    border-top: 1px solid var(--border-light)
   버튼 컴포넌트 (기본)
=================================slider-popup .slider-popup__text p======= */
.btn-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}
.btn-wrap--col {
    flex-direction: column;
    align-items: flex-start;
}
.btn-wrap.type-divider-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid var(--border-light);
}
@media (max-width: 768px) {
    .btn-wrap.type-divider-line {
        margin-top: 40px;
        padding-top: 40px;
    }
}
.btn {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* min-width: 150px; */
    max-width: 100%;
    min-height: 44px;
    padding: 10px 20px;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    line-height: normal;
    cursor: pointer;
    transition: all 0.2s ease;
    /* white-space: nowrap; */
}
@media (max-width: 768px) {
    .btn {
        padding: 13px 20px;
        font-size: 14px;
        min-height: auto;
    }
}
.btn--primary {
    min-width: 160px;
    padding: 15px 40px;
    color: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: var(--text-primary);
}
.btn--primary-bg {
    min-width: 160px;
    padding: 15px 40px;
    color: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: var(--primary-color);
}
.btn--secondary {
    min-width: 160px;
    padding: 15px 41px;
    color: var(--text-primary);
    border-radius: 8px;
    border: 1px solid var(--border-medium);
    background: #f5f5f5;
}
.btn--tertiary {
    min-width: 160px;
    padding: 15px 40px;
    color: #fff;
    border-radius: 8px;
    background: var(--accent-color);
}
.btn--outline {
    background-color: #fff;
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
}
.btn--outline:hover:not(:disabled) {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}
/* 변경사항: 모바일 터치 디바이스에서 트랜지션 비활성화 (탭 시 중간색상 방지) */
@media (hover: none) and (pointer: coarse) {
    .btn--outline {
        transition: none;
    }
}
.btn--white {
    background-color: #fff;
}
.btn--primary:disabled,
.btn--primary[aria-disabled="true"] {
    color: #fff;
    background: #bcbcbc;
    pointer-events: none;
}
/* 닫기 버튼 */
.btn--close {
    background: url("https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/images/icon/ico_btn_close.svg") no-repeat center
    center / 24px 24px;
    border: none;
    padding: 8px;
    border-radius: 2px;
    transition: 0.15s ease-in-out;
    color: var(--text-secondary);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.btn--close:hover {
    background-color: var(--GRAY_01);
    color: var(--text-primary);
}

/* 다운로드 버튼 - 아이콘 포함 */
/* 다운로드 버튼 말줄임 처리 */
.btn--download {
    max-width: 100%;
    flex: 0 0 auto;
    padding-right: 52px;
    background: url("https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/images/icon/ico_download_black.svg") no-repeat
    calc(100% - 16px) center / 32px 32px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.btn--download:hover {
    background: url("https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/images/icon/ico_download_white.svg") no-repeat
    calc(100% - 16px) center / 32px 32px;
}
/* 다운로드 버튼 중앙 정렬 */
.btn--download-c {
    /* max-width: 320px; */
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 20px;
}
.btn--download-c span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn--download-c span::after {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url("https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/images/icon/ico_download_black.svg") no-repeat center
    center / 32px 32px;
}
.btn--download-c:hover span::after {
    background: url("https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/images/icon/ico_download_white.svg") no-repeat center
    center / 32px 32px;
}
@media (max-width: 768px) {
    .btn--download-c span {
        font-size: 14px;
    }
    .btn--download-c span::after {
        width: 16px;
        height: 16px;
        margin-left: 6px;
    }
}
/* 링크 버튼 - 화살표 아이콘 포함 */
.btn--link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 20px;
    flex: 0 0 auto;
    font-size: inherit;
    font-weight: 600;
    /* text-decoration: underline; */
}
.btn--link span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn--link span::after {
    content: "";
    display: inline-block;
    margin-left: 4px;
    width: 16px;
    height: 16px;
    background: url("https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/images/icon/btn_link_arrow_b.svg") no-repeat center
    center / 16px 16px;
}
.btn--link:hover span::after {
    background: url("https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/images/icon/btn_link_arrow_w.svg") no-repeat center
    center / 16px 16px;
}

/* 폼 버튼 */
.btn--form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 64px;
    padding: 14px 0;
    color: #fff;
    border-radius: 8px;
    background: var(--primary-color);
    font-size: var(--font-size-base);
    font-weight: 700;
    line-height: 1.5;
}
.btn--form:disabled {
    background: #bcbcbc;
}
@media (max-width: 768px) {
    .btn-wrap {
        flex-wrap: wrap;
        margin-top: 24px;
    }
    .btn--form {
        min-height: 57px;
    }
}

/* 더보기 애니메이션 버튼 */
.btn--detail {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    /* min-width: 160px; */
    height: 52px;
    padding: 14px 52px 14px 16px;
    background-color: #fff;
    border: 1px solid var(--text-primary);
    border-radius: 26px;
    overflow: hidden;
}
.btn--detail span {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.32px;
    color: var(--text-primary);
    transition: color 0.35s ease-in-out;
    transition-delay: 0.1s;
}
.btn--detail::before {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-color: #000;
    border-radius: 50%;
    transition: transform 0.35s ease-in-out;
}
.btn--detail::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: url("https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/images/icon/ico_tail_arrow_r_b.svg") no-repeat center
    center / 24px 24px;
    border-radius: 50%;
    filter: invert(1);
}
.btn--detail:hover::before {
    transform: scale(10);
}
.btn--detail:hover span {
    color: #fff;
}
/* ========================================
   폼 컴포넌트
======================================== */
.form-group {
    margin-bottom: 80px;
    width: 100%;
}
.form-group:last-of-type {
    margin-bottom: 0;
}
.form-label {
    display: block;
    margin-bottom: 12px;
    font-size: var(--font-size-base);
    font-weight: 400;
}

/* [변경내용] 폼 레이블 툴팁 버튼 스타일 */
.form-label.type-tooltip {
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-label.type-tooltip .tooltip__trigger {
    width: 24px;
    height: 24px;
    border: none;
    padding: 0;
    background: transparent url("https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/images/icon/ico_info_gray.svg") no-repeat
    center/24px 24px;
    cursor: pointer;
    flex-shrink: 0;
}
.form-label.type-tooltip .tooltip__trigger:hover {
    filter: brightness(0.85);
}
/* 필수 입력 레이블 별표 스타일 */
.form-label .required-mark {
    margin-left: 4px;
    color: var(--accent-color);
    font-weight: 700;
}
/* 폼 입력 필드 기본 스타일 */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    height: 64px;
    padding: 17px 24px;
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.4px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: white;
    min-height: 44px;
}
.form-select:invalid {
    color: var(--text-muted);
}
.form-select:valid {
    color: var(--text-primary);
}
.form-select option {
    color: var(--text-primary);
}
/* 폼 입력 필드 포커스 스타일 */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}
/* 읽기 전용 필드 스타일 */
/* [변경내용] disabled 상태도 readonly와 동일 비주얼 적용 */
.form-input[readonly],
.form-input[readonly]:focus,
.form-select[readonly],
.form-select[readonly]:focus,
.form-textarea[readonly],
.form-textarea[readonly]:focus,
.form-input:disabled,
.form-input:disabled:focus,
.form-select:disabled,
.form-select:disabled:focus,
.form-textarea:disabled,
.form-textarea:disabled:focus {
    background-color: var(--GRAY_01);
    color: var(--text-primary);
    cursor: default;
    border-color: var(--border-light, #e5e5e5);
    box-shadow: none;
}
/* 텍스트 영역 추가 스타일 */
.form-textarea {
    position: relative;
    resize: vertical;
    height: auto;
    box-sizing: border-box;
}
.input-wrap {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.input-wrap.textarea-wrap {
    height: 120px;
}
.input-wrap.textarea-wrap.height-280 {
    height: 280px;
}
.input-wrap.textarea-wrap textarea {
    height: 100%;
    resize: none;
    overflow: auto;
}
.input-wrap.type-email,
.input-wrap.type-btn,
.input-wrap.type-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.input-wrap.type-email .btn--form,
.input-wrap.type-btn .btn--form,
.input-wrap.type-file .btn--form {
    flex: 0 0 auto;
    width: 120px;
    height: 64px;
    font-size: var(--font-size-base);
}
.form-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.form-input--file-name {
    flex: 1 1 auto;
    width: auto;
}
.input-wrap.select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 32px 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M26 11L16 21L6 11' stroke='%23111111' stroke-width='2'/%3E%3C/svg%3E");
}
/* ========================================
    Select2 스타일 (search-select)
======================================== */
.search-select-wrap {
    margin-top: 20px;
}
.input-wrap.select-wrap .select2-container {
    width: 100% !important;
}
.input-wrap.select-wrap .select2-container .select2-selection--single {
    height: 64px;
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    background-color: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input-wrap.select-wrap
.select2-container
.select2-selection--single
.select2-selection__rendered {
    padding: 17px 48px 17px 24px;
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.4px;
    color: var(--text-primary);
}
.input-wrap.select-wrap
.select2-container
.select2-selection--single
.select2-selection__arrow {
    height: 64px;
    right: 16px;
    width: 32px;
}
.input-wrap.select-wrap
.select2-container
.select2-selection--single
.select2-selection__arrow
b {
    border: none;
    width: 32px;
    height: 32px;
    margin-left: -16px;
    margin-top: -16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M26 11L16 21L6 11' stroke='%23111111' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 32px 32px;
    background-position: center;
    transition: transform 0.2s ease;
}
/* [변경내용] Select2 placeholder/disabled 상태 컬러 처리 */
.input-wrap.select-wrap
.select2-container
.select2-selection__rendered.select2-selection__placeholder {
    color: var(--text-muted);
}
.input-wrap.select-wrap
.select2-container--default
.select2-selection--single
.select2-selection__rendered:not(.select2-selection__placeholder) {
    color: var(--text-primary);
}
.input-wrap.select-wrap
.select2-container--disabled
.select2-selection--single {
    background-color: var(--GRAY_01);
    border-color: var(--border-light, #e5e5e5);
    cursor: default;
    pointer-events: none;
    box-shadow: none;
}
.input-wrap.select-wrap
.select2-container--disabled
.select2-selection--single
.select2-selection__rendered {
    color: var(--text-primary);
}
.input-wrap.select-wrap
.select2-container--disabled
.select2-selection--single
.select2-selection__arrow
b {
    opacity: 0.5;
}
.input-wrap.select-wrap
.select2-container.select2-container--focus:not(.select2-container--disabled)
.select2-selection--single,
.input-wrap.select-wrap
.select2-container--open:not(.select2-container--disabled)
.select2-selection--single {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}
.input-wrap.select-wrap
.select2-container--open
.select2-selection--single
.select2-selection__arrow
b {
    transform: rotate(180deg);
}
.select2-dropdown {
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 4px;
}
.select2-container--default .select2-results__option {
    padding: 0 24px;
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.4px;
    color: var(--text-primary);
    transition: background-color 0.2s ease;
}
.select2-container--default .select2-results__option--highlighted,
.select2-container--default
.select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}
.select2-search--dropdown {
    padding: 12px;
}
.select2-search--dropdown .select2-search__field {
    padding: 12px 24px;
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.4px;
}
.select2-search--dropdown .select2-search__field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}
.input-wrap.select-wrap.has-select2::after {
    display: none;
}
@media screen and (max-width: 768px) {
    .input-wrap.select-wrap .select2-container .select2-selection--single {
        height: 57px;
    }
    .input-wrap.select-wrap
    .select2-container
    .select2-selection--single
    .select2-selection__rendered {
        padding: 17px 40px 17px 24px;
    }
    .input-wrap.select-wrap
    .select2-container
    .select2-selection--single
    .select2-selection__arrow {
        height: 57px;
        right: 12px;
        width: 24px;
    }
    .input-wrap.select-wrap
    .select2-container
    .select2-selection--single
    .select2-selection__arrow
    b {
        background-size: 24px 24px;
        width: 24px;
        height: 24px;
        margin-top: -12px;
    }
}
/* 개인정보 동의 체크박스 */
.form-checkbox {
    margin-top: 12px;
}
.form-checkbox__label {
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-checkbox__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.4px;
    word-break: keep-all;
}
@media screen and (max-width: 768px) {
    .form-input,
    .form-select,
    .form-textarea {
        height: 57px;
        padding: 10px 16px;
    }
    .input-wrap.type-email,
    .input-wrap.type-btn,
    .input-wrap.type-file {
        flex-wrap: wrap;
        gap: 16px;
    }
    .input-wrap.type-email .btn--form,
    .input-wrap.type-btn .btn--form,
    .input-wrap.type-file .btn--form {
        width: 100%;
        height: 57px;
    }
    .input-wrap.select-wrap::after {
        width: 24px;
        height: 24px;
        background-size: 24px 24px;
    }
    .form-checkbox__text {
        font-size: 14px;
    }
    /* 모바일에서도 select 옵션 배경색 일관성 유지 */
    .form-select option {
        background-color: white !important;
        color: var(--text-primary) !important;
    }
    .form-select option:hover,
    .form-select option:focus {
        background-color: var(--primary-color) !important;
        color: #fff !important;
    }
    .form-select option:checked,
    .form-select option[selected] {
        background-color: var(--primary-color) !important;
        color: #fff !important;
    }
}
/* 글자수 카운터 */
.input-group .char-counter {
    position: absolute;
    bottom: 12px;
    right: 24px;
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    text-align: right;
}
/* 큰 인풋 스타일 (봉헌하기 등에서 사용) */
.form-input.form-input--large {
    height: 64px;
    padding: 0 40px;
    border-radius: 8px;
    border: 1px solid var(--border-medium);
    font-size: 20px;
    transition: border-color 0.2s ease;
}
/* 플레이스홀더 스타일 */
.form-input::-moz-placeholder,
.form-textarea::-moz-placeholder {
    color: var(--text-muted);
}
.form-input::-webkit-input-placeholder,
.form-textarea::-webkit-input-placeholder {
    color: var(--text-muted);
}
.form-input::-ms-input-placeholder,
.form-textarea::-ms-input-placeholder {
    color: var(--text-muted);
}
.form-input:-ms-input-placeholder,
.form-textarea:-ms-input-placeholder {
    color: var(--text-muted);
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}
/* 폼 에러 메시지 */
.form-error {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    color: var(--accent-color);
    line-height: 1.5;
    text-align: left;
}
/* 폼 도움말 텍스트 */
.form-help {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    color: var(--text-secondary);
}
/* 폼 상태 */
.form-input--error,
.form-select--error,
.form-textarea--error {
    border-color: var(--accent-color);
    background-color: #fff5f5;
}
.form-input--error:focus,
.form-select--error:focus,
.form-textarea--error:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}
.input-group {
    margin-bottom: 24px;
}
.input-group:last-of-type {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 40px;
    }
    .form-label {
        margin-bottom: 6px;
    }
    .form-error {
        margin-top: 6px;
        font-size: 14px;
    }
    .input-group {
        margin-bottom: 20px;
    }
    .input-group:last-of-type {
        margin-bottom: 0;
    }
}
/* ========================================
   카드 컴포넌트
======================================== */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 19px;
}
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* 카드 플렉스 레이아웃 - 유연한 배치 */
.cards-flex {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px 20px;
}
.cards-flex .card {
    width: calc((100% - 20px * 3) / 4);
}
@media (max-width: 1280px) {
    .cards-flex .card {
        width: calc((100% - 20px * 2) / 3);
    }
}
@media (max-width: 1024px) {
    .cards-flex .card {
        width: calc((100% - 20px) / 2);
    }
}
@media (max-width: 480px) {
    .cards-flex .card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.card {
    background-color: white;
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}
.card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
}
.card__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e9ecef;
    background-color: #f8f9fa;
}

/* 이미지 카드 컴포넌트 */
.card.type--image .card__body {
    height: 120px;
}
.card.type--image .card__image {
    max-height: 158px;
    overflow: hidden;
}
.card.type--image:hover .card__image img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.card.type--image .card__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 281 / 158;
    object-fit: cover;
}
.card.type--image .card__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: keep-all;
    line-height: 1.4;
}
.card.type--image .card__title-text {
    position: relative;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}
.card.type--image .card__title-divider {
    display: inline-block;
    margin: 0 2px;
    width: 1px;
    height: 12px;
    background-color: var(--border-dark);
}
.card.type--image .card__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card__info .card__info-text {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}
.card__info .card__info-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 뉴스레터 그리드 영역 스타일 */
.cards-flex.type-newsletter .card.type--image .card__image {
    max-height: none;
}
.cards-flex.type-newsletter .card.type--image .card__body {
    height:76px;
}
.cards-flex.type-newsletter .card.type--image .card__image img {
    aspect-ratio: 779 / 1341;
}
.cards-flex.type-newsletter .card.type--image .card__info {
    display: none;
}
@media (max-width: 480px) {
    .cards-flex.type-newsletter .card {
        flex: 0 0 auto;
        width: calc((100% - 20px) / 2);
        min-width: 0;
    }
}
/* 아이콘 배지 - 접근성 텍스트 숨김 + 배경 이미지 */
.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}
.tag-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    border-radius: 40px;
}
/* NEW 배지 */
.tag-badge.type-new {
    color: var(--text-white);
    background-color: #f32735;
}
/* 첨부파일 배지 */
.icon-badge.type-attach {
    /* background-image: url("https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/images/icon/ico_document.svg"); */
    background-image: url("https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/images/icon/ico_download_black.svg");
}
/* 공지사항 배지 */
.tag-badge.type-notice {
    display: inline-block;
    margin-right: 12px;
    flex: 0 0 auto;
    border: 1px solid #747474;
    border-radius: 4px;
}
/* 배지 스타일 */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    border-radius: 40px;
    flex-shrink: 0;
}
.badge.type-primary {
    color: var(--text-white);
    background-color: var(--text-primary);
}
.badge.type-disabled {
    color: var(--text-primary);
    background-color: #f5f5f5;
}
.badge.type-highlight {
    color: var(--text-white);
    background-color: var(--primary-color);
}
.badge.type-outline {
    color: var(--text-primary);
    background-color: #fff;
    border: 1px solid var(--border-medium);
}
.badge.type-alert {
    color: #f32735;
    background-color: #fff;
    border: 1px solid #f32735;
}
.badge--square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    padding: 4px 8px;
    font-size: 12px;
    color: var(--text-white);
    background-color: var(--primary-color);
    border-radius: 4px;
}
.badge--square.type-disabled {
    color: var(--text-primary);
    background-color: var(--GRAY_02);
}
/* ========================================
   테이블 컴포넌트
======================================== */
.table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}
.table th,
.table td {
    padding: 17px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.4px;
    text-align: center;
}
.table th {
    background-color: var(--text-primary);
    color: #fff;
}
.table td {
    border-bottom: 1px solid var(--border-medium);
}
/* 스트라이프 테이블 */
.table--striped tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}
.table--striped tbody tr:nth-child(even):hover {
    background-color: #e9ecef;
}
/* 테이블 컨테이너 */
.table-container {
    width: 100%;
    margin-bottom: 80px;
    overflow: hidden;
}
.table-container:last-of-type {
    margin-bottom: 0;
}

/* 테이블 래퍼 (기본) */
.table-wrap {
    position: relative;
    overflow: hidden;
}
.table-wrap.type-scrollable {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table-wrap.type-scrollable .table {
    min-width: 816px;
}
.table-wrap .table {
    margin-bottom: 0;
    box-shadow: none;
}

/* 반응형 테이블 래퍼 */
.table-wrap--responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table-wrap--responsive .table {
    margin-bottom: 0;
    box-shadow: none;
    min-width: 100%;
}
/* 테이블 내 버튼 */
/* .table .btn {
  padding: 4px 8px;
  font-size: 12px;
  min-height: auto;
} */

/* 테이블 헤더 */
.table-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 24px;
}
.table-header__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.48px;
}
.table-header.type-between {
    justify-content: space-between;
}
.table-header.type-between p {
    position: static;
}
/* 테이블 버튼 */
.table-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
/* 테이블 서브 텍스트  */
.td-sub-text {
    font-size: 16px;
}
/* 테이블 고정 크기 */
.table-wrap.type-fixed {
    overflow-x: auto;
}
.table-wrap.type-fixed .table {
    table-layout: fixed;
}
/* 라디오 버튼 그룹 */
.form-radio-group {
    display: flex;
    align-items: center;
    gap: 24px;
}
.form-radio {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--font-size-base);
}
.form-radio input {
    width: 24px;
    height: 24px;
    accent-color: var(--primary-color);
}
@media screen and (max-width: 1280px) {
    .table-header {
        flex-direction: column;
        gap: 20px;
    }
    .table-header p {
        position: static;
    }
    .table-header.type-between {
        flex-direction: row;
    }
}
@media screen and (max-width: 768px) {
    .table-container {
        margin-bottom: 52px;
    }
    .table-header {
        margin-bottom: 20px;
    }
    .table-header__title {
        font-size: 20px;
    }
    .table-header p {
        font-size: 14px;
    }
    .table th,
    .table td {
        min-height: 64px;
        padding: 11px 16px;
        font-size: 14px;
    }
    .table-wrap .btn-wrap {
        margin-top: 32px;
    }
    .table td .td-sub-text {
        font-size: 14px;
    }
    .table-btn-wrap {
        margin-top: 32px;
    }
    .form-radio {
        gap: 8px;
    }
    .form-radio input {
        width: 16px;
        height: 16px;
    }
    .form-radio-group {
        gap: 16px;
    }
}
/* 가로형 테이블 */
.table.type-horizontal tr {
    border-bottom: 1px solid #cdcdcd;
}
.table.type-horizontal tr:first-of-type {
    border-top: 1px solid #cdcdcd;
}
.table.type-horizontal td {
    text-align: left;
    height: 64px;
    padding: 17px;
    vertical-align: middle;
}
.table.type-horizontal th {
    width: 128px;
    height: 64px;
    padding: 17px;
    vertical-align: middle;
}
@media screen and (max-width: 768px) {
    .table-container .badge {
        font-size: 14px;
    }
    .table.type-horizontal th {
        height: auto;
        min-height: auto;
    }
    .table.type-horizontal td {
        height: auto;
        min-height: auto;
    }
}
/* ========================================
   모달 컴포넌트
======================================== */
/* [정리] 기본 모달 레이아웃은 하단 공통 정의를 사용하도록 중복 선언 제거 */
/* 툴팁 모달 컨테이너 */
.modal--tooltip .modal__container {
    max-width: 476px;
}
.modal--tooltip .modal__header {
    margin-bottom: 0;
    /* padding: 24px 24px 16px; */
    border-bottom: none;
}
.modal--tooltip .modal__header .modal__title {
    font-size: 20px;
}
/* .modal--tooltip .modal__body {
  padding: 0 24px 24px;
} */
.modal--tooltip .modal__body p {
    margin-bottom: 8px;
    font-size: 16px;
}
.modal--tooltip .modal__body p:last-of-type {
    margin-bottom: 0;
}

/* ========================================
   슬라이드 팝업 모달 컴포넌트
======================================== */

/* 슬라이드 팝업 컨테이너 */
.modal-swiper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}
.modal-swiper .swiper {
    width: 100%;
    height: 100%;
}
.modal-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}
/* 슬라이드 컨텐츠 */
.modal-slide-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 2rem;
    gap: 1.5rem;
}
.modal-slide-image {
    flex: 0 0 auto;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.modal-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-slide-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.modal-slide-text h4 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}
.modal-slide-text p {
    margin: 0;
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}
.modal-slide-text ul {
    margin: 0;
    padding-left: 1.5rem;
    list-style: none;
}
.modal-slide-text li {
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.5;
}
.modal-slide-text li::before {
    content: "•";
    position: absolute;
    left: -1.5rem;
    color: #3498db;
    font-weight: bold;
}
/* 슬라이드 네비게이션 */
.modal-swiper .swiper-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.modal-swiper .swiper-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.modal-swiper .swiper-nav--prev {
    left: 15px;
}

.modal-swiper .swiper-nav--next {
    right: 15px;
}

.modal-swiper .swiper-nav-icon {
    width: 12px;
    height: 12px;
    border: 2px solid #3498db;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
}

.modal-swiper .swiper-nav--next .swiper-nav-icon {
    transform: rotate(225deg);
}

.modal__footer-left {
    display: flex;
    align-items: center;
}
.modal__footer-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}
/* 체크박스 스타일 */
.modal__checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}
.modal__checkbox {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #3498db;
}
.modal__checkbox-text {
    font-size: 0.9rem;
    color: #5a6c7d;
    font-weight: 500;
}
.modal__checkbox-label:hover .modal__checkbox-text {
    color: #2c3e50;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .modal--large .modal__container {
        max-width: 95%;
        width: 95%;
        margin: 1rem;
    }
    .modal-swiper {
        height: 400px;
    }
    .modal-slide-content {
        padding: 1.5rem;
        gap: 1rem;
    }
    .modal-slide-image {
        height: 150px;
    }
    .modal-slide-text h4 {
        font-size: 1.25rem;
    }
    .modal-swiper .swiper-nav {
        width: 35px;
        height: 35px;
    }
    .modal-swiper .swiper-nav--prev {
        left: 10px;
    }
    .modal-swiper .swiper-nav--next {
        right: 10px;
    }
    /* 모바일에서 인디케이터 위치 조정 */
    .modal-swiper .swiper-indicator {
        top: 10px;
        right: 10px;
        gap: 6px;
    }
    .modal-swiper .swiper-indicator-item {
        padding: 4px 8px;
    }
    .modal-swiper .swiper-indicator-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .modal-swiper {
        height: 350px;
    }

    .modal-slide-content {
        padding: 1rem;
    }

    .modal-slide-image {
        height: 120px;
    }

    .modal-slide-text h4 {
        font-size: 1.1rem;
    }

    .modal-slide-text p {
        font-size: 0.9rem;
    }

    .modal-slide-text li {
        font-size: 0.85rem;
    }
}

.modal-component__body {
    padding: 32px;
}

.modal-component__footer {
    padding: 24px 32px;
    border-top: 1px solid var(--border-light);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

/* 모달 크기 */
.modal-component--sm .modal-component__content {
    max-width: 300px;
}

.modal-component--lg .modal-component__content {
    max-width: 800px;
}

.modal-component--xl .modal-component__content {
    max-width: 1200px;
}

/* ========================================
   네비게이션 컴포넌트
======================================== */

.nav {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: #3498db;
    text-decoration: none;
}

.nav-link.active {
    color: #3498db;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #3498db;
}

/* ========================================
   탭 컴포넌트
======================================== */
.tabs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 64px;
    gap: 12px;
}
.tabs__tab {
    flex: 0 0 auto;
    padding: 10px 20px;
    font-size: var(--font-size-small);
    font-weight: 600;
    line-height: normal;
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    border-radius: 40px;
    transition: all 0.2s ease;
}
.tabs__tab[aria-selected="true"] {
    color: var(--text-white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.tabs__tab:hover {
    color: var(--text-white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.tabs__panel[hidden] {
    display: none;
}
/* 반응형 스타일 */
@media (max-width: 768px) {
    .tabs {
        flex-wrap: nowrap;
        gap: 8px;
        width: calc(100% + 20px);
        padding-right: 20px;
        padding-bottom: 5px;
        margin-right: -20px;
        margin-bottom: 40px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    .tabs__tab {
        font-size: 14px;
        scroll-snap-align: start;
    }
    .tabs.type-full {
        padding: 0;
    }
}
/* 탭 타입 스타일 */
.tabs.type-full {
    width: 100%;
    gap: 0;
}
.tabs.type-full .tabs__tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 0;
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: normal;
    color: #747474;
    border: 1px solid var(--border-medium);
    border-left:0;
    border-radius: 0;
}
.tabs.type-full .tabs__tab:hover {
    color: #747474;
    border: 1px solid var(--border-medium);
    border-left:0;
    background-color: transparent;
}
.tabs.type-full .tabs__tab[aria-selected="true"] {
    color: var(--text-white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-left:0;
}
.tabs.type-full .tabs__tab:first-child, .tabs.type-full .tabs__tab:first-child:hover {
    border: 1px solid var(--border-medium);
}

@media screen and (max-width: 768px) {
    .tabs.type-full .tabs__tab {
        font-weight: 400;
    }
}
/* ========================================
   서브페이지 스타일
======================================== */

/* 콘텐츠 헤더 - 총 건수 표시 */
.content-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.content-header__count {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.content-header__count strong {
    color: var(--text-primary);
    font-weight: 800;
}

/* 페이지네이션 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 80px;
    padding: 20px 0;
}
.pagination__group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.pagination__group--middle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    color: var(--text-tertiary);
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.pagination__link:hover {
    background-color: var(--GRAY_01);
    color: var(--primary-color);
}
.pagination__link--active {
    color: var(--text-white);
    background-color: var(--primary-color);
    pointer-events: none;
}
.pagination__link--first,
.pagination__link--last,
.pagination__link--prev,
.pagination__link--next {
    padding: 0;
    min-width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    transition: all 0.2s ease;
}
.pagination__link img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.pagination__link--prev img,
.pagination__link--first img {
    transform: rotate(180deg);
}
.pagination__link--next:hover {
    background-color: var(--GRAY_01);
    color: var(--primary-color);
}
/* Disabled 상태 */
.pagination__link.disabled,
.pagination__link[aria-disabled="true"] {
    color: var(--text-tertiary);
    background-color: transparent;
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.5;
}
.pagination__link.disabled:hover,
.pagination__link[aria-disabled="true"]:hover {
    background-color: transparent;
    color: var(--text-tertiary);
}
/* 페이지네이션 반응형 */
@media (max-width: 768px) {
    .pagination {
        position: relative;
        gap: 8px;
        margin-top: 30px;
    }
    .pagination__group {
        gap: 8px;
    }
    .pagination__group--first,
    .pagination__group--last {
        gap: 0;
    }
    .pagination__group--middle {
        gap: 8px;
    }
    .pagination__link {
        min-width: 24px;
        height: 24px;
        padding: 0 8px;
        font-size: 14px;
    }
    .pagination__link--first,
    .pagination__link--last,
    .pagination__link--prev,
    .pagination__link--next {
        min-width: 36px;
        height: 36px;
        padding: 0;
    }
    .pagination__link img {
        width: 24px;
        height: 24px;
    }
}

/* ========================================
   Swiper.js 커스텀 스타일
======================================== */
/* 메인 배너 슬라이더 */
.banner-swiper {
    /* height: 100vh; */
    min-height: 600px;
    position: relative;
}
.banner-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}
.banner-swiper .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.banner-slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}
.banner-slide-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.banner-slide-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}
.banner-slide-button {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.15s ease-in-out;
}
.banner-slide-button:hover {
    background: var(--primary-dark);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* 카드형 슬라이더 */
.card-swiper {
    padding: 32px 0;
}

.card-swiper .swiper-slide {
    height: auto;
}

.card-slide-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: 0.3s ease-in-out;
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-slide-content:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-slide-image {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

.card-slide-body {
    padding: 24px;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-slide-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.card-slide-description {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.card-slide-meta {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: auto;
}

/* Swiper 네비게이션 커스텀 (기본) */
.swiper-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 10;
    transition: 0.15s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.swiper-nav:hover {
    background: white;
    -webkit-transform: translateY(-50%) scale(1.1);
    -ms-transform: translateY(-50%) scale(1.1);
    transform: translateY(-50%) scale(1.1);
}
.swiper-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.swiper-nav:disabled:hover {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
}
.swiper-nav--prev {
    left: 24px;
}
.swiper-nav--next {
    right: 24px;
}
.swiper-nav::after {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-bottom: none;
    border-right: none;
}
.swiper-nav--prev::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-left: 4px;
}
.swiper-nav--next::after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-right: 4px;
}
.swiper-button-lock {
    display: none !important; /* 설명: 단일/부족 슬라이드 시 내비 버튼을 완전히 숨김 */
}
@media (max-width: 768px) {
    .swiper-nav::after {
        width: 16px;
        height: 16px;
    }
}
/* Swiper 인디케이터 (하단) */
.swiper-indicator {
    position: absolute;
    bottom: 16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 50%;
    color: white;
    font-size: 12px;
    z-index: 10;
}
.swiper-indicator-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 2px;
    transition: 0.15s ease-in-out;
    cursor: pointer;
}
.swiper-indicator-item:hover {
    background: rgba(255, 255, 255, 0.2);
}
.swiper-indicator-item.active {
    background: var(--primary-color);
    color: white;
}
.swiper-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: 0.15s ease-in-out;
}
.swiper-indicator-item.active .swiper-indicator-dot {
    background: white;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.swiper-indicator-text {
    font-size: 12px;
    font-weight: 500;
}
/* 진행바 */
.swiper-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary-color);
    z-index: 10;
    transition: width 0.3s ease;
}
/* 자동재생 인디케이터 */
.swiper-autoplay-indicator {
    position: absolute;
    top: 24px;
    right: 24px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    z-index: 10;
}
.swiper-autoplay-toggle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    transition: 0.15s ease-in-out;
}

.swiper-autoplay-toggle--paused {
    background: var(--GRAY_04);
}

/* 터치 스와이프 인디케이터 */
.swiper-touch-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: none;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    z-index: 10;
    transition: opacity 0.5s ease;
}

.swiper-touch-arrow {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: swipeHint 2s infinite;
    animation: swipeHint 2s infinite;
}

@-webkit-keyframes swipeHint {
    0%,
    100% {
        -webkit-transform: rotate(-45deg) translateX(0);
        transform: rotate(-45deg) translateX(0);
    }
    50% {
        -webkit-transform: rotate(-45deg) translateX(10px);
        transform: rotate(-45deg) translateX(10px);
    }
}

@keyframes swipeHint {
    0%,
    100% {
        -webkit-transform: rotate(-45deg) translateX(0);
        transform: rotate(-45deg) translateX(0);
    }
    50% {
        -webkit-transform: rotate(-45deg) translateX(10px);
        transform: rotate(-45deg) translateX(10px);
    }
}

/* Swiper 슬라이드 효과 */
.banner-swiper .swiper-slide {
    opacity: 1;
}

/* 반응형 Swiper 스타일 */
@media (max-width: 767px) {
    .banner-slide-title {
        font-size: 30px;
    }

    .banner-slide-subtitle {
        font-size: 16px;
    }

    .banner-swiper .swiper-nav {
        width: 40px;
        height: 40px;
    }

    .banner-swiper .swiper-nav--prev {
        left: 16px;
    }

    .banner-swiper .swiper-nav--next {
        right: 16px;
    }

    .banner-swiper .swiper-nav::after {
        width: 16px;
        height: 16px;
    }

    .banner-swiper .swiper-autoplay-indicator {
        top: 16px;
        right: 16px;
        padding: 4px 8px;
    }

    .banner-swiper .swiper-pagination {
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .banner-swiper {
        height: 70dvh; /* 사파리 주소창 높이 변화 대응: dvh 사용 */
        min-height: 500px;
    }

    .banner-slide-title {
        font-size: 24px;
    }
}

/* ========================================
   모달 컴포넌트
======================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; /* dvh 미지원 브라우저 fallback */
    height: 100dvh; /* 사파리 주소창 높이 변화 대응: dvh 사용 */
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: var(--z-popover);
    padding: 24px;
    -webkit-transform: translateZ(
            0
    ); /* iOS Safari fixed 위치 안정화를 위한 GPU 가속 */
    transform: translateZ(0);
}

.modal[aria-hidden="false"] {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    visibility: visible;
    opacity: 1;
}

.modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.modal__container {
    position: relative;
    max-width: 556px;
    width: 100%;
    max-height: 90dvh; /* 사파리 주소창 높이 변화 대응: dvh 사용 */
    padding: 24px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 4px 4px 64px 0 rgba(0, 0, 0, 0.08);
    overflow-y: auto;
    z-index: 1001;
    /* 모달 공통 애니메이션 초기 상태 (fade in + scale up) */
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
/* 모달 열릴 때 애니메이션 */
.modal--opening .modal__container {
    opacity: 1;
    transform: scale(1);
}
/* 모달 닫힐 때 애니메이션 */
.modal--closing .modal__container {
    opacity: 0;
    transform: scale(0.95);
}

.modal--small .modal__container {
    max-width: 400px;
}

.modal--large .modal__container {
    max-width: 900px;
    width: min(95%, 900px);
}

.modal__header {
    padding-bottom: 20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.modal__body {
    width: 100%;
    height: auto;
    max-height: 500px;
    overflow-y: auto;
}
.modal__title {
    margin: 0;
    font-size: var(--font-size-large);
    font-weight: 600;
    color: var(--text-primary);
}
.modal__content .modal-content__text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.5;
    letter-spacing: -0.32px;
    word-break: keep-all;
}
.modal__close {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background: url("https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/images/icon/ico_btn_close.svg") no-repeat center
    center / 24px 24px;
    border-radius: 2px;
    transition: 0.15s ease-in-out;
}

.modal__close:hover {
    background-color: var(--GRAY_01);
    color: var(--text-primary);
}

.modal__footer {
    padding-top: 16px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.modal__footer .btn {
    min-width: auto;
}
/* 모달 컨텐츠 */
.modal__content .info-box {
    padding: 18px 20px;
    background-color: var(--GRAY_01);
    border-radius: 8px;
}
.modal__content .info-box p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.36px;
    word-break: keep-all;
}
/* 모달 내부 요소의 프로그래밍 방식 포커스 시 파란색 테두리 제거 (접근성 유지) */
.modal button.programmatic-focus:focus-visible,
.modal input.programmatic-focus:focus-visible,
.modal textarea.programmatic-focus:focus-visible,
.modal select.programmatic-focus:focus-visible {
    outline: none;
}

/* 모바일 반응형 */
@media (max-width: 767px) {
    .modal {
        padding: 0;
    }
    .modal__container {
        position: absolute;
        bottom: 0;
        max-width: 100%;
        max-height: 95dvh; /* 사파리 주소창 높이 변화 대응: dvh 사용 */
        padding: 20px;
        border-radius: 16px 16px 0 0;
        /* 모바일에서는 fade in up 애니메이션 사용 (scale 대신 translateY) */
        transform: translateY(100%);
    }
    /* 모바일에서 열릴 때 애니메이션 */
    .modal--opening .modal__container {
        transform: translateY(0);
    }
    /* 모바일에서 닫힐 때 애니메이션 */
    .modal--closing .modal__container {
        transform: translateY(100%);
    }
    .modal__header {
        padding-bottom: 20px;
    }
    .modal__footer {
        padding-top: 32px;
    }
    .modal--small .modal__container {
        max-width: 100%;
    }
}

/* ========================================
   정보 모달 스타일
======================================== */
.modal--info .modal__container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 95dvh; /* 사파리 주소창 높이 변화 대응: dvh 사용 */
    padding: 40px 64px;
    border-radius: 16px 16px 0 0;
    /* fade in up 애니메이션 초기 상태 (일반 모달 애니메이션 오버라이드) */
    transform: translateY(100%);
}
/* fade in up 애니메이션 활성화 */
.modal--info.modal--opening .modal__container {
    opacity: 1;
    transform: translateY(0);
}
/* fade out down 애니메이션 (닫힐 때) */
.modal--info.modal--closing .modal__container {
    opacity: 0;
    transform: translateY(100%);
}
.modal--info .modal__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
@media screen and (max-width: 768px) {
    .modal--info .modal__container {
        padding: 24px;
    }
}
/* ========================================
   아코디언 컴포넌트
======================================== */

.accordion {
    border-top: 1px solid var(--border-light);
    overflow: hidden;
}

.accordion__item {
    border-bottom: 1px solid var(--border-light);
}

.accordion__trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 30px 40px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.accordion__trigger:hover {
    background-color: #f8f9fa;
}

/* .accordion__trigger[aria-expanded="true"] {
  background-color: #e3f2fd;
  color: #1976d2;
} */

.accordion__trigger[aria-expanded="true"] .accordion__icon {
    transform: rotate(180deg);
}

.accordion__title {
    flex: 1;
    margin-right: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.8px;
    word-break: keep-all;
}
.accordion__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 32px;
    height: 32px;
    position: relative;
    display: inline-block;
}
.accordion__icon::before {
    content: "";
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--text-primary);
    border-bottom: 2px solid var(--text-primary);
}
.accordion__trigger[aria-expanded="true"] .accordion__icon {
    transform: rotate(180deg);
}
.accordion__panel {
    overflow: hidden;
}
.accordion__trigger[aria-expanded="false"] + .accordion__panel {
    display: none;
}
.accordion__content {
    padding: 40px;
    background-color: var(--GRAY_01, #f5f5f5);
}
.accordion__content p {
    font-size: var(--font-size-base);
    line-height: 1.56;
    letter-spacing: -0.8px;
}

.accordion__content p:last-child {
    margin-bottom: 0;
}

/* 여러 항목 동시 열기 허용 모드 */
/* .accordion--multiple .accordion__trigger[aria-expanded="true"] {
  background-color: #e8f5e8;
  color: #2e7d32;
}

.accordion--multiple
  .accordion__trigger[aria-expanded="true"]
  .accordion__icon {
} */

/* faq 아코디언 */
.accordion--faq-category {
    border-top:0;
}
.accordion--faq .accordion__trigger {
    position: relative;
    padding-left: 100px;
}
.accordion--faq .accordion__trigger::before {
    content: "Q";
    position: absolute;
    left: 40px;
    top: 26px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 40px;
}
.accordion--faq .accordion__content {
    position: relative;
    padding-left: 100px;
}
.accordion--faq .accordion__content::before {
    content: "A";
    position: absolute;
    left: 40px;
    top: 35px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 40px;
}
.accordion--faq .accordion__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* text-overflow와 white-space는 transition 불가능 - 대신 max-height로 부드러운 효과 구현 */
    max-height: 1.5em; /* 한 줄 높이 (line-height 기반) */
    transition: max-height 0.3s ease;
}
.accordion--faq-category .accordion__empty {
    border-top: 1px solid var(--border-light)
}
.accordion--faq-category .accordion__item {
    border-top: 1px solid var(--border-light);
    border-bottom: 0;
}
.accordion--faq-category .accordion__item:last-child {
    border-bottom: 1px solid var(--border-light);
}
.accordion--faq-category .accordion__item .accordion__panel--category .accordion--multiple:first-child {
    border-top:0;
}
.accordion--faq-category .accordion__item .accordion__panel--category .accordion--multiple .accordion__item:last-child {
    border-bottom:0;
}
.accordion__trigger[aria-expanded="true"] .accordion__title {
    text-overflow: visible;
    white-space: normal;
    /* 열림 상태: 충분히 큰 max-height로 전체 텍스트 표시 */
    max-height: 500px; /* 여러 줄을 수용할 수 있는 충분한 높이 */
}
/* 아코디언 반응형 */
@media (max-width: 768px) {
    .accordion .accordion__trigger {
        padding: 20px 12px;
    }
    .accordion .accordion__title {
        font-size: 14px;
    }
    .accordion .accordion__content {
        padding: 20px 12px;
    }
    .accordion .accordion__content p {
        font-size: 14px;
    }
    .accordion--faq .accordion__trigger {
        padding-left: 20px;
    }
    .accordion--faq .accordion__trigger::before {
        display: none;
    }
    .accordion--faq .accordion__content {
        padding-left: 20px;
    }
    .accordion--faq .accordion__content::before {
        display: none;
    }
}

/* ========================================
   쿠키 설정 아코디언 (type-cookie)
======================================== */
.accordion.type-cookie {
    border-top: none;
}
/* 쿠키 아코디언 헤더 (트리거 + 토글 버튼 영역) */
.accordion.type-cookie .accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    transition: all 0.2s ease;
}
.accordion.type-cookie .accordion__trigger {
    position: relative;
    flex: 1;
    padding: 0;
    gap: 20px;
}
.accordion.type-cookie .accordion__trigger:hover {
    background-color: transparent;
}
.accordion.type-cookie .accordion__header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.accordion.type-cookie .accordion__header-left .accordion__title {
    margin-right: 0;
    font-size: var(--font-size-base);
}
.accordion.type-cookie .accordion__header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.accordion.type-cookie .accordion__header-right .toggle-text {
    font-size: var(--font-size-base);
    color: #666;
}
.modal__body .accordion.type-cookie {
    border-top: none;
    margin: 0;
}
.modal__body .accordion.type-cookie .accordion__item:first-child {
    border-top: 1px solid var(--border-light);
}
.modal__body .accordion.type-cookie .accordion__content {
    max-height: 167px;
    padding: 16px 24px;
    background-color: #fff;
    overflow-y: auto;
}
.modal__body .accordion.type-cookie .accordion__content p {
    font-size: var(--font-size-small);
}
@media (max-width: 768px) {
    .accordion.type-cookie .accordion__header {
        padding: 20px 0;
    }
}
/* ========================================
   토글 스위치 컴포넌트
======================================== */

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--GRAY_03);
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-switch__slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-switch__slider {
    background-color: var(--primary-color);
}

.toggle-switch input:focus + .toggle-switch__slider {
    box-shadow: 0 0 1px var(--primary-color);
}

.toggle-switch input:checked + .toggle-switch__slider:before {
    transform: translateX(24px);
}

.toggle-switch input:disabled + .toggle-switch__slider {
    background-color: #e0e0e0;
    cursor: not-allowed;
    opacity: 0.6;
}

.toggle-switch input:disabled:checked + .toggle-switch__slider {
    background-color: var(--primary-color);
    opacity: 0.6;
}

/* ========================================
   단체참여 폼 컴포넌트
======================================== */

/* 단계별 안내 */
.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.form-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.form-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: #dee2e6;
    z-index: 1;
}

.form-step__number {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.form-step__content h5 {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.form-step__content small {
    font-size: 12px;
    color: #6c757d;
}

/* 폼 제목 */
.form-section-title {
    margin-bottom: 2rem;
    text-align: center;
}

.form-section-title h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-section-title h4 {
    font-size: 18px;
    font-weight: 500;
    color: #6c757d;
    margin: 0;
}

/* 단체참여 폼 */
.group-registration-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 입력 그룹 (입력 필드 + 중복확인 버튼) */
.form-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.form-input-group .form-input {
    flex: 1;
}

.form-input-group .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* 폼 액션 버튼 */
.form-actions {
    margin-top: 32px;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .form-steps {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .form-step:not(:last-child)::after {
        display: none;
    }
    .form-step__number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    .form-step__content h5 {
        font-size: 13px;
    }
    .group-registration-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    .form-input-group {
        flex-direction: column;
    }
    .form-input-group .btn {
        width: 100%;
    }
    .form-actions .btn {
        min-width: auto;
        width: 100%;
    }
    .form-actions {
        margin-top: 20px;
    }
}
@media (max-width: 480px) {
    .form-section-title h3 {
        font-size: 20px;
    }
    .form-section-title h4 {
        font-size: 16px;
    }
    .group-registration-form {
        padding: 1rem;
        margin: 0 0.5rem;
    }
}
/* ========================================
   스크롤 투 탑 버튼
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: calc(100vw / 1920 * 58);
    width: 64px;
    height: 64px;
    background: var(--text-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transform: translateZ(
            0
    ); /* iOS Safari fixed 위치 안정화를 위한 GPU 가속 */
    transform: translateZ(0);
}
.scroll-to-top:hover {
    background: var(--primary-color);
    -webkit-transform: translateY(-2px) translateZ(0); /* iOS Safari fixed 위치 안정화 유지 */
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}
.scroll-to-top:active {
    -webkit-transform: translateY(0) translateZ(0); /* iOS Safari fixed 위치 안정화 유지 */
    transform: translateY(0) translateZ(0);
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}
/* 반응형 디자인 */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
/* @media (max-width: 480px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
} */
/* ========================================
   이미지 스와이프 스타일
======================================== */
.image-swiper {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 80px;
    padding: 0 50px 30px;
}
.image-swiper.is-single-slide {
    padding: 0; /* 변경사항: 이미지 한 장일 때 패딩 제거 */
}
.image-swiper .swiper-wrapper {
    position: relative;
}
.image-swiper .swiper-slide {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
}
.image-swiper .swiper-slide img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    max-height: 565px;
}
@media (max-width: 768px) {
    .image-swiper {
        margin-top: 40px;
        padding: 0 40px 20px;
    }
    .image-swiper.is-single-slide {
        padding: 0; /* 변경사항: 모바일에서도 단일 슬라이드 시 패딩 제거 */
    }
    .image-swiper .swiper-slide img {
        height:160px;
    }
}
/* ========================================
   스와이프 네비게이션 스타일
======================================== */
.swiper-nav {
    position: absolute;
    top: calc(50% - 20px);
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background-color: transparent;
    box-shadow: none;
}
.swiper-nav::after {
    border-color: var(--black);
}
.swiper-nav--prev {
    left: 0;
}
.swiper-nav--next {
    right: 0;
}
/* ========================================
   스와이프 페이지네이션 스타일 (dots)
======================================== */
.dots-swiper-pagination {
    margin-top: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.dots-swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 0;
    background: #d9d9d9;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}
.dots-swiper-pagination .swiper-pagination-bullet.active {
    background: var(--primary-color);
}
/* 스와이프 페이지네이션 반응형 (dots)*/
@media (max-width: 1280px) {
    .dots-swiper-pagination {
        margin-top: 18px;
    }
    .dots-swiper-pagination .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
    }
}
@media (max-width: 768px) {
    .dots-swiper-pagination {
        margin-top: 16px;
    }
    .dots-swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }
}
@media (max-width: 480px) {
    .dots-swiper-pagination {
        margin-top: 12px;
    }
    .dots-swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

/* ========================================
   슬라이더 팝업 컴포넌트
   ======================================== */

/* 슬라이더 팝업 기본 스타일 - iOS Safari fixed 위치 안정화 */
.slider-popup {
    position: fixed;
    top: calc(13% + var(--lang-notice-h, 0px));
    right: 10.5%;
    z-index: 1000;
    background: white;
    border-radius: 12px;
    width: 320px;
    /*max-height: 574px;*/
    overflow: hidden;
    box-shadow: 4px 4px 64px 0 rgba(0, 0, 0, 0.08);
    /* slider-popup 공통 애니메이션 초기 상태 (fade in + scale up) + iOS Safari GPU 가속 */
    opacity: 0;
    -webkit-transform: scale(0.95) translateZ(0);
    transform: scale(0.95) translateZ(0);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
/* slider-popup 열릴 때 애니메이션 */
.slider-popup--opening {
    opacity: 1;
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
}
/* slider-popup 닫힐 때 애니메이션 */
.slider-popup--closing {
    opacity: 0;
    -webkit-transform: scale(0.95) translateZ(0);
    transform: scale(0.95) translateZ(0);
}
.slider-popup__header {
    width: 100%;
    padding: 24px 0 20px;
}
.slider-popup__title {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    letter-spacing: -0.48px;
    word-break: keep-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2; /* 표준 속성 - 크로스 브라우징 호환성 */
    overflow: hidden;
}
.slider-popup__close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
}
.slider-popup__body {
    min-height: 440px;
    padding: 0 24px;
    overflow: hidden;
    display:flex;
    flex-direction: column;
}
.slider-popup__swiper {
    width: 100%;
    height:100%;
    flex:1;
}
.slider-popup .slider-popup__content {
    width: 100%;
    height: auto;
    /* padding-top: 24px; */
    /* overflow-y: auto; */
}
.slider-popup .slider-popup__image {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}
.slider-popup .slider-popup__image img {
    display: block;
    width: 100%;
    max-height: 384px;
    object-fit: cover;
}

.slider-popup .slider-popup__image img.post {
    height: 200px;
}
.slider-popup .slider-popup__text {
    height: 112px;
    margin-top: 24px;
    overflow-y: auto;
}
.slider-popup .no-image .slider-popup__text {
    height:100%;
    max-height:300px;
}
.slider-popup .slider-popup__text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.5;
    letter-spacing: -0.32px;
    word-break: keep-all;
}
.slider-popup .slider-popup__content:not(.no-image) .slider-popup__text p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
}
.slider-popup .btn-wrap {
    margin-top: 20px;
    padding-bottom: 5px;
}
.slider-popup .btn {
    min-height: 36px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 16px;
}
.slider-popup__body .swiper-pagination {
    position: absolute;
    right: 24px;
    top: 24px;
    left: auto;
    width: auto;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.slider-popup__body .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}
.slider-popup__body .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
}
/* 슬라이드가 1개인 경우 네비게이션 숨기기 */
.slider-popup.single-slide .slider-popup__nav {
    /*display: none;*/
}
.slider-popup.single-slide .slider-popup__btn {
    display: none;
}
.slider-popup .slider-popup__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}
.slider-popup .slider-popup__footer button {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.5;
    letter-spacing: -0.32px;
}
.slider-popup__nav {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
}
.slider-popup__nav button {
    width: 42px;
    height: 42px;
    display: inline-block;
    cursor: pointer;
}
.slider-popup__nav .slider-popup__btn--prev::after,
.slider-popup__nav .slider-popup__btn--next::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background: #fff url(https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/images/icon/ico_arrow_r_black.svg) no-repeat 60%
    50% / 26px 26px;
    border: 1px solid #222;
    border-radius: 50%;
}
.slider-popup__nav .slider-popup__btn--prev::after {
    transform: rotate(-180deg);
}
.slider-popup__nav .slider-popup__btn--prev:disabled,
.slider-popup__nav .slider-popup__btn--next:disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}
/* .slider-popup__swiper .swiper-slide {
  max-height: 460px;
} */
@media (max-width: 768px) {
    .slider-popup {
        position: absolute;
        top: calc(10dvh + var(--lang-notice-h, 0px)); /* 사파리 주소창 높이 변화 대응: dvh 사용 */
        left: 50%;
        /* 모바일에서는 translateX와 scale을 함께 사용 */
        transform: translateX(-50%) scale(0.95);
    }
    /* 모바일에서 열릴 때 애니메이션 */
    .slider-popup--opening {
        transform: translateX(-50%) scale(1);
    }
    /* 모바일에서 닫힐 때 애니메이션 */
    .slider-popup--closing {
        transform: translateX(-50%) scale(0.95);
    }
    .slider-popup__header {
        padding: 20px 0 12px;
    }
    .slider-popup__body {
        padding: 0 24px;
    }
    .slider-popup__swiper {
        width: 100%;
    }
    .slider-popup .slider-popup__footer {
        padding: 12px 24px 20px;
    }
    .slider-popup__title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .slider-popup .btn-wrap {
        margin-top: 12px;
    }
    .slider-popup .btn {
        font-size: 14px;
    }
    .slider-popup .slider-popup__footer button {
        font-size: 14px;
    }
    .slider-popup__body .swiper-pagination {
        top: 20px;
    }
    .slider-popup__nav button {
        width: 40px;
        height: 40px;
    }
}
/* ========================================
   검색 폼 컴포넌트
======================================== */
.search-form {
    position: relative;
    width: 80%;
    max-width: 702px;
}
.search-form__inner {
    position: relative;
}
.search-form__input {
    position: relative;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    max-width: 100%;
    height: 60px;
    padding: 20px 56px 20px 24px;
    border: 1px solid var(--border-medium);
    border-radius: 32px;
    color: var(--text-primary);
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.4px;
    background: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}
.search-form__input::placeholder {
    color: var(--text-muted);
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.4px;
}
.search-form__input::-webkit-search-cancel-button,
.search-form__input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}
.search-form__input:focus {
    border: 2px solid var(--text-primary);
}
.search-form__submit {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}
.search-form__input:not(:placeholder-shown)
+ .search-form__clear
~ .search-form__submit {
    opacity: 0;
    visibility: hidden;
}
.search-form__submit img {
    width: 100%;
    height: 100%;
    opacity: 0.45;
}
.search-form__clear {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    z-index: 2;
}
.search-form__input:not(:placeholder-shown) + .search-form__clear {
    opacity: 1;
    visibility: visible;
}
.search-form__clear:hover {
    opacity: 0.7;
}
.search-form__clear img {
    width: 100%;
    height: 100%;
}
.search-form-board {
    display: flex;
    justify-content: center;
    align-items:stretch;
    gap:8px;
    margin:32px auto 24px;
}
.search-form-board__input-wrap {
    position:relative;
}
.search-form-board__input {
    width: 280px;
    border-radius: 8px;
    border: 1px solid #CDCDCD;
    background: #FFF;
    color:#000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.4px;
    padding:8px 42px 8px 24px;
    outline: none;
}
.search-form-board__input::placeholder {
    color: #BCBCBC;
}
.search-form-board__input:not(:placeholder-shown){
    border-color:#0047BB;
}
.search-form-board__input__clear {
    position:absolute;
    top:50%;
    right:12px;
    transform:translateY(-50%);
    width:24px;
    height:auto;
    aspect-ratio: 1/1;
    text-indent:-999px;
    overflow:hidden;
    background:url('https://objectstorage.ap-seoul-1.oraclecloud.com/n/cnla9ryzc1ev/b/dev-wydseoul-public-resources/o/assets/images/icon/ico_btn_close.svg') center / 100% auto no-repeat;
    border:0;
    opacity: 0;
    visibility: hidden;
}
.search-form-board__input:not(:placeholder-shown) + .search-form-board__input__clear {
    opacity: 1;
    visibility: visible;
}
.search-form-board__submit {
    border-radius: 8px;
    background: url('https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/page/ico-search-bb93f1fc4ae7174c50f34fa000b41f40.svg') center / 24px auto no-repeat #0047BB;
    color: #FFF;
    display:flex;
    justify-content: center;
    align-items: center;
    width:64px;
    text-indent:-999px;
    overflow:hidden;
}
.search-form-board__refresh {
    width:24px;
    padding:0 3px;
    background:url('https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/page/ico-refresh-7b8dee29d9769ee4e77c5833888b7a45.png') center / 15px auto no-repeat #fff;
    text-indent:-999px;
    overflow:hidden;
}
.accordion__trigger--category .accordion__title {
    color: #121212;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.96px;
}
.accordion__empty {
    display: flex;
    height: 100px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
}
.accordion__empty-text {
    color: #222;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.56;
    letter-spacing: -0.4px;
}
.accordion__search-total {
    padding-bottom:20px;
    border-bottom: 1px solid #E5E5E5;
}
.accordion__search-total-text {
    color: #222;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.4px;
}
.accordion__search-total-text span, .search-bold {
    color: #0047BB;
    font-weight:600;
}
/* 모바일 반응형 - 767px 이하 */
@media (max-width: 767px) {
    .search-layer__inner {
        width: 100%;
        max-width: 100%;
        padding: 10px 20px;
    }
    .search-form {
        width: 100%;
    }
    .search-form__input {
        height: 44px;
        padding: 10px 54px 10px 20px;
        font-size: 16px;
    }
    .search-form__input::placeholder {
        font-size: 16px;
    }
    .search-form__submit,
    .search-form__clear {
        width: 20px;
        height: 20px;
        right: 16px;
    }

    .search-form-board__input {
        width:100%;
        height:100%;
        font-size:16px;
        padding:10px 16px;
        border-radius:4px;
    }
    .search-form-board__submit {
        font-size:16px;
        padding:0 22px;
    }
    .accordion__trigger--category .accordion__title {
        font-size:20px;
    }
    .accordion--faq .accordion__trigger, .accordion--faq .accordion__content {
        padding: 20px 12px;
    }
    .accordion__empty-text {
        font-size: 16px;
        padding:24px 0;
    }
    .accordion__search-total {
        padding-bottom:8px;
    }
    .accordion__search-total-text {
        font-size: 14px;
    }
}
/* 불렛 리스트 (기본) */
.bullet-list {
    list-style: none;
    margin-top: 24px;
    padding: 0;
    margin: 0;
}
.bullet-list li {
    position: relative;
    margin-bottom: 16px;
    padding-left: 15px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.36px;
    color: var(--text-primary);
}
.bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 4px;
    height: 4px;
    background-color: var(--text-primary);
    border-radius: 50%;
}
.bullet-list li:last-child {
    margin-bottom: 0;
}
.bullet-list.type-none li {
    padding: 0;
}
.bullet-list.type-none li::before {
    display: none;
}
@media (max-width: 768px) {
    .bullet-list li {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .bullet-list li::before {
        width: 3px;
        height: 3px;
        top: 9px;
    }
}
/* 이미지 설명 */
.img-description {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.32px;
    color: var(--text-primary);
}
/* 기준 시각*/
.standard-time {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-secondary);
    word-break: keep-all;
}
@media (max-width: 768px) {
    .standard-time {
        font-size: 14px;
    }
}
/* ========================================
   개인정보 정책 리스트
======================================== */
.policy-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.policy-list__row {
    margin-bottom: 20px;
}
.policy-list__row:last-child {
    margin-bottom: 0;
}
.policy-list dt {
    margin-bottom: 4px;
    font-size: var(--font-size-small);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    letter-spacing: -0.32px;
}
.policy-list dd {
    margin: 0;
    font-size: var(--font-size-small);
    color: var(--text-secondary);
    line-height: 1.6;
    letter-spacing: -0.32px;
    word-break: keep-all;
}
/* ========================================
   개인정보 정책 박스
======================================== */
.privacy-info-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.privacy-info-box__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.4px;
    color: var(--text-primary);
}
.privacy-info-box a.link-underline {
    color: var(--text-primary);
}

/* ========================================
   체크박스 컴포넌트 스타일
======================================== */
.checkbox-wrap {
    display: flex;
    align-items: center;
}

.checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    margin: 0;
    margin-right: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid var(--border-medium);
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.2s ease;
}

.checkbox input[type="checkbox"]:checked {
    background-image: url("https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/images/icon/ico_checkbox_w.svg");
    background-size: 16px 16px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox__label {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.32px;
    cursor: pointer;
}

/* ========================================
   미제공 안내 상단바 스타일
======================================== */
.lang-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* 헤더(--z-fixed: 1030) 위, 모달 백드롭(1040) 아래 */
    z-index: calc(var(--z-fixed) + 1);
    background: #1F1F1F;
    color: #fff;
}
.lang-notice__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight:400;
    line-height: 1.4;
    text-align: center;
}
.lang-notice__text:empty {
    display: none;
}
.lang-notice__switch {
    list-style: none;
    margin: 0;
    padding: 0;
}
.lang-notice__action {
    padding: 0;
    background: none;
    border: 0;
    color: #fff;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}
.lang-notice__close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    text-indent: -999px;
    overflow: hidden;
    background: url(https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/ico-close-00d2eeb964b125d9f70c76fc70183630.svg) center / 20px auto no-repeat;
}
/* 데이터 전용 노드 */
.lang-notice__i18n {
    display: none;
}

/* 띠가 뜨면 고정 헤더와 본문 상단 여백을 띠 높이만큼 밀어준다 */
body.has-lang-notice .header {
    top: var(--lang-notice-h, 0px);
}
body.has-lang-notice #main-content {
    padding-top: calc(120px + var(--lang-notice-h, 0px));
}
/* 메인(main.html)은 #main-content 가 아니라 #main 이고 히어로가 헤더 아래로 깔린다 */
body.has-lang-notice #main {
    padding-top: var(--lang-notice-h, 0px);
}
@media (max-width: 1280px) {
    body.has-lang-notice #main-content {
        padding-top: calc(72px + var(--lang-notice-h, 0px));
    }
}

/* ========================================
   미제공 안내 화면 스타일
======================================== */
/* 내용이 짧아도 푸터가 화면 아래에 붙도록 100vh 에서 헤더·안내띠·푸터를 뺀다.
   --header-h  : #main-content 의 padding-top(page-style.css) 과 같은 값이어야 한다
   --lang-notice-h : 안내띠가 떴을 때만 langNotice.html 이 채운다
   --footer-h  : langUnavailable.html 의 script 조각이 채운다 (JS 전에는 0px 폴백)
   height 가 아니라 min-height 다 — 문구가 길어지는 언어에서 잘리지 않게 한다 */
.lang-unavailable {
    --header-h: 120px;
    max-width: 640px;
    min-height: calc(100vh - var(--header-h) - var(--lang-notice-h, 0px) - var(--footer-h, 0px));
    margin: 0 auto;
    padding: 160px 20px 120px;
    text-align: center;
}
/* 헤더가 72px 로 줄어드는 구간 (page-style.css 의 #main-content 와 같은 브레이크포인트) */
@media (max-width: 1280px) {
    .lang-unavailable {
        --header-h: 72px;
    }
}
.lang-unavailable__title {
    margin-bottom: 40px;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    letter-spacing: -0.48px;
    word-break: keep-all;
}
.lang-unavailable__actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 44px;
    padding: 15px 40px;
    color: #fff;
    background: #000;
    border: 1px solid #000;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}
/* 언어별 문구를 담아 두는 데이터 전용 노드 */
.lang-unavailable__i18n {
    display: none;
}
.lang-unavailable__actions .btn:hover {
    background: #333;
    border-color: #333;
}
@media (max-width: 480px) {
    .lang-unavailable {
        padding: 24vh 15vw;
        margin-bottom:24px;
    }
    .lang-unavailable__actions .btn {
        min-width: 150px;
        font-size:14px;
    }
}

/* 유튜브 레이어 팝업 */
.ytb-layer-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.ytb-layer-popup__dimmed {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}
.ytb-layer-popup__container {
    position: relative;
    display:flex;
    flex-direction: column;
    justify-content: center;
    gap:16px;
    width: 90%;
    max-width: 864px;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
}
.ytb-layer-popup__btn-wrap {
    display:flex;
    justify-content: flex-end;
}
.ytb-layer-popup__close {
    width: 40px;
    height: auto;
    aspect-ratio: 1/1;
    background: url('https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/icon-close-black-f9049d8f7401a3096ccd43b71308935f.svg') center / 100% auto no-repeat;
    border: none;
    cursor: pointer;
    text-indent:-999px;
    overflow:hidden;
}
.ytb-layer-popup__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}
.ytb-layer-popup__media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.ytb-layer-popup__desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.32px;
    max-height: calc(1.5em * 2);
    word-break: break-all;
}
.ytb-layer-popup__date {
    display: block;
    margin-top: 24px;
    color: #747474;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.28px;
}
body.is-modal-open {
    overflow: hidden;
}
@media (max-width: 480px) {
    .ytb-layer-popup__container {
        width:100%;
        height:100%;
        background:transparent;
        padding:0;
    }
    .ytb-layer-popup__close {
        width:30px;
        background-image:url('https://wizware.dnstrip.net/n/cnla9ryzc1ev/b/wydseoul-public-resources/o/assets/icon-close-white-b8691f73d78c5227a2f14d7146761220.svg');
        position:absolute;
        top:20px;
        right:20px;
    }
    .ytb-layer-popup__desc {
        color:#fff;
    }
    .ytb-layer-popup__date {
        color:#ccc;
    }
    .ytb-layer-popup__body {
        padding:0 20px;
    }
}