.schedule-section {
    background: var(--teal-dark);
    color: var(--white);
}

.schedule-section .section-label {
    color: var(--gold);
}

.schedule-section .section-title {
    color: var(--white);
}

.schedule-section .section-subtitle {
    color: rgba(255, 255, 255, .75);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.day-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius);
    padding: 20px 16px;
}

.day-name {
    font-weight: 900;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.day-slot {
    margin-bottom: 10px;
}

.day-slot-time {
    font-size: .72rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 3px;
}

.day-slot-label {
    font-size: .86rem;
    font-weight: 700;
    color: var(--white);
}

.friday-box {
    margin-top: 24px;
    background: rgba(232, 168, 56, .15);
    border: 1px solid rgba(232, 168, 56, .3);
    border-radius: var(--radius);
    padding: 20px 24px;
    max-width: 560px;
}

.friday-box-title {
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 6px;
}

.friday-note {
    font-size: .88rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 600;
    line-height: 1.6;
}