.schedule-section {
    padding: 5rem 13% 8rem;
    display: flex;
    justify-content: center;
    gap: 2rem;

    @media (max-width:1100px) {
        padding: 5rem 8% 5rem;
        flex-direction: column-reverse !important;
        flex-wrap: nowrap !important;
        align-content: center !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    @media (max-width:800px) {
        padding: 2rem;
    }
}

.schedule-section .material-icons-outlined {
    color: hsl(var(--base-grey-600));
    margin-right: 1rch;
}

.schedule-section__info-wrapper {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 50%;
    display: flex;
    align-items: stretch;
    flex-direction: column;
}

.schedule-section__info-wrapper p:has(.material-icons-outlined) {
    display: flex;
    align-items: center;
}

.schedule-section__info-wrapper>* {
    margin-bottom: 1.5rem;

    @media (max-width:1100px) {
        margin-bottom: 10px !important;
    }
}

.schedule-section__info-wrapper h2 {
    font-size: 1.5rem;
    font-weight: bold;
}
.schedule-section__info-wrapper p {
    line-height: 1.5rem;
}

.schedule-section__map-wrapper {
    /* flex-grow: 1;
    height: 100%;
    aspect-ratio: 1;
    background-image: url('https://placehold.jp/800x800.png?text=Map loading...');
    background-position: center center;
    background-size: cover;
    border-radius: 20px; */
    flex-grow: 0;
    flex-shrink: 0;
    height: 100%;
    box-sizing: border-box;
    width: 50%;
    aspect-ratio: 1;
    background-image: url(https://placehold.jp/800x800.png?text=Map loading...);
    background-position: center center;
    background-size: cover;
    border-radius: 20px;

    @media (max-width:1100px) {
        width: 100% !important;
    }
}

.schedule-section__map-wrapper #map {
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

.schedule-link{
    text-decoration: none;
    color: var(--bs-body-color);
}
