/* ==========================================================================
   Block: Photo Gallery
   Production reference: https://cbtm.ca/about/funding-and-partnerships/
   ========================================================================== */

.photo-gallery {
    padding: 35px 0;
}

.photo-gallery__container {
    max-width: var(--container-content);
}

.photo-gallery__wrapper {
    background-color: #fff;
    padding: 3%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 16px -3px rgba(0, 0, 0, 0.57);
}

.photo-gallery__title {
    color: var(--color-primary);
    margin-bottom: var(--spacing-xl);
}

.photo-gallery__grid {
    align-items: center;
    gap:30px;
}

.photo-gallery__item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-gallery__img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Lightbox mode (photos with square crop)
   Production reference: https://cbtm.ca/about/photo-gallery/
   ========================================================================== */

.photo-gallery--lightbox .photo-gallery__wrapper {
  background-color: transparent;
    border-radius: unset;
    box-shadow: unset;
}

.photo-gallery--lightbox .photo-gallery__item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

.photo-gallery--lightbox .photo-gallery__link {
    display: block;
    width: 100%;
    height: 100%;
}

.photo-gallery--lightbox .photo-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

@media (any-hover: hover) {
    .photo-gallery--lightbox .photo-gallery__item:hover .photo-gallery__img {
        transform: scale(1.05);
    }
}
