/*
Theme Name: Blocksy Child
Theme URI: https://creativethemes.com/blocksy/
Description: Child Theme für Blocksy
Author: Jüx
Template: blocksy
Version: 1.0
*/

/* YouTube-Videos wieder im 16:9-Format */
iframe[src*="youtube.com"],
iframe[src*="youtu.be"] {
    aspect-ratio: 16 / 9 !important;
    width: 100% !important;
    height: auto !important;
}

/* Bilder als 5er Galerie */
.gallery {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 10px !important;
}

.gallery-item {
    width: auto !important;
    margin: 0 !important;
}

.gallery-item img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

