/* assets/styles/club.css */

.club-wrap {
  background: #f7f3ee;
}

.club-hero {
  position: relative;
  height: 260px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #000; /* заменил #111 на чистый чёрный */
  color: #fff;
}

.club-hero__bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04) 0px,
      rgba(255, 255, 255, 0.04) 20px,
      transparent 20px,
      transparent 60px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 25px,
      transparent 25px,
      transparent 70px
    ),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    var(--club-primary-color-hero, #000000);
}

.club-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
}

.club-hero__left {
  display: flex;
  gap: 20px;
}

.club-hero__right {
  align-items: flex-start;
  height: 100%;
  padding-top: 40px;
}

.club-hero__logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
}
.club-hero__title {
  margin: 0 0 6px 0;
  font-size: 54px;
  line-height: 1.1;
  font-weight: 700;
}

.club-tabs {
  height: 53px;
  background: #fff;
  padding: 0 20px;
  margin-bottom: 14px;
}
.club-tabs__list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.club-tabs__link {
  display: inline-block;
  padding: 8px 12px;
  text-decoration: none;
  color: #676565;
  border: 1px solid transparent;
  font-weight: 600;
}
.club-tabs__link:hover {
  border-bottom: 2px solid #0e1c44;
  color: #0e1c44;
}
.club-tabs__link--active {
  border-bottom: 2px solid #0e1c44;
  color: #0e1c44;
  font-weight: 600;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 16px;
}

.muted {
  color: #666;
}

.club-hero__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.club-hero__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.club-hero__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.club-hero__link {
  display: inline-flex;
}

.club-hero__link-icon {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.club-hero__meta {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.9;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}

.club-hero__meta-value {
  font-weight: 700;
  opacity: 1;
  font-size: 17px;
}
