@import url("../../cosmos/lessons/style.css");

/* ───────────────────────────────────────────────────────────────
   高尔夫的逻辑 / golf track  (The Logic of Golf — You vs the Course)
   Part of the 运动 · 球类的逻辑 group (7th track: the lone NON-adversarial
   sport — you play the course, not an opponent; no defense). Reuses the
   cosmos component sheet verbatim (kicker / source-note / takeaway /
   position-grid / lesson-flow / mini-flow / trade-table / toc-grid /
   widget / kpi-grid / dist-canvas). Widgets draw holes, lies, the
   strokes-gained / expected-strokes surface and risk-reward decisions
   procedurally on a .dist-canvas — no images.
   ─────────────────────────────────────────────────────────────── */

/* A course / green canvas — same sizing contract as .dist-canvas. */
.course-canvas {
  width: 100%;
  display: block;
  border-radius: 10px;
  margin-top: 12px;
  background: #0a1f12;            /* fairway green at dusk */
  border: 1px solid rgba(120, 200, 150, 0.18);
}

.key-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; font-size: 12px; color: var(--text-mute); }
.key-row .dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 5px; vertical-align: middle; }
