.summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #E2E6EA; border-radius: 12px; overflow: hidden; margin-bottom: 1.5rem; }
  .summary .box { background: white; padding: 1.5rem; text-align: center; }
  .summary .num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 40px; color: var(--sla-pink); line-height: 1; }
  .summary .lbl { font-size: 13px; color: #666; margin-top: 4px; font-weight: 600; }
  .pledge { display: flex; gap: 14px; align-items: flex-start; border: 1px solid #E2E6EA; border-radius: 12px; padding: 14px 16px; margin-bottom: 12px; background: white; }
  .pledge-main { flex: 1; min-width: 0; }
  .pledge .who { font-weight: 700; }
  .pledge .amount { color: var(--sla-pink); font-weight: 700; }
  .pledge .when { margin-left: auto; white-space: nowrap; font-size: 12px; font-weight: 600; color: #888; }

  /* En-tête de section (titre + action à droite) */
  .section-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin: 2rem 0 1rem; }
  .section-head h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 30px; margin: 0; color: var(--sla-dark); }
  .section-head h2 span { color: var(--sla-pink); }

  /* Recherche */
  .search { border: 1px solid #D5DBE0; border-radius: 999px; padding: 9px 16px; font: inherit; font-size: 14px; min-width: 240px; outline: none; }
  .search:focus { border-color: var(--sla-blue); box-shadow: 0 0 0 3px rgba(91,143,168,0.18); }
  .search-bar { margin: 1.75rem 0 0.5rem; }
  .search-full { width: 100%; min-width: 0; box-sizing: border-box; padding: 12px 20px; font-size: 15px; }

  /* Carrousel des coureurs */
  .carousel-nav { display: flex; gap: 8px; }
  .carousel-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid #D5DBE0; background: white; color: var(--sla-dark); font-size: 20px; line-height: 1; cursor: pointer; transition: background .15s, border-color .15s; }
  .carousel-btn:hover { background: var(--sla-gray); border-color: var(--sla-blue); }
  .carousel { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 2px 14px; -webkit-overflow-scrolling: touch; }
  .runner-card { flex: 0 0 240px; scroll-snap-align: start; background: white; border: 1px solid #E2E6EA; border-radius: 14px; padding: 18px 16px; text-align: center; }
  .runner-avatar { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; background: var(--sla-gray); margin: 0 auto 10px; display: block; }
  .runner-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 22px; color: var(--sla-dark); }
  .runner-desc { font-size: 13px; color: #666; margin: 6px 0 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .runner-count { font-size: 12px; color: #999; margin-top: 10px; font-weight: 600; }
  .runner-stats { display: flex; flex-direction: column; gap: 3px; margin-top: 6px; }
  .runner-stats .rstat { font-size: 13px; color: var(--sla-blue-dark); }
  .runner-stats .rstat b { color: var(--sla-pink); }

  @media (max-width: 760px) { .summary { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 420px) { .summary { grid-template-columns: 1fr; } .runner-card { flex-basis: 200px; } }
