/* RidersClass LMS - Styles publics */
.rc-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}
.rc-course-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.rc-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.rc-course-card img { width:100%; height:180px; object-fit:cover; }
.rc-card-body { padding: 20px; }
.rc-card-body h4 { margin: 0 0 12px; font-size: 18px; color: #1e293b; }
.rc-price { font-size: 20px; font-weight: 700; color: #0B3D91; margin: 10px 0; }
.rc-badge {
    display: inline-block;
    padding: 3px 10px;
    background: #e0e7ff;
    color: #3730a3;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}
.rc-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0B3D91;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
    transition: background 0.2s;
}
.rc-btn:hover { background: #0a3278; color: white; }
.rc-progress-bar { background:#e2e8f0; border-radius:10px; height:8px; overflow:hidden; margin:8px 0 4px; }
.rc-progress-fill { background:#10b981; height:100%; border-radius:10px; }
.rc-dashboard { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }
.rc-dashboard h2 { font-size: 28px; margin-bottom: 8px; }
