.main-heading-img-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 72px;
}

.main-heading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.main-heading-text {
    color: var(--black);
    font-size: 52px;
    font-weight: 700;
}

.main-heading-subtext {
    color: var(--black);
    font-size: 20px;
}

.main-heading-subtext-red {
    color: var(--red);
    font-size: 20px;
    font-weight: 700;
}

.main-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 40px 40px;
    background: var(--white);
}

.main-img-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

.load-more-btn {
    margin-top: 24px;
    padding: 10px 16px;
    border: 1px solid var(--black);
    border-radius: 8px;
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 0 auto;
    grid-column: 1/-1;
    background-color: var(--white);
    min-width: 177px;
    margin-bottom: 80px;
    text-align: center;
}
.see-cars {
    display: none;
}

.car-list {
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .main-img-wrapper {
        order: -1;
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        width: 100%;
        margin-bottom: 20px;
    }

    .main-heading-wrapper {
        gap: 12px;
    }

    .main-heading-img-wrapper {
        flex-direction: column;
        align-items: center;
    }
}
