.league-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
  .league-header h1 {
    font-size: 1.5rem; /* ~24px */
  }
}

@media (max-width: 480px) {
   .league-header h1 {
    font-size: 1.3rem; /* ~20px */
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.meta {
  display: flex;
  flex-direction: column;
}

.name {
  font-weight: 600;
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  color: #111;
}

.sub {
  font-size: 13px;
  color: #666;
  margin: 2px 0 0;
}

.badge {
  font-size: 11px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 6px;
}
