/* =========================================================
   Base
========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

/* Hide the page while filter-bar.js is restoring scroll position after a
   form-submit reload. Prevents the flash where the browser paints at the top
   of the page before JS scrolls back down. The class is added by an inline
   script in <head>, removed either by filter-bar.js after restore or by a
   600ms safety timeout. See header.php. */
html.is-restoring-scroll body { visibility: hidden; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.55;
	color: var(--color-ink);
	background: var(--color-cream);
}

/* Text link standard. Anywhere a link sits in normal-color content,
   it inherits the surrounding color with no underline at rest, and
   gains brand-red color + solid underline on hover. Nav, wordmarks,
   and CTA-style links override this with their own color-only hover. */
a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-brand-red); text-decoration: underline; }

img, svg { max-width: 100%; display: block; }

button { font: inherit; cursor: pointer; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: -40px;
	left: var(--space-4);
	background: var(--color-brand-red);
	color: var(--color-white);
	padding: var(--space-2) var(--space-4);
	z-index: 100;
}
.skip-link:focus { top: var(--space-4); }

.container {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
@media (max-width: 768px) {
	.container { padding-inline: var(--gutter-mobile); }
}

/* =========================================================
   Buttons
========================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-body);
	font-size: 13px;
	line-height: 1;
	border: 0;
	cursor: pointer;
	transition: background-color var(--dur-fast) var(--ease-out),
	            color var(--dur-fast) var(--ease-out),
	            transform var(--dur-base) var(--ease-out);
	text-decoration: none;
}
.btn:hover { text-decoration: none; }

.btn--primary {
	background: var(--color-brand-red);
	color: var(--color-white);
	padding: 10px 22px;
	border-radius: 4px;
	font-weight: 400;
}
.btn--primary:hover {
	background: var(--color-brand-red-deep);
	color: var(--color-white);
}

/* =========================================================
   Location chip — icon + address linking to Google Maps.
   Rendered by wicurling_render_location_chip() in inc/helpers.php.
   Used by club cards, bonspiel rows, and any future component
   that surfaces a venue. Per-page tweaks via descendant selectors.
========================================================= */
.wic-location {
	display: inline-flex;
	align-items: flex-start;
	gap: 6px;
	color: var(--color-ink-soft);
	font-size: 13px;
	text-decoration: none;
	transition: color var(--dur-fast) var(--ease-out);
}
.wic-location-icon {
	flex: 0 0 auto;
	/* Nudge the pin so it visually aligns with the cap-height of the
	   first line of text when the address wraps to multiple lines. */
	margin-top: 3px;
	color: currentColor;
	transition: color var(--dur-fast) var(--ease-out);
}
/* Parent suppresses the global a:hover underline so it doesn't render
   under the SVG icon. The inner text span carries the underline. */
.wic-location:hover { color: inherit; text-decoration: none; }
.wic-location:hover .wic-location-icon { color: var(--color-brand-red); }
.wic-location:hover .wic-location-text {
	color: var(--color-brand-red);
	text-decoration: underline;
}

/* =========================================================
   Eyebrow / kicker
========================================================= */
.eyebrow {
	display: block;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-eyebrow);
}

/* =========================================================
   Header
========================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	height: var(--header-height);
	background-color: var(--color-linen);
	box-shadow: 0 2px 8px rgba(43, 27, 20, 0.08);
	transition: box-shadow var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled {
	box-shadow: 0 4px 16px rgba(43, 27, 20, 0.14);
}

.site-header__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--gutter);
	height: 100%;
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: var(--space-6);
}
@media (max-width: 768px) {
	.site-header__inner { padding-inline: var(--gutter-mobile); }
}

.site-header__wordmark {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 26px;
	color: var(--color-brand-red-deep);
	text-decoration: none;
	white-space: nowrap;
	letter-spacing: -0.005em;
}
.site-header__wordmark:hover { text-decoration: none; color: var(--color-brand-red-deep); }

/* Primary nav (desktop) */
.site-header__nav { justify-self: center; }

.primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: var(--space-8);
}
.primary-menu > .menu-item { position: relative; }
.primary-menu a {
	color: var(--color-ink);
	font-size: 14px;
	padding: 6px 0;
	display: inline-block;
	position: relative;
	text-decoration: none;
}
.primary-menu a:hover { text-decoration: none; color: var(--color-brand-red-deep); }
.primary-menu > .menu-item > a::after {
	content: "";
	position: absolute;
	left: 0; right: 0;
	bottom: -2px;
	height: 2px;
	background: var(--color-brand-red-deep);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--dur-fast) var(--ease-out);
}
.primary-menu > .menu-item:hover > a::after,
.primary-menu > .menu-item.current-menu-item > a::after,
.primary-menu > .menu-item.current-menu-ancestor > a::after,
.primary-menu > .menu-item.current-menu-parent > a::after { transform: scaleX(1); }

/* Sub-menu (About Us dropdown) */
.primary-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: var(--space-2) 0;
	position: absolute;
	top: calc(100% + 4px);
	left: -12px;
	min-width: 200px;
	background: var(--color-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 4px;
	box-shadow: var(--shadow-lifted);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity var(--dur-fast) var(--ease-out),
	            transform var(--dur-fast) var(--ease-out),
	            visibility var(--dur-fast);
}
.primary-menu .menu-item:hover > .sub-menu,
.primary-menu .menu-item:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.primary-menu .sub-menu a {
	display: block;
	padding: 10px 16px;
	font-size: 13px;
	color: var(--color-ink);
}
.primary-menu .sub-menu a:hover { background: var(--color-paper); color: var(--color-brand-red-deep); }

/* CTA button in header */
.site-header__cta { justify-self: end; }

/* Mobile toggle */
.site-header__toggle {
	display: none;
	background: transparent;
	border: 0;
	padding: 8px;
	width: 40px;
	height: 40px;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
}
.site-header__toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--color-ink);
	transition: transform var(--dur-base) var(--ease-out),
	            opacity var(--dur-fast) var(--ease-out);
}

@media (max-width: 1023px) {
	.site-header__nav, .site-header__cta { display: none; }
	.site-header__toggle { display: flex; }
	.site-header__inner { grid-template-columns: auto 1fr auto; }
}

/* =========================================================
   Mobile drawer
========================================================= */
.mobile-drawer {
	position: fixed;
	inset: 0;
	z-index: 100;
	visibility: hidden;
	pointer-events: none;
}
.mobile-drawer.is-open {
	visibility: visible;
	pointer-events: auto;
}
.mobile-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	transition: opacity var(--dur-base) var(--ease-out);
}
.mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }

.mobile-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: min(320px, 85vw);
	background-color: var(--color-wood-dark);
	background-image: url("../images/textures/woodpanel.png");
	background-size: cover;
	padding: var(--space-6);
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform var(--dur-base) var(--ease-out);
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }

.mobile-drawer__close {
	background: transparent;
	border: 0;
	color: var(--color-white);
	font-size: 32px;
	line-height: 1;
	padding: 4px 8px;
	margin-left: auto;
	display: block;
}

.mobile-drawer__nav { margin-top: var(--space-6); }

.mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-1);
}
.mobile-menu a {
	display: block;
	color: var(--color-white);
	font-size: 16px;
	padding: 12px 8px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .sub-menu {
	list-style: none;
	padding: 0 0 0 var(--space-4);
	margin: 0;
}
.mobile-menu .sub-menu a {
	font-size: 14px;
	padding: 10px 8px;
	color: rgba(255,255,255,0.85);
}

.mobile-drawer__cta {
	margin-top: var(--space-6);
	width: 100%;
}

/* Prevent body scroll when drawer open */
body.drawer-open { overflow: hidden; }

/* =========================================================
   Hero — base block + .hero--large variant (Club Directory)
   Compact variant (.hero--compact) lives below; both share .hero__* elements.
========================================================= */
.hero {
	background-color: var(--color-wood-dark);
	background-image: url("../images/textures/woodpanel.png");
	background-size: cover;
	overflow: hidden;
	position: relative;
	padding: 20px 0;
}

.hero__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--gutter);
	position: relative;
	height: 560px;
}

.hero__copy {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 80%;
	background-color: var(--color-cream);
	background-image: url("../images/textures/paper.png");
	background-size: 400px;
	padding: 44px 50% 44px 44px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
	border-radius: 4px;
	z-index: 0;
}

.hero__copy .eyebrow {
	margin-bottom: var(--space-3);
}

.hero__heading {
	font-family: var(--font-display);
	font-weight: 200;
	font-style: italic;
	font-size: clamp(44px, 5.5vw, 68px);
	line-height: 1.0;
	letter-spacing: -0.01em;
	color: var(--color-display-deep);
	margin-left:-8px;
	margin-bottom: 5px;
	margin-top: var(--space-5);
	white-space: nowrap;
}

.hero__body {
	font-size: 15px;
	line-height: 1.6;
	color: var(--color-ink);
	margin: 0;
}

.hero__media {
	float: right;
	width: 640px;
	background: var(--color-white);
	margin:44px 0px;
	padding: 14px 14px 52px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
	transform: rotate(3deg);
	transform-origin: top center;
	z-index: 2;
}

.hero__media img {
	display: block;
	width: 100%;
	height: 460px;
	object-fit: cover;
	filter: grayscale(100%);
}

.hero__pull-quote {
	position: absolute;
	bottom: 12px;
	left: -50px;
	z-index: 3;
	background: var(--color-brand-red);
	border-radius: 4px;
	padding: 18px 28px;
	max-width: 380px;
}

.hero__pull-quote p {
	margin: 0;
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.35;
	color: var(--color-white);
}

@media (max-width: 1023px) {
	.hero__inner {
		height: auto;
		padding-top: var(--space-5);
		padding-bottom: var(--space-5);
		display: flex;
		flex-direction: column;
		gap: 0;
	}
	.hero__copy {
		position: static;
		transform: none;
		width: 100%;
		max-width: 600px;
		padding: 44px;
	}
	.hero__media {
		position: static;
		transform: none;
		width: 100%;
		max-width: 600px;
		margin: -2px 0 0;
		padding: 14px;
	}
	.hero__media img {
		height: 200px;
	}
	.hero__pull-quote {
		position: static;
		margin: 0;
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.hero {
		padding: 0 0 0;
	}

	.hero__inner {
		padding-top: var(--space-5);
		padding-bottom: var(--space-5);
		padding-inline: var(--gutter-mobile);
	}
	.hero__heading { font-size: 44px; }
}

/* =========================================================
   Hero — compact variant (Bonspiels, State Champions)
   Reduces height to ~1/3 of the directory hero, drops the paper-card
   styling on the copy block, and switches to white text on the wood
   background. Photo becomes a 20:8 transparent overlay (no polaroid
   matte / rotation / grayscale).
========================================================= */
.hero--compact { padding: 0; overflow: visible; }

.hero--compact .hero__inner {
	height: auto;
	min-height: 200px;
	padding-block: var(--space-6);
	display: flex;
	align-items: center;
	gap: var(--space-8);
	overflow: visible;
}

.hero--compact .hero__copy {
	position: static;
	transform: none;
	width: auto;
	flex: 1 1 0;
	background: none;
	background-image: none;
	box-shadow: none;
	border-radius: 0;
	padding: 0;
}

/* Eyebrow hidden — design pared down for the compact variant. Kept in the
   template so it can be restored by removing this rule. */
.hero--compact .eyebrow { display: none; }

.hero--compact .hero__heading {
	font-weight: 200;
	font-style: italic;
	font-size: clamp(44px, 5.5vw, 68px);
	line-height: 0.95;
	letter-spacing: -0.025em;
	color: var(--color-paper);
	margin: 0 0 var(--space-3);
	white-space: normal;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Brand-red accent rule above the heading — small editorial flourish that
   ties the hero into the brand without competing with the wordmark. */
.hero--compact .hero__heading::after {
	content: "";
	display: block;
	width: 56px;
	height: 4px;
	background: var(--color-brand-red);
	margin-bottom: var(--space-3);
	border-radius: 2px;
}

.hero--compact .hero__body {
	color: rgba(255, 252, 244, 0.95); /* near-white with a paper warmth */
	font-size: 15px;
	line-height: 1.6;
	max-width: 52ch;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero--compact .hero__media {
	float: none;
	flex: 0 0 auto;
	/* 600px when there's room, otherwise full container width — prevents
	   horizontal overflow at mobile widths while keeping the image large
	   enough to bleed past the hero band on desktop. */
	width: min(600px, 100%);
	/* Fixed visual box height — drives the hero band's height regardless
	   of how the image renders. */
	height: 200px;
	margin: 0;
	padding: 0;
	background: none;
	box-shadow: none;
	transform: none;
	overflow: visible;
	/* Anchor the image to the bottom of the box. Combined with the
	   negative margin-bottom on the image itself, this guarantees the
	   image always overlaps the section below the hero — regardless of
	   whether the image happens to be taller or shorter than the box at
	   the current viewport width. */
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.hero--compact .hero__media img {
	display: block;
	height: auto;
	/* No forced aspect-ratio — render at the PNG's natural ratio. */
	object-fit: contain;
	filter: none;
	/* Pull the image's visible bottom edge below the polaroid box so it
	   always bleeds into the section underneath the hero. Adjust this
	   value to dial overlap depth — larger negative = more overlap. */
	margin-bottom: -50px;
}

/* Pull-quote isn't part of the compact design — hide if a value is set. */
.hero--compact .hero__pull-quote { display: none; }

@media (max-width: 768px) {
	.hero--compact .hero__inner {
		flex-direction: column;
		align-items: center;
		gap: var(--space-4);
		padding-block: var(--space-6);
		padding-inline: var(--gutter-mobile);
	}
	.hero--compact .hero__media {
		justify-content: center;
	}
	
	.hero--compact .hero__media img {
		margin-bottom: -43px;
		width: 420px;
		
	}

	.hero--compact .hero__heading { font-size: 32px; }

}

/* =========================================================
   Filter bar
========================================================= */
.filter-bar {
	background: var(--color-paper);
	border-bottom: 1px solid var(--color-border-soft);
	position: sticky;
	top: var(--header-height);
	z-index: 40;
}

.filter-bar__inner {
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-6);
}

.filter-bar__search {
	position: relative;
	flex: 0 0 280px;
}

.filter-bar__search svg {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-ink-soft);
	pointer-events: none;
}

#club-search,
#champ-search {
	width: 100%;
	height: 40px;
	border: 1px solid var(--color-border-soft);
	border-radius: 999px;
	padding: 0 16px 0 40px;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-ink);
	background: var(--color-white);
	outline: none;
}
#club-search::placeholder,
#champ-search::placeholder { color: var(--color-ink-soft); }
#club-search:focus,
#champ-search:focus {
	border-color: var(--color-eyebrow);
	box-shadow: 0 0 0 2px rgba(67, 91, 159, 0.15);
}

.region-pills {
	display: flex;
	align-items: center;
	gap: var(--space-2);
}

.region-pill {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	background: transparent;
	color: var(--color-ink);
	white-space: nowrap;
	cursor: default;
}
.region-pill.is-active {
	background: var(--color-ink);
	color: var(--color-white);
	border-color: var(--color-ink);
}

/* =========================================================
   Clubs section
========================================================= */
.clubs-section {
	padding: var(--space-12) 0 var(--space-16);
}

.clubs-count {
	margin: 0 0 var(--space-8);
}

.clubs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 10px;
	grid-auto-flow: row dense;
	column-gap: 20px;
	row-gap: 10px;
}

.clubs-grid > * { height: 100%; }

.clubs-sentinel { height: 1px; margin-top: var(--space-10); }

.clubs-no-results {
	text-align: center;
	padding: var(--space-16) 0;
	color: var(--color-ink-soft);
	font-size: 15px;
}

/* =========================================================
   Club cards — shared base
========================================================= */
.club-card {
	background: linear-gradient(180deg, #fffdf4 0%, var(--color-white) 60%);
	border: 1px solid rgba(139, 126, 58, 0.45);
	border-radius: 10px;
	box-shadow: var(--shadow-card);
	overflow: hidden;
	transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.club-card:hover {
	box-shadow: var(--shadow-lifted);
	transform: translateY(-2px);
}

.club-card__content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.club-card__header {
	display: flex;
	align-items: baseline;
	gap: var(--space-2);
	flex-wrap: wrap;
	margin-bottom: var(--space-2);
}

.club-card__name {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 20px;
	color: var(--color-ink);
	margin: 0;
	line-height: 1.2;
}

.club-card__est {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 11px;
	color: var(--color-ink-soft);
	background: var(--color-linen);
	padding: 2px 8px;
	border-radius: 999px;
	white-space: nowrap;
	flex-shrink: 0;
	position:relative;
	top:-4px;
}

/* Card location chip uses the shared .wic-location styles. The chip needs
   bottom margin to separate it from the description, which the helper
   doesn't define (it's context-dependent). */
.club-card .wic-location { margin: 0 0 var(--space-3); }

.club-card__description {
	font-size: 14px;
	line-height: 1.55;
	color: var(--color-ink);
	margin: 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.club-card__footer {
	margin-top: auto;
	padding-top: var(--space-4);
	padding-top: var(--space-4);
	border-top: 1px solid var(--color-border-soft);
}

.club-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--color-brand-red);
	text-decoration: none;
	transition: color var(--dur-fast) var(--ease-out);
}
.club-card__link:hover { color: var(--color-brand-red-deep); text-decoration: none; }
.club-card__link span { transition: transform var(--dur-fast) var(--ease-out); }
.club-card__link:hover span { transform: translateX(4px); }

/* =========================================================
   Club card — large (horizontal, spans 2 cols)
========================================================= */
.club-card--large {
	grid-column: span 2;
	grid-row: span 16;
	display: grid;
	grid-template-columns: 2fr 3fr;
	grid-template-rows: 1fr;
}

.club-card--large .club-card__image { overflow: hidden; }
.club-card--large .club-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* =========================================================
   Club card — medium (horizontal, image left, content right)
   Per DESIGN.md §4.7. Spans 2 grid columns like --large so the
   horizontal photo+content split has room to breathe; collapses
   to image-top on mobile.
========================================================= */
.club-card--medium {
	grid-column: span 2;
	grid-row: span 16;
	display: grid;
	grid-template-columns: 2fr 3fr;
	grid-template-rows: 1fr;
}
.club-card--medium .club-card__image { overflow: hidden; }
.club-card--medium .club-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* =========================================================
   Club card — standard (text only)
========================================================= */
.club-card--standard { grid-row: span 16; }

/* =========================================================
   Club card — compact (single row)
========================================================= */
.club-card--compact {
	position: relative;
	grid-row: span 8;
}

.club-card--compact .club-card__content {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	height: auto;
}

.club-card--compact .club-card__name {
	font-size: 16px;
}

/* Compact card renders the address as plain inline text (no icon, no link —
   the whole card is wrapped in an arrow link, so a nested anchor would be
   invalid). Doesn't use .wic-location. */
.club-card--compact .club-card__location {
	font-size: 12px;
	color: var(--color-ink-soft);
	margin: 2px 0 0;
}

.club-card__arrow {
	font-size: 16px;
	color: var(--color-ink-soft);
	text-decoration: none;
	flex-shrink: 0;
	transition: transform var(--dur-fast) var(--ease-out),
	            color var(--dur-fast) var(--ease-out);
}
.club-card__arrow::after {
	content: '';
	position: absolute;
	inset: 0;
}
.club-card--compact:hover .club-card__arrow {
	transform: translateX(4px);
	color: var(--color-brand-red);
	text-decoration: none;
}

/* =========================================================
   Club Spotlight card
========================================================= */
.club-spotlight {
	grid-column: 1 / -1;
	grid-row: span 28;
	background: var(--color-brand-red);
	border-radius: 8px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	overflow: hidden;
	position: relative;
}

.club-spotlight__content {
	padding: 48px;
}

.club-spotlight .eyebrow {
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: var(--space-3);
}

.club-spotlight__heading {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 36px;
	line-height: 1.1;
	color: var(--color-white);
	margin: 0 0 var(--space-4);
}

.club-spotlight__body {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 var(--space-6);
	max-width: 480px;
}

.club-spotlight__actions {
	display: flex;
	gap: var(--space-3);
	flex-wrap: wrap;
}

.btn--spotlight-solid {
	display: inline-flex;
	align-items: center;
	background: var(--color-white);
	color: var(--color-ink);
	border: 1px solid var(--color-white);
	padding: 12px 20px;
	border-radius: 4px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	text-decoration: none;
	transition: background var(--dur-fast) var(--ease-out),
	            color var(--dur-fast) var(--ease-out),
	            border-color var(--dur-fast) var(--ease-out);
}
.btn--spotlight-solid:hover {
	background: var(--color-brand-red);
	color: var(--color-white);
	border-color: var(--color-white);
	text-decoration: none;
}

.btn--spotlight-outline {
	display: inline-flex;
	align-items: center;
	background: transparent;
	color: var(--color-white);
	padding: 12px 20px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	text-decoration: none;
	transition: background var(--dur-fast) var(--ease-out),
	            color var(--dur-fast) var(--ease-out);
}
.btn--spotlight-outline:hover {
	background: var(--color-white);
	color: var(--color-brand-red-deep);
	text-decoration: none;
}

.club-spotlight__art {
	position: relative;
	overflow: hidden;
	min-height: 260px;
}

.club-spotlight__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Colorize filters — hue-shifted toward brand colors */
.spotlight__img--red {
	filter: sepia(1) hue-rotate(310deg) saturate(3) brightness(0.85);
}
.spotlight__img--blue {
	filter: sepia(1) hue-rotate(195deg) saturate(3) brightness(0.9);
}
.spotlight__img--brown {
	filter: sepia(1) saturate(1.8) brightness(0.7);
}

/* =========================================================
   Responsive — clubs
========================================================= */
@media (max-width: 1023px) {
	.clubs-grid { grid-template-columns: repeat(2, 1fr); }

	.club-card--large {
		grid-column: 1 / -1;
		grid-template-columns: 1fr 1fr;
	}

	.club-spotlight {
		grid-template-columns: 1fr;
	}
	.club-spotlight__content { padding: var(--space-8); }
	.club-spotlight__art { min-height: 200px; }
	.club-spotlight__art:empty { display: none; }
}

@media (max-width: 768px) {
	.filter-bar__inner {
		height: auto;
		flex-direction: column;
		align-items: stretch;
		padding-top: var(--space-4);
		padding-bottom: var(--space-4);
		gap: var(--space-3);
	}
	.filter-bar__search { flex: none; }
	.region-pills { overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }

	.clubs-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
		row-gap: 20px;
	}
	.clubs-grid > * { grid-row: auto !important; height: auto; }

	/* Cards size to their content on mobile — drop the height:100% +
	   margin-top:auto trick that produces uniform-height cards in the
	   multi-column desktop grid. Bottom padding tightened so the
	   "Visit website" link sits close to the card edge. */
	.club-card__content { height: auto; padding-bottom: var(--space-4); }
	.club-card__footer { margin-top: var(--space-3); padding-top: var(--space-3); }

	.club-card--large,
	.club-card--medium {
		grid-template-columns: 1fr;
	}
	.club-card--large .club-card__image img,
	.club-card--medium .club-card__image img { height: 220px; }
}

/* =========================================================
   Footer
========================================================= */
.site-footer {
	background-color: #2C1A1A;
	padding: var(--space-8) 0;
}

.site-footer__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-footer__wordmark {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 22px;
	color: var(--color-white);
	text-decoration: none;
	letter-spacing: -0.005em;
}
.site-footer__wordmark:hover { text-decoration: none; color: var(--color-white); }

.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: var(--space-8);
}
.footer-menu a {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.75);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	text-decoration: none;
	transition: color var(--dur-fast) var(--ease-out);
}
.footer-menu a:hover {
	color: var(--color-white);
	text-decoration: none;
}

@media (max-width: 768px) {
	.site-footer__inner {
		flex-direction: column;
		gap: var(--space-6);
		text-align: center;
		padding-inline: var(--gutter-mobile);
	}
	.footer-menu {
		flex-wrap: wrap;
		justify-content: center;
		gap: var(--space-4) var(--space-6);
	}
}

/* =========================================================
   State Champions
========================================================= */
.filter-bar--champs .filter-bar__inner {
	flex-wrap: wrap;
	height: auto;
	min-height: 72px;
	padding-block: var(--space-3);
}
.filter-bar__controls {
	display: flex;
	align-items: flex-end;
	gap: var(--space-3);
	flex-wrap: wrap;
}
.filter-bar__field {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.filter-bar__label {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-ink-soft);
}
.filter-bar__field select,
.filter-bar__field input {
	height: 40px;
	border: 1px solid var(--color-border-soft);
	border-radius: 999px;
	padding: 0 16px;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-ink);
	background: var(--color-white);
	min-width: 160px;
	outline: none;
	transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.filter-bar__field select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-right: 36px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%235A4A40' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><polyline points='1,1.5 6,6.5 11,1.5'/></svg>");
	background-repeat: no-repeat;
	background-position: right 14px center;
	cursor: pointer;
}
.filter-bar__field select::-ms-expand { display: none; }
.filter-bar__field select:hover { border-color: var(--color-border); }
.filter-bar__field select:focus,
.filter-bar__field input:focus {
	border-color: var(--color-eyebrow);
	box-shadow: 0 0 0 2px rgba(67, 91, 159, 0.15);
}
.filter-bar__submit {
	height: 36px;
	padding: 0 18px;
	border: none;
	border-radius: 999px;
	background: var(--color-ink);
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	cursor: pointer;
	transition: background var(--dur-fast) var(--ease-out);
}
.filter-bar__submit:hover { background: var(--color-brand-red); }
.filter-bar__reset,
.filter-bar__reset:hover,
.filter-bar__reset:focus,
.filter-bar__reset:active { text-decoration: none; }
.filter-bar__reset {
	display: inline-flex;
	align-items: center;
	height: 40px;
	padding: 0 18px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: var(--color-white);
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
	align-self: end;
}
.filter-bar__reset:hover {
	background: var(--color-ink);
	color: var(--color-white);
	border-color: var(--color-ink);
}

/* Current-year editorial feature */
.champs-feature {
	background: var(--color-brand-red);
	background-image: radial-gradient(ellipse at top left, rgba(255,255,255,0.06), transparent 60%);
	color: var(--color-paper);
	padding: var(--space-16) 0 var(--space-12);
	border-top: 1px solid rgba(255,255,255,0.08);
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.champs-feature__head {
	text-align: center;
	margin-bottom: var(--space-10);
}
.champs-feature__eyebrow {
	color: var(--color-linen);
	letter-spacing: 0.18em;
}
.champs-feature__title {
	font-family: var(--font-display);
	font-size: clamp(36px, 4.8vw, 56px);
	font-weight: 400;
	font-style: italic;
	color: var(--color-white);
	margin: var(--space-2) 0 0;
	line-height: 1.05;
}
.champs-feature__stage {
	position: relative;
	margin-bottom: var(--space-6);
}
.champs-feature__hero {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
	gap: var(--space-12);
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 250ms var(--ease-out);
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.champs-feature__hero.is-active {
	opacity: 1;
	visibility: visible;
	position: relative;
	pointer-events: auto;
}
@media (max-width: 820px) {
	.champs-feature__hero { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* Timer bar */
.champs-feature__timer {
	position: relative;
	height: 2px;
	background: rgba(255,255,255,0.06);
	border-radius: 2px;
	overflow: hidden;
	margin-bottom: var(--space-10);
}
.champs-feature__timer-fill {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 100%;
	background: var(--color-linen);
	border-radius: inherit;
}
.champs-feature__timer-fill.is-filling {
	animation: champs-timer-fill linear forwards;
}
.champs-feature__timer-fill.is-draining {
	animation: champs-timer-drain linear forwards;
}
.champs-feature__timer-fill.is-paused { animation-play-state: paused; }
@keyframes champs-timer-fill {
	from { left: 0; right: 100%; }
	to   { left: 0; right: 0;    }
}
@keyframes champs-timer-drain {
	from { left: 0;    right: 0; }
	to   { left: 100%; right: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.champs-feature__hero { transition: none; }
	.champs-feature__timer { display: none; }
}
.champs-feature__photo {
	aspect-ratio: 4 / 3;
	background: var(--color-brand-red-deep);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-lifted);
}
.champs-feature__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.champs-feature__photo-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-3);
	color: rgba(255,255,255,0.45);
	font-family: var(--font-body);
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.champs-feature__copy { min-width: 0; }
.champs-feature__event {
	color: var(--color-linen);
	display: inline-block;
	margin-bottom: var(--space-3);
}
.champs-feature__team {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.6vw, 42px);
	font-weight: 400;
	color: var(--color-white);
	margin: 0 0 var(--space-2);
	line-height: 1.1;
}
.champs-feature__club {
	font-family: var(--font-body);
	font-size: 16px;
	margin: 0 0 var(--space-6);
	color: var(--color-linen);
}
.champs-feature__club a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: rgba(255,255,255,0.35);
	text-underline-offset: 3px;
}
.champs-feature__club a:hover { text-decoration-color: var(--color-white); color: var(--color-white); }
.champs-feature__roster {
	list-style: none;
	padding: var(--space-5) 0;
	margin: 0 0 var(--space-6);
	border-top: 1px solid rgba(255,255,255,0.18);
	border-bottom: 1px solid rgba(255,255,255,0.18);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: var(--space-3) var(--space-6);
}
.champs-feature__roster li {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.champs-feature__role {
	font-family: var(--font-body);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-linen);
}
.champs-feature__name {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 400;
	color: var(--color-white);
}
.champs-feature__writeup {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-paper);
	margin: 0 0 var(--space-6);
}
.champs-feature__writeup--placeholder { color: rgba(255,255,255,0.55); }
.champs-feature__link {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	font-family: var(--font-body);
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-white);
	text-decoration: none;
	padding-bottom: 2px;
	border-bottom: 1px solid rgba(255,255,255,0.4);
}
.champs-feature__link:hover { border-bottom-color: var(--color-white); }

.champs-feature__strip {
	padding-top: var(--space-8);
	border-top: 1px solid rgba(255,255,255,0.15);
}
.champs-feature__strip-label {
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-linen);
	margin: 0 0 var(--space-5);
	font-weight: 400;
}
.champs-feature__strip-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
	margin-bottom: var(--space-5);
}
.champs-feature__strip-label { margin: 0; }

.champs-slider {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow-x: clip;
	overflow-y: visible;
}
.champs-slider__track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	overflow-y: visible;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-top: 20px;
	padding-bottom: var(--space-2);
	padding-left: max(var(--gutter), calc((100vw - var(--container-max)) / 2 + var(--gutter)));
	padding-right: max(var(--gutter), calc((100vw - var(--container-max)) / 2 + var(--gutter)));
	scroll-padding-left: max(var(--gutter), calc((100vw - var(--container-max)) / 2 + var(--gutter)));
}
.champs-slider__track::-webkit-scrollbar { display: none; }
.champs-slider__track { align-items: stretch; }
.champs-slider__slide {
	flex: 0 0 320px;
	max-width: 320px;
	scroll-snap-align: start;
	display: flex;
	cursor: pointer;
}
.champs-slider__slide > .champ-card {
	width: 100%;
	height: 100%;
	position: relative;
	transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.champs-slider__slide:hover > .champ-card { transform: translateY(-3px); }
.champs-slider__slide:focus-within > .champ-card { outline: 2px solid var(--color-white); outline-offset: 3px; }

.champs-slider__slide.is-featured > .champ-card {
	box-shadow: 0 0 0 2px var(--color-white), 0 18px 40px rgba(0,0,0,0.45), 0 6px 12px rgba(0,0,0,0.25);
}
.champs-slider__slide.is-featured > .champ-card::before,
.champs-slider__slide.is-featured > .champ-card::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	pointer-events: none;
}
.champs-slider__slide.is-featured > .champ-card::before {
	top: -16px;
	border-bottom: 14px solid var(--color-white);
}
.champs-slider__slide.is-featured > .champ-card::after {
	top: -13px;
	border-bottom: 14px solid var(--color-cream);
}
.champs-slider__slide.is-featured .champ-card__player-name {
	pointer-events: none;
	color: inherit;
	text-decoration: none;
}
@media (max-width: 640px) {
	.champs-slider__slide { flex-basis: 85%; max-width: 85%; }
}

.champs-slider__nav {
	display: flex;
	gap: var(--space-2);
}
.champs-slider__btn {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: var(--color-white);
	border: 1px solid rgba(255,255,255,0.35);
	border-radius: 999px;
	cursor: pointer;
	transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.champs-slider__btn:hover {
	background: rgba(255,255,255,0.1);
	border-color: var(--color-white);
}
.champs-slider__btn:disabled {
	opacity: 0.3;
	cursor: default;
	background: transparent;
	border-color: rgba(255,255,255,0.2);
}
.champs-slider__btn:focus-visible {
	outline: 2px solid var(--color-white);
	outline-offset: 2px;
}

/* Section + decade groupings */
.champs-section { padding: var(--space-12) 0 var(--space-16); }

.champs-decade {
	margin-bottom: var(--space-12);
}
.champs-decade__head {
	display: flex;
	align-items: baseline;
	gap: var(--space-3);
	margin-bottom: var(--space-6);
	padding-bottom: var(--space-3);
	border-bottom: 1px solid var(--color-border);
}
.champs-decade__title {
	font-family: var(--font-display);
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 400;
	color: var(--color-display-deep);
	font-style: italic;
	margin: 0;
}
.champs-decade__count {
	font-family: var(--font-body);
	font-size: 12px;
	color: var(--color-ink-soft);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.champs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.champs-no-results {
	text-align: center;
	padding: var(--space-16) 0;
	color: var(--color-ink-soft);
	font-size: 15px;
}

/* Champion card */
.champ-card {
	background: linear-gradient(180deg, #fffdf4 0%, var(--color-white) 60%);
	border: 1px solid var(--color-border-soft);
	border-radius: 10px;
	padding: var(--space-5);
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	box-shadow: var(--shadow-card);
	transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.champ-card:hover {
	box-shadow: var(--shadow-lifted);
	transform: translateY(-2px);
}
.champ-card--gold {
	border-color: rgba(139, 126, 58, 0.45);
}

.champ-card__head {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: start;
	gap: var(--space-3);
}
.champ-card__head-left {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.champ-card__place {
	font-family: var(--font-body);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-ink-soft);
	padding: 3px 10px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
}
.champ-card__badges {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: flex-end;
	justify-self: end;
}
.champ-card__badges:empty { display: none; }
.champ-badge {
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 3px 8px;
	border-radius: 3px;
	color: var(--color-white);
	white-space: nowrap;
}
.champ-badge--nc { background: var(--color-region-central); }
.champ-badge--wc { background: var(--color-brand-red); }

.champ-card__heading {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 400;
	color: var(--color-display-deep);
	margin: 0;
	line-height: 1.2;
	text-align: center;
	align-self: center;
}
.champ-card__club {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--color-ink-soft);
	margin: 0 0 var(--space-3);
	text-align: center;
}
.champ-card__team-label {
	font-weight: 700;
	color: var(--color-ink);
}
.champ-card__club a { color: inherit; text-decoration: none; }
/* Hover (brand-red color + underline) inherited from global a:hover. */

.champ-card__roster {
	list-style: none;
	margin: 0;
	padding: var(--space-3) 0 0;
	border-top: 1px solid var(--color-border-soft);
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.champ-card__player {
	display: grid;
	grid-template-columns: 56px 1fr;
	align-items: baseline;
	gap: var(--space-2);
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--color-ink);
}
.champ-card__player-name-wrap {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
}
.champ-card__role {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-ink-soft);
}
.champ-card__player-name {
	color: var(--color-ink);
	text-decoration: none;
	border-bottom: 1px dotted transparent;
}
a.champ-card__player-name:hover {
	color: var(--color-brand-red);
	border-bottom-color: var(--color-brand-red);
}
.champ-card__player.is-team-skip .champ-card__player-name {
	font-weight: 400;
	color: var(--color-display-deep);
}
.champ-card__skip-mark {
	color: var(--color-brand-red);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.champ-card__note {
	font-family: var(--font-body);
	font-size: 12px;
	font-style: italic;
	color: var(--color-ink-soft);
	margin: 0;
	padding-top: var(--space-2);
	border-top: 1px dashed var(--color-border-soft);
}

@media (max-width: 768px) {
	.filter-bar--champs .filter-bar__inner { gap: var(--space-3); }
	.filter-bar__controls { width: 100%; }
}

/* =========================================================
   Custom select (progressive enhancement over <select>)
========================================================= */
.cs {
	position: relative;
	display: block;
}
.cs select {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.cs__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2);
	width: 100%;
	min-width: 160px;
	height: 40px;
	padding: 0 14px 0 16px;
	border: 1px solid var(--color-border-soft);
	border-radius: 999px;
	background: var(--color-white);
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-ink);
	cursor: pointer;
	outline: none;
	text-align: left;
	transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.cs__trigger:hover { border-color: var(--color-border); }
.cs__trigger:focus-visible,
.cs.is-open .cs__trigger {
	border-color: var(--color-eyebrow);
	box-shadow: 0 0 0 2px rgba(67, 91, 159, 0.15);
}
.cs__label {
	flex: 1 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.cs__caret {
	width: 10px;
	height: 10px;
	flex-shrink: 0;
	border-right: 1.5px solid var(--color-ink-soft);
	border-bottom: 1.5px solid var(--color-ink-soft);
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform var(--dur-fast) var(--ease-out);
}
.cs.is-open .cs__caret {
	transform: rotate(-135deg) translate(-2px, -2px);
}

.cs__panel {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 50;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	box-shadow: var(--shadow-lifted);
	max-height: 280px;
	overflow-y: auto;
}
.cs__option {
	padding: 8px 12px;
	border-radius: 8px;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-ink);
	cursor: pointer;
	user-select: none;
}
.cs__option.is-active {
	background: var(--color-cream);
}
.cs__option.is-selected {
	background: var(--color-ink);
	color: var(--color-white);
	font-weight: 400;
}
.cs__option--pinned {
	margin-bottom: 6px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--color-border-soft);
	border-radius: 8px 8px 0 0;
}
.cs__group {
	padding: 10px 12px 4px;
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--color-ink-soft);
	pointer-events: none;
	user-select: none;
}
.cs__option--grouped { padding-left: 20px; }

/* Widen event dropdown to fit long championship names. */
.filter-bar__field--wide { min-width: 220px; }
.filter-bar__field--wide .cs,
.filter-bar__field--wide select { min-width: 220px; }

/* Allow custom-select panel to grow beyond its trigger so long option names don't wrap. */
.filter-bar--champs .cs__panel { min-width: 100%; width: max-content; max-width: 360px; }
.filter-bar--champs .cs__option { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Champion filter bar: search sits inline with filters. */
.filter-bar--champs .filter-bar__controls { flex-wrap: nowrap; gap: var(--space-2); }
.filter-bar--champs .filter-bar__field select,
.filter-bar--champs .filter-bar__field input { min-width: 130px; }
.filter-bar--champs .filter-bar__field--search input[type="search"] { min-width: 200px; }
.filter-bar__field--search { position: relative; flex: 0 0 220px; min-width: 220px; }
.filter-bar__field--search .filter-bar__search-icon {
	position: absolute;
	left: 14px;
	bottom: 12px;
	color: var(--color-ink-soft);
	pointer-events: none;
}
.filter-bar__field--search input[type="search"] { padding-left: 40px; width: 100%; }

/* Mobile overrides for the filter bar. Lives after the desktop --champs
   rules above so source order wins on equal specificity, and overrides the
   .cs__trigger min-width so the custom-select triggers can shrink. */
@media (max-width: 768px) {
	.filter-bar--champs .filter-bar__controls { flex-wrap: wrap; }

	/* Search row: input + button on their own line, full width. */
	.filter-bar--champs .filter-bar__field--search { flex: 1 1 100%; min-width: 0; }
	.filter-bar--champs .filter-bar__field--search input[type="search"] { min-width: 0; }
	.filter-bar--champs .filter-bar__search-btn { flex: 0 0 auto; }

	/* Each filter field takes ~half width so they stack 2-up. */
	.filter-bar--champs .filter-bar__field { flex: 1 1 calc(50% - var(--space-2)); min-width: 0; }
	.filter-bar--champs .filter-bar__field--wide { flex-basis: 100%; }
	.filter-bar--champs .filter-bar__field select,
	.filter-bar--champs .filter-bar__field input { min-width: 0; width: 100%; }

	/* Custom-select wrapper + trigger must shrink to the field width. */
	.filter-bar--champs .cs { width: 100%; min-width: 0; }
	.filter-bar--champs .cs__trigger { min-width: 0; }
}
.filter-bar__search-btn {
	align-self: end;
	height: 40px;
	padding: 0 18px;
	border: 1px solid var(--color-ink);
	border-radius: 999px;
	background: var(--color-ink);
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.filter-bar__search-btn:hover { background: var(--color-brand-red); border-color: var(--color-brand-red); }

.champ-spotlight-wrap {
	margin: var(--space-8) 0 var(--space-12);
}

/* ──────────────────────────────────────────────────────────────────────────
 * Bonspiels page — hero strip, calendar embed, list rows
 * ────────────────────────────────────────────────────────────────────────── */

/* "Next Up" strip — full-width brand-red band, mirrors champs-feature
   visual weight but list-shaped. */
.bonspiels-upcoming {
	background: var(--color-brand-red);
	color: var(--color-white);
	padding: var(--space-12) 0 var(--space-12);
	margin-bottom: var(--space-10);
}
.bonspiels-upcoming__head {
	margin-bottom: var(--space-6);
}
.bonspiels-upcoming__eyebrow {
	color: rgba(255, 255, 255, 0.7);
	display: block;
	margin-bottom: var(--space-2);
}
.bonspiels-upcoming__title-main {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1.05;
	margin: 0;
	color: var(--color-white);
}
.bonspiels-upcoming__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--space-4);
}
@media (max-width: 1024px) {
	.bonspiels-upcoming__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
	.bonspiels-upcoming__grid { grid-template-columns: repeat(2, 1fr); }
}

.bonspiels-upcoming__card {
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	overflow: hidden;
	color: var(--color-white);
	text-decoration: none;
	transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.bonspiels-upcoming__card:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.25);
}
.bonspiels-upcoming__thumb {
	aspect-ratio: 16 / 10;
	background: rgba(0, 0, 0, 0.18);
	overflow: hidden;
}
.bonspiels-upcoming__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.bonspiels-upcoming__thumb-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.4);
}
.bonspiels-upcoming__copy {
	padding: var(--space-3) var(--space-4) var(--space-4);
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.bonspiels-upcoming__date {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.75);
}
.bonspiels-upcoming__year {
	color: rgba(255, 255, 255, 0.5);
}
.bonspiels-upcoming__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 17px;
	line-height: 1.2;
	margin: 0;
	color: var(--color-white);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.bonspiels-upcoming__club {
	font-family: var(--font-body);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

/* Calendar embed section — paper background, plugin shortcode lives inside. */
.bonspiels-calendar {
	padding: var(--space-10) 0 var(--space-10);
	background: var(--color-paper);
	border-top: 1px solid var(--color-border-soft);
	border-bottom: 1px solid var(--color-border-soft);
}
.bonspiels-calendar__head {
	margin-bottom: var(--space-5);
}
.bonspiels-calendar__title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(24px, 3vw, 32px);
	margin: var(--space-1) 0 0;
	color: var(--color-ink);
}
.bonspiels-calendar__embed {
	background: var(--color-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 8px;
	padding: var(--space-4);
	min-height: 300px;
}

/* List section + row card. */
.bonspiels-section {
	padding: var(--space-8) 0 var(--space-12);
}
.bonspiels-list {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}
.bonspiels-no-results {
	font-family: var(--font-body);
	color: var(--color-ink-soft);
	font-size: 16px;
	padding: var(--space-8) 0;
	text-align: center;
}

.bonspiel-row {
	display: grid;
	grid-template-columns: 140px 1fr auto;
	gap: var(--space-5);
	align-items: center;
	background: var(--color-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 8px;
	padding: var(--space-3) var(--space-5) var(--space-3) var(--space-3);
	box-shadow: 0 2px 8px rgba(43, 27, 20, 0.04);
	transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.bonspiel-row:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(43, 27, 20, 0.08);
	border-color: var(--color-border);
}
@media (max-width: 768px) {
	.bonspiel-row {
		grid-template-columns: 100px 1fr;
		grid-template-rows: auto auto;
		padding: var(--space-3);
		gap: var(--space-3);
	}
	.bonspiel-row__cta {
		grid-column: 1 / -1;
		justify-self: end;
	}
}

.bonspiel-row__thumb {
	display: block;
	aspect-ratio: 4 / 3;
	border-radius: 6px;
	overflow: hidden;
	background: var(--color-cream);
	position: relative;
}
.bonspiel-row__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.bonspiel-row__thumb-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-ink-soft);
}

.bonspiel-row__body {
	min-width: 0;
}
.bonspiel-row__meta-top {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	margin-bottom: 6px;
	flex-wrap: wrap;
}
.bonspiel-pill {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--color-cream);
	color: var(--color-ink);
	border: 1px solid var(--color-border);
	font-family: var(--font-body);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.bonspiel-row__dates {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--color-ink-soft);
	font-weight: 400;
}
.bonspiel-row__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 22px;
	line-height: 1.2;
	margin: 0 0 4px 0;
	color: var(--color-ink);
}
.bonspiel-row__title a {
	color: inherit;
	text-decoration: none;
}
/* Hover (brand-red color + underline) inherited from global a:hover. */

.bonspiel-row__meta-bottom {
	margin: 0;
	display: flex;
	gap: var(--space-3);
	flex-wrap: wrap;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-ink-soft);
}
.bonspiel-row__club a {
	color: var(--color-ink);
	text-decoration: none;
	transition: color var(--dur-fast) var(--ease-out);
}
/* Hover (brand-red color + underline) inherited from global a:hover. */

/* Bonspiel row uses the shared .wic-location chip; the only context-specific
   tweak is a "·" divider between the club label and the location chip. */
.bonspiel-row__meta-bottom .wic-location::before {
	content: "·";
	margin-right: var(--space-2);
	color: var(--color-border);
}

.bonspiel-row__cta {
	white-space: nowrap;
}
.bonspiel-row__link {
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-brand-red);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.bonspiel-row__link:hover { color: var(--color-brand-red-deep); }
.bonspiel-row__link:hover span { transform: translateX(3px); }
.bonspiel-row__link span {
	display: inline-block;
	transition: transform var(--dur-fast) var(--ease-out);
}

/* ──────────────────────────────────────────────────────────────────────────
 * News — index lead, grid, single post
 * ────────────────────────────────────────────────────────────────────────── */

/* Lead story — full-width band above the filter bar, asymmetric layout. */
.news-lead {
	background: var(--color-paper);
	border-bottom: 1px solid var(--color-border-soft);
	padding: var(--space-8) 0;
}
.news-lead__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: var(--space-8);
	align-items: center;
}
@media (max-width: 1023px) {
	.news-lead__inner { grid-template-columns: 1fr; }
}
.news-lead__copy { min-width: 0; }
.news-lead__eyebrow { color: var(--color-eyebrow); margin-bottom: var(--space-2); }
.news-lead__title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 200;
	font-size: clamp(28px, 3.6vw, 44px);
	line-height: 1.05;
	letter-spacing: -0.015em;
	margin: 0 0 var(--space-2);
	color: var(--color-ink);
}
.news-lead__title a { color: inherit; text-decoration: none; }
.news-lead__date {
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-ink-soft);
	margin: 0 0 var(--space-3);
}
.news-lead__excerpt {
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.55;
	color: var(--color-ink);
	margin: 0 0 var(--space-4);
	max-width: 56ch;
}
.news-lead__link {
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-brand-red);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.news-lead__link:hover { color: var(--color-brand-red-deep); text-decoration: none; }
.news-lead__link:hover span { transform: translateX(3px); }
.news-lead__link span { display: inline-block; transition: transform var(--dur-fast) var(--ease-out); }

.news-lead__media {
	display: block;
	aspect-ratio: 16 / 10;
	border-radius: 8px;
	overflow: hidden;
	background: var(--color-cream);
	box-shadow: 0 6px 24px rgba(43, 27, 20, 0.12);
}
.news-lead__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.news-lead__media-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-ink-soft);
	background: var(--color-linen);
}

/* Grid section + cards. */
.news-section { padding: var(--space-8) 0 var(--space-12); }
.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-6);
}
@media (max-width: 1023px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .news-grid { grid-template-columns: 1fr; } }

.news-no-results {
	font-family: var(--font-body);
	color: var(--color-ink-soft);
	font-size: 16px;
	padding: var(--space-8) 0;
	text-align: center;
}

.news-card {
	background: linear-gradient(180deg, #fffdf4 0%, var(--color-white) 60%);
	border: 1px solid var(--color-border-soft);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(43, 27, 20, 0.04);
	display: flex;
	flex-direction: column;
	transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.news-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(43, 27, 20, 0.08);
	border-color: var(--color-border);
}
.news-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--color-cream);
	overflow: hidden;
}
.news-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.news-card__media-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-ink-soft);
	background: var(--color-linen);
}
.news-card__body { padding: var(--space-4) var(--space-5) var(--space-5); display: flex; flex-direction: column; gap: 6px; }
.news-card__meta-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
	margin-bottom: 2px;
	flex-wrap: wrap;
}
.news-card__category {
	display: inline-block;
	color: var(--color-brand-red);
	font-size: 11px;
}
.news-card__date {
	font-family: var(--font-body);
	font-size: 12px;
	color: var(--color-ink-soft);
}
.news-card__title {
	font-family: var(--font-display);
    font-weight: 400;
    font-size: 20px;
    color: var(--color-ink);
    margin: 0;
    line-height: 1.2;
}
.news-card__title a { color: inherit; text-decoration: none; }
.news-card__excerpt {
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-ink);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news-card__pdf-flag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: var(--space-2);
	padding: 2px 8px;
	background: var(--color-cream);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: 11px;
	color: var(--color-ink-soft);
	width: fit-content;
}

/* AJAX sentinel + loader. */
.news-sentinel { height: 1px; margin-top: var(--space-10); }
.news-loader {
	text-align: center;
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--color-ink-soft);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: var(--space-6) 0 0;
}

/* Single post. */
.news-single { padding-bottom: var(--space-12); }
.news-single__hero { background-color: var(--color-wood-dark); }

/* Breadcrumb sits where the hero body used to. Light text on the wood
   texture; matches the single-post visual weight. */
.news-single__breadcrumb {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	margin-top: var(--space-2);
	font-family: var(--font-body);
	font-size: 13px;
	color: rgba(255, 252, 244, 0.85);
	letter-spacing: 0.04em;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	flex-wrap: wrap;
}
.news-single__breadcrumb a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color var(--dur-fast) var(--ease-out);
}
.news-single__breadcrumb a:hover {
	color: var(--color-paper);
	text-decoration: none;
	border-bottom-color: rgba(255, 252, 244, 0.6);
}
.news-single__breadcrumb-sep {
	opacity: 0.55;
}

/* In-body header (post title + meta) — now lives inside the body
   container, below the featured image. */
.news-single__header {
	margin-bottom: var(--space-5);
}
.news-single__title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 200;
	font-size: clamp(28px, 3.6vw, 40px);
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--color-ink);
	margin: 0 0 var(--space-2);
}
.news-single__meta {
	font-family: var(--font-body);
	font-size: 13px;
	letter-spacing: 0.05em;
	color: var(--color-ink-soft);
	margin: 0;
	display: flex;
	align-items: center;
	gap: var(--space-2);
	flex-wrap: wrap;
}
.news-single__meta-sep { opacity: 0.55; }
.news-single__meta-category { color: var(--color-brand-red); }

.news-single__feature {
	margin: 0 0 var(--space-6);
}
.news-single__feature-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	box-shadow: 0 6px 24px rgba(43, 27, 20, 0.12);
}
.news-single__feature-caption {
	margin-top: var(--space-2);
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--color-ink-soft);
	font-style: italic;
}
/* Placeholder for posts without a featured image — keeps the page
   visual rhythm consistent. Same curling-stone glyph as the card. */
.news-single__feature-placeholder {
	width: 100%;
	aspect-ratio: 16 / 9;
	background: var(--color-linen);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-ink-soft);
	box-shadow: 0 6px 24px rgba(43, 27, 20, 0.08);
}

/* 2-column layout: article body + right-rail sidebar. Container max-width
   accommodates both. Sidebar hidden at <1024px per design direction. */
.news-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: var(--space-10);
	max-width: 1080px;
	padding-block: var(--space-8);
}
.news-single__body {
	min-width: 0; /* prevents content from forcing track expansion */
}
@media (max-width: 1023px) {
	.news-single__layout {
		grid-template-columns: 1fr;
		max-width: 720px;
	}
	.news-single__sidebar { display: none; }
}
.news-single__content {
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--color-ink);
}
.news-single__content > * + * { margin-top: var(--space-4); }
.news-single__content h2 {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: 28px;
	line-height: 1.2;
	margin-top: var(--space-8);
	color: var(--color-ink);
}
.news-single__content h3 {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: 22px;
	margin-top: var(--space-6);
	color: var(--color-ink);
}
.news-single__content blockquote {
	border-left: 3px solid var(--color-brand-red);
	padding-left: var(--space-4);
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	color: var(--color-ink);
	margin: var(--space-6) 0;
}
.news-single__content ul,
.news-single__content ol { padding-left: var(--space-5); }
.news-single__content li + li { margin-top: 4px; }
.news-single__content img { max-width: 100%; height: auto; border-radius: 6px; }
.news-single__content .wp-block-file {
	background: var(--color-paper);
	border: 1px solid var(--color-border-soft);
	border-radius: 6px;
	padding: var(--space-3) var(--space-4);
	margin: var(--space-4) 0;
}

/* Cross-content callout (related bonspiel / champion). */
.news-single__related-cpt {
	margin-top: var(--space-8);
	padding: var(--space-5);
	background: var(--color-paper);
	border: 1px solid var(--color-border-soft);
	border-radius: 8px;
}
.news-single__related-cpt-label {
	display: block;
	color: var(--color-eyebrow);
	margin-bottom: var(--space-3);
}
.news-single__related-cpt-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}
.news-single__related-cpt-link {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	padding: var(--space-3);
	background: var(--color-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 6px;
	color: var(--color-ink);
	text-decoration: none;
	font-family: var(--font-body);
	font-size: 15px;
	transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.news-single__related-cpt-link:hover {
	border-color: var(--color-brand-red);
	transform: translateY(-1px);
	text-decoration: none;
	color: var(--color-ink);
}
.news-single__related-cpt-link svg { color: var(--color-brand-red); flex: 0 0 auto; }
.news-single__related-cpt-link > span:first-of-type { flex: 1 1 auto; min-width: 0; }
.news-single__related-cpt-cta {
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-brand-red);
	white-space: nowrap;
}

.news-single__back {
	display: inline-block;
	margin-top: var(--space-8);
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-brand-red);
	text-decoration: none;
}
.news-single__back:hover { color: var(--color-brand-red-deep); text-decoration: none; }

/* Related-posts strip on single. */
.news-related {
	margin-top: var(--space-12);
	padding-top: var(--space-8);
	border-top: 1px solid var(--color-border-soft);
}
.news-related__head { margin-bottom: var(--space-5); }
.news-related__title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 200;
	font-size: clamp(24px, 3vw, 32px);
	margin: var(--space-1) 0 0;
	color: var(--color-ink);
}

/* ──────────────────────────────────────────────────────────────────────────
 * Single-post sidebar — right rail, sticky, flat-list style.
 * ────────────────────────────────────────────────────────────────────────── */
.news-single__sidebar {
	position: sticky;
	top: calc(var(--header-height) + var(--space-4));
	align-self: start;
	display: flex;
	flex-direction: column;
	gap: var(--space-6);
	font-family: var(--font-body);
}

/* Thin horizontal separator between blocks (above each block after the first). */
.news-aside-block {
	padding-top: var(--space-6);
	padding-bottom: var(--space-6);
	border-top: 1px solid var(--color-ink-soft);
	
}


.news-aside-block__label {
	display: block;
	color: var(--color-eyebrow);
	margin: 0 0 var(--space-3);
	font-size: 11px;
	padding-bottom: var(--space-2);
	border-bottom: 1px solid var(--color-border-soft);
}

.news-aside-block__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.news-aside-item {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.news-aside-item__eyebrow {
	color: var(--color-brand-red);
	font-size: 10px;
}
.news-aside-item__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 17px;
	line-height: 1.25;
	color: var(--color-ink);
	text-decoration: none;
}
.news-aside-item__date,
.news-aside-item__sub {
	font-size: 12px;
	color: var(--color-ink-soft);
	letter-spacing: 0.02em;
}

.news-aside-block__cta {
	display: inline-block;
	margin-top: var(--space-3);
	font-family: var(--font-body);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-brand-red);
	text-decoration: none;
	
}
.news-aside-block__cta span {
	display: inline-block;
	transition: transform var(--dur-fast) var(--ease-out);
}
.news-aside-block__cta:hover { color: var(--color-brand-red-deep); text-decoration: none; }
.news-aside-block__cta:hover span { transform: translateX(3px); }

/* Categories list — compact rows with right-aligned counts. */
.news-aside-block__category-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.news-aside-category a {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: var(--space-3);
	padding: 3px 0;
	border-bottom: 1px solid var(--color-border);
	font-size: 13px;
	line-height: 1.4;
	color: var(--color-ink);
	text-decoration: none;
	transition: color var(--dur-fast) var(--ease-out);
}
.news-aside-category:last-child a { border-bottom: 0; }
.news-aside-category a:hover { color: var(--color-brand-red); text-decoration: none; }
.news-aside-category__name { min-width: 0; }
.news-aside-category__count {
	font-size: 11px;
	color: var(--color-ink-soft);
	letter-spacing: 0.04em;
	flex: 0 0 auto;
}
.news-aside-category.is-current a { color: var(--color-brand-red); font-weight: 400; }
.news-aside-category.is-current .news-aside-category__count { color: var(--color-brand-red); }

/* ──────────────────────────────────────────────────────────────────────────
 * Home (front-page.php) — hero, upcoming bonspiels, latest news,
 * minutes + nominations + spotlight bottom split.
 *
 * Reuses .news-card, .eyebrow, .btn--primary, .container from base.
 * ────────────────────────────────────────────────────────────────────────── */

/* ─── Shared section-head pattern (eyebrow + heading) ─── */
.section-head {
	margin-bottom: var(--space-6);
}
.section-head--centered {
	text-align: center;
}
.section-head .eyebrow {
	margin-bottom: var(--space-2);
}

/* =========================================================
   1. Hero
   ========================================================= */
.home-hero {
	position: relative;
	overflow: hidden;
	min-height: 460px;
	display: flex;
	align-items: center;
	color: var(--color-paper);
}
.home-hero__bg {
	position: absolute;
	inset: 0;
	background-color: var(--color-wood-dark);
	background-image:
		linear-gradient(135deg, rgba(20, 12, 8, 0.55) 0%, rgba(20, 12, 8, 0.25) 60%, rgba(20, 12, 8, 0.55) 100%),
		url("../images/textures/woodpanel.png");
	background-size: auto, cover;
	z-index: 0;
}
.home-hero__inner {
	position: relative;
	z-index: 1;
	padding-block: var(--space-12);
	width: 100%;
	text-align: center;
}

.home-hero__icon {
	display: flex;
	justify-content: center;
	margin: 0 auto var(--space-4);
	color: #fff;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}
.home-hero__icon svg { display: block; }

.home-hero__headline {
	font-family: var(--font-display);
	font-style: italic;
	color: #fff;
	margin: 0 0 var(--space-6);
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.4);
}
.home-hero__line {
	display: block;
	font-style: italic;
	font-weight: 200;
	font-size: clamp(40px, 6vw, 76px);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #fff;
}
.home-hero__line--emphasis {
	font-weight: 200;
	color: #fff;
}
/* Second tagline line: 50% smaller than the emphasis line. */
.home-hero__line + .home-hero__line {
	font-size: clamp(20px, 3vw, 38px);
	margin-top: 0.35em;
}

.home-hero__search {
	display: flex;
	align-items: stretch;
	gap: 0;
	max-width: 480px;
	margin: 0 auto;
	background: var(--color-white);
	border-radius: 999px;
	padding: 4px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.home-hero__search-field {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	flex: 1 1 auto;
	min-width: 0;
	padding: 0 var(--space-4);
}
.home-hero__search-icon { color: var(--color-ink-soft); flex: 0 0 auto; }
.home-hero__search-field input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	background: transparent;
	height: 44px;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-ink);
	outline: none;
}
.home-hero__search-field input[type="search"]::placeholder {
	color: var(--color-ink-soft);
}
.home-hero__search-btn {
	flex: 0 0 auto;
	border-radius: 999px;
	padding: 0 var(--space-5);
	height: 44px;
}
.home-hero__search-btn span {
	margin-left: 4px;
	display: inline-block;
	transition: transform var(--dur-fast) var(--ease-out);
}
.home-hero__search-btn:hover span { transform: translateX(3px); }

@media (max-width: 640px) {
	.home-hero__search { flex-direction: column; border-radius: 14px; padding: var(--space-2); }
	.home-hero__search-field { padding: 6px var(--space-3); }
	.home-hero__search-field input[type="search"] { height: 40px; }
	.home-hero__search-btn { width: 100%; height: 44px; }
}

/* =========================================================
   2. Upcoming Bonspiels
   ========================================================= */
.home-bonspiels {
	background: var(--color-cream);
	padding: var(--space-12) 0;
}
.home-bonspiels__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: var(--space-6);
	margin-bottom: var(--space-8);
	flex-wrap: wrap;
}
.home-bonspiels__head-text .eyebrow {
	margin-bottom: var(--space-1);
}
.home-bonspiels__title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 200;
	font-size: clamp(28px, 3.6vw, 40px);
	line-height: 1.05;
	letter-spacing: -0.015em;
	color: var(--color-ink);
	margin: 0;
}
.home-bonspiels__tabs {
	display: flex;
	gap: var(--space-5);
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.home-bonspiels__tab {
	color: var(--color-ink-soft);
	text-decoration: none;
	padding: 0 0 4px;
	margin: 0;
	border: 0;
	border-bottom: 2px solid transparent;
	background: transparent;
	cursor: pointer;
	font: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.home-bonspiels__tab:focus-visible {
	outline: 2px solid var(--color-brand-red);
	outline-offset: 3px;
}
.home-bonspiels__tab:hover {
	color: var(--color-brand-red);
	border-bottom-color: var(--color-brand-red);
	text-decoration: none;
}
.home-bonspiels__tab.is-active {
	color: var(--color-brand-red);
	border-bottom-color: var(--color-brand-red);
}

/* Tab panels — only the active one renders. `hidden` attribute handles the
   visual hide; this rule belt-and-braces it so CSS-only browsers also work. */
.home-bonspiels__panel[hidden] { display: none; }

.home-bonspiels__calendar-wrap {
	background: var(--color-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 12px;
	padding: var(--space-4);
	box-shadow: 0 6px 24px rgba(43, 27, 20, 0.06);
	min-height: 320px;
}

.home-bonspiels__layout {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: var(--space-8);
	align-items: start;
}
@media (max-width: 1023px) {
	.home-bonspiels__layout { grid-template-columns: 1fr; }
}

/* Featured bonspiel card — large with image left, content overlay-style */
.home-bonspiels__feature {
	display: grid;
	grid-template-rows: 1fr auto;
	background: var(--color-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(43, 27, 20, 0.08);
}
.home-bonspiels__feature-media {
	position: relative;
	aspect-ratio: 16 / 9;
	background: var(--color-linen);
	overflow: hidden;
}
.home-bonspiels__feature-media img {
	width: 100%; height: 100%; object-fit: cover; display: block;
}
.home-bonspiels__feature-placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	color: var(--color-ink-soft);
}
.home-bonspiels__feature-pill {
	position: absolute;
	top: var(--space-3);
	left: var(--space-3);
	background: var(--color-brand-red);
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 3px;
}
.home-bonspiels__feature-body {
	padding: var(--space-5);
}
.home-bonspiels__feature-title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 200;
	font-size: clamp(22px, 2.5vw, 30px);
	line-height: 1.15;
	color: var(--color-ink);
	margin: 0 0 var(--space-2);
}
.home-bonspiels__feature-meta {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--color-ink-soft);
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	align-items: center;
	margin: 0 0 var(--space-4);
}
.home-bonspiels__feature-meta-sep { opacity: 0.55; }
.home-bonspiels__feature-ctas {
	display: flex;
	gap: var(--space-3);
	flex-wrap: wrap;
}

/* Social & Club Spiels — right-rail list with date pill */
.home-bonspiels__list {
	background: var(--color-paper);
	border: 1px solid var(--color-border-soft);
	border-radius: 12px;
	padding: var(--space-5);
}
.home-bonspiels__list-title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 200;
	font-size: 22px;
	margin: 0 0 var(--space-4);
	color: var(--color-ink);
	padding-bottom: var(--space-3);
	border-bottom: 1px solid var(--color-border-soft);
}
.home-bonspiels__list-items {
	list-style: none;
	margin: 0 0 var(--space-4);
	padding: 0;
	display: flex;
	flex-direction: column;
}
.home-bonspiels__list-item + .home-bonspiels__list-item {
	border-top: 1px solid var(--color-border-soft);
}
.home-bonspiels__list-link {
	display: flex;
	gap: var(--space-3);
	align-items: center;
	padding: var(--space-3) 0;
	color: var(--color-ink);
	text-decoration: none;
}
.home-bonspiels__list-link:hover {
	text-decoration: none;
	color: var(--color-brand-red);
}
.home-bonspiels__list-link:hover .home-bonspiels__list-name {
	color: var(--color-brand-red);
	text-decoration: underline;
}
.home-bonspiels__date-pill {
	flex: 0 0 auto;
	width: 46px;
	background: var(--color-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 6px;
	text-align: center;
	padding: 4px 0 5px;
	font-family: var(--font-body);
}
.home-bonspiels__date-pill-mo {
	display: block;
	font-size: 9px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-ink-soft);
	line-height: 1;
}
.home-bonspiels__date-pill-day {
	display: block;
	font-size: 18px;
	font-weight: 400;
	color: var(--color-ink);
	line-height: 1.05;
	margin-top: 2px;
}
.home-bonspiels__list-body {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.home-bonspiels__list-name {
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-ink);
	line-height: 1.3;
	font-weight: 400;
}
.home-bonspiels__list-sub {
	font-size: 12px;
	color: var(--color-ink-soft);
	margin-top: 2px;
}
.home-bonspiels__list-cta {
	width: 100%;
	justify-content: center;
}
.home-bonspiels__list-empty {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--color-ink-soft);
	margin: 0 0 var(--space-4);
}

/* Ghost button — outlined, ink-on-white. Reused in featured CTAs + list CTA. */
.btn--ghost {
	background: transparent;
	color: var(--color-ink);
	padding: 10px 22px;
	border-radius: 4px;
	font-weight: 400;
	border: 1px solid var(--color-border);
}
.btn--ghost:hover {
	background: var(--color-ink);
	color: var(--color-white);
}

/* =========================================================
   3. From the Association
   ========================================================= */
.home-updates {
	padding: var(--space-12) 0;
	background: var(--color-paper);
	border-top: 1px solid var(--color-border-soft);
	border-bottom: 1px solid var(--color-border-soft);
}
.home-updates__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: var(--space-4);
	flex-wrap: wrap;
}
.home-updates__title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 200;
	font-size: clamp(28px, 3.6vw, 42px);
	line-height: 1.05;
	letter-spacing: -0.015em;
	color: var(--color-ink);
	margin: 0;
}
.home-updates__cta {
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-brand-red);
	text-decoration: none;
	white-space: nowrap;
}
.home-updates__cta span {
	display: inline-block;
	transition: transform var(--dur-fast) var(--ease-out);
	margin-left: 4px;
}
.home-updates__cta:hover { color: var(--color-brand-red-deep); text-decoration: none; }
.home-updates__cta:hover span { transform: translateX(3px); }
.home-updates__grid {
	grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
	.home-updates__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.home-updates__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   4. Bottom split: Minutes + Nominations + Spotlight
   ========================================================= */
.home-bottom {
	padding: var(--space-12) 0;
	background: var(--color-cream);
}
.home-bottom__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: var(--space-10);
	align-items: start;
}
@media (max-width: 1023px) {
	.home-bottom__inner { grid-template-columns: 1fr; }
}
.home-bottom__title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 200;
	font-size: clamp(26px, 3vw, 36px);
	line-height: 1.05;
	color: var(--color-ink);
	margin: var(--space-1) 0 0;
}

/* Meeting Minutes rows */
.home-minutes-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}
.home-minutes-row {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: var(--space-4);
	align-items: center;
	background: var(--color-white);
	border: 1px solid var(--color-border-soft);
	border-radius: 8px;
	padding: var(--space-3) var(--space-4);
	box-shadow: 0 2px 6px rgba(43, 27, 20, 0.04);
	border-left: 3px solid var(--color-brand-red);
}
.home-minutes-row__icon {
	color: var(--color-ink-soft);
	display: flex;
	align-items: center;
}
.home-minutes-row__body { display: flex; flex-direction: column; min-width: 0; }
.home-minutes-row__title {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
	color: var(--color-ink);
	text-decoration: none;
}
.home-minutes-row__date {
	font-family: var(--font-body);
	font-size: 12px;
	color: var(--color-ink-soft);
	margin-top: 2px;
	letter-spacing: 0.02em;
}
.home-minutes-row__cta {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: var(--font-body);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-brand-red);
	text-decoration: none;
	padding: 6px 10px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: var(--color-cream);
	transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.home-minutes-row__cta:hover {
	background: var(--color-brand-red);
	color: var(--color-white);
	text-decoration: none;
	border-color: var(--color-brand-red);
}

/* Right-rail stack: Nominations + Spotlight */
.home-bottom__sidebar {
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
}

/* Nominations CTA — brand red */
.home-nominations {
	background: var(--color-brand-red);
	background-image: linear-gradient(135deg, var(--color-brand-red) 0%, var(--color-brand-red-deep) 100%);
	color: var(--color-white);
	padding: var(--space-6);
	border-radius: 12px;
	box-shadow: 0 8px 28px rgba(94, 17, 40, 0.25);
}
.home-nominations__eyebrow {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: var(--space-2);
}
.home-nominations__title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 200;
	font-size: clamp(22px, 2.4vw, 28px);
	line-height: 1.1;
	color: var(--color-white);
	margin: 0 0 var(--space-3);
}
.home-nominations__body {
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
	margin: 0 0 var(--space-4);
}
.btn--nominations {
	background: var(--color-white);
	color: var(--color-ink);
	padding: 10px 22px;
	border-radius: 4px;
	font-weight: 400;
	font-family: var(--font-body);
	font-size: 13px;
	letter-spacing: 0.04em;
	display: inline-block;
	text-decoration: none;
}
.btn--nominations:hover {
	background: var(--color-cream);
	color: var(--color-brand-red-deep);
	text-decoration: none;
}

/* Member Spotlight — cream card */
.home-spotlight {
	background: var(--color-paper);
	border: 1px solid var(--color-border-soft);
	border-radius: 12px;
	padding: var(--space-5);
}
.home-spotlight__eyebrow {
	color: var(--color-eyebrow);
	margin-bottom: var(--space-3);
}
.home-spotlight__row {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--space-4);
	align-items: center;
}
.home-spotlight__avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--color-cream);
	border: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-ink-soft);
	flex: 0 0 auto;
	overflow: hidden;
}
.home-spotlight__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	display: block;
}
.home-spotlight__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 18px;
	color: var(--color-ink);
	margin: 0.25rem 0 0.5rem;
	line-height: 1.2;
}
.home-spotlight__quote {
	font-family: var(--font-body);
	font-style: italic;
	font-size: 14px;
	color: var(--color-ink-soft);
	margin: 0.5rem 0 0;
	line-height: 1.5;
}
.home-spotlight__copy { min-width: 0; }
.home-spotlight__name {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 200;
	font-size: 20px;
	color: var(--color-ink);
	margin: 0;
	line-height: 1.2;
}
.home-spotlight__sub {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--color-ink-soft);
	margin: 2px 0 var(--space-2);
}
.home-spotlight__link {
	font-family: var(--font-body);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-brand-red);
	text-decoration: none;
}
.home-spotlight__link span {
	display: inline-block;
	transition: transform var(--dur-fast) var(--ease-out);
}
.home-spotlight__link:hover { color: var(--color-brand-red-deep); text-decoration: none; }
.home-spotlight__link:hover span { transform: translateX(3px); }

/* ──────────────────────────────────────────────────────────────────────────
   Meeting Minutes Archive — flat list with title, date, download link.
   ────────────────────────────────────────────────────────────────────────── */
.minutes-archive-list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	border-top: 1px solid var(--color-border, #e5e7eb);
}
.minutes-archive-list__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1rem;
	padding: 0.875rem 0;
	border-bottom: 1px solid var(--color-border, #e5e7eb);
}
.minutes-archive-list__main {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
	flex: 1 1 auto;
}
.minutes-archive-list__title {
	font-weight: 600;
	color: var(--color-brand-red-deep, #7a1a2a);
	text-decoration: none;
	line-height: 1.35;
}
.minutes-archive-list__title:hover { text-decoration: underline; }
.minutes-archive-list__date {
	font-size: 0.875rem;
	color: var(--color-text-muted, #6b7280);
}
.minutes-archive-list__download {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.875rem;
	font-weight: 400;
	color: #fff;
	background-color: #1f2937;
	text-decoration: none;
	white-space: nowrap;
	padding: 0.5rem 1.1rem;
	border-radius: 999px;
	transition: background-color var(--dur-fast, 150ms) var(--ease-out, ease);
}
.minutes-archive-list__download:hover,
.minutes-archive-list__download:focus {
	background-color: #000;
	color: #fff;
	text-decoration: none;
}
