.banner-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.banner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1272px;
    gap: 48px;
}
.banner-right {
    flex-direction: row-reverse;
}
.banner-left {
    flex-direction: row;
}
.banner-text {
    flex: 1;
    text-align: left;
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-style: normal;
}
.banner-item {
    flex: 2;
    text-align: center;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 991px) {
    .banner-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .banner-text {
        font-size: 24px;
    }
}
.banner-row.no-text {
    justify-content: center;
}

.banner-row.no-text .banner-item {
    flex: unset;
}
