/* ─────────────────────────────
   WEEKLY-SELECTION.CSS — "La nostra selezione della settimana"
   wp-content/themes/locastro-child/styles/weekly-selection.css

   Styles the [lc_weekly_selection] shortcode. Card grid reuses
   category.css's .lc-category-card/-grid classes (loaded alongside
   this file — see functions.php) rather than duplicating them; this
   file only covers the heading block and this component's own grid
   sizing, since — unlike the full category/brand/Regali grids — it
   always shows exactly 4 items and isn't nested inside
   .lc-category-layout's side margins.
   ───────────────────────────── */

.lc-weekly-selection {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.lc-weekly-selection-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.lc-weekly-selection-title {
  font-family: var(--lc-font-serif, serif);
  font-size: 28px;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
  color: var(--lc-text, #2a2420);
}

.lc-weekly-selection-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--lc-text-muted, #6b6055);
  margin: 0;
}

.lc-weekly-selection-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .lc-weekly-selection-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .lc-weekly-selection {
    padding: 40px 16px;
  }

  .lc-weekly-selection-title {
    font-size: 22px;
  }
}