/* ============================================================
   RidersClass LMS — Public CSS v2.2
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.rc-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 24px;
    margin: 32px 0;
    font-family: 'Inter', sans-serif;
}
.rc-course-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    border: 1px solid #f1f5f9;
}
.rc-course-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.1); }
.rc-course-card img   { width: 100%; height: 190px; object-fit: cover; }
.rc-card-body         { padding: 20px; }
.rc-card-body h4      { margin: 0 0 10px; font-size: 17px; font-weight: 700; color: #1e293b; line-height: 1.3; }

.rc-badge {
    display: inline-block;
    padding: 3px 11px;
    background: #ede9fe;
    color: #5b21b6;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: capitalize;
}
.rc-price { font-size: 20px; font-weight: 800; color: #0B3D91; margin: 10px 0 14px; }

.rc-btn {
    display: inline-block;
    padding: 11px 22px;
    background: #0B3D91;
    color: white !important;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background .2s;
    border: none;
    cursor: pointer;
}
.rc-btn:hover { background: #0a3278; }

.rc-progress-bar  { background: #e2e8f0; border-radius: 999px; height: 7px; overflow: hidden; margin: 8px 0 4px; }
.rc-progress-fill { background: linear-gradient(90deg,#10b981,#059669); height: 100%; border-radius: 999px; transition: width .5s; }

.rc-dashboard {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
}
.rc-dashboard h2 { font-size: 26px; font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.rc-dashboard h3 { font-size: 18px; font-weight: 600; color: #374151; margin: 28px 0 14px; }
