/* ssg-counter-picks.css — /counter-picks/ hub additions */

/* ── Matchup rows (favorable / hard) ─────────────────────────────────────── */
.counter-card__beats {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
  min-height: 34px;
}

.counter-card__beats-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 54px;
}

.counter-card__beats-label--favorable {
  color: rgba(100, 200, 120, 0.85);
}

.counter-card__beats-label--hard {
  color: rgba(220, 80, 80, 0.85);
}

.counter-card__beats img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.counter-card__beats--favorable img {
  border-color: rgba(100, 200, 120, 0.25);
}

.counter-card__beats--hard img {
  border-color: rgba(220, 80, 80, 0.25);
}

.build-card:hover .counter-card__beats--favorable img {
  border-color: rgba(100, 200, 120, 0.5);
}

.build-card:hover .counter-card__beats--hard img {
  border-color: rgba(220, 80, 80, 0.5);
}

/* ── Mobile ───────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .counter-card__beats img {
    width: 24px;
    height: 24px;
  }
}
