.club-hero-card {
  gap: 16px;
}

.club-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.club-badge {
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  object-fit: contain;
}

.club-title-block {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.club-title-block h2 {
  font-size: var(--font-xl);
  color: #fff;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.club-tag {
  color: var(--color-yellow);
  font-weight: 700;
}

.club-description {
  max-width: 850px;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.club-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.club-stat-card {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: rgba(0, 0, 0, 0.22);
  padding: 10px;
}

.club-stat-card img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.club-stat-card div {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.club-stat-card strong {
  color: var(--color-yellow);
  font-size: var(--font-md);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.club-stat-card span {
  color: var(--color-text-30);
  font-size: var(--font-xs);
  line-height: 1.2;
}

.club-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.club-chip-row span {
  color: var(--color-text-50);
  font-size: var(--font-xs);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 850px) {
  .club-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .club-identity {
    align-items: flex-start;
  }

  .club-badge {
    width: 64px;
    height: 64px;
  }

  .club-stat-grid {
    grid-template-columns: 1fr;
  }
}
