/*
Theme Name: Germantoon Learning Child
Template: digimedia
*/
/* استایل لیست درس‌ها */
/* استایل لیست درس‌ها */
/* استایل لیست درس‌ها */

h1 {
    display: none;
}

.lesson-list-wrapper {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 10px;
    }

    .lesson-list {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }

    .lesson-card {
      display: block;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #ddd;
      transition: transform 0.2s ease;
      text-align: center;
      background: #fff;
      text-decoration: none;
    }

    .lesson-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .lesson-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .lesson-info {
      padding: 10px;
      background: #fafafa;
    }

    .lesson-info h3 {
      font-size: 16px;
      color: #333;
      margin: 0;
    }