.dionisy__festival_more {
    width: 100%;

    display: flex;
    justify-content: center;

    padding: 3rem 0rem 3rem;
}

.dionisy__festival_more_wrapper {
    transition: all .3s;
}

.dionisy__festival_more_img > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.dionisy__festival_more_info h1 {
    font-family: "Titillium Web", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 600;
}

.dionisy__festival_more_info > a {
    padding: .5rem 1rem;

    background: #f25d27;
    font-family: "Titillium Web", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 600;
    color: white;

    width: fit-content;
    transition: all .25s;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.dionisy__festival_more_info > a:hover {
    background: #7b15bf;
}

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

        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .dionisy__festival_more_img {
        width: 100%;
        max-height: 15rem;
        order: 1;
    }

    .dionisy__festival_more_info {
        width: 100%;

        display: flex;
        flex-direction: column;
        gap: 1rem;

        order: 2;
    }
}

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

        display: flex;
        align-items: stretch;
        gap: 3rem;
    }

    .dionisy__festival_more_img {
        flex: 1;
    }

    .dionisy__festival_more_info {
        width: 50%;

        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}