/* ═══════════════════════════════════════════════
   TEN-YEAR MEMBERSHIP CLUB — Page Styles
   ═══════════════════════════════════════════════ */

/* ── 1. HERO ── */
.tclub-hero {
  background: linear-gradient(135deg, #0a0618 0%, #1a0c35 50%, #2d1060 100%);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tclub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(226,200,120,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(79,23,168,.3) 0%, transparent 60%);
  pointer-events: none;
}

.tclub-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 32px;
  font-family: 'Roboto Mono', monospace;
}

.tclub-hero__breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}

.tclub-hero__breadcrumb a:hover { color: #fff; }

.tclub-hero__breadcrumb span { color: rgba(255,255,255,.9); }

.tclub-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2c878 0%, #b8973a 50%, #8a6d1e 100%);
  color: #1a0c35;
  font-size: 36px;
  margin-bottom: 24px;
  box-shadow: 0 8px 40px rgba(226,200,120,.45), 0 0 0 4px rgba(226,200,120,.15);
}

.tclub-hero__heading {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.tclub-hero__body {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ── 2. STATS BAR ── */
.tclub-stats {
  background: #110828;
  padding: 0;
}

.tclub-stats .container--wide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tclub-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 28px 16px;
  border-right: 1px solid rgba(226,200,120,.1);
}

.tclub-stats__item:last-child { border-right: none; }

.tclub-stats__num {
  font-family: 'Roboto Mono', monospace;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
}

.tclub-stats__label {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: 'Roboto Mono', monospace;
  text-align: center;
}


/* ── 3. INTRO ── */
.tclub-intro {
  padding: 64px 0 48px;
  background: #f8f5f0;
}

.tclub-intro__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tclub-intro__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #200f3b;
  margin-bottom: 16px;
}

.tclub-intro__text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
}


/* ── 4. MEMBER GRID ── */
.tclub-members {
  background: #f8f5f0;
  padding: 0 0 80px;
}

.tclub-members__header {
  text-align: center;
  margin-bottom: 48px;
}

.tclub-members__title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: #200f3b;
  margin-bottom: 6px;
}

.tclub-members__subtitle {
  font-size: 13px;
  color: #888;
  font-family: 'Roboto Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.tclub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Ten-Year Club Card ── */
.tclub-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(32,15,59,.08);
  border: 1px solid rgba(226,200,120,.25);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative;
}

.tclub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(32,15,59,.15), 0 0 0 1px rgba(226,200,120,.4);
}

.tclub-card__ribbon {
  background: linear-gradient(90deg, #c9a227, #e2c878, #c9a227);
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
  color: #1a0c35;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: 'Roboto Mono', monospace;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.tclub-card__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 16px;
  background: linear-gradient(135deg, #fdf8e7 0%, #f7edc4 100%);
}

.tclub-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--av-color, #4f17a8);
  color: #fff;
  font-family: 'Roboto Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .04em;
  box-shadow: 0 4px 20px rgba(0,0,0,.2), 0 0 0 3px rgba(226,200,120,.6);
  border: 3px solid #fff;
}

.tclub-card__body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tclub-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #200f3b;
  margin: 0;
  line-height: 1.35;
}

.tclub-card__date,
.tclub-card__years {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #666;
}

.tclub-card__date i,
.tclub-card__years i {
  color: #c9a227;
  font-size: 14px;
  flex-shrink: 0;
}

.tclub-card__date strong { color: #4f17a8; }

.tclub-card__years { color: #888; font-style: italic; }


/* ── 5. Responsive ── */
@media (max-width: 1199px) {
  .tclub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .tclub-hero { padding: 56px 0 52px; }

  .tclub-stats .container--wide {
    grid-template-columns: repeat(2, 1fr);
  }

  .tclub-stats__item:nth-child(2) { border-right: none; }
  .tclub-stats__item:nth-child(3),
  .tclub-stats__item:nth-child(4) {
    border-top: 1px solid rgba(226,200,120,.1);
  }

  .tclub-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .tclub-grid {
    grid-template-columns: 1fr;
  }

  .tclub-stats .container--wide {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Pagination (member roster) ─── */
.tclub-pager {
  display: flex;
  justify-content: center;
}
.tclub-pager .pagination { gap: 4px; }
.tclub-pager .page-link {
  border-radius: 8px;
  border: 1px solid rgba(226,200,120,.35);
  color: #6b5a1f;
  padding: 0.4rem 0.85rem;
}
.tclub-pager .page-item.active .page-link {
  background: #c9a227;
  border-color: #c9a227;
  color: #fff;
}
.tclub-pager .page-item.disabled .page-link {
  color: #b9b2a0;
}
