.gallerie-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 600px) {
    .gallerie-block {
        grid-template-columns: 1fr; /* Change to 1 column on small screens */
    }
}

.gallerie-block .wp-caption {
    flex: 1;
    margin: 5px;
    text-align: center;
}

.wp-caption {
    width: 100% !important;
}

br {
    display: none;
}

a {
    width: fit-content;
    margin: 0 auto;
}

.gallerie-block img {
    max-width: 300px;
    height: auto;
    width: 100%;
    aspect-ratio: 1/1;
}
