.listen-practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.listen-topic-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.listen-topic-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.lesson-title {
    font-weight: 700;
    font-size: 16px;
    color: #111827;
    margin-bottom: 8px;
}

.lesson-description {
    font-size: 15px;
    color: #212121;
    margin-bottom: 12px;
}

.lesson-progress {
    font-size: 16px;

}

.lesson-progress.not-started {
    color: #484848;
}
.lesson-progress.progress-low {
    color: #f97316;
}
.lesson-progress.progress-mid {
    color: #18cc16;
}
.lesson-progress.progress-high {
    color: #22c55e;
}

.lesson-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.lesson-level {
    font-size: 16px;
    color: #0893c6;
}

.lesson-start {
    font-weight: 700;
    color: #22c55e;
    text-decoration: none;
}

.lesson-badge {
    position: absolute;
    right: 15px;
    top: 15px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.lesson-badge.vip {
    background: #fee2e2;
    color: #b91c1c;
}

.lesson-badge.free {
    background: #fef9c3;
    color: #92400e;
}

.lesson-title::before {
    content: none !important;
}
