.schedule-section {
    position: relative;
    overflow: hidden;
}

.schedule-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
}

.schedule-section .schedule-wrapper {
    position: relative;
    z-index: 2;
}

.schedule-bg {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 0;
}

.schedule-bg-half {
    flex: 1;
    background-size: cover;
    background-repeat: no-repeat;   
}

.schedule-bg-left {
    background-image: url('../imgs/schedule/schedule_background_left.jpg');
    background-position: center right;
}

.schedule-bg-right {
    background-image: url('../imgs/schedule/schedule_background_right.jpg');
    background-position: center left;
}

.schedule-wrapper {
    padding: 80px 24px;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.schedule-wrapper .label,
.schedule-wrapper .title {
    color: #fff;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    text-align: left;
}

.schedule-item {
    display: flex;
    align-items: baseline;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 16px;
}

.schedule-time {
    font-family: 'Cardo', serif;
    font-size: 1.4rem;
    min-width: 70px;
    flex-shrink: 0;
}

.schedule-content {
    flex: 1;
}

.schedule-event {
    font-family: 'Cardo', serif;
    font-size: 1.2rem;
    margin: 0 0 4px;
}

.schedule-description {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
}

.schedule-note {
    margin-top: 40px;
    font-size: 0.85rem;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .schedule-bg-left {
        background-image: url('../imgs/schedule/schedule_background_left.jpg');
        background-position: center center;
    }

    .schedule-bg-right {
        display: none;
    }

    .schedule-wrapper {
        padding: 60px 20px;
    }
}