.manufactureCard {
    --manufactureCardMaxWidth: 330px;
    display: flex;
    flex-direction: column;
    color: var(--color-PayneGrayLight);
    max-width: var(--manufactureCardMaxWidth);
    position: relative;
    transition: var(--transition-default);
    height: 280px;
    border-radius: 5px;
    padding: 10px 20px;
    border: 1px solid transparent;
    overflow: hidden;
}

.manufacturers .swiper-slide {
    width: auto ;
}

@media screen and (min-width: 1025px) {
    .manufactureCard:hover {
        border: 1px solid var(--color-blue-new);
        box-shadow: 0 0 20px 0 #00000026;
    }
}

.manufactureCard:hover .manufactureCard__logo {
    filter: grayscale(0%);
}


.manufactureCard:hover .manufactureCard__linkMore {
    color: var(--color-blue-new);
}

.manufactureCard__logo {
    flex-basis: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    height: 101px;
    max-height: 101px;
    overflow: hidden;
}

.manufactureCard__logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.manufactureCard__category-container {
    display: flex;
    flex-direction: column;
    max-height: 84px;
    overflow: hidden;
}

.manufactureCard__link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.manufactureCard__category {
    position: relative;
    z-index: 2;
    width: max-content;
    color: var(--color-PayneGrayLight);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.manufactureCard__category:hover {
    color: var(--color-blue-new);
    transition: var(--transition-default);
}

.manufactureCard__linkMore {
    position: relative;
    z-index: 2;
}

.swiper-slide .manufactureCard__linkMore {
    display: flex;
}

.manufactureCard__title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 8px;
}
