/* Стили для сотрудничества */
.site_s2 .coop_wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.site_s2 .coop_wrapper .coop_row {
    width: 100%;
    display: flex;
}

.site_s2 .coop_wrapper .coop_row .coop_row--text {
    flex-basis: 50%;
    margin-left: auto;
    font-size: 14px;
    line-height: 140%;
}

.site_s2 .coop_wrapper .coop_row .coop_row--title {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    flex-direction: column;
}

.site_s2 .coop_wrapper .coop_row .coop_row--title .schedule {
    font-size: 12px;
    opacity: 0.7;
}

.site_s2 .coop_wrapper .coop_row .coop_row--table {
    flex-basis: 50%;
    margin-left: auto;
    font-size: 14px;
    line-height: 140%;
}

.site_s2 .coop_row--btns {
    display: flex;
    gap: 8px;
    max-width: 650px;
    flex-wrap: wrap;
    justify-content: center;
}

.site_s2 .coop_row.coop_row--fullwidth {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw !important;
    max-width: none !important;
}

/* Контейнер списка брендов */
.brands-list {
    position: relative;
    width: 100%;
}

/* Сетка 4 колонки */
.brands-list__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
}

/* Элемент сетки */
.brands-list__item {
    box-sizing: border-box;
}

/* Ссылка-обёртка */
.brands-list__item-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

/* Обёртка картинки (квадратная с рамкой) */
.brands-list__image-wrapper {
    background: #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    border: 1px solid rgba(44, 44, 44, 0.2);
}

/* Сама картинка */
.brands-list__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Название бренда */
.brands-list__name {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 16px 0 0 0;
    line-height: 110%;
    color: #000;
}

/* Ховер эффект */
.brands-list__item-link:hover .brands-list__name {
    text-decoration: underline;
}

/* Адаптив */
@media only screen and (max-width: 1200px) {
    .brands-list__grid {
        grid-gap: 32px;
    }
}

@media only screen and (max-width: 992px) {
    .brands-list__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 32px;
    }
}

@media only screen and (max-width: 767px) {
    .brands-list__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 16px;
    }

    .brands-list__name {
        font-size: 14px;
        padding: 12px 0 0 0;
    }
}

@media only screen and (max-width: 480px) {
    .brands-list__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/*list-table*/
.site_s2 .list--table .table .table_row {
    display: grid;
    grid-template-columns: 1fr 7fr;
    gap: 40px;
}

.site_s2 .list--table .list.table .table_row div:last-child {
    font-size: 16px;
    line-height: 110%;
    font-weight: 600;
    opacity: 1;
}

/*Form*/
.site_s2 .coop_row.coop_row-form>div {
    width: 100%;
}