.overview {
    padding: 60px 80px 0px 80px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.section-label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
    font-weight: 400;
}

.overview-text {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.6;
    color: #2c2c2c;
    max-width: 700px;
}

.overview-img {
    flex: 1;
    margin-top: 32px;
    width: 100%;
    object-fit: cover;
    min-height: 0;
}


/* ════════════════════════════════
   TABLET — 1024px
   ════════════════════════════════ */

@media (max-width: 1024px) {

    .overview {
        padding: 52px 48px 0;
        height: auto;
    }

    .overview-text { font-size: 24px; }

    .overview-img {
        flex: none;
        height: 380px;
        margin-top: 32px;
    }
}


/* ════════════════════════════════
   LARGE PHONES — 768px
   ════════════════════════════════ */

@media (max-width: 768px) {

    .overview {
        padding: 44px 24px 0;
        height: auto;
    }

    .overview-text { font-size: 20px; }

    .overview-img {
        flex: none;
        height: 280px;
        margin-top: 28px;
    }
}


/* ════════════════════════════════
   IPHONES — 430px
   ════════════════════════════════ */

@media (max-width: 430px) {

    .overview {
        padding: 36px 20px 0;
    }

    .overview-text {
        font-size: 18px;
        line-height: 1.55;
    }

    .overview-img {
        height: 220px;
        margin-top: 22px;
    }
}
