/* =========================================================
   수정본 파일명 : submission_documents.css
   다운로드용 TXT : submission_documents.css.txt
   ---------------------------------------------------------
   적용 프로젝트 : 하우징개봉 청년안심주택 웹사이트
   원본 기준     : 사용자가 업로드한 submission_documents.css
   수정일        : 2026-05-03
   ---------------------------------------------------------
   [기존 대화 반영 사항]
   1. 사이트 대표 컬러는 #006655 기준으로 유지합니다.
   2. 정적 리소스 경로는 /hgaebong/assets/... 기준을 유지합니다.
   3. PC / 태블릿 / 모바일 반응형 구조를 유지합니다.
   4. 서브페이지 상단 비주얼은 과도하게 높아지지 않도록 compact 기준을 유지합니다.
   5. header.css와 함께 사용해도 기본 폰트와 이미지 처리 기준이 어긋나지 않도록 보강했습니다.
   6. 유지보수자가 각 CSS 역할을 쉽게 파악할 수 있도록 한글 주석을 보강했습니다.
   7. 사용자의 브라우저 모션 최소화 설정을 고려했습니다.
   ========================================================= */

/* =========================================================
   submission_documents.css
   ---------------------------------------------------------
   모집안내 > 제출서류 안내 페이지 전용 스타일
   ---------------------------------------------------------
   저장 경로 : /hgaebong/assets/css/submission_documents.css

   [디자인 방향]
   - 기존 hgaebong 서브페이지와 통일감 있는 구조 유지
   - 기본 컬러 #006655 계열 유지
   - 복잡한 서류안내를 카드 / 탭 / 표 / 강조박스로 시각 정리
   - 젊은층이 보기 편하도록 과한 관공서 느낌보다
     산뜻하고 현대적인 UI 톤으로 구성
   ========================================================= */

/* =========================================================
   1. 공통 변수
   ========================================================= */
:root {
    --sd-primary: #006655;
    --sd-primary-dark: #01483c;
    --sd-primary-deep: #003d33;
    --sd-primary-soft: #edf6f4;
    --sd-primary-soft-2: #f5fbf9;
    --sd-mint: #e6f7f1;
    --sd-blue-soft: #eef6ff;
    --sd-pink-soft: #fff2f5;
    --sd-yellow-soft: #fff9e8;

    --sd-text-main: #172320;
    --sd-text-sub: #64726d;
    --sd-text-white: #ffffff;

    --sd-border: #d9e7e2;
    --sd-line: rgba(0, 0, 0, 0.06);

    --sd-bg: #ffffff;
    --sd-bg-soft: #f7fbfa;
    --sd-bg-deep: #f0f7f5;

    --sd-shadow: 0 14px 36px rgba(0, 102, 85, 0.08);
    --sd-shadow-hover: 0 18px 42px rgba(0, 102, 85, 0.12);

    --sd-radius-sm: 14px;
    --sd-radius-md: 20px;
    --sd-radius-lg: 28px;
    --sd-radius-xl: 34px;

    --sd-width: 1280px;
}

/* =========================================================
   2. 기본 초기화
   ========================================================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /*
       개별 CSS 파일이 단독 로딩되는 경우에도
       사이트 전체와 유사한 한글 폰트 기준을 유지하기 위한 안전 장치입니다.
    */
    font-family:
        "Pretendard",
        "Noto Sans KR",
        "Malgun Gothic",
        "Apple SD Gothic Neo",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    margin: 0;
    padding: 0;
    background: #ffffff;
    color: var(--sd-text-main);
    word-break: keep-all;
    overflow-x: hidden;
}


/* =========================================================
   공통 이미지 안전 처리
   ---------------------------------------------------------
   이미지가 부모 영역보다 커져 가로 스크롤이 생기는 문제를 방지합니다.
   각 페이지의 개별 이미지 클래스에서 object-fit을 별도로 지정하므로,
   여기서는 기본 안전값만 제공합니다.
   ========================================================= */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* =========================================================
   3. 페이지 전체 배경
   ========================================================= */
.submission-page {
    width: 100%;
    background:
        radial-gradient(circle at top right, rgba(0, 102, 85, 0.05), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}

/* =========================================================
   4. 상단 서브 비주얼
   ========================================================= */
.sub-hero-section {
    position: relative;
    width: 100%;
    min-height: 140px; /* 기존 대화 반영: 서브페이지 상단 배경 높이를 compact 기준으로 유지 */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px 20px;
    background:
        linear-gradient(135deg, rgba(0, 102, 85, 0.92), rgba(1, 72, 60, 0.88)),
        url("/hgaebong/assets/images/index/slide1.webp") center center / cover no-repeat;
    overflow: hidden;
}

.sub-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.10), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.08), transparent 22%),
        rgba(0, 0, 0, 0.08);
}

.sub-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--sd-width);
    margin: 0 auto;
    color: #ffffff;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.84);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.breadcrumb a:hover {
    opacity: 0.78;
}

.breadcrumb-separator {
    opacity: 0.7;
}

.breadcrumb-current {
    font-weight: 700;
    color: #ffffff;
}

.sub-hero-title {
    margin: 0 0 10px;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.sub-hero-description {
    margin: 0;
    max-width: 820px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

/* =========================================================
   5. 본문 공통 폭
   ========================================================= */
.page-content-wrap {
    width: 100%;
    max-width: var(--sd-width);
    margin: 0 auto;
    padding: 84px 20px 110px;
}

/* =========================================================
   6. 공통 제목 스타일
   ========================================================= */
.section-title-wrap {
    margin-bottom: 34px;
}

.section-kicker {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--sd-primary);
}

.section-title {
    margin: 0 0 16px;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.03em;
    color: var(--sd-text-main);
}

.section-description {
    max-width: 900px;
    margin: 0;
    font-size: 17px;
    line-height: 1.9;
    color: var(--sd-text-sub);
}

.section-head-line {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-sub-title {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--sd-text-main);
}

.section-side-note {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--sd-text-sub);
    text-align: right;
}

/* =========================================================
   7. 상단 소개 카드
   ========================================================= */
.submission-intro-section {
    width: 100%;
    margin-bottom: 50px;
}

.intro-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.intro-highlight-card {
    position: relative;
    padding: 28px 24px 26px;
    border-radius: var(--sd-radius-lg);
    border: 1px solid var(--sd-border);
    background: linear-gradient(180deg, #ffffff 0%, #f9fcfb 100%);
    box-shadow: var(--sd-shadow);
    overflow: hidden;
}

.intro-highlight-card::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -24px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(0, 102, 85, 0.05);
}

.intro-highlight-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--sd-primary-soft), #ffffff);
    color: var(--sd-primary);
    box-shadow: inset 0 0 0 1px rgba(0, 102, 85, 0.08);
}

.intro-highlight-icon .material-symbols-rounded {
    font-size: 30px;
}

.intro-highlight-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--sd-text-main);
}

.intro-highlight-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--sd-text-sub);
}

/* =========================================================
   8. 다운로드 카드
   ========================================================= */
.download-section {
    margin-bottom: 54px;
}

.download-card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.download-card {
    display: flex;
    flex-direction: column;
    min-height: 255px;
    padding: 22px 20px 20px;
    border-radius: var(--sd-radius-lg);
    border: 1px solid var(--sd-border);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
    box-shadow: var(--sd-shadow);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sd-shadow-hover);
}

.download-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--sd-primary-soft);
    color: var(--sd-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.download-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(0, 102, 85, 0.08);
    color: var(--sd-primary);
}

.download-icon .material-symbols-rounded {
    font-size: 24px;
}

.download-title {
    margin: 0 0 12px;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--sd-text-main);
}

.download-desc {
    flex: 1;
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--sd-text-sub);
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sd-primary), var(--sd-primary-dark));
    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.download-button .material-symbols-rounded {
    font-size: 20px;
}

/* =========================================================
   9. 절차 안내
   ========================================================= */
.process-section {
    margin-bottom: 58px;
    padding: 30px 30px 32px;
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius-xl);
    background: linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
    box-shadow: var(--sd-shadow);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-item {
    position: relative;
    padding: 22px 20px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(0, 102, 85, 0.08);
}

.process-number {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 14px;
    background: var(--sd-primary-soft);
    color: var(--sd-primary);
    font-size: 16px;
    font-weight: 800;
}

.process-item h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
    color: var(--sd-text-main);
}

.process-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--sd-text-sub);
}

/* =========================================================
   10. 탭 영역
   ========================================================= */
.document-board-section {
    width: 100%;
}

.document-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.document-tab-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 24px;
    border: 1px solid var(--sd-border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--sd-text-main);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease,
        box-shadow 0.22s ease;
}

.document-tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 85, 0.08);
}

.document-tab-button.is-active {
    background: linear-gradient(135deg, var(--sd-primary), var(--sd-primary-dark));
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 102, 85, 0.22);
}

.document-tab-button .material-symbols-rounded {
    font-size: 22px;
}

/* =========================================================
   11. 탭 패널
   ========================================================= */
.document-panel {
    display: none;
}

.document-panel.is-active {
    display: block;
}

/* =========================================================
   12. 패널 상단 요약 카드
   ========================================================= */
.document-summary-card {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 22px;
    padding: 28px;
    margin-bottom: 22px;
    border-radius: var(--sd-radius-xl);
    border: 1px solid var(--sd-border);
    background:
        radial-gradient(circle at top right, rgba(0, 102, 85, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
    box-shadow: var(--sd-shadow);
}

.document-summary-left h2 {
    margin: 0 0 12px;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--sd-text-main);
}

.document-summary-left p {
    margin: 0;
    font-size: 15px;
    line-height: 1.85;
    color: var(--sd-text-sub);
}

.summary-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.summary-chip-special {
    background: var(--sd-pink-soft);
    color: #b83f64;
}

.summary-chip-general {
    background: var(--sd-blue-soft);
    color: #2a62a7;
}

.document-summary-right {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.summary-mini-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    padding: 18px 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(0, 102, 85, 0.08);
}

.summary-mini-label {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--sd-primary);
}

.summary-mini-box strong {
    font-size: 18px;
    line-height: 1.45;
    color: var(--sd-text-main);
}

/* =========================================================
   13. 표 상단 안내
   ========================================================= */
.table-top-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--sd-primary-soft), #ffffff);
    border: 1px solid rgba(0, 102, 85, 0.10);
}

.table-top-note .material-symbols-rounded {
    margin-top: 1px;
    color: var(--sd-primary);
    font-size: 22px;
}

.table-top-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--sd-text-sub);
}

/* =========================================================
   14. 제출서류 표
   ========================================================= */
.document-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* 모바일에서 표를 부드럽게 좌우 스크롤하기 위한 설정 */
    padding-bottom: 6px;
    margin-bottom: 24px;
    border-radius: var(--sd-radius-lg);
    background: #ffffff;
    border: 1px solid var(--sd-border);
    box-shadow: var(--sd-shadow);
}

.document-table {
    width: 100%;
    min-width: 1100px;
    border-collapse: collapse;
    background: #ffffff;
}

.document-table thead th {
    padding: 18px 16px;
    background: linear-gradient(180deg, #f2f8f6 0%, #eaf4f0 100%);
    border-bottom: 1px solid var(--sd-border);
    color: var(--sd-text-main);
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

.document-table tbody td {
    padding: 18px 16px;
    border-bottom: 1px solid #ecf2ef;
    font-size: 14px;
    line-height: 1.8;
    color: var(--sd-text-sub);
    vertical-align: top;
    background: #ffffff;
}

.document-table tbody tr:hover td {
    background: #fcfefd;
}

.doc-col-no {
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    color: var(--sd-text-main);
}

.doc-col-type {
    text-align: center;
}

.doc-col-title {
    color: var(--sd-text-main);
}

.doc-title-text {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.6;
    color: var(--sd-text-main);
}

.doc-detail-text {
    font-size: 14px;
    line-height: 1.85;
    color: var(--sd-text-sub);
}

.doc-col-issuer,
.doc-col-caution {
    font-size: 14px;
    line-height: 1.85;
    color: var(--sd-text-sub);
}

.doc-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.doc-badge-기본 {
    background: var(--sd-blue-soft);
    color: #2d66ad;
}

.doc-badge-양식 {
    background: var(--sd-primary-soft);
    color: var(--sd-primary);
}

.doc-badge-세금 {
    background: var(--sd-yellow-soft);
    color: #9d7a13;
}

.doc-badge-소득 {
    background: #eef4ff;
    color: #4a63b7;
}

.doc-badge-자산 {
    background: #f3efff;
    color: #6950b2;
}

.doc-badge-추가 {
    background: #fff1f5;
    color: #ba4f75;
}

.doc-badge-입주후 {
    background: #edf7ee;
    color: #378252;
}

/* =========================================================
   15. 안내 박스 2열
   ========================================================= */
.notice-box-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 60px;
}

.notice-info-box {
    padding: 24px 24px 22px;
    border-radius: var(--sd-radius-lg);
    border: 1px solid var(--sd-border);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
    box-shadow: var(--sd-shadow);
}

.notice-info-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--sd-text-main);
}

.notice-info-box h3 .material-symbols-rounded {
    font-size: 24px;
    color: var(--sd-primary);
}

.notice-info-box ul {
    margin: 0;
    padding-left: 20px;
}

.notice-info-box li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--sd-text-sub);
}

.notice-info-box li:last-child {
    margin-bottom: 0;
}

/* =========================================================
   16. 안내 박스 내부 li 아이콘 스타일
   ========================================================= */
.notice-info-box ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.notice-info-box li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--sd-text-sub);
}

.notice-info-box li:last-child {
    margin-bottom: 0;
}

.list-bullet-icon {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 18px;
    color: var(--sd-primary);
}

.warning-icon {
    color: #d46a3a;
}

/* =========================================================
   17. 하단 종합 안내
   ========================================================= */
.final-notice-section {
    margin-top: 10px;
}

.final-notice-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 24px;
    padding: 34px 34px;
    border-radius: var(--sd-radius-xl);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.20), transparent 28%),
        linear-gradient(135deg, var(--sd-primary), var(--sd-primary-dark));
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 102, 85, 0.22);
}

.final-notice-icon {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(4px);
}

.final-notice-icon .material-symbols-rounded {
    font-size: 40px;
    color: #ffffff;
}

.final-notice-kicker {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.86);
}

.final-notice-content h2 {
    margin: 0 0 16px;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.final-notice-list {
    margin: 0;
    padding-left: 20px;
}

.final-notice-list li {
    margin-bottom: 9px;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.92);
}

.final-notice-list li:last-child {
    margin-bottom: 0;
}

/* =========================================================
   18. reveal 애니메이션
   ========================================================= */
.reveal {
    opacity: 0;
    will-change: transform, opacity;
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.reveal-up {
    transform: translateY(44px);
}

.reveal-left {
    transform: translateX(-44px);
}

.reveal-right {
    transform: translateX(44px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* =========================================================
   19. 대형 태블릿 대응
   ========================================================= */
@media (max-width: 1280px) {
    .download-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   20. 일반 태블릿 대응
   ========================================================= */
@media (max-width: 1024px) {
    .intro-highlight-grid {
        grid-template-columns: 1fr;
    }

    .download-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .document-summary-card {
        grid-template-columns: 1fr;
    }

    .document-summary-right {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .notice-box-grid {
        grid-template-columns: 1fr;
    }

    .final-notice-card {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   21. 소형 태블릿 대응
   ========================================================= */
@media (max-width: 900px) {
    .sub-hero-section {
        min-height: 205px;
        padding: 50px 20px 30px;
    }

    .sub-hero-title {
        font-size: 40px;
    }

    .sub-hero-description {
        font-size: 16px;
    }

    .page-content-wrap {
        padding: 70px 20px 90px;
    }

    .section-title {
        font-size: 34px;
    }

    .section-sub-title {
        font-size: 28px;
    }

    .section-head-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-side-note {
        text-align: left;
    }

    .document-summary-right {
        grid-template-columns: 1fr;
    }

    .document-tab-button {
        width: 100%;
    }
}

/* =========================================================
   22. 모바일 대응
   ========================================================= */
@media (max-width: 640px) {
    .sub-hero-section {
        min-height: 180px;
        padding: 42px 16px 24px;
    }

    .sub-hero-title {
        font-size: 28px;
    }

    .sub-hero-description {
        font-size: 14px;
        line-height: 1.75;
    }

    .page-content-wrap {
        padding: 55px 16px 80px;
    }

    .section-title-wrap {
        margin-bottom: 24px;
    }

    .section-kicker {
        font-size: 12px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .section-sub-title {
        font-size: 24px;
    }

    .intro-highlight-card {
        padding: 24px 20px 22px;
    }

    .intro-highlight-card h3 {
        font-size: 20px;
    }

    .download-card-grid {
        grid-template-columns: 1fr;
    }

    .download-card {
        min-height: auto;
    }

    .process-section {
        padding: 24px 20px 24px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .document-tabs {
        gap: 10px;
    }

    .document-tab-button {
        min-height: 54px;
        padding: 0 16px;
        font-size: 14px;
    }

    .document-summary-card {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .document-summary-left h2 {
        font-size: 24px;
    }

    .summary-mini-box {
        min-height: auto;
    }

    .table-top-note {
        padding: 14px 14px;
    }

    .notice-info-box {
        padding: 20px 18px 18px;
    }

    .notice-info-box h3 {
        font-size: 20px;
    }

    .final-notice-card {
        padding: 24px 20px;
        gap: 18px;
    }

    .final-notice-icon {
        width: 72px;
        height: 72px;
        border-radius: 22px;
    }

    .final-notice-content h2 {
        font-size: 24px;
    }

    .final-notice-list li {
        font-size: 14px;
        line-height: 1.8;
    }
}


/* =========================================================
   접근성 보완 : 모션 최소화 설정 대응
   ---------------------------------------------------------
   사용자의 브라우저 또는 OS에서 '동작 줄이기'가 설정되어 있으면
   스크롤 등장 애니메이션, hover 이동 효과, 버튼 이동 효과를 최소화합니다.
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .reveal,
    .reveal-up,
    .reveal-left,
    .reveal-right,
    .reveal.show,
    .reveal.active {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
