.bertival-sponsor-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.bertival-sponsor-banner a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.bertival-sponsor-banner img {
    max-height: 70px;
    max-width: 160px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.85;
}

.bertival-sponsor-banner a:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.sponsor-logo--woodset {
    max-height: 90px;
}

.sponsor-logo--flowris {
    max-height: 140px;
}

@media (max-width: 768px) {
    .bertival-sponsor-banner {
        gap: 25px;
    }

    .bertival-sponsor-banner img {
        max-height: 55px;
    }

    .sponsor-logo--woodset,
    .sponsor-logo--flowris {
        max-height: 70px;
    }
}