/*
  ========================================
  Modern Styles for Course Program Page
  ========================================
*/

.program-hero {
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
    color: white;
    padding: 4rem 0;
}

.timeline-container {
    max-width: 800px;
    margin: auto;
}

.timeline-day-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.07), 0 4px 6px -4px rgb(0 0 0 / 0.07);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.timeline-day-header {
    background-color: #f8fafc; /* slate-50 */
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.timeline-day-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b; /* slate-800 */
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.timeline-item:last-child {
    border-bottom: none;
}

.timeline-icon-wrapper {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.timeline-icon {
    background-color: #dbeafe; /* blue-100 */
    color: #2563eb; /* blue-600 */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-time {
    font-weight: 600;
    color: #334155; /* slate-700 */
    margin-bottom: 0.25rem;
}

.timeline-session-title {
    font-weight: 600;
    color: #1e293b;
}

.timeline-session-desc {
    color: #64748b; /* slate-500 */
    font-size: 0.9rem;
}

.cta-program {
    background-color: #f0f9ff; /* blue-50 */
    text-align: center;
    padding: 4rem 1.5rem;
}
