/* Gallery */
.gallery-tiled { 
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    gap: 8px;
}

.gallery-item {
    background-color: lightgray;
    flex: auto;
    height: 240px;
    min-width: 150px;
    max-width: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:nth-child(4n+1) {
    width: 220px;
}
.gallery-item:nth-child(4n+2) {
    width: 180px;
}
.gallery-item:nth-child(4n+3) {
    width: 260px;
}
.gallery-item:nth-child(4n+4) {
    width: 140px;
}

.hover-shadow {
    transition: 0.2s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}