/* 히어로 타이포 — 사용자 지정: 1줄 확대 · 브랜드 박스 타이트 · 1–2 간격+line-height · 설명 50px · 전화 70px SemiBold · 버튼 298×75 · 글자 33px */

.mc-layout .mc-hero .mc-hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(10px, 0.45em, 22px);
}

.mc-layout .mc-hero .mc-hero-line1,
.mc-layout .mc-hero .mc-hero-line2 {
    display: block;
    text-align: center;
    white-space: nowrap;
    letter-spacing: -1.8px;
    word-break: normal;
    overflow-wrap: normal;
}

/* 1줄: Regular — 이전보다 조금 더 크게 */
.mc-layout .mc-hero .mc-hero-line--regular {
    font-family: var(--font-cond);
    font-weight: 400;
    line-height: 1.32;
    font-size: clamp(17px, 3.15vw + 11px, 80px);
}

/* 2줄: Bold */
.mc-layout .mc-hero .mc-hero-line--bold {
    font-family: var(--font-cond);
    font-weight: 700;
    line-height: 1.22;
    font-size: clamp(14px, 4.25vw + 10px, 90px);
}

.mc-layout .mc-hero .mc-hero-brand-mark {
    font-weight: 700;
}

@media (min-width: 1280px) {
    .mc-layout .mc-hero .mc-hero-line--regular {
        line-height: 1.28;
    }
}

/* 부가 카피: 50px (좁은 화면에서는 비율 축소) */
.mc-layout .mc-hero .mc-hero-desc {
    white-space: normal;
    font-weight: 400;
    font-size: clamp(18px, 4.2vw, 50px);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* 전화 — #container .css-846nw4 참고 */
.mc-layout .mc-hero .mc-hero-phone a {
    font-family: var(--font-exp);
    font-weight: 600;
    font-style: normal;
    font-size: clamp(26px, 5vw + 12px, 70px);
    letter-spacing: -1.4px;
    line-height: 1.1;
    white-space: nowrap;
    word-break: break-word;
}

/* 버튼 298×75, 글자 33px */
.mc-layout .mc-hero .mc-hero-actions .mc-btn {
    box-sizing: border-box;
    width: 298px;
    height: 75px;
    min-height: 75px;
    padding: 0 20px;
    font-size: 33px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

@media (max-width: 768px) {
    /* 이미지2(클라이언트 헤더)와 동일 스케일: .mc-clients-header → clamp(22px, 6vw, 40px) (main.css 후반 규칙 기준) */
    .mc-layout .mc-hero .mc-hero-title {
        font-size: clamp(22px, 6vw, 40px);
        gap: 0.08em;
        max-width: 100%;
    }

    .mc-layout .mc-hero .mc-hero-line1,
    .mc-layout .mc-hero .mc-hero-line2 {
        white-space: normal;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        letter-spacing: -0.04em;
        word-break: keep-all;
        overflow-wrap: break-word;
        font-size: 1em;
        line-height: 1.2;
    }

    .mc-layout .mc-hero .mc-hero-line--regular {
        font-weight: 400;
    }

    .mc-layout .mc-hero .mc-hero-line--bold {
        font-weight: 700;
    }

    /* 클라이언트 .mc-clients-lead(0.5em)에 맞춘 부가 카피 */
    .mc-layout .mc-hero .mc-hero-desc {
        font-size: clamp(11px, 3.75vw, 20px);
        line-height: 1.35;
        letter-spacing: -0.02em;
        margin-top: clamp(14px, 3.6vw, 22px);
        margin-bottom: clamp(16px, 4vw, 24px);
    }

    .mc-layout .mc-hero .mc-hero-phone a {
        font-size: clamp(16px, 4.2vw, 26px);
        letter-spacing: -0.05em;
    }

    .mc-layout .mc-hero .mc-hero-phone {
        margin-bottom: clamp(14px, 3.5vw, 24px);
    }

    .mc-layout .mc-hero .mc-hero-actions .mc-btn {
        width: 100%;
        max-width: 280px;
        height: auto;
        min-height: 46px;
        padding: 10px 16px;
        font-size: clamp(14px, 3.5vw, 16px);
        font-weight: 400;
    }
}
