#calendar h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-bold);
    text-align: center;
}

.schedule-wrap {
    max-width: 900px;
    margin: 0 auto;
    width: 90%;
}

.schedule-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.schedule-header h1 {
    margin-bottom: .25rem;
    font-size: clamp(24px, 4vw, 34px);
}

.schedule-subtitle {
    color: var(--color-text-light);
    opacity: .9;
}

/* Accordion base */
.accordion {
    display: grid;
    gap: 14px;
}


details.schedule-day {
    background: color-mix(in oklab, white 92%, black 8%);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    overflow: hidden;
    color: var(--color-secondary);
}


summary.schedule-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: .2px;
    text-transform: capitalize;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

summary.schedule-summary::-webkit-details-marker {
    display: none;
}


.chev {
    width: 20px;
    height: 20px;
    flex: none;
    transition: transform .2s ease;
    stroke: var(--color-secondary);
}

details[open] .chev {
    transform: rotate(90deg);
}


.panel {
    border-top: 1px solid color-mix(in oklab, var(--color-line) 60%, transparent);
}

.events {
    list-style: none;
    padding: 10px;
    margin: 0;
    display: grid;
    gap: 8px;
}


/* Row layout: title on left, time box on right */
.row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 10px;
    border-radius: 10px;
    transition: var(--transition);
}

.row+.row {
    margin-top: 2px;
}

.row:hover {
    background: color-mix(in oklab, transparent 85%, black 15%);
    transform: translateY(-1px);
}


.title {
    font-weight: 700;
    color: var(--color-secondary);
}


.time-box {
    padding: 6px 10px;
    border-radius: 10px;
    color: #000;
    font-weight: 800;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .2);
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--color-bold);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .1);
}


@media (prefers-reduced-motion: reduce) {}