/* ============================================================
   Courses page
   ============================================================ */

.hero-short { min-height: 60vh; }

/* ── Course blocks ──────────────────────────────────────────── */
.course-block {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.course-block--reverse {
  grid-template-columns: 1fr 1.3fr;
}
.course-block--reverse .course-info  { order: 2; }
.course-block--reverse .course-image { order: 1; }

.course-info h2 { margin-bottom: 1rem; }

.course-image .img-placeholder { min-height: 320px; }

/* ── Course detail grid ─────────────────────────────────────── */
.course-details {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-item {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.detail-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  min-width: 120px;
  flex-shrink: 0;
}

.detail-value {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.detail-value.highlight {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ── Important notes ────────────────────────────────────────── */
.notes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.notes-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.notes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .course-block,
  .course-block--reverse {
    grid-template-columns: 1fr;
  }
  .course-block--reverse .course-info,
  .course-block--reverse .course-image {
    order: unset;
  }
  .detail-item {
    flex-direction: column;
    gap: 0.25rem;
  }
  .detail-label { min-width: unset; }
}
