.overview {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.fragment-1 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}
.fragment-2 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}
@media (max-width: 860px) {
    .row.end-aligned {
        flex-direction: column;
        gap: 45px;
        margin-bottom: 25px;
        align-items: start;
    }
}
@media (max-width: 768px) {
    .row {
        flex-direction: column-reverse;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
    #poster-preview {
        display: flex;
        justify-content: center;
        overflow-x: hidden;
    }
    #poster-preview img {
        min-width: 1000px;
    }
}
@media (max-width: 620px) {
    .gridbox {
        grid-template-columns: repeat(2, 1fr);
    }
    .overview {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    .fragment-1 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    .fragment-2 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
}