﻿.logo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.logo-gallery__item {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    padding: 10px;
}

    .logo-gallery__item picture {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .logo-gallery__item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

@media (min-width: 768px) {
    .logo-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo-gallery h2 {
    margin-bottom: 16px;
}

@media (max-width: 991px) {
    .logo-gallery h2 {
        font-size: 1.9375rem;
    }
}

.logo-gallery__subtitle {
    margin-bottom: 32px;
}

@media (min-width: 821px) {
    .logo-gallery__subtitle {
        margin-bottom: 16px;
    }
}
