/* .fotoalbum-overviewGrid */


.fotoalbum-overviewGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    height: max-content;
    position: relative;
    margin-bottom: 0.5rem;
}
@media screen and (max-width:1024px){
    .fotoalbum-overviewGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width:769px){
    .fotoalbum-overviewGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width:400px){
    .fotoalbum-overviewGrid {
        grid-template-columns: repeat(1, 1fr);
    }
}
  
  
.referentieTitle {
    width:100% !important;
    padding:1rem;
}
.fotoalbum-overviewGrid .fotoalbumGridItem {
    position: relative;
    background-color: rgba(0,0,0,0.2); /* Just a sample background color */
    padding: 0px; /* Adjust padding as needed */
    /* aspect-ratio: 1; */ /* Ensures equal width and height */
    border-radius: 0;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
    border-top: 5px solid var(--themePrimary);
    display: block;
    transition: all .1s ease-in-out;
}
.fotoalbum-overviewGrid .fotoalbumGridItem h3{
    font-size: 33px;
    text-align: center;
}

.fotoalbum-overviewGrid .fotoalbumGridItem:hover img{
    min-height: 101%;
    min-width: 101%;
    filter: grayscale(1);
}
.fotoalbum-overviewGrid .fotoalbumGridItem:hover h3{
    color: var(--themeTint);
}

.fotoalbum-overviewGrid .fotoalbumGridItem .imageHolder{
    background-size: cover;
    aspect-ratio: 1;
    height: auto;
    width: 100%;
    border-radius: 0;
}
.fotoalbum-overviewGrid .fotoalbumGridItem span{
    position: absolute;
    left: 0;
    bottom: 0;
    width:100%;
    text-align:center;
    padding: 7px 10px;
    font-size: 14px;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(2px);
}
                                                