/**
 * Whisky Club page — hero, marketing content, join CTA, and the
 * members-only product grid. assets/js/whisky-club.js toggles
 * .tb-club-marketing vs .tb-club-member-shop via the hidden attribute.
 */

.tb-club-hero {
	text-align: center;
	padding: 3.5rem 1.5rem 2rem;
	max-width: none;
}
.tb-club-hero h1 {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 500;
}

.tb-club-marketing {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 clamp(1.2rem, 4vw, 3rem) 3rem;
}
.tb-club-marketing h2 {
	font-size: 1.5rem;
	font-weight: 500;
	margin: 2.4rem 0 1rem;
	text-align: center;
}
.tb-club-marketing h2:first-child {
	margin-top: 0;
}
.tb-club-marketing h3 {
	font-size: 1.05rem;
	font-weight: 600;
	margin: 1.6rem 0 0.5rem;
}
.tb-club-marketing p {
	font-size: 0.94rem;
	line-height: 1.7;
	color: var(--wp--preset--color--juniper-soft);
	margin-bottom: 0.9rem;
}

.tb-club-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin: 1.5rem 0 2.5rem;
	text-align: center;
}
.tb-club-cta-bottom {
	margin-top: 2.5rem;
	margin-bottom: 0;
}
.tb-club-cta-note {
	flex-basis: 100%;
	font-size: 0.8rem;
	color: var(--wp--preset--color--apricot-deep);
}

/* ---------- Members-only shop ---------- */
.tb-club-member-shop {
	max-width: 1140px;
	margin: 0 auto 4rem;
	padding: 0 clamp(1.2rem, 4vw, 3rem);
	text-align: center;
}
.tb-club-member-shop h2 {
	font-size: 1.6rem;
	font-weight: 500;
}
.tb-club-member-intro {
	font-size: 0.9rem;
	color: var(--wp--preset--color--juniper-soft);
	max-width: 560px;
	margin: 0.6rem auto 2rem;
}
/* Grid container only — card design itself (.tb-shop-card and friends)
is shared with the shop archive grid, see shop.css (loaded here as a
dependency, inc/enqueue.php) and assets/js/members-product-grid.js. */
.tb-club-products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.6rem;
	text-align: left;
}

@media (max-width: 860px) {
	.tb-club-products {
		grid-template-columns: repeat(2, 1fr);
	}
}
