.brand_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.brand-item {
    position: relative;
    height: 120px;
    border: 1px solid #005651;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Текст */
.brand-item h4 {
    position: absolute;
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 2;
}

/* затемнение через слой */
.brand-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    transition: 0.3s;
    z-index: 1;
}

/* hover эффект */
.brand-item:hover {
    background-image: none !important;
}

.brand-item:hover::before {
    background: #005651;
}

.brand-item:hover h4 {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .brand_wrapper {
        grid-template-columns: 1fr;
    }
}