/*
 Theme Name:   Ignite Child
 Theme URI:    
 Description:  Child theme for Ignite — includes Japanese Lessons page
 Author:       Marco
 Template:     ignite
 Version:      1.0.0
 Text Domain:  ignite-child
*/

/* ── Lessons List Page ─────────────────────────────── */

.lessons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.lesson-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.lesson-card:hover {
    opacity: 0.75;
}

.lesson-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-bottom: 0.5rem;
}

.lesson-card .lesson-no-image {
    width: 150px;
    height: 150px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.lesson-card .lesson-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}
