.section02 {
    width: 100%;
    padding: clamp(3rem, 4.8vw, 4.375rem) 20px;
    background: hsl(197, 100%, 96%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}


/* ==========================================================================
   왼쪽 텍스트 박스
   ========================================================================== */

.section02 .box {
    width: min(100%, 48.8125rem);

    display: flex;
    flex-direction: column;

    gap: clamp(1.5rem, 1.82vw, 2.1875rem);

    flex-shrink: 1;
}


/* ==========================================================================
   상단 제목
   ========================================================================== */

.company-text-box01 {
    display: flex;
    flex-direction: column;
}


.company-text01 {
    color: #000000;

    font-size: clamp(1.5rem, 1.82vw, 2.1875rem);

    font-family: "Noto Sans KR", sans-serif;
    font-weight: 700;

    line-height: 1.15;

    word-break: keep-all;
}


/* ==========================================================================
   공동주택 / 보수 전문 기업
   ========================================================================== */

.company-text-box02 {
    width: 100%;

    min-height: clamp(4.5rem, 5.2vw, 6.25rem);

    display: flex;
    justify-content: flex-start;
    align-items: center;

    box-sizing: border-box;
}


.company-text-box02 > div {
    display: flex;

    justify-content: flex-start;
    align-items: baseline;

    gap: clamp(0.5rem, 0.78vw, 0.9375rem);

    flex-wrap: wrap;
}


.company-text-box02 > div > div {
    font-size: clamp(2.25rem, 3.65vw, 4.375rem);

    font-family: "Noto Sans KR", sans-serif;
    font-weight: 700;

    line-height: 1.1;

    word-break: keep-all;
}


/* ==========================================================================
   설명
   ========================================================================== */

.company-text-box03 {
    width: 100%;

    min-height: clamp(6rem, 6.25vw, 7.5rem);

    display: flex;
    flex-direction: column;

    justify-content: center;

    box-sizing: border-box;
}


.company-text-box03 > div {
    width: 100%;

    display: flex;
    align-items: center;

    overflow: hidden;
}


.company-text-box03 > div > div {
    color: #7E7E7E;

    font-size: clamp(0.875rem, 1.3vw, 1.5625rem);

    font-family: "Noto Sans KR", sans-serif;
    font-weight: 500;

    line-height: 1.6;

    word-break: keep-all;
}


/* ==========================================================================
   Section 02 이미지
   ========================================================================== */

.section02 > img {
    width: min(100%, 37.375rem) !important;
    height: auto !important;

    aspect-ratio: 598 / 500;

    object-fit: cover;

    border-radius: clamp(1.5rem, 2.6vw, 3.125rem) !important;

    flex-shrink: 1;
}


/* ==========================================================================
   태블릿
   ========================================================================== */

@media (max-width: 1200px) {

    .section02 {
        padding-left: clamp(2rem, 6vw, 5rem);
        padding-right: clamp(2rem, 6vw, 5rem);

        gap: clamp(1.5rem, 3vw, 2.5rem);
    }

    .section02 .box {
        width: 50%;
    }

    .section02 > img {
        width: 50% !important;
    }

    .company-text-box02 > div {
        gap: 0.5rem;
    }

    .company-text-box02 > div > div {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }
}


/* ==========================================================================
   모바일
   ========================================================================== */

@media (max-width: 767px) {

    .section02 {
        padding:
            3rem
            1.25rem;

        flex-direction: column;

        align-items: stretch;

        gap: 2rem;
    }


    .section02 .box {
        width: 100%;
        gap: 1.5rem;
    }


    .company-text01 {
        font-size: clamp(1.4rem, 5.5vw, 2rem);
        line-height: 1.3;
    }


    .company-text-box02 {
        min-height: auto;
    }


    .company-text-box02 > div {
        width: 100%;
        gap: 0.25rem 0.5rem;
    }


    .company-text-box02 > div > div {
        font-size: clamp(1.8rem, 8vw, 3rem);
        line-height: 1.2;
    }


    .company-text-box03 {
        min-height: auto;
    }


    .company-text-box03 > div {
        overflow: visible;
    }


    .company-text-box03 > div > div {
        font-size: clamp(0.85rem, 3.5vw, 1.1rem);
        line-height: 1.7;
    }


    .section02 > img {
        width: 100% !important;
        height: auto !important;

        aspect-ratio: 598 / 500;

        border-radius: 1.5rem !important;
    }
}


/* ==========================================================================
   작은 모바일
   ========================================================================== */

@media (max-width: 480px) {

    .section02 {
        padding:
            2.5rem
            1rem;
    }


    .company-text-box02 > div > div {
        font-size: clamp(1.65rem, 8.5vw, 2.4rem);
    }


    .company-text-box03 > div > div {
        font-size: 0.85rem;
        line-height: 1.65;
    }
}