.league-head-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.league-head-title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.league-back-btn {
  padding: 8px 16px;
  border-radius: 10px;
  background: #3C3C3C;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.league-back-btn:hover {
  background: #3C3C3C;
}

@media (max-width: 700px) {
  .league-head-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}