/* ===== v7 COURSES (catalogue) — page-specific styles (loads after v7-shared.css) ===== */

/* Hero grid + real stats (mirrors v7-courses.html hero, honest data only) */
.courses-hero .hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.hero-stats { display: flex; gap: 34px; padding-top: 20px; }
.hero-stat strong { font-family: 'Inter Tight', sans-serif; font-size: 32px; font-weight: 800; color: var(--ink); display: block; line-height: 1; letter-spacing: -0.02em; }
.hero-stat span { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 6px; display: block; }

/* Facet chip band — descriptive, no fabricated counts */
.cat-row { display: flex; gap: 10px; flex-wrap: wrap; padding: 26px 0 0; border-top: 1px solid var(--line); margin-top: 30px; }
.cat-chip { padding: 10px 18px; font-size: 13px; font-weight: 700; color: var(--ink-2); background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--r-full); display: inline-flex; align-items: center; gap: 7px; }
.cat-chip .count { color: var(--muted); font-weight: 600; font-size: 12px; }
.cat-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.cat-chip.active .count { color: rgba(255,255,255,0.72); }
.cat-chip .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); display: inline-block; }

/* Results region */
.courses-main { padding: 44px 0 96px; }
.results-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; flex-wrap: wrap; gap: 16px; }
.results-count { font-size: 14px; color: var(--muted); font-weight: 500; }
.results-count strong { color: var(--ink); font-weight: 700; }
.results-note { font-size: 13px; color: var(--muted); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.results-note .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); display: inline-block; }

/* Empty state */
.courses-empty { text-align: center; padding: 72px 0; }
.courses-empty h2 { font-family: 'Inter Tight', sans-serif; font-size: 28px; font-weight: 800; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.02em; }
.courses-empty p { color: var(--muted); max-width: 460px; margin: 0 auto; line-height: 1.6; }

/* Help / choose CTA band */
.courses-help { background: var(--g-plum-rich); border-radius: var(--r-2xl); padding: 48px 44px; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; color: #fff; box-shadow: var(--shadow-lg); margin-top: 8px; }
.courses-help h2 { font-family: 'Inter Tight', sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.12; margin-bottom: 10px; }
.courses-help p { font-size: 15px; opacity: 0.92; max-width: 540px; line-height: 1.55; }
.courses-help-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .courses-hero .hero-grid { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .courses-help { grid-template-columns: 1fr; padding: 36px 28px; }
}
@media (max-width: 640px) {
  .hero-stats { gap: 26px; }
  .hero-stat strong { font-size: 26px; }
  .results-head { flex-direction: column; align-items: flex-start; }
}
