/* ─────────────────────────────────────────────────────────────
   SKIN CLUB — loyalty & affiliate page styles
   ───────────────────────────────────────────────────────────── */

/* ── FULL-SCREEN HERO · Loyalty + Affiliate ─────────────── */
.club-hero {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid hsl(var(--border));
}
.club-hero-intro {
  padding: clamp(1.75rem, 3.5vw, 3rem) var(--container-gutter) clamp(1.5rem, 3vw, 2.25rem);
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}
.club-hero-intro .badge-row {
  display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center;
  margin-bottom: 1rem;
}
.club-hero-intro h1 {
  font-size: clamp(2.25rem, 5vw, 3.85rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.club-hero-intro h1 .accent { color: hsl(var(--primary)); }
.club-hero-intro p {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.club-hero-panels {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid hsl(var(--border));
}
@media (min-width: 920px) { .club-hero-panels { grid-template-columns: 1fr 1fr; } }

.club-panel {
  padding: clamp(1.75rem, 3.2vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.club-panel.loyalty {
  background:
    radial-gradient(75% 55% at 85% 5%, hsl(var(--primary) / 0.08) 0%, transparent 62%),
    hsl(var(--background));
}
.club-panel.affiliate {
  background: #18161D;
  color: #fff;
  border-top: 1px solid hsl(var(--border));
}
@media (min-width: 920px) {
  .club-panel.affiliate { border-top: none; border-left: 1px solid hsl(var(--border)); }
}
.club-panel.affiliate::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(55% 45% at 92% 100%, rgba(232,198,138,0.12) 0%, transparent 62%);
}
.club-panel > * { position: relative; z-index: 1; }

.panel-tag {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.panel-tag .pn {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.68rem;
}
.club-panel.loyalty .panel-tag { color: hsl(var(--primary)); }
.club-panel.loyalty .panel-tag .pn { background: hsl(var(--primary) / 0.12); border: 1px solid hsl(var(--primary) / 0.35); }
.club-panel.affiliate .panel-tag { color: #E8C68A; }
.club-panel.affiliate .panel-tag .pn { background: rgba(232,198,138,0.14); border: 1px solid rgba(232,198,138,0.4); }

.club-panel h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.club-panel.affiliate h2 { color: #fff; }
.club-panel .panel-desc { font-size: 0.92rem; line-height: 1.6; }
.club-panel.loyalty .panel-desc { color: hsl(var(--muted-foreground)); }
.club-panel.affiliate .panel-desc { color: rgba(255,255,255,0.7); }

.club-panel .panel-mid {
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding-block: 0.75rem;
}
.club-panel .panel-cta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.club-panel.affiliate .panel-cta .btn-primary { background: #E8C68A; color: #1A1422; }
.club-panel.affiliate .panel-cta .btn-primary:hover { background: #DCB877; }
.club-panel.affiliate .panel-cta .btn-outline { border-color: rgba(255,255,255,0.25); color: #fff; }
.club-panel.affiliate .panel-cta .btn-outline:hover { background: rgba(255,255,255,0.08); }

/* loyalty panel — card + stat row */
.loyalty-card-row { display: flex; justify-content: center; }
.loyalty-card-row .club-card { transform: rotate(-5deg); width: min(320px, 78vw); }
.loyalty-card-row .club-card:hover { transform: rotate(-1deg) translateY(-3px); }
.loyalty-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  background: hsl(var(--card));
}
.loyalty-stats .ls {
  padding: 0.7rem 0.85rem;
  border-right: 1px solid hsl(var(--border));
}
.loyalty-stats .ls:last-child { border-right: none; }
.loyalty-stats .ls .v {
  font-size: 1.15rem; font-weight: 700; color: hsl(var(--primary));
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.loyalty-stats .ls .l {
  font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: hsl(var(--muted-foreground)); margin-top: 0.15rem;
}

/* affiliate panel — referral visual */
.aff-visual {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  padding: 1.25rem;
  display: grid; gap: 0.9rem;
}
.aff-code-row {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.aff-code-row .lbl {
  font-size: 0.7rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.aff-code {
  font-family: var(--ff-mono);
  font-size: 1.05rem; letter-spacing: 0.1em;
  color: #E8C68A;
  border: 1px dashed rgba(232,198,138,0.5);
  border-radius: calc(var(--radius) - 2px);
  padding: 0.45rem 0.8rem;
}
.aff-rewards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.aff-reward {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: calc(var(--radius) - 2px);
  padding: 0.85rem;
  text-align: center;
  background: rgba(255,255,255,0.03);
}
.aff-reward .v { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.aff-reward .v.gold { color: #E8C68A; }
.aff-reward .l { font-size: 0.68rem; color: rgba(255,255,255,0.6); margin-top: 0.2rem; }
.aff-partner {
  display: flex; align-items: center; gap: 0.85rem;
  border-top: 1px dashed rgba(255,255,255,0.14);
  padding-top: 0.9rem;
}
.aff-partner .ap-pct {
  font-size: 1.6rem; font-weight: 700; color: #E8C68A;
  letter-spacing: -0.02em; flex-shrink: 0;
}
.aff-partner .ap-txt { font-size: 0.78rem; color: rgba(255,255,255,0.72); line-height: 1.45; }

/* ── Membership card visual ──────────────────────────── */
.club-card-stage {
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1400px;
}
.club-card {
  position: relative;
  width: min(380px, 90vw);
  aspect-ratio: 1.586 / 1;       /* credit-card ratio */
  border-radius: 18px;
  padding: 1.5rem 1.6rem;
  color: #fff;
  background:
    radial-gradient(120% 120% at 0% 0%, #6A5085 0%, transparent 55%),
    linear-gradient(145deg, #4A3962 0%, #2A2038 60%, #1A1422 100%);
  box-shadow:
    0 30px 60px -20px rgba(42, 32, 56, 0.55),
    0 8px 24px rgba(20, 16, 28, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotate(-7deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.22,1,0.36,1);
}
.club-card:hover { transform: rotate(-2deg) translateY(-4px); }
.club-card::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.club-card::after {
  content: ""; position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  right: -60px; bottom: -80px;
  background: radial-gradient(circle, rgba(232,198,138,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.club-card .cc-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  position: relative; z-index: 1;
}
.club-card .cc-brand {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.club-card .cc-brand small {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.club-card .cc-tier {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(232,198,138,0.15);
  border: 1px solid rgba(232,198,138,0.4);
  color: #E8C68A;
}
.club-card .cc-chip {
  width: 42px; height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #E8C68A 0%, #C9A875 50%, #E8C68A 100%);
  position: relative; z-index: 1;
  margin: 0.25rem 0;
}
.club-card .cc-chip::before,
.club-card .cc-chip::after {
  content: ""; position: absolute; left: 18%; right: 18%;
  height: 1px; background: rgba(42,32,56,0.4);
}
.club-card .cc-chip::before { top: 38%; }
.club-card .cc-chip::after  { top: 62%; }
.club-card .cc-bottom { position: relative; z-index: 1; }
.club-card .cc-name {
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.club-card .cc-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 0.4rem;
}
.club-card .cc-points .n {
  font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.club-card .cc-points .l {
  font-family: var(--ff-mono);
  font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.club-card .cc-code {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #E8C68A;
}

/* floating mini-badges around card */
.club-float {
  position: absolute;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 500;
  box-shadow: 0 12px 28px -10px rgba(42,32,56,0.3);
  display: flex; align-items: center; gap: 0.4rem;
  white-space: nowrap;
}
.club-float .ic {
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
  font-size: 0.7rem;
}
.club-float.f1 { top: 4%; right: 2%; }
.club-float.f2 { bottom: 8%; left: -2%; }
@media (max-width: 560px) { .club-float { display: none; } }

/* ── Generic club section head ──────────────────────── */
.club-section { border-bottom: 1px solid hsl(var(--border)); }

/* ── How it works (steps) ───────────────────────────── */
.club-steps {
  display: grid; gap: 0.75rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 720px)  { .club-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .club-steps { grid-template-columns: repeat(4, 1fr); } }
.club-step {
  padding: 1.5rem 1.25rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  display: grid; gap: 0.5rem; align-content: start;
}
.club-step .n {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-family: var(--ff-mono);
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 0.25rem;
}
.club-step h3 { font-size: 1rem; font-weight: 600; }
.club-step p { font-size: 0.85rem; color: hsl(var(--muted-foreground)); margin: 0; line-height: 1.55; }

/* ── Tier cards ─────────────────────────────────────── */
.tier-grid {
  display: grid; gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px)  { .tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tier-grid { grid-template-columns: repeat(4, 1fr); } }
.tier {
  padding: 1.5rem 1.35rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  display: grid; gap: 0.6rem; align-content: start;
  position: relative;
  overflow: hidden;
}
.tier.featured {
  border-color: hsl(var(--primary) / 0.55);
  background:
    linear-gradient(180deg, hsl(var(--primary) / 0.05) 0%, hsl(var(--card)) 60%);
}
.tier .tier-flag {
  position: absolute; top: 0; right: 0;
  font-family: var(--ff-mono);
  font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  padding: 0.25rem 0.6rem;
  border-bottom-left-radius: var(--radius);
}
.tier .tier-name {
  font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em;
}
.tier .tier-th {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.04em;
}
.tier .tier-cash {
  margin: 0.4rem 0;
  display: flex; align-items: baseline; gap: 0.3rem;
}
.tier .tier-cash .pct {
  font-size: 2rem; font-weight: 700; letter-spacing: -0.03em;
  color: hsl(var(--primary));
  font-variant-numeric: tabular-nums;
}
.tier .tier-cash .lbl { font-size: 0.78rem; color: hsl(var(--muted-foreground)); }
.tier ul { list-style: none; padding: 0; margin: 0.25rem 0 0; display: grid; gap: 0.4rem; }
.tier ul li {
  display: grid; grid-template-columns: 16px 1fr; gap: 0.5rem;
  font-size: 0.82rem; color: hsl(var(--foreground) / 0.85); line-height: 1.5;
}
.tier ul li::before { content: "✓"; color: hsl(var(--primary)); font-weight: 600; }

/* ── Affiliate split ────────────────────────────────── */
.affiliate-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .affiliate-grid { grid-template-columns: 1fr 1fr; } }
.affiliate-card {
  padding: 1.75rem 1.5rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--card));
  display: grid; gap: 0.85rem; align-content: start;
}
.affiliate-card.dark {
  background: #18161D;
  color: #fff;
  border-color: #18161D;
  position: relative; overflow: hidden;
}
.affiliate-card.dark::after {
  content: ""; position: absolute; right: -50px; bottom: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,198,138,0.2) 0%, transparent 70%);
}
.affiliate-card .ac-tag {
  font-family: var(--ff-mono);
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: hsl(var(--primary));
}
.affiliate-card.dark .ac-tag { color: #E8C68A; }
.affiliate-card h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }
.affiliate-card.dark h3 { color: #fff; }
.affiliate-card > p { font-size: 0.9rem; color: hsl(var(--muted-foreground)); line-height: 1.6; margin: 0; }
.affiliate-card.dark > p { color: rgba(255,255,255,0.7); }
.affiliate-flow {
  display: grid; gap: 0.5rem;
  margin-top: 0.5rem;
}
.affiliate-flow .fl {
  display: grid; grid-template-columns: 26px 1fr;
  gap: 0.6rem; align-items: start;
  font-size: 0.85rem; line-height: 1.5;
}
.affiliate-card.dark .affiliate-flow .fl { color: rgba(255,255,255,0.85); }
.affiliate-flow .fl .s {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--ff-mono); font-size: 0.7rem; font-weight: 600;
  background: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary) / 0.3);
}
.affiliate-card.dark .affiliate-flow .fl .s {
  background: rgba(232,198,138,0.14);
  color: #E8C68A;
  border-color: rgba(232,198,138,0.35);
}
.affiliate-reward {
  margin-top: 0.5rem;
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.affiliate-reward .chip {
  font-size: 0.78rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.6);
  font-weight: 500;
}
.affiliate-card.dark .affiliate-reward .chip {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

/* ── Join widget (tabs) ─────────────────────────────── */
.join-widget {
  max-width: 520px;
  margin-inline: auto;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
}
.join-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid hsl(var(--border));
}
.join-tab {
  padding: 0.85rem 1rem;
  font-size: 0.85rem; font-weight: 500;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--muted) / 0.5);
  border-right: 1px solid hsl(var(--border));
  transition: background 150ms, color 150ms;
}
.join-tab:last-child { border-right: none; }
.join-tab.active {
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  font-weight: 600;
  box-shadow: inset 0 -2px 0 hsl(var(--primary));
}
.join-body { padding: 1.5rem; display: grid; gap: 0.85rem; }
.join-body .fields { display: grid; gap: 0.75rem; }
.join-body label {
  display: grid; gap: 0.3rem;
  font-size: 0.75rem; font-weight: 500;
  color: hsl(var(--foreground) / 0.85);
}
.join-body input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--input));
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  font-family: var(--ff-sans);
  font-size: 0.9rem;
}
.join-body input:focus {
  outline: none; border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.16);
}
.join-result {
  display: grid; gap: 0.75rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: hsl(var(--muted) / 0.5);
  border: 1px solid hsl(var(--border));
  text-align: center;
}
.join-result .jr-tier {
  font-family: var(--ff-mono);
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: hsl(var(--primary));
}
.join-result .jr-points {
  font-size: 2.25rem; font-weight: 700; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.join-result .jr-points small { font-size: 0.9rem; color: hsl(var(--muted-foreground)); font-weight: 500; }
.join-result .jr-code {
  font-family: var(--ff-mono);
  font-size: 1rem; letter-spacing: 0.12em;
  padding: 0.5rem 0.85rem;
  background: hsl(var(--card));
  border: 1px dashed hsl(var(--primary) / 0.5);
  border-radius: calc(var(--radius) - 2px);
  color: hsl(var(--primary));
  display: inline-block;
}
.join-result .jr-progress {
  height: 6px; border-radius: 999px;
  background: hsl(var(--muted));
  overflow: hidden;
}
.join-result .jr-progress span {
  display: block; height: 100%;
  background: hsl(var(--primary));
  border-radius: 999px;
}
.join-error {
  font-size: 0.8125rem;
  color: hsl(var(--destructive));
  background: hsl(var(--destructive) / 0.08);
  border: 1px solid hsl(var(--destructive) / 0.3);
  border-radius: calc(var(--radius) - 2px);
  padding: 0.6rem 0.8rem;
}

/* ── FAQ reuse from treatment.css if present; minimal fallback ── */
.club-faq { display: grid; gap: 0.5rem; max-width: 760px; }
.club-faq details {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
}
.club-faq summary {
  list-style: none; cursor: pointer;
  padding: 0.85rem 1rem;
  font-size: 0.9rem; font-weight: 500;
  display: flex; justify-content: space-between; gap: 1rem;
}
.club-faq summary::-webkit-details-marker { display: none; }
.club-faq summary::after { content: "+"; font-family: var(--ff-mono); color: hsl(var(--muted-foreground)); }
.club-faq details[open] summary::after { content: "−"; color: hsl(var(--primary)); }
.club-faq .a { padding: 0 1rem 1rem; font-size: 0.85rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }

/* ── Homepage teaser band ───────────────────────────── */
.club-teaser {
  background: #18161D;
  color: #fff;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  position: relative;
  overflow: hidden;
}
.club-teaser::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 80% at 90% 20%, rgba(232,198,138,0.12) 0%, transparent 60%);
}
.club-teaser-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
@media (min-width: 880px) { .club-teaser-grid { grid-template-columns: 1.3fr 0.7fr; } }
.club-teaser .kicker {
  font-family: var(--ff-mono);
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #E8C68A;
}
.club-teaser h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 700; letter-spacing: -0.03em;
  color: #fff;
}
.club-teaser p {
  margin-top: 0.75rem;
  font-size: 0.95rem; line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 52ch;
}
.club-teaser-perks {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.25rem;
}
.club-teaser-perks .p {
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
}
.club-teaser-cta { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.5rem; }
.club-teaser .btn-primary { background: #E8C68A; color: #1A1422; }
.club-teaser .btn-primary:hover { background: #DCB877; }
.club-teaser .btn-outline { border-color: rgba(255,255,255,0.25); color: #fff; }
.club-teaser .btn-outline:hover { background: rgba(255,255,255,0.08); }
.club-teaser-card { display: grid; place-items: center; }
