.dionisy__festival_food {
    width: 100%;

    display: flex;
    justify-content: center;

    padding: 3rem 0rem 3rem;
}

.dionisy__festival_food_wrapper {
    transition: all .3s;
}

.dionisy__festival_food_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_food_info h2 {
    font-family: "Titillium Web", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 600;
}

.dionisy__festival_food_img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    aspect-ratio: 1/1;
}

.dionisy__festival_food_info > div {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

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

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .dionisy__festival_food_img {
        width: 100%;
        max-height: 25rem;

        order: 1;
    }

    .dionisy__festival_food_info {
        width: 100;

        display: flex;
        flex-direction: column;
        gap: .75rem;

        order: 2;
    }
}


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

        display: flex;
        justify-content: center;
        justify-items: stretch;
        gap: 3rem;
    }

    .dionisy__festival_food_img {
        width: 50%;
        max-height: 30rem;

        order: 2;
    }

    .dionisy__festival_food_info {
        width: 50%;

        display: flex;
        flex-direction: column;
        gap: .75rem;

        order: 1;
    }
}

