.slms-course-archive-header {
    text-align: center;
    margin-bottom: 35px;
}

.slms-course-archive-header h2 {
    font-size: 34px;
    margin-bottom: 10px;
    font-weight: 700;
}

.slms-course-archive-header p {
    color: #6b7280;
    font-size: 16px;
}

.slms-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.slms-course-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
}

.slms-course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.slms-course-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.slms-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.slms-course-card:hover .slms-course-image img {
    transform: scale(1.05);
}

.slms-course-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #1e73be;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.slms-course-body {
    padding: 22px;
}

.slms-course-category {
    font-size: 13px;
    font-weight: 600;
    color: #1e73be;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.slms-course-title {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.4;
}

.slms-course-title a {
    color: #111827;
    text-decoration: none;
}

.slms-course-title a:hover {
    color: #1e73be;
}

.slms-course-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
    color: #6b7280;
    font-size: 14px;
}

.slms-course-excerpt {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.slms-course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.slms-course-price {
    font-size: 22px;
    font-weight: 700;
    color: #16a34a;
}

.slms-course-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background: #1e73be;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.slms-course-btn:hover {
    background: #135e96;
    color: #fff;
}

.slms-no-courses-found {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 14px;
}