.schedule-wrapper {
    width: 100%;
    padding: 20px 5%;
    margin: 0 auto;
    font-family: 'Playfair Display', serif;
}

.schedule-top {

    width: 60%;
    margin: 0 auto 50px;
    font-size: 1.3rem;
}

.schedule-text {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 2;
}

.schedule-text-long {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.5;
}


.schedule {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.schedule-image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
}

.itinerary-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15), -3px -3px 10px rgba(0, 0, 0, 0.15);
}


@media (max-width: 950px) {
    .schedule-text {
        width: 100%;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .schedule-text-long {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .schedule-top {
        width: 75%;
        font-size: 1.2rem;
        /*margin: 0 auto 50px;*/
    }


    .schedule {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        margin-bottom: 60px;
    }
}


@media (max-width: 768px) {
    .schedule {
        flex-direction: column;
        justify-content: space-evenly;
        gap: 10px;
    }


    .schedule-image {
        order: 1;
        width: 100%;
        margin-bottom: 10px;
        justify-content: center;
    }

    .schedule-text, .schedule-text-long {
        order: 2;
        width: 100%;
        text-align: center;
        font-size: 1.2rem;
        line-height: 1.8;
    }

    img {
        width: 100%;
        max-width: 400px;
    }

    .schedule-top {

        width: 95%;
        margin: 0 auto 50px;
        font-size: 1.2rem;
    }
}