.banner.banner--group .banner__content {
    width: 100%;
    min-height: 337px;
    max-height: 438px;
    box-sizing: border-box;
    overflow: hidden;
    display: grid;
    padding: 30px 0 0 30px; 
    border-radius: 20px;
    grid-template-columns: 560px 1fr;
    background-color: var(--gray_3);
}
.banner.banner--group .banner__left h2 {
    margin: 0 0 16px;
}
.banner.banner--group .banner__left p {
    margin: 0 0 30px;
    color: var(--text_sec);
}
.banner.banner--group .banner__right {
    display: flex;
    justify-content: center;
}
.banner.banner--group .banners__image {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    overflow: hidden;
}
.banner.banner--group .banners__image img {
    width: 100%;
}

@media (max-width: 1024px) {
    .banner.banner--group .banner__content {
        grid-template-columns: 1fr;
        padding: 32px 20px; 
        gap: 32px;
        max-height: 100%;
    }
    .banner.banner--group .banner__right img {
        width: 100%;
    }
}
@media (max-width: 440px) {
    .banner.banner--group .banner__content {
        margin: 0 -20px;
        width: calc(100% + 40px);
        border-radius: 0;
    }
}