/* 섹션 1 타이틀 스타일 */
.title-wrapper {
    max-width: 100%;
    padding: 0 clamp(20px, 5vw, 60px);
    margin: 0 auto;
    width: clamp(300px, 90%, 1200px);
}

.section-main-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: #fff;
    margin-bottom: clamp(16px, 3vw, 24px);
    line-height: 1.2;
    word-break: keep-all;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: bold;
    margin-bottom: clamp(20px, 4vw, 30px);
    line-height: 1.3;
    color: #fff;
    word-break: keep-all;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.highlight {
    color: #2196f3;
    font-weight: 700;
    font-size: clamp(36px, 7vw, 52px);
    background: linear-gradient(120deg, rgba(33,150,243,0.2) 0%, rgba(33,150,243,0.1) 100%);
    padding: 0.2em 0.4em;
    border-radius: 8px;
}

/* 모바일 최적화 */
@media screen and (max-width: 768px) {
    .title-wrapper {
        padding: 0 15px;
    }

    .hero-description br {
        display: inline;
    }

    .hero-description br + span {
        display: inline-block;
        margin-top: 0.5em;
    }
}

/* 작은 모바일 화면 최적화 */
@media screen and (max-width: 360px) {
    .section-main-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 28px;
    }

    .highlight {
        font-size: 32px;
    }
}
