/* ══════════════════════════════════════════════════════════════
   🎓 DETAIL TÝDNE BĚŽECKÉHO KURZU — vzhled obsahu `full/data.bodyHtml`

   Odkud to je: vygenerované HTML týdne (`_bodyHtmlFromDays()`
   v scripts/maintenance/import-kurz-notion.js) používá třídy `cs-week-v2__*`,
   `cs-week-day*`, `cs-target*`, `cs-glossary`, `cs-resources`. Ty žily jen
   v `web/clenska-sekce/styles.css`. Když se sekce Kurz přestěhovala do hubu,
   přijelo s ní i tohle HTML — bez těchhle pravidel by se vykreslilo úplně holé.

   ⚠️ VŠECHNO je zanořené pod `.mu-kz-body`. Bez toho by se obecné selektory
   (`.cs-content p`, `.cs-resources li`) rozlezly po celém hubu. Když sem budeš
   přidávat pravidlo, prefix `.mu-kz-body ` NEVYNECHÁVEJ.

   ⚠️ Blok je ZÁMĚRNĚ VŽDY SVĚTLÝ, i v tmavém režimu. Vzhled týdne je psaný
   na bílém papíru — desítky barev textu jsou natvrdo tmavě zelené
   (`hsl(150,30%,14%)`). V tmavém režimu by splynuly s pozadím. Proto si
   `.mu-kz-body` lokálně přepisuje tokeny `--mu-*` zpátky na světlé hodnoty —
   stejný trik, jaký používá `.mu-modal-card` (viz CLAUDE.md, Tmavý režim).
   Kdyby se tenhle přepis zrušil, text zmizí.

   Zdroj pravdy pro obsah zůstává `courseContent/{id}/full/data`.
   ══════════════════════════════════════════════════════════════ */
.mu-kz-body {
  /* Tokeny, na které se vzhled týdne odkazuje. V hubu neexistují — pocházejí
     z web/styles.css (davidvas.cz), odkud se sem obsah stěhoval. */
  --foreground: 150 20% 10%;
  --muted-foreground: 150 8% 40%;
  --border: 145 15% 88%;
  --primary: 145 75% 28%;
  --font-display: 'Montserrat', sans-serif;
  /* Návrat na světlé hodnoty — viz varování v hlavičce. */
  --mu-text: 150 30% 14%;
  --mu-text-muted: 150 10% 40%;
  --mu-card: 0 0% 100%;
  --mu-bg2: 0 0% 100%;
  --mu-border: 150 15% 88%;
  --mu-accent-text: 142 72% 28%;

  background: #fff;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  border-radius: 18px;
  padding: 20px 22px;
  margin-top: 16px;
  overflow-wrap: anywhere;
}
/* Široký obsah (tabulka 7 dní) scrolluje ve svém rámečku, ne celou stránkou. */
.mu-kz-body .cs-week-table { display: block; overflow-x: auto; }

@media (max-width: 520px) {
  .mu-kz-body { padding: 15px 14px; border-radius: 14px; }
}

.mu-kz-body .cs-content { color: hsl(var(--foreground)); min-width: 0; }
.mu-kz-body .cs-resources {
  background: hsla(145, 25%, 96%, 0.7);
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.mu-kz-body .cs-resources h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: hsl(var(--foreground));
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 700;
}
.mu-kz-body .cs-resources ul { list-style: none; padding: 0; margin: 0; }
.mu-kz-body .cs-resources li {
  padding: 10px 0;
  border-bottom: 1px solid hsl(var(--border));
}
.mu-kz-body .cs-resources li:last-child { border-bottom: none; }
.mu-kz-body .cs-resources a {
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: 500;
}
.mu-kz-body .cs-resources a:hover { text-decoration: underline; }
.mu-kz-body .cs-week-intro {
  background: linear-gradient(135deg, hsl(150, 30%, 96%) 0%, hsl(142, 40%, 94%) 100%);
  border-left: 4px solid hsl(142, 70%, 45%);
  padding: 14px 18px;
  border-radius: 10px;
  margin: 0 0 22px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: hsl(150, 25%, 22%);
}
.mu-kz-body .cs-week-intro p { margin: 0 0 8px; }
.mu-kz-body .cs-week-intro p:last-child { margin-bottom: 0; }
.mu-kz-body .cs-week-intro strong { color: hsl(150, 30%, 14%); }
.mu-kz-body .cs-week-intro ul,
.mu-kz-body .cs-week-intro ol {
  margin: 8px 0;
  padding-left: 22px;
}
.mu-kz-body .cs-week-intro li { margin-bottom: 4px; }
.mu-kz-body .cs-week-day {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, hsl(150, 70%, 22%) 0%, hsl(145, 60%, 32%) 100%);
  padding: 8px 16px;
  border-radius: 8px;
  margin: 28px 0 14px;
  display: inline-block;
}
.mu-kz-body .cs-week-section {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: hsl(150, 30%, 14%);
  margin: 18px 0 8px;
}
.mu-kz-body .cs-target {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  margin: 8px 0;
  font-size: 0.95rem;
  line-height: 1.5;
  border-left: 4px solid;
}
.mu-kz-body .cs-target__label {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}
.mu-kz-body .cs-target-marathon {
  background: hsl(0, 80%, 97%);
  border-left-color: hsl(0, 75%, 55%);
  color: hsl(0, 30%, 24%);
}
.mu-kz-body .cs-target-marathon .cs-target__label {
  background: hsl(0, 80%, 92%);
  color: hsl(0, 75%, 32%);
}
.mu-kz-body .cs-target-half {
  background: hsl(215, 80%, 97%);
  border-left-color: hsl(215, 75%, 55%);
  color: hsl(215, 30%, 24%);
}
.mu-kz-body .cs-target-half .cs-target__label {
  background: hsl(215, 80%, 92%);
  color: hsl(215, 75%, 32%);
}
.mu-kz-body .cs-target-ten {
  background: hsl(45, 90%, 96%);
  border-left-color: hsl(40, 85%, 55%);
  color: hsl(35, 35%, 24%);
}
.mu-kz-body .cs-target-ten .cs-target__label {
  background: hsl(45, 90%, 88%);
  color: hsl(35, 75%, 30%);
}
.mu-kz-body .cs-target-orange {
  background: hsl(25, 90%, 96%);
  border-left-color: hsl(25, 85%, 55%);
}
.mu-kz-body .cs-target strong { font-weight: 700; }
.mu-kz-body .cs-target a { color: inherit; text-decoration: underline; }
.mu-kz-body .cs-week-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 0.94rem;
}
.mu-kz-body .cs-week-table th,
.mu-kz-body .cs-week-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid hsl(150, 15%, 92%);
  vertical-align: top;
}
.mu-kz-body .cs-week-table th {
  background: hsl(150, 30%, 95%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: hsl(150, 30%, 14%);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mu-kz-body .cs-week-table td:first-child {
  background: hsl(150, 30%, 98%);
  width: 110px;
}
.mu-kz-body .cs-content p { margin: 0 0 10px; line-height: 1.6; }
.mu-kz-body .cs-content ul,
.mu-kz-body .cs-content ol { margin: 0 0 12px; padding-left: 22px; }
.mu-kz-body .cs-content li { margin-bottom: 4px; line-height: 1.5; }
.mu-kz-body .cs-content a { color: hsl(142, 70%, 38%); text-decoration: underline; }
.mu-kz-body .cs-content a:hover { color: hsl(142, 70%, 32%); }
.mu-kz-body .cs-content strong { color: hsl(150, 30%, 14%); }
.mu-kz-body .cs-week-common-note {
  background: hsl(150, 30%, 96%);
  border: 1px solid hsl(150, 25%, 86%);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 0 0 22px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: hsl(150, 25%, 22%);
  text-align: center;
}
.mu-kz-body .cs-week-common-note strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: hsl(150, 30%, 14%);
  margin-bottom: 6px;
}
.mu-kz-body .cs-week-common-note br + * { margin-top: 4px; }
.mu-kz-body .cs-week-days {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mu-kz-body .cs-week-day-block {
  background: #fff;
  border: 1px solid hsl(150, 15%, 90%);
  border-radius: 12px;
  padding: 16px 20px 18px;
  margin: 0;
  box-shadow: 0 2px 8px hsla(150, 40%, 12%, 0.03);
}
.mu-kz-body .cs-week-day-block .cs-week-day {
  margin: 0 0 10px;
  font-size: 1rem;
}
.mu-kz-body .cs-week-day__title {
  margin: 0 0 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  color: hsl(150, 30%, 14%);
  line-height: 1.4;
}
.mu-kz-body .cs-week-day__title a {
  color: hsl(142, 70%, 32%);
  text-decoration: underline;
}
.mu-kz-body .cs-week-day__body {
  font-size: 0.94rem;
  line-height: 1.6;
  color: hsl(150, 15%, 22%);
}
.mu-kz-body .cs-week-day__body p {
  margin: 0 0 10px;
}
.mu-kz-body .cs-week-day__body p:last-child {
  margin-bottom: 0;
}
.mu-kz-body .cs-week-day__body ul,
.mu-kz-body .cs-week-day__body ol {
  margin: 8px 0;
  padding-left: 24px;
}
.mu-kz-body .cs-week-day__body li {
  margin-bottom: 4px;
  line-height: 1.5;
}
.mu-kz-body .cs-week-day__body a {
  color: hsl(142, 70%, 38%);
  text-decoration: underline;
}
.mu-kz-body .cs-week-day__exercises {
  margin: 12px 0 0;
  padding-left: 26px;
  font-size: 0.94rem;
}
.mu-kz-body .cs-week-day__exercises li {
  margin-bottom: 5px;
  line-height: 1.5;
}
.mu-kz-body .cs-week-day__exercises a {
  color: hsl(142, 70%, 32%);
  font-weight: 600;
  text-decoration: underline;
}
.mu-kz-body .cs-week-day__exercise-meta {
  color: hsl(var(--muted-foreground));
  font-size: 0.86rem;
}
.mu-kz-body .cs-week-day__stream {
  margin: 12px 0 0;
  padding: 10px 14px;
  background: hsl(0, 70%, 96%);
  border-left: 4px solid hsl(0, 70%, 55%);
  border-radius: 8px;
  font-weight: 600;
  color: hsl(0, 50%, 24%);
}
.mu-kz-body .cs-week-day__stream a {
  color: hsl(0, 70%, 38%);
  text-decoration: underline;
  font-weight: 700;
}
.mu-kz-body .cs-week-v2 {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-display, 'Montserrat', sans-serif), system-ui, sans-serif;
}
.mu-kz-body .cs-week-v2 * {
  box-sizing: border-box;
}
.mu-kz-body .cs-detail:has(.cs-week-v2) > .cs-detail-header { display: none; }
.mu-kz-body .cs-week-v2__hero {
  position: relative;
  background: linear-gradient(135deg, hsl(150, 80%, 16%) 0%, hsl(145, 65%, 30%) 60%, hsl(140, 55%, 40%) 100%);
  border-radius: 20px;
  padding: 26px 28px 28px;
  color: #fff;
  margin: 0 0 28px;
  overflow: hidden;
  box-shadow: 0 14px 36px hsla(150, 70%, 12%, 0.18);
}
.mu-kz-body .cs-week-v2__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at top right, hsla(0, 0%, 100%, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
.mu-kz-body .cs-week-v2__hero > * { position: relative; z-index: 1; }
.mu-kz-body .cs-week-v2__hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsla(0, 0%, 100%, 0.78);
  background: hsla(0, 0%, 100%, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.mu-kz-body .cs-week-v2__hero-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
.mu-kz-body .cs-week-v2__hero-emoji {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  line-height: 1;
  flex-shrink: 0;
}
.mu-kz-body .cs-week-v2__hero-subtitle {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: hsla(0, 0%, 100%, 0.88);
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.mu-kz-body .cs-week-v2__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin-bottom: 32px;
}
.mu-kz-body .cs-week-v2__stat {
  background: #fff;
  border: 1px solid hsl(150, 15%, 90%);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  box-shadow: 0 2px 8px hsla(150, 40%, 12%, 0.04);
}
.mu-kz-body .cs-week-v2__stat-value {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: hsl(142, 70%, 32%);
  line-height: 1;
  letter-spacing: -0.02em;
}
.mu-kz-body .cs-week-v2__stat-value--text {
  font-size: 1rem;
  font-weight: 800;
  color: hsl(150, 30%, 18%);
}
.mu-kz-body .cs-week-v2__stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mu-kz-body .cs-week-v2__intro {
  margin-bottom: 28px;
}
.mu-kz-body .cs-week-v2__intro-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.mu-kz-body .cs-week-v2__intro-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(142, 70%, 45%), hsl(150, 60%, 35%));
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px hsla(150, 40%, 12%, 0.16);
}
.mu-kz-body .cs-week-v2__intro-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mu-kz-body .cs-week-v2__intro-avatar-fallback {
  display: none;
  font-size: 1.4rem;
  line-height: 1;
}
.mu-kz-body .cs-week-v2__intro-author strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: hsl(150, 30%, 14%);
}
.mu-kz-body .cs-week-v2__intro-meta {
  display: block;
  font-size: 0.78rem;
  color: hsl(var(--muted-foreground));
}
.mu-kz-body .cs-week-v2__intro-body {
  font-size: 1rem;
  line-height: 1.68;
  color: hsl(150, 18%, 22%);
}
.mu-kz-body .cs-week-v2__intro-body p {
  margin: 0 0 14px;
}
.mu-kz-body .cs-week-v2__intro-body p:last-child {
  margin-bottom: 0;
}
.mu-kz-body .cs-week-v2__intro-body a {
  color: hsl(142, 70%, 32%);
  text-decoration: underline;
}
.mu-kz-body .cs-week-v2__intro-body strong {
  color: hsl(150, 30%, 14%);
}
.mu-kz-body .cs-week-v2__common-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: hsl(150, 30%, 96%);
  border-left: 4px solid hsl(142, 70%, 50%);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: hsl(150, 22%, 24%);
}
.mu-kz-body .cs-week-v2__common-note-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.mu-kz-body .cs-week-v2__common-note p {
  margin: 0 0 6px;
}
.mu-kz-body .cs-week-v2__common-note p:last-child {
  margin-bottom: 0;
}
.mu-kz-body .cs-week-v2__stream-banner,
.mu-kz-body .cs-week-v2__stream-banner:hover,
.mu-kz-body .cs-week-v2__stream-banner:focus,
.mu-kz-body .cs-week-v2__stream-banner:active,
.mu-kz-body .cs-week-v2__stream-banner *,
.mu-kz-body .cs-week-v2__stream-banner *:hover {
  text-decoration: none !important;
}
.mu-kz-body .cs-week-v2__stream-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, hsl(32, 95%, 58%) 0%, hsl(40, 95%, 52%) 100%);
  border-radius: 16px;
  padding: 18px 22px;
  color: #fff !important;
  margin-bottom: 36px;
  box-shadow: 0 10px 28px hsla(32, 85%, 38%, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.mu-kz-body .cs-week-v2__stream-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px hsla(32, 85%, 38%, 0.28);
}
.mu-kz-body .cs-week-v2__stream-banner strong,
.mu-kz-body .cs-week-v2__stream-banner span {
  color: inherit;
}
.mu-kz-body .cs-week-v2__stream-icon {
  font-size: 2rem;
  width: 52px;
  height: 52px;
  background: hsla(0, 0%, 100%, 0.18);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mu-kz-body .cs-week-v2__stream-text {
  flex: 1;
  min-width: 0;
}
.mu-kz-body .cs-week-v2__stream-text strong {
  display: block;
  font-size: 1.04rem;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.mu-kz-body .cs-week-v2__stream-text span {
  font-size: 0.86rem;
  color: hsla(0, 0%, 100%, 0.92);
  line-height: 1.4;
}
.mu-kz-body .cs-week-v2__stream-btn {
  background: #fff;
  color: hsl(28, 80%, 38%) !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .mu-kz-body .cs-week-v2__stream-banner { flex-wrap: wrap; }
  .mu-kz-body .cs-week-v2__stream-btn { width: 100%; text-align: center; }
}
.mu-kz-body .cs-week-v2__timeline {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.mu-kz-body .cs-week-v2__day {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid hsl(150, 15%, 92%);
}
.mu-kz-body .cs-week-v2__day:last-child {
  border-bottom: none;
}
.mu-kz-body .cs-week-v2__day--rest {
  opacity: 0.68;
}
.mu-kz-body .cs-week-v2__day-marker {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  padding-top: 2px;
}
.mu-kz-body .cs-week-v2__day-icon { display: none; }
.mu-kz-body .cs-week-v2__day-short {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: hsl(150, 30%, 14%);
  background: hsl(150, 30%, 96%);
  border: 1px solid hsl(150, 18%, 86%);
  border-radius: 12px;
  padding: 10px 8px;
  width: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}
.mu-kz-body .cs-week-v2__day--rest .cs-week-v2__day-short {
  color: hsl(150, 12%, 50%);
  background: hsl(150, 18%, 97%);
  border-color: hsl(150, 12%, 90%);
}
.mu-kz-body .cs-week-v2__day--done .cs-week-v2__day-short {
  background: linear-gradient(135deg, hsl(142, 70%, 45%), hsl(150, 60%, 35%));
  border-color: hsl(142, 70%, 28%);
  color: #fff;
  box-shadow: 0 4px 10px hsla(142, 70%, 32%, 0.22);
}
.mu-kz-body .cs-week-v2__day-content {
  flex: 1;
  min-width: 0;
}
.mu-kz-body .cs-week-v2__day-content h3 {
  margin: 0 0 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: hsl(150, 30%, 14%);
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.mu-kz-body .cs-week-v2__day-content h3 a {
  color: hsl(142, 70%, 32%);
  text-decoration: underline;
}
.mu-kz-body .cs-week-v2__day-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: hsl(150, 30%, 96%);
  border-radius: 999px;
  color: hsl(var(--muted-foreground));
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}
.mu-kz-body .cs-week-v2__day-meta {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.92rem;
}
.mu-kz-body .cs-week-v2__day-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: hsl(150, 15%, 24%);
}
.mu-kz-body .cs-week-v2__day-body p {
  margin: 0 0 12px;
}
.mu-kz-body .cs-week-v2__day-body p:last-child {
  margin-bottom: 0;
}
.mu-kz-body .cs-week-v2__day-body > ul,
.mu-kz-body .cs-week-v2__day-body > ol {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.mu-kz-body .cs-week-v2__day-body > ul > li,
.mu-kz-body .cs-week-v2__day-body > ol > li {
  position: relative;
  padding: 6px 0 6px 26px;
  margin: 0;
}
.mu-kz-body .cs-week-v2__day-body > ul > li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 16px;
  width: 8px;
  height: 8px;
  background: hsl(142, 70%, 50%);
  border-radius: 50%;
}
.mu-kz-body .cs-week-v2__day-body > ol {
  counter-reset: workout-step;
}
.mu-kz-body .cs-week-v2__day-body > ol > li {
  counter-increment: workout-step;
  padding-left: 32px;
}
.mu-kz-body .cs-week-v2__day-body > ol > li::before {
  content: counter(workout-step);
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: hsl(142, 70%, 92%);
  color: hsl(142, 70%, 28%);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  line-height: 22px;
}
.mu-kz-body .cs-week-v2__day-body > ul > li:has(> strong:only-child),
.mu-kz-body .cs-week-v2__day-body > ul > li > strong:only-child {
  
}
.mu-kz-body .cs-week-v2__day-body > ul > li > strong:only-child {
  display: inline-block;
  background: linear-gradient(180deg, hsl(150, 40%, 96%) 0%, hsl(142, 35%, 94%) 100%);
  border: 1px solid hsl(142, 50%, 84%);
  border-left: 3px solid hsl(142, 70%, 45%);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  color: hsl(150, 30%, 14%);
  margin: 8px 0;
  letter-spacing: -0.005em;
}
.mu-kz-body .cs-week-v2__day-body > ul > li:has(> strong:only-child)::before {
  display: none; 
}
.mu-kz-body .cs-week-v2__day-body ul ul,
.mu-kz-body .cs-week-v2__day-body ul ol,
.mu-kz-body .cs-week-v2__day-body ol ul,
.mu-kz-body .cs-week-v2__day-body ol ol {
  list-style: none;
  padding: 8px 0 6px;
  margin: 4px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: hsl(150, 30%, 98%);
  border-radius: 8px;
  border: 1px solid hsl(150, 18%, 92%);
  padding: 10px 14px;
}
.mu-kz-body .cs-week-v2__day-body ul ul > li,
.mu-kz-body .cs-week-v2__day-body ul ol > li,
.mu-kz-body .cs-week-v2__day-body ol ul > li,
.mu-kz-body .cs-week-v2__day-body ol ol > li {
  position: relative;
  padding: 3px 0 3px 22px;
  font-size: 0.94rem;
  color: hsl(150, 18%, 26%);
  margin: 0;
}
.mu-kz-body .cs-week-v2__day-body ul ul > li::before,
.mu-kz-body .cs-week-v2__day-body ol ul > li::before {
  content: "›";
  position: absolute;
  left: 6px;
  top: 1px;
  color: hsl(142, 50%, 55%);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.2;
}
.mu-kz-body .cs-week-v2__day-body a {
  color: hsl(142, 70%, 32%);
  text-decoration: none;
  border-bottom: 1px dotted hsl(142, 70%, 50%);
  font-weight: 600;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.mu-kz-body .cs-week-v2__day-body a:hover {
  color: hsl(142, 70%, 24%);
  border-bottom-color: hsl(142, 70%, 32%);
  border-bottom-style: solid;
}
.mu-kz-body .cs-week-v2__day-body strong {
  color: hsl(150, 30%, 14%);
}
.mu-kz-body .cs-week-v2__day-body li.cs-workout-section {
  list-style: none;
  padding: 10px 14px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  border-left: 4px solid hsl(142, 70%, 45%);
  background: linear-gradient(180deg, hsl(150, 40%, 96%) 0%, hsl(142, 35%, 94%) 100%);
}
.mu-kz-body .cs-week-v2__day-body li.cs-workout-section::before {
  display: none;
}
.mu-kz-body .cs-week-v2__day-body li.cs-workout-section--warmup {
  background: linear-gradient(180deg, hsl(150, 40%, 96%) 0%, hsl(150, 35%, 93%) 100%);
  border-left-color: hsl(150, 70%, 45%);
}
.mu-kz-body .cs-week-v2__day-body li.cs-workout-section--main {
  background: linear-gradient(180deg, hsl(15, 60%, 96%) 0%, hsl(15, 70%, 93%) 100%);
  border-left-color: hsl(15, 80%, 55%);
}
.mu-kz-body .cs-week-v2__day-body li.cs-workout-section--cooldown {
  background: linear-gradient(180deg, hsl(210, 50%, 96%) 0%, hsl(210, 50%, 93%) 100%);
  border-left-color: hsl(210, 70%, 50%);
}
.mu-kz-body .cs-week-v2__day-body li.cs-workout-section--sprints {
  background: linear-gradient(180deg, hsl(45, 70%, 96%) 0%, hsl(45, 80%, 92%) 100%);
  border-left-color: hsl(40, 90%, 55%);
}
.mu-kz-body .cs-week-v2__day-body li.cs-workout-section--strength {
  background: linear-gradient(180deg, hsl(280, 35%, 96%) 0%, hsl(280, 40%, 93%) 100%);
  border-left-color: hsl(280, 50%, 55%);
}
.mu-kz-body .cs-week-v2__day-body li.cs-workout-section--stretch {
  background: linear-gradient(180deg, hsl(180, 35%, 96%) 0%, hsl(180, 45%, 93%) 100%);
  border-left-color: hsl(180, 60%, 45%);
}
.mu-kz-body .cs-week-v2__day-body li.cs-workout-section--drills {
  background: linear-gradient(180deg, hsl(330, 40%, 96%) 0%, hsl(330, 50%, 93%) 100%);
  border-left-color: hsl(330, 60%, 55%);
}
.mu-kz-body .cs-week-v2__day {
  position: relative;
}
.mu-kz-body .cs-week-v2__day-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid hsl(150, 18%, 82%);
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  align-self: center;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.mu-kz-body .cs-week-v2__day-check:hover {
  border-color: hsl(142, 70%, 55%);
  background: hsl(142, 60%, 96%);
}
.mu-kz-body .cs-week-v2__day-check-icon {
  font-size: 0.95rem;
  font-weight: 900;
  color: hsl(150, 18%, 75%);
  transition: color 0.15s ease;
  line-height: 1;
}
.mu-kz-body .cs-week-v2__day-check:hover .cs-week-v2__day-check-icon {
  color: hsl(142, 70%, 45%);
}
.mu-kz-body .cs-week-v2__day--done .cs-week-v2__day-check {
  background: linear-gradient(135deg, hsl(142, 70%, 50%), hsl(150, 60%, 38%));
  border-color: hsl(142, 70%, 32%);
  transform: scale(1.05);
  box-shadow: 0 4px 12px hsla(142, 70%, 32%, 0.28);
}
.mu-kz-body .cs-week-v2__day--done .cs-week-v2__day-check-icon {
  color: #fff;
}
.mu-kz-body .cs-week-v2__day--done {
  background: linear-gradient(90deg, hsla(142, 70%, 92%, 0.5) 0%, transparent 80%);
  border-left: 3px solid hsl(142, 70%, 45%);
  padding-left: 12px;
  margin-left: -15px;
  border-radius: 6px;
}
.mu-kz-body .cs-week-v2__day--done .cs-week-v2__day-content h3 {
  color: hsl(142, 70%, 28%);
}
.mu-kz-body .cs-week-v2__day--done .cs-week-v2__day-content h3::after {
  content: " 🏆";
  font-size: 0.9em;
}
.mu-kz-body .cs-week-v2__focus {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, hsl(45, 95%, 96%) 0%, hsl(40, 90%, 92%) 100%);
  border: 1px solid hsl(40, 80%, 80%);
  border-left: 4px solid hsl(35, 90%, 50%);
  border-radius: 12px;
  padding: 14px 18px;
  margin: -8px 0 24px;
}
.mu-kz-body .cs-week-v2__focus-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.mu-kz-body .cs-week-v2__focus-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: hsl(35, 70%, 32%);
  margin-bottom: 2px;
}
.mu-kz-body .cs-week-v2__focus-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(35, 30%, 18%);
  line-height: 1.45;
}
.mu-kz-body .cs-week-v2__coach-note {
  background: linear-gradient(135deg, hsl(150, 30%, 96%) 0%, hsl(142, 40%, 92%) 100%);
  border: 1px solid hsl(142, 50%, 80%);
  border-radius: 14px;
  padding: 18px 22px;
  margin: 28px 0;
}
.mu-kz-body .cs-week-v2__coach-note-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.mu-kz-body .cs-week-v2__coach-note-head strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: hsl(150, 35%, 18%);
}
.mu-kz-body .cs-week-v2__coach-note-body {
  font-size: 0.96rem;
  line-height: 1.65;
  color: hsl(150, 18%, 22%);
}
.mu-kz-body .cs-week-v2__coach-note-body p { margin: 0 0 10px; }
.mu-kz-body .cs-week-v2__coach-note-body p:last-child { margin: 0; }
.mu-kz-body .cs-week-v2__coach-note-body strong { color: hsl(150, 35%, 14%); }
.mu-kz-body .cs-week-v2__faq {
  margin: 24px 0 28px;
}
.mu-kz-body .cs-week-v2__faq h3 {
  margin: 0 0 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: hsl(150, 30%, 14%);
}
.mu-kz-body .cs-week-v2__faq-item {
  background: #fff;
  border: 1px solid hsl(150, 15%, 88%);
  border-radius: 10px;
  padding: 0;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.mu-kz-body .cs-week-v2__faq-item[open] {
  border-color: hsl(142, 50%, 70%);
}
.mu-kz-body .cs-week-v2__faq-item summary {
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: hsl(150, 30%, 14%);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.mu-kz-body .cs-week-v2__faq-item summary::-webkit-details-marker { display: none; }
.mu-kz-body .cs-week-v2__faq-item summary::after {
  content: "+";
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: hsl(142, 70%, 45%);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.mu-kz-body .cs-week-v2__faq-item[open] summary::after {
  transform: rotate(45deg);
}
.mu-kz-body .cs-week-v2__faq-item summary:hover {
  background: hsl(150, 30%, 97%);
}
.mu-kz-body .cs-week-v2__faq-answer {
  padding: 0 16px 14px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: hsl(150, 18%, 24%);
}
.mu-kz-body .cs-week-v2__faq-answer p { margin: 0 0 8px; }
.mu-kz-body .cs-week-v2__faq-answer p:last-child { margin: 0; }
.mu-kz-body .cs-week-v2__faq-answer strong { color: hsl(150, 30%, 14%); }
.mu-kz-body .cs-glossary {
  border-bottom: 2px dotted hsl(35, 85%, 55%);
  cursor: help;
  padding: 0 2px;
  transition: background 0.15s ease;
}
.mu-kz-body .cs-glossary:hover {
  background: hsla(45, 95%, 80%, 0.5);
  border-radius: 4px;
}
.mu-kz-body .cs-glossary::after {
  content: "ⓘ";
  font-size: 0.72em;
  color: hsl(35, 80%, 50%);
  margin-left: 2px;
  vertical-align: super;
  font-weight: 700;
}
.mu-kz-body .cs-glossary-popover {
  position: absolute;
  z-index: 9999;
  max-width: 320px;
  background: #fff;
  border: 1px solid hsl(35, 60%, 70%);
  border-radius: 12px;
  padding: 14px 36px 14px 16px;
  box-shadow: 0 18px 40px hsla(150, 40%, 12%, 0.18);
  font-size: 0.92rem;
  line-height: 1.55;
  color: hsl(150, 18%, 22%);
}
.mu-kz-body .cs-glossary-popover strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  color: hsl(35, 80%, 32%);
  margin-bottom: 6px;
  text-transform: capitalize;
}
.mu-kz-body .cs-glossary-popover p {
  margin: 0;
}
.mu-kz-body .cs-glossary-popover::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 24px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid hsl(35, 60%, 70%);
  border-left: 1px solid hsl(35, 60%, 70%);
  transform: rotate(45deg);
}
.mu-kz-body .cs-glossary-popover--above::before {
  top: auto;
  bottom: -8px;
  border-top: none;
  border-left: none;
  border-bottom: 1px solid hsl(35, 60%, 70%);
  border-right: 1px solid hsl(35, 60%, 70%);
}
.mu-kz-body .cs-glossary-popover__close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  padding: 4px 8px;
}
.mu-kz-body .cs-glossary-popover__close:hover {
  color: hsl(150, 30%, 14%);
}
.mu-kz-body .cs-week-v2__exercises {
  list-style: decimal;
  margin: 14px 0 0;
  padding: 12px 18px 12px 36px;
  background: hsl(150, 30%, 97%);
  border-radius: 10px;
}
.mu-kz-body .cs-week-v2__exercises li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 0.93rem;
  flex-wrap: wrap;
}
.mu-kz-body .cs-week-v2__exercise-name {
  flex: 1;
  min-width: 200px;
  font-weight: 600;
}
.mu-kz-body .cs-week-v2__exercise-name a {
  color: hsl(142, 70%, 32%);
  text-decoration: none;
  border-bottom: 1px dotted hsl(142, 70%, 50%);
}
.mu-kz-body .cs-week-v2__exercise-name a:hover { border-bottom-style: solid; }
.mu-kz-body .cs-week-v2__exercise-meta {
  font-size: 0.84rem;
  color: hsl(var(--muted-foreground));
  white-space: nowrap;
}
.mu-kz-body .cs-week-v2__achievements {
  background: linear-gradient(135deg, hsl(150, 30%, 96%) 0%, hsl(142, 40%, 92%) 100%);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 28px;
  border: 1px solid hsl(142, 50%, 80%);
}
.mu-kz-body .cs-week-v2__achievements h3 {
  margin: 0 0 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: hsl(150, 35%, 18%);
}
.mu-kz-body .cs-week-v2__achievements ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mu-kz-body .cs-week-v2__achievements li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: hsl(150, 22%, 22%);
  line-height: 1.45;
}
.mu-kz-body .cs-week-v2__achievement-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: hsl(142, 70%, 45%);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.mu-kz-body .cs-week-v2__pdf {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid hsl(150, 15%, 88%);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 18px;
  text-decoration: none;
  color: hsl(150, 30%, 14%);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.mu-kz-body .cs-week-v2__pdf:hover {
  border-color: hsl(142, 70%, 50%);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px hsla(150, 40%, 12%, 0.08);
}
.mu-kz-body .cs-week-v2__pdf--disabled {
  pointer-events: none;
  opacity: 0.65;
}
.mu-kz-body .cs-week-v2__pdf-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  background: hsl(0, 75%, 95%);
  color: hsl(0, 70%, 45%);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mu-kz-body .cs-week-v2__pdf-text {
  flex: 1;
  min-width: 0;
}
.mu-kz-body .cs-week-v2__pdf-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}
.mu-kz-body .cs-week-v2__pdf-text span {
  display: block;
  font-size: 0.84rem;
  color: hsl(var(--muted-foreground));
  margin-top: 2px;
}
.mu-kz-body .cs-week-v2__pdf-action {
  background: hsl(142, 70%, 45%);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}
.mu-kz-body .cs-week-v2__pdf--disabled .cs-week-v2__pdf-action {
  background: hsl(150, 15%, 80%);
  color: hsl(var(--muted-foreground));
}
.mu-kz-body .cs-week-v2__community {
  display: block;
  padding: 16px 20px;
  background: hsl(150, 30%, 97%);
  border: 1px dashed hsl(142, 60%, 70%);
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: hsl(142, 70%, 28%);
  font-weight: 700;
  font-size: 0.96rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.mu-kz-body .cs-week-v2__community:hover {
  background: hsl(150, 30%, 94%);
  border-color: hsl(142, 70%, 50%);
  border-style: solid;
}
.mu-kz-body .cs-week-pdfs {
  margin: 28px 0 0;
  padding: 18px 20px;
  background: hsl(150, 30%, 97%);
  border: 1px solid hsl(150, 20%, 88%);
  border-radius: 12px;
}
.mu-kz-body .cs-week-pdfs .cs-week-section {
  margin: 0 0 12px;
  font-size: 1rem;
}
