.clubs {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 64px 56px;
  width: calc(100vw - 30px);

  @media (min-width: 768px) {
    justify-content: start;
    width: 100%;
  }
}

.club {
  flex: 1 0 330px;
  max-width: 343px;
  font-size: 16px;
  border-radius: 18px;
  border: 1px solid #afbac3;
  box-shadow: 0 8px 5px -4px #afbac3;
  background: var(--color-white);
  overflow: hidden;
}

.club__name {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  height: 109px;
  background: linear-gradient(180deg, #18a6ed 50%, hwb(200 9% 20% / 1));
  color: #fafafa;
  text-align: center;
  font-family: Roboto-Mono, monospace;
  font-weight: 700;
  font-size: 1.45em;
  text-shadow: 1px 0px 1px rgb(0 0 0 / 30%);
}

.club__data {
  overflow: hidden;
  padding: 20px 16px 24px 16px;
}

.data__section {
  margin-bottom: 16px;
}

.data__section.buttons {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 16px;
  width: calc(100% - 32px);
  margin: 40px auto 16px;

  a.btn {
    font-weight: 700;
    font-size: 1.1em;
    width: 100%;
    transition: background 0.3s;
    padding-block: 12px;
    border-radius: 18px;
    color: #fafafa;
  }
}

.section__content {
  white-space: nowrap;
  line-height: 1;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
