/* .fotoalbum-overviewGrid */


.fotoalbum-overviewGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    height: max-content;
    position: relative;
    margin-bottom: 0.5rem;
}
  
.referentieTitle {
    width:100% !important;
    padding:1rem;
}
.fotoalbum-overviewGrid .fotoalbumGridItem {
    position: relative;
    background-color: #fff; /* Just a sample background color */
    padding: 0px; /* Adjust padding as needed */
    /* aspect-ratio: 1; */ /* Ensures equal width and height */
    border-radius: 13px;
    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:hover{
    transform:rotateZ(0.5deg) scale(1.03);
}

.fotoalbum-overviewGrid .fotoalbumGridItem .imageHolder{
    background-size: cover;
    aspect-ratio: 1;
    height: auto;
    width: 100%;
}
.fotoalbum-overviewGrid .fotoalbumGridItem span{
    width:100%;
    text-align:center;
    padding: 7px 10px;
    font-size: 14px;
    color: var(--themeBorderColorDark);
    display: inline-block;
    font-weight: 600;
}
                                                