/* =========================
   전체 지역 영역
========================= */

.coway-region-wrap {
    margin: 0 0 25px;
}


/* =========================
   상단 H2 + 설명 + TEXAS 이미지
========================= */

.coway-region-hero {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin-bottom: 16px;
    overflow: hidden;
}


/* 왼쪽 텍스트 */

.coway-region-hero-text {
    flex: 0 0 53%;
    padding: 5px 25px 5px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coway-region-heading {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
    color: #212529;
    margin: 0 0 14px;
}

.coway-region-intro {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin: 0;
}


/* 오른쪽 Texas 이미지 */

.coway-region-hero-image {
    flex: 0 0 47%;
    min-height: 175px;
    overflow: hidden;
    border-radius: 7px;
}

    .coway-region-hero-image img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 175px;
        object-fit: cover;
        object-position: center center;
    }


/* =========================
   서비스 가능 지역
========================= */

.coway-service-area {
    background: #f2f8fd;
    border-radius: 8px;
    padding: 18px 22px;
    margin-bottom: 14px;
}

.coway-service-title {
    font-size: 19px;
    font-weight: 700;
    color: #0876c9;
    margin-bottom: 13px;
}

.coway-service-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 9px;
    line-height: 1.6;
}

    .coway-service-row:last-of-type {
        margin-bottom: 7px;
    }

.coway-state {
    flex: 0 0 50px;
    background: #0876c9;
    color: #fff;
    text-align: center;
    font-weight: 700;
    border-radius: 5px;
    padding: 4px 7px;
    margin-right: 13px;
}

.coway-cities {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.coway-service-note {
    font-size: 14px;
    color: #555;
    margin: 8px 0 0 63px;
}


/* =========================
   버튼
========================= */

.coway-region-buttons {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

    .coway-region-buttons a {
        flex: 1;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none !important;
        transition: all .2s ease;
    }

.coway-main-btn {
    background: #0876c9;
    border: 2px solid #0876c9;
    color: #fff !important;
}

    .coway-main-btn:hover {
        background: #0566ae;
        border-color: #0566ae;
    }

.coway-phone-btn {
    background: #fff;
    border: 2px solid #0876c9;
    color: #0876c9 !important;
}

    .coway-phone-btn:hover {
        background: #f2f8fd;
    }


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .coway-region-hero-text {
        flex-basis: 55%;
        padding-right: 18px;
    }

    .coway-region-hero-image {
        flex-basis: 45%;
    }

    .coway-region-heading {
        font-size: 26px;
    }

    .coway-region-intro {
        font-size: 15px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .coway-region-wrap {
        margin-bottom: 20px;
    }


    /* 모바일은 이미지 숨김 */

    .coway-region-hero {
        display: block;
        margin-bottom: 14px;
    }

    .coway-region-hero-text {
        display: block;
        padding: 0;
    }

    .coway-region-hero-image {
        display: none;
    }

    .coway-region-heading {
        font-size: 25px;
        line-height: 1.3;
        margin: 0 0 10px;
    }

    .coway-region-intro {
        font-size: 15px;
        line-height: 1.65;
    }


    /* 서비스 지역 */

    .coway-service-area {
        padding: 16px 14px;
    }

    .coway-service-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .coway-service-row {
        margin-bottom: 12px;
    }

    .coway-state {
        flex: 0 0 43px;
        margin-right: 10px;
    }

    .coway-cities {
        font-size: 13px;
        line-height: 1.55;
    }

    .coway-service-note {
        margin: 8px 0 0;
        text-align: center;
        font-size: 13px;
    }


    /* 버튼 */

    .coway-region-buttons {
        flex-direction: column;
        gap: 8px;
    }

        .coway-region-buttons a {
            width: 100%;
            min-height: 47px;
            font-size: 14px;
        }
}
