.dionisy__festival_lineup {
    width: 100%;

    display: flex;
    justify-content: center;

    padding: 3rem 0rem 0rem;
}

.dionisy__festival_lineup_wrapper {
    transition: all .3s;
    
    display: flex;
    justify-content: center;
}

.dionisy__festival_lineup_poster {
    width: 100%;

    display: flex;
    justify-content: center;
}

.dionisy__festival_lineup_poster>img {
    max-width: 100%;
    max-height: 30rem;

    aspect-ratio: 1 / 1;

    object-fit: contain;
}

@media screen and (max-width: 767px) {
    .dionisy__festival_lineup_wrapper {
        width: 80%;
    }
}

@media screen and (min-width: 768px) {
    .dionisy__festival_lineup_wrapper {
        width: var(--wrapper-width);
    }
}