.txmy-course-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.txmy-course-item {
    display: flex;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
}

.txmy-course-image {
    flex: 0 0 140px;
    height: 100px;
    overflow: hidden;
    position: relative;
}

.txmy-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.txmy-course-duration {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 1;
    pointer-events: none;
}

.txmy-course-info {
    flex: 1;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.txmy-course-type {
    font-size: 13px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 4px;
}

.txmy-course-title a {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.txmy-course-title a:hover {
    text-decoration: underline;
}

.txmy-course-meta {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.txmy-course-date {
    color: #999;
    font-size: 12px;
}

@media (max-width: 767px) {
    .txmy-course-item {
        flex-direction: column;
    }

    .txmy-course-image {
        width: 100%;
        height: 180px;
    }

    .txmy-course-info {
        padding-left: 0;
        padding-top: 8px;
    }
}
