/* -------------------------------------------------------------------------- */
/*                                   Gallery                                  */
/* -------------------------------------------------------------------------- */
.gallery__section {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
}

.gallery__section__card {
    display: flex;
    min-height: 540px;
    padding: 24px 0;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
}

.gallery__section__card:hover {
    cursor: pointer;
}

.gallery__section__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.00) 0%, rgba(28, 28, 28, 0.40) 100%);
    z-index: 1;
}

.gallery__section__card__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gallery__section__card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery__section__card__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.sponsors__section__card__description>a {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .gallery__section {
        grid-template-columns: repeat(auto-fit, minmax(90%, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery__section__card {
        min-height: 390px;
    }
}
/* -------------------------------------------------------------------------- */
