.liebis-brands {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.liebis-brands-container {
    max-width: 1200px;
    margin: 0 auto;
}

.liebis-brands-headline {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #000;
}

.liebis-brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.liebis-brand-item {
    flex: 0 1 150px;
    /* Base width for logos */
    max-width: 200px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.liebis-brand-item:hover {
    opacity: 1;
}

.liebis-brand-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    /* Optional: grayscale until hover */
    transition: filter 0.3s ease;
}

.liebis-brand-item:hover img {
    filter: grayscale(0%);
}