/* Learning Paths Page Styles */
.paths-section {
    padding: 4rem 0;
}

.path-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.path-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.path-card:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-4px);
}

.path-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.path-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.path-meta {
    text-align: right;
}

.path-courses,
.path-duration {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.path-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.path-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.path-progress {
    margin-bottom: 1.5rem;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 9999px;
    transition: width 0.5s ease;
}

.path-progress span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .path-cards {
        grid-template-columns: 1fr;
    }
}
