/* =============================================================================
   CNX LMS — My Account "My courses" list
   ========================================================================== */

.cnx-lms--account { background: transparent; }

.cnx-lms .cnx-mycourses {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cnx-lms .cnx-mycourses__row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: var(--cnx-radius-sm);
    background: var(--cnx-cream);
    box-shadow: var(--cnx-shadow-sm);
}

.cnx-lms .cnx-mycourses__thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--cnx-radius-sm);
    object-fit: cover;
    flex: none;
}

.cnx-lms .cnx-mycourses__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.cnx-lms .cnx-mycourses__title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
}

@media (max-width: 600px) {
    .cnx-lms .cnx-mycourses__row { flex-wrap: wrap; }
    .cnx-lms .cnx-mycourses__info { flex-basis: calc(100% - 80px); }
    .cnx-lms .cnx-mycourses__row .cnx-btn { flex: 1 1 100%; }
}
