/* WRAPPER → zentriert das Grid */
.image-3-wrapper {
    display: flex;
    align-items: top;   /* 🔥 vertikal top */
    justify-content: center;
    height: 100%;
}

/* GRID */
.image-3-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr; /* 🔥 WICHTIG */
    gap: 10px;
    width: 100%;
    height: 600px; /* 🔥 kannst du setzen */
}

.image-3-grid a {
    box-shadow: 0px 0px 10px rgba(177, 177, 177, 0.5);
    border: 5px solid #FFF;
}

/* POSITIONEN */
.img-3 {
   grid-column: 1 / span 2;
}

/* BILDER */
.image-3-grid a {
    display: block;
    overflow: hidden;
    border-radius: 0px;
}

.image-3-grid img {
     width: 100%;
    height: 100%;
    object-fit: cover;
   
}

/* unteres Bild etwas flacher */
.img-3 img {
    aspect-ratio: 8 / 3;
}

/* hover */
.image-3-grid a:hover img {
    transform: scale(1.03);
    transition: 0.3s ease;
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .image-3-wrapper {
        height: auto;
    }

    .image-3-grid {
        max-width: 100%;
    }
}
