/* =============================================================
   SPORTS SECTION
   ============================================================= */

.sports {
  background: var(--color-surface, #F5F3F2);
  padding: 100px 0;
}

.sports__header {
  text-align: center;
  margin-bottom: 56px;
}

.sports__headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}

.sports__subline {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.sports__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.sports__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
  cursor: default;
}

.sports__tag:hover {
  background: #191919;
  color: #fff;
}

.sports__tag--link {
  cursor: pointer;
  text-decoration: none;
}

.sports__tag--other {
  background: transparent;
  border: 1.5px solid #ddd;
  color: var(--color-text-muted);
}

.sports__tag--other:hover {
  background: #191919;
  border-color: #191919;
  color: #fff;
}
