.ercw-clean-heat-hero {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 620px;
    background-color: #f5f1e8;
    overflow: hidden;
}

.ercw-hero-left,
.ercw-hero-right {
    flex: 1 1 50%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ercw-hero-left {
    color: #f5f1e8;
    text-align: left;
    padding: 80px;
}

.ercw-hero-heading {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
}

.ercw-hero-right {
    padding: 0;
}

.ercw-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .ercw-clean-heat-hero {
        min-height: 0;
    }

    .ercw-hero-left,
    .ercw-hero-right {
        flex-basis: 100%;
    }

    .ercw-hero-left {
        padding: 60px 40px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .ercw-hero-left {
        padding: 48px 24px;
    }

    .ercw-hero-heading {
        font-size: clamp(28px, 8vw, 40px);
    }
}


