/* 8. MODULO: LMS (CURSOS) */
.course-img-wrapper {
    height: 190px;
    background: #eee;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.course-cover-link {
    display: block;
    width: 100%;
    height: 100%;
}

.course-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.course-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-body {
    padding: 1rem 1rem 1.1rem;
    gap: 0.55rem;
}

.course-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5rem;
    margin-bottom: 0.35rem !important;
}

.course-meta .badge {
    font-weight: 600;
}

.progress-track {
    height: 7px;
    background: #e9ecef;
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 999px;
}

.course-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

.badge-pending { background: var(--warning); color: #333; }
.badge-approved { background: var(--success); }

@media (min-width: 1200px) {
    .course-img-wrapper {
        height: 180px;
    }
}
