/* -------------------------------------------------------- */
/* 🔹 Courses Section                                       */
/* -------------------------------------------------------- */
/* Course grid — mirrors the course cards on the Quiz tab    */

.courses {
  padding-block: var(--website-section-spacing);
}

.courses .section-title {
  text-align: center;
}

/* Column-wise flow keeps each subject's 1 and 2 stacked:
   Biologi | Fysik | Kemi */
.courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: var(--spacing-between-cards);
  margin-top: var(--space-xxxl);
  list-style: none;
}

.courses__card {
  display: flex;
  align-items: center;
  gap: var(--space-l);
}

/* Course glyph in the primary color — mirrors CourseIcon */
.courses__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.courses__title {
  font-size: var(--text-title-medium);
  font-weight: var(--text-title-weight);
}

.courses__count {
  font-size: var(--text-body-medium);
  color: var(--color-text-secondary);
  margin-top: var(--space-xxs);
}


/* -------------------------------------------------------- */
/* 🔹 Responsive                                            */
/* -------------------------------------------------------- */
/* Straight to one column — two columns would split the pairs */

@media (max-width: 767px) {
  .courses__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
  }
}
