/**
 * Diving Courses page — page-specific styles only.
 * Cards, sections, hero, and the CTA band all come from css/components/.
 */

/* ── Course path strip ───────────────────────────────────────────────────── */

.ba-course-path {
    background: var(--color-dark-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ba-course-path__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.ba-course-path__step {
    flex: 1;
    min-width: 0;
    max-width: 340px;
}

.ba-course-path__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.35rem 2rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s, background 0.2s;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.ba-course-path__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.ba-course-path__num {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.5;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.ba-course-path__link:hover .ba-course-path__num {
    opacity: 1;
}

.ba-course-path__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ba-course-path__info strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: inherit;
    line-height: 1.2;
}

.ba-course-path__info span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ba-course-path__divider {
    color: rgba(255, 255, 255, 0.15);
    padding: 0 0.25rem;
    flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 991.98px) {
    .ba-course-path__step {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .ba-course-path__list {
        flex-direction: column;
        align-items: stretch;
    }

    .ba-course-path__link {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 0.85rem 1.25rem;
    }

    .ba-course-path__num {
        font-size: 1.25rem;
    }

    .ba-course-path__divider {
        display: none;
    }
}
