/* Einheitliche Projektbereiche */
.projects-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 36px;
    align-items: start;
}

/* Einheitliche Galerie */
.gallery-3,
.gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

/* Einheitliche Bildkarten */
.gallery-3 .shot-3,
.gallery .shot {
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 18px;
    background: #e9e7e1;
    box-shadow: 0 12px 28px rgba(2, 6, 23, .09);
}

/* Einheitliche Bilder */
.gallery-3 .shot-3 img,
.gallery .shot img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    transition: transform .35s ease;
}

.gallery-3 .shot-3:hover img,
.gallery .shot:hover img {
    transform: scale(1.025);
}

/* Rechte Infokarte */
.projects-grid > .card {
    width: 100%;
    min-height: 100%;
}

/* Tablet */
@media (max-width: 960px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid > .card {
        min-height: auto;
    }
}

/* Smartphone */
@media (max-width: 620px) {
    .gallery-3,
    .gallery {
        grid-template-columns: 1fr;
    }
}

.gallery-hidden {
    display: none;
}

.shot-3 {
    position: relative;
}

.gallery-more {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: rgba(0,0,0,.45);
    color: #fff;

    font-weight: 700;
    font-size: 18px;

    border-radius: inherit;
    pointer-events: none;
}

.gallery-more strong{
    font-size:26px;
}