/* 프로그램 상세 */
.program-detail-header { margin-bottom: 32px; }
.back-link {
    display: inline-block; margin-bottom: 16px;
    font-size: 14px; color: var(--text-light); text-decoration: none;
}
.back-link:hover { color: var(--primary); }
.program-detail-header h1 {
    font-size: 28px; font-weight: 800;
    margin-top: 12px; letter-spacing: -0.02em;
}
.program-detail-body {
    font-size: 15px; line-height: 1.8;
    color: var(--text-light); margin-bottom: 40px;
}

/* 예약 카드 */
.reserve-card { padding: 32px; }
.reserve-card h2 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }

/* 예약 리스트 */
.reserve-list { display: flex; flex-direction: column; gap: 16px; }
.reserve-item {
    display: flex; justify-content: space-between;
    align-items: center; padding: 24px;
}
.reserve-item.cancelled { opacity: 0.5; }
.reserve-info h3 { font-size: 16px; font-weight: 700; margin: 8px 0 8px; color: var(--text); }
.reserve-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-muted); }
