.parent {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: repeat(11, 1fr);
grid-column-gap: 5px;
grid-row-gap: 5px;
}

.div1 { grid-area: 1 / 1 / 4 / 5; }
.div2 { grid-area: 1 / 5 / 4 / 9; }
.div3 { grid-area: 1 / 9 / 4 / 13; }
.div4 { grid-area: 4 / 1 / 8 / 7; }
.div5 { grid-area: 4 / 7 / 8 / 13; }
.div6 { grid-area: 8 / 1 / 12 / 4; }
.div7 { grid-area: 8 / 4 / 12 / 7; }
.div8 { grid-area: 8 / 7 / 12 / 10; }
.div9 { grid-area: 8 / 10 / 12 / 13; }

.gridVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* oder contain, je nach Geschmack */
    background: #111;
}


/* Falls später mal genutzt */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 24px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

/* Hover-Text direkt auf dem Video */
.video-wrapper::after {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 5;
}

.video-wrapper:hover::after {
    opacity: 1;
}


.textRight p{
    padding-top:2em;
    line-height: 4vh;
    padding-bottom: 4em;
}