/* League overview tab — section-specific styles that don't fit any of
   the existing component CSS files (card.css, match-card.css, league-
   group.css, …). Currently scoped to the EN VIVO block at the top of
   the overview; the rest of the overview reuses generic `.card` chrome. */

@layer components {
  .league-live-card {
    margin-bottom: 12px;
  }

  .league-live-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .league-live-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-live);
    animation: live-pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
  }

  .league-live-card__count {
    margin-left: auto;
    font: 600 12px / 1 var(--font-body);
    color: var(--color-text-muted);
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--color-surface-2);
  }

  .league-live-card__matches {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px 0;
  }
}
