/* MENÚ SEMANAL – ESTILO AUTOR LIMPIO (inspirado en tu hero) */

.msr-menu{
  --bg: #ffffff00;
  --card: #ffffff;
  --ink: #243444;
  --muted: #6b7a89;
  --accent: #9b1c1f;

  background: var(--bg);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 40px);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.msr-header{ margin-bottom: 28px; }

.msr-kicker{
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}

.msr-headline h2{
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  margin: 10px 0 0;
  color: var(--ink);
}

.msr-week{
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

.msr-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

@media (max-width: 1100px){ .msr-grid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 600px){ .msr-grid{ grid-template-columns: 1fr;} }

.msr-day{
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.msr-day-title{
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  font-weight: 700;
}

.msr-section{ margin-bottom: 16px; }
.msr-section:last-child{ margin-bottom: 0; }

.msr-section-title{
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}

.msr-list{
  list-style:none;
  padding:0;
  margin:0;
}

.msr-list li{
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 6px;
  line-height: 1.45;
}

.msr-empty-line{
  margin:0;
  color: #b0b7c0;
  font-style: italic;
}

.msr-empty-public{
  text-align:center;
}
