.producers-page {
    padding: 20px 0 60px;
}

.producers-page__header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.producers-page__title {
    margin: 0;

    color: #5f4d58;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;

    white-space: nowrap;
}

.producers-page__line {
    flex: 1;
    height: 1px;
    background: #ded9dc;
}


/* Карточка */

.producer-card {
    position: relative;

    display: flex;
    flex-direction: column;

    height: 100%;
    min-height: 185px;

    background: #fff;

    border: 1px solid #e3dfe1;

    text-decoration: none;

    overflow: hidden;

    transition:
            border-color .2s ease,
            box-shadow .2s ease,
            transform .2s ease;
}

.producer-card:hover {
    border-color: #75616d;

    box-shadow:
            0 7px 20px rgba(74, 58, 67, .11);

    transform: translateY(-3px);
}


/* Логотип */

.producer-card__image {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 1;

    min-height: 135px;

    padding: 24px 26px;

    background: #fff;
}

.producer-card__image img {
    display: block;

    max-width: 100%;
    max-height: 90px;

    width: auto;
    height: auto;

    object-fit: contain;

    transition: transform .25s ease;
}

.producer-card:hover .producer-card__image img {
    transform: scale(1.04);
}


/* Нижняя часть */

.producer-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 48px;

    padding: 10px 14px;

    background: #f1f2f3;

    border-top: 1px solid #e3dfe1;

    transition:
            background .2s ease,
            color .2s ease;
}

.producer-card__name {
    color: #5f4d58;

    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;

    transition: color .2s ease;
}

.producer-card__arrow {
    margin-left: 10px;

    color: #5f4d58;

    font-size: 21px;
    line-height: 1;

    transition:
            color .2s ease,
            transform .2s ease;
}

.producer-card:hover .producer-card__footer {
    background: #6b5864;
}

.producer-card:hover .producer-card__name,
.producer-card:hover .producer-card__arrow {
    color: #fff;
}

.producer-card:hover .producer-card__arrow {
    transform: translateX(3px);
}


/* Адаптив */

@media (max-width: 991.98px) {

    .producer-card {
        min-height: 170px;
    }

    .producer-card__image {
        min-height: 120px;
        padding: 20px;
    }

    .producer-card__image img {
        max-height: 80px;
    }
}


@media (max-width: 767.98px) {

    .producers-page {
        padding: 15px 0 40px;
    }

    .producers-page__title {
        font-size: 25px;
    }

    .producers-page__header {
        gap: 12px;
    }

    .producer-card {
        min-height: 150px;
    }

    .producer-card__image {
        min-height: 105px;
        padding: 16px;
    }

    .producer-card__image img {
        max-height: 65px;
    }

    .producer-card__footer {
        min-height: 44px;
        padding: 8px 10px;
    }

    .producer-card__name {
        font-size: 14px;
    }

    .producer-card__arrow {
        font-size: 18px;
    }
}