/* courses.css — Courses page specific styles */

.courses-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc(var(--nav-h) + 48px) 32px 64px;
    text-align: center;
    gap: 24px;
}

.page-title {
    color: var(--purple);
    font-size: clamp(30px, 4vw, 52px);
    margin-top: 8px;
}

.courseimg {
    width: 100%;
    max-width: 860px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.coming-soon-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 32px;
    border-radius: 40px;
    letter-spacing: .03em;
    box-shadow: 0 4px 18px rgba(244,111,34,.3);
    margin-top: 8px;
}

.courses-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.7;
}

@media (max-width: 480px) {
    .courses-main { padding: calc(var(--nav-h) + 28px) 16px 48px; }
}