/* assets/css/sub.css - 메인 시스템 통합 버전 */

.section--sub-kv {
    padding: 180px 0 80px;
    background-color: #f9f9fb;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sub-kv__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 브레드크럼: 메인의 500(Medium) 혹은 700(Bold) 권장 */
.breadcrumb {
    display: flex;
    gap: 8px;
    font-family: var(--font-display);
    /* 서체 명시 */
    font-size: 13px;
    font-weight: 700;
    /* 메인의 타이틀급 강조 */
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 24px;
}

.breadcrumb .current {
    color: #001A8E;
}

/* 서브 타이틀: 메인의 .headline-2-en 스타일 이식 */
.sub-title {
    font-family: var(--font-display);
    /* 서체 명시 */
    font-weight: 700;
    /* ElandChoice Bold */
    font-size: clamp(40px, 6vw, 72px);
    color: #111;
    margin: 0 0 16px 0;
    letter-spacing: -0.03em;
    /* 메인 타이틀 자간과 통일 */
    line-height: 1.05;
    /* 메인 headline-2-en과 통일 */
}

/* 서브 설명문: 메인의 .body1 스타일 이식 */
.sub-desc {
    font-family: var(--font-display);
    /* 서체 명시 */
    font-weight: 500;
    /* ElandChoice Medium */
    font-size: 18px;
    /* 메인 body1 크기 */
    color: #666;
    margin: 0;
    line-height: 1.6;
    letter-spacing: -0.01em;
    word-break: keep-all;
    /* 한글 가독성 향상 */
}

@media (max-width: 980px) {
    .section--sub-kv {
        padding: 140px 0 60px;
    }

    .sub-title {
        font-size: 40px;
        /* 메인 모바일 headline-2-en 크기 */
    }

    .sub-desc {
        font-size: 16px;
    }
}