/*
Theme Name: Clash
Theme URI: https://theclash.ee
Author: MTÜ The Clash Baltic
Author URI: https://theclash.ee
Description: Custom block theme (Full Site Editing) for theclash.ee — a year-round combat-sports promotion platform. Design tokens live in theme.json; layout in templates/ + parts/; reusable sections in patterns/; custom dynamic blocks in src/ + inc/.
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 8.0
Version: 1.9.51
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clash
Tags: full-site-editing, block-patterns, custom-colors, custom-logo, editor-style, translation-ready
*/

/*
 * Supplemental CSS only — the design system is in theme.json (single source of
 * truth). Do NOT hardcode palette / type / spacing here; reference theme.json
 * CSS custom properties (var(--wp--preset--…)) where a value is needed.
 */

/* Base resets */
img,
picture,
svg,
video {
	max-width: 100%;
	height: auto;
}

/* Visible keyboard focus — WCAG 2.2 AA (3:1 non-text contrast on the dark base) */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline: 3px solid var(--wp--preset--color--red);
	outline-offset: 2px;
}

/* Honor reduced-motion (brief §18) — motion is opt-in, never forced */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ============================================================
 * Global shell (slice 0c) — header, footer, switcher, marquee.
 * Tokens only (var(--wp--…)). No hardcoded palette/type/spacing.
 * ============================================================ */

/* Sticky header — the sticky lives on the OUTER template-part wrapper, not the
   inner .clash-header: the inner element's parent is only header-height, so a
   sticky there has no room to travel. Scoped to the header part (footer part
   is <footer>, unaffected). */
header.wp-block-template-part {
	position: sticky;
	top: 0;
	z-index: 100;
}

.clash-header {
	position: relative; /* anchor for the mobile nav dropdown */
	align-items: center;
	gap: var(--wp--preset--spacing--50);
	padding-block: var(--wp--preset--spacing--40);
	padding-inline: clamp(1rem, 0.5rem + 2vw, 2rem);
	background-color: var(--wp--preset--color--base);
	border-bottom: 1px solid var(--wp--preset--color--line);
}

.clash-header__cluster {
	align-items: center;
	gap: var(--wp--preset--spacing--50);
}

/* Language-aware logo */
.clash-site-logo {
	display: inline-flex;
}

.clash-site-logo__img {
	display: block;
	height: 58px;
	width: auto;
}

/* Primary nav (clash/primary-nav, language-aware) + footer nav links */
.clash-primary-nav {
	display: flex;
	align-items: center;
	gap: var(--wp--preset--spacing--50);
	flex-wrap: wrap;
}

.clash-nav__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: clamp(0.75rem, 0.4rem + 1.2vw, 1.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.clash-nav__link,
.clash-footer-nav a {
	font-family: var(--wp--preset--font-family--oswald);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--contrast);
	text-decoration: none;
}

.clash-nav__link {
	font-size: var(--wp--preset--font-size--base);
	font-weight: 500;
	padding-block: 0.2rem;
	border-bottom: 2px solid transparent;
}

.clash-nav__link:hover,
.clash-footer-nav a:hover {
	color: var(--wp--preset--color--red-bright);
}

.clash-nav__link.is-current {
	border-bottom-color: var(--wp--preset--color--red);
}

/* Desktop "Osta pilet" CTA (in the header) */
.clash-header__cta {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 1.1rem;
	background: var(--wp--preset--color--red);
	color: var(--wp--preset--color--white);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: var(--wp--preset--font-size--small);
	text-decoration: none;
}

.clash-header__cta:hover {
	background: var(--wp--preset--color--red-deep);
}

/* Hamburger toggle — hidden on desktop, shown ≤781px */
.clash-nav__toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	position: relative;
}

.clash-nav__bars,
.clash-nav__bars::before,
.clash-nav__bars::after {
	content: "";
	position: absolute;
	left: 10px;
	width: 24px;
	height: 2px;
	background: var(--wp--preset--color--contrast);
	transition: transform var(--wp--custom--duration--fast) ease, opacity var(--wp--custom--duration--fast) ease;
}

.clash-nav__bars {
	top: 21px;
}

.clash-nav__bars::before {
	top: -7px;
}

.clash-nav__bars::after {
	top: 7px;
}

.clash-nav__toggle[aria-expanded="true"] .clash-nav__bars {
	background: transparent;
}

.clash-nav__toggle[aria-expanded="true"] .clash-nav__bars::before {
	transform: translateY(7px) rotate(45deg);
}

.clash-nav__toggle[aria-expanded="true"] .clash-nav__bars::after {
	transform: translateY(-7px) rotate(-45deg);
}

/* Language switcher */
.clash-language-switcher {
	display: inline-flex;
	gap: 0.5rem;
	align-items: center;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: var(--wp--preset--font-size--small);
}

.clash-lang {
	color: var(--wp--preset--color--muted);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.clash-lang:hover {
	color: var(--wp--preset--color--contrast);
}

.clash-lang--current {
	color: var(--wp--preset--color--red-bright);
	font-weight: 700;
}

/* Partner marquee (transform-only; reduced-motion safe) */
.clash-partners__title {
	color: var(--wp--preset--color--muted);
	letter-spacing: 0.1em;
}

.clash-marquee {
	display: flex;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clash-marquee__track {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: clamp(2rem, 1rem + 4vw, 5rem);
	margin: 0;
	padding: 0 clamp(2rem, 1rem + 4vw, 5rem) 0 0;
	list-style: none;
	animation: clash-marquee 45s linear infinite;
}

/* Partner logos keep their original brand colours (branding rule) directly on
   the dark footer — no chips, no recolour. The set is curated to logos that
   read on a near-black background. */
.clash-marquee__item {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
}

.clash-marquee__item img {
	display: block;
	max-height: 46px;
	width: auto;
	max-width: 170px;
	object-fit: contain;
}

@keyframes clash-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-100%); }
}

/* EU co-funding */
.clash-eu__inner {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--50);
	align-items: center;
	justify-content: center;
	border-top: 1px solid var(--wp--preset--color--line);
	padding-top: var(--wp--preset--spacing--50);
}

.clash-eu__mark {
	height: 44px;
	width: auto;
	flex: 0 0 auto;
}

.clash-eu__text {
	max-width: 60ch;
	margin: 0;
	color: var(--wp--preset--color--muted);
	font-size: 0.75rem;
	line-height: 1.5;
}

.clash-footer__copyright {
	margin: 0;
	padding-block: var(--wp--preset--spacing--50);
	color: var(--wp--preset--color--muted);
}

/* Mobile-only sticky "Osta pilet" CTA */
.clash-sticky-cta {
	display: none;
	position: fixed;
	left: 50%;
	bottom: 4.25rem;
	transform: translateX(-50%);
	z-index: 200;
	padding: 0.75rem 2rem;
	background: var(--wp--preset--color--red);
	color: var(--wp--preset--color--white);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.clash-sticky-cta:hover {
	background: var(--wp--preset--color--red-dark);
}

@media (max-width: 781px) {
	.clash-header__cta {
		display: none;
	}

	.clash-sticky-cta {
		display: inline-block;
	}

	.clash-site-logo__img {
		height: 44px;
	}

	/* Mobile primary nav: hamburger reveals a full-width dropdown under the header. */
	.clash-nav__toggle {
		display: block;
	}

	.clash-nav__list {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 90;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0.25rem clamp(1rem, 0.5rem + 2vw, 2rem) 0.75rem;
		background-color: var(--wp--preset--color--base);
		border-bottom: 1px solid var(--wp--preset--color--line);
	}

	.clash-nav__list.is-open {
		display: flex;
	}

	.clash-nav__link {
		display: block;
		width: 100%;
		padding-block: 0.85rem;
		border-bottom: 1px solid var(--wp--preset--color--line);
	}

	.clash-nav__link.is-current {
		color: var(--wp--preset--color--red-bright);
	}
}

@media (prefers-reduced-motion: reduce) {
	.clash-marquee__track {
		animation: none;
	}

	.clash-marquee {
		overflow-x: auto;
	}
}

/* ============================================================
 * Data-layer blocks (slice 0d) — fighter, event, fight card, ranking.
 * Tokens only.
 * ============================================================ */

/* Rank badge */
.clash-rank-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2em;
	padding: 0.15em 0.5em;
	background: var(--wp--preset--color--red);
	color: var(--wp--preset--color--white);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--small);
	line-height: 1;
}

.clash-rank-badge.is-champion {
	background: var(--wp--preset--color--white);
	color: var(--wp--preset--color--black);
}

/* Fighter card */
.clash-fighter {
	margin: 0;
	overflow: hidden;
	background: var(--wp--preset--color--surface);
}

.clash-fighter__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.clash-fighter__media {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.clash-fighter__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform var(--wp--custom--duration--normal) var(--wp--custom--ease--out-expo);
}

.clash-fighter__link:hover .clash-fighter__photo {
	transform: scale(1.04);
}

.clash-fighter__media .clash-rank-badge {
	position: absolute;
	top: var(--wp--preset--spacing--30);
	left: var(--wp--preset--spacing--30);
}

.clash-fighter__body {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	padding: var(--wp--preset--spacing--40);
}

.clash-fighter__nick {
	color: var(--wp--preset--color--red-bright);
	font-size: var(--wp--preset--font-size--small);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.clash-fighter__name {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 1.05;
	font-size: var(--wp--preset--font-size--medium);
}

.clash-fighter__meta {
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--small);
}

/* Event card (event-card block) was redesigned in slice 3R → see
   .clash-evcard--grid in the events-archive section below. */

/* Fight card (rich bouts — slice 3b) */
.clash-fightcard__list {
	display: flex;
	flex-direction: column;
	gap: 1px;
	margin: 0;
	padding: 0;
	list-style: none;
	background: var(--wp--preset--color--line);
}

.clash-fightcard__bout {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--30);
	padding: var(--wp--preset--spacing--50);
	background: var(--wp--preset--color--surface);
}

.clash-fightcard__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.clash-fightcard__tag {
	padding: 0.15em 0.7em;
	background: var(--wp--preset--color--surface-raised);
	border: 1px solid var(--wp--preset--color--line);
	font-family: var(--wp--preset--font-family--oswald);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--subtle);
}

.clash-fightcard__pair {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: start;
	gap: var(--wp--preset--spacing--40);
}

/* Bout fighter cell: big athlete photo BESIDE the name (full mode). */
.clash-fightcard__fighter {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: clamp(0.6rem, 0.4rem + 1vw, 1.1rem);
	min-width: 0;
}

/* Fighter B mirrors: photo on the outer (right) edge, text right-aligned. */
.clash-fightcard__fighter:last-child {
	flex-direction: row-reverse;
	text-align: right;
}

.clash-fightcard__info {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.clash-fightcard__fighter:last-child .clash-fightcard__info {
	align-items: flex-end;
}

/* Cut-out athlete photo (transparent PNG) — large, no frame, stands on baseline. */
.clash-fightcard__photo {
	flex: none;
	display: block;
	width: clamp(120px, 19vw, 190px);
	aspect-ratio: 3 / 4;
	margin: 0;
}

.clash-fightcard__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom center;
	/* Fade the bottom edge into the card so it doesn't read as a hard cut-out. */
	-webkit-mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
	mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
}

/* TBA / missing photo → framed circle with a "?". */
.clash-fightcard__photo--tba,
.clash-fightcard__photo--empty {
	position: relative;
	width: clamp(72px, 11vw, 108px);
	aspect-ratio: 1;
	border-radius: 50%;
	border: 1px solid var(--wp--preset--color--line);
	background: var(--wp--preset--color--surface-raised);
}

.clash-fightcard__photo--tba::after,
.clash-fightcard__photo--empty::after {
	content: "?";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 1.5rem;
	color: var(--wp--preset--color--muted);
}

.clash-fightcard__name {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	font-size: var(--wp--preset--font-size--medium);
	line-height: 1.1;
	color: var(--wp--preset--color--contrast);
	text-decoration: none;
}

.clash-fightcard__name:hover {
	color: var(--wp--preset--color--red-bright);
}

.clash-fightcard__fighter.is-winner .clash-fightcard__name {
	color: var(--wp--preset--color--red-bright);
}

.clash-fightcard__nick {
	font-family: var(--wp--preset--font-family--raleway);
	font-style: italic;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--muted);
}

.clash-fightcard__sub {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--wp--preset--font-family--raleway);
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--subtle);
}

.clash-fightcard__fighter:last-child .clash-fightcard__sub {
	flex-direction: row-reverse;
}

.clash-fightcard__delta {
	font-family: var(--wp--preset--font-family--oswald);
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--red-bright);
}

.clash-fightcard__vs {
	align-self: center;
	font-family: var(--wp--preset--font-family--oswald);
	text-transform: uppercase;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--muted);
}

.clash-fightcard__method {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--muted);
	text-align: center;
}

.clash-fightcard__empty {
	margin: 0;
	padding: var(--wp--preset--spacing--50);
	background: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--muted);
	font-family: var(--wp--preset--font-family--oswald);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-align: center;
}

/* Compact teaser (archive feature card) — names + tags only, tighter. */
.clash-fightcard.is-compact .clash-fightcard__bout {
	padding: var(--wp--preset--spacing--40);
	gap: var(--wp--preset--spacing--20);
}

.clash-fightcard.is-compact .clash-fightcard__name {
	font-size: var(--wp--preset--font-size--base);
}

/* Ranking table */
.clash-ranking {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--wp--preset--font-family--raleway);
}

.clash-ranking th,
.clash-ranking td {
	padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
	text-align: left;
	border-bottom: 1px solid var(--wp--preset--color--line);
}

.clash-ranking th {
	color: var(--wp--preset--color--muted);
	font-family: var(--wp--preset--font-family--oswald);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: var(--wp--preset--font-size--small);
}

.clash-ranking__pos,
.clash-ranking__rec {
	width: 1%;
	white-space: nowrap;
}

.clash-ranking__pos {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
}

.clash-ranking td a {
	color: var(--wp--preset--color--contrast);
	text-decoration: none;
}

.clash-ranking td a:hover {
	color: var(--wp--preset--color--red-bright);
}

.clash-ranking tr.is-champion .clash-ranking__pos {
	color: var(--wp--preset--color--red);
}

/* ============================================================
 * Home hero (slice 1b) — split next-event promotion
 * Tokens for palette/type/spacing; functional readability scrims
 * are raw rgba (not palette tokens) by design.
 * ========================================================== */
.clash-hero {
	position: relative;
	/* Override WP's :where(.wp-site-blocks) > * top margin so the hero butts the header. */
	margin-block-start: 0;
}

.screen-reader-text,
.clash-hero__sr-title {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.clash-hero__split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 100vh;
	min-height: 100svh;
	width: 100%;
}

.clash-hero__split--1 {
	grid-template-columns: 1fr;
}

.clash-hero__half {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	overflow: hidden;
	isolation: isolate;
	padding: clamp(1.75rem, 4vw, 4rem);
	color: var(--wp--preset--color--white);
}

.clash-hero__half + .clash-hero__half {
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

/* Red-gradient fallback when an event has no cover image. */
.clash-hero__half--noimg {
	background:
		radial-gradient(120% 90% at 70% 12%, rgba(220, 0, 0, 0.30) 0%, rgba(220, 0, 0, 0) 55%),
		linear-gradient(160deg, #1a0303 0%, #0a0a0a 60%, var(--wp--preset--color--black) 100%);
}

.clash-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform var(--wp--custom--duration--slow) var(--wp--custom--ease--out-expo);
}

/* Readability scrims (functional gradients, intentionally not palette tokens). */
.clash-hero__half--overlay::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.15) 72%, rgba(0, 0, 0, 0.35) 100%);
}

.clash-hero__half--poster::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 38%);
}

@media (hover: hover) {
	.clash-hero__half:hover .clash-hero__media {
		transform: scale(1.04);
	}
}

.clash-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--wp--preset--spacing--30);
}

.clash-hero__half--poster .clash-hero__content {
	margin-top: auto;
}

.clash-hero__eyebrow {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: var(--wp--preset--font-size--small);
	color: rgba(255, 255, 255, 0.72);
}

.clash-hero__half--noimg .clash-hero__eyebrow {
	color: var(--wp--preset--color--red-bright);
}

.clash-hero__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: 0.01em;
	font-size: var(--wp--preset--font-size--x-large);
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.clash-hero__meta {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: var(--wp--preset--font-size--base);
}

.clash-hero__summary {
	margin: 0;
	max-width: 38ch;
	font-size: var(--wp--preset--font-size--base);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.85);
}

.clash-hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	margin-top: var(--wp--preset--spacing--20);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: var(--wp--preset--font-size--base);
	padding: 0.85em 1.6em;
	border-radius: 8px;
	text-decoration: none;
	border: 2px solid transparent;
	transition:
		transform var(--wp--custom--duration--fast) var(--wp--custom--ease--out-expo),
		background-color var(--wp--custom--duration--fast) ease,
		color var(--wp--custom--duration--fast) ease,
		border-color var(--wp--custom--duration--fast) ease;
}

.clash-hero__btn--primary {
	background-color: var(--wp--preset--color--red);
	color: var(--wp--preset--color--white);
	box-shadow: 0 6px 28px rgba(220, 0, 0, 0.35);
}

.clash-hero__btn--primary:hover,
.clash-hero__btn--primary:focus-visible {
	background-color: var(--wp--preset--color--red-bright);
	transform: translateY(-2px);
}

.clash-hero__btn--ghost {
	background-color: rgba(0, 0, 0, 0.4);
	color: var(--wp--preset--color--white);
	border-color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(3px);
}

.clash-hero__btn--ghost:hover,
.clash-hero__btn--ghost:focus-visible {
	background-color: var(--wp--preset--color--white);
	color: var(--wp--preset--color--black);
	border-color: var(--wp--preset--color--white);
	transform: translateY(-2px);
}

.clash-hero__arrow {
	transition: transform var(--wp--custom--duration--normal) var(--wp--custom--ease--out-expo);
}

.clash-hero__btn:hover .clash-hero__arrow {
	transform: translateX(4px);
}

.clash-hero__eu {
	margin-top: var(--wp--preset--spacing--30);
}

.clash-hero__eu img {
	display: block;
	height: 30px;
	width: auto;
}

.clash-hero__vs {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
	width: clamp(52px, 5vw, 76px);
	height: clamp(52px, 5vw, 76px);
	border-radius: 50%;
	background: var(--wp--preset--color--black);
	border: 2px solid var(--wp--preset--color--red);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--large);
	color: var(--wp--preset--color--white);
	box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.5), 0 8px 30px rgba(0, 0, 0, 0.6);
	pointer-events: none;
}

/* Mobile: stack the two halves to fit one screen. */
@media (max-width: 820px) {
	.clash-hero__split,
	.clash-hero__split--2 {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr;
		min-height: 100vh;
		min-height: 100svh;
	}

	.clash-hero__half {
		padding: 1.4rem;
	}

	.clash-hero__half + .clash-hero__half {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.clash-hero__title {
		font-size: var(--wp--preset--font-size--large);
	}

	.clash-hero__summary,
	.clash-hero__eu,
	.clash-hero__vs {
		display: none;
	}

	.clash-hero__btn {
		align-self: stretch;
		justify-content: center;
	}
}

/* ============================================================
 * Home below-hero sections (slice 1c) — featured fighters + news.
 * The page <main class="clash-home"> wraps hero + these two sections
 * with no padding of its own; each section owns its top rhythm, so
 * there is never an empty band. Tokens only.
 * ========================================================== */
.clash-home {
	/* Cancel WP's :where(.wp-site-blocks) > * top margin so the hero butts the header. */
	margin-block-start: 0;
}

.clash-section {
	padding-block-start: var(--wp--preset--spacing--80);
}

.clash-section:last-child {
	padding-block-end: var(--wp--preset--spacing--80);
}

.clash-section__inner {
	max-width: 1140px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 0.5rem + 2vw, 2rem);
}

.clash-section__head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.5rem 1.5rem;
	margin-block-end: var(--wp--preset--spacing--60);
}

.clash-section__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	font-size: var(--wp--preset--font-size--x-large);
}

.clash-section__link {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--red-bright);
	text-decoration: none;
	white-space: nowrap;
}

.clash-section__link:hover {
	color: var(--wp--preset--color--contrast);
}

/* Featured fighters grid (cards reuse .clash-fighter* from slice 0d). */
.clash-fighter-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: var(--wp--preset--spacing--50);
}

/* Latest news grid */
.clash-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--wp--preset--spacing--50);
}

.clash-news-card {
	background: var(--wp--preset--color--surface);
	overflow: hidden;
}

.clash-news-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.clash-news-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.clash-news-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--wp--custom--duration--normal) var(--wp--custom--ease--out-expo);
}

.clash-news-card__link:hover .clash-news-card__img {
	transform: scale(1.04);
}

.clash-news-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--wp--preset--color--surface-raised), var(--wp--preset--color--surface));
}

.clash-news-card__date {
	display: block;
	padding: var(--wp--preset--spacing--40) var(--wp--preset--spacing--40) 0;
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--small);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.clash-news-card__title {
	margin: 0.35rem 0 0;
	padding: 0 var(--wp--preset--spacing--40) var(--wp--preset--spacing--40);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 1.15;
	font-size: var(--wp--preset--font-size--medium);
}

@media (max-width: 768px) {
	.clash-news-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.clash-fighter-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ============================================================
 * Festival page (slice 2a) — page-festival.html.
 * Replaces the old hardcoded .cf-* CSS with theme tokens.
 * ========================================================== */
:root {
	--clash-header-h: 91px;
}

.clash-festival {
	margin-block-start: 0;
}

/* Shared festival buttons */
.clash-fest-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: var(--wp--preset--font-size--base);
	padding: 0.8em 1.6em;
	border-radius: 8px;
	text-decoration: none;
	border: 2px solid transparent;
	transition: transform var(--wp--custom--duration--fast) var(--wp--custom--ease--out-expo),
		background-color var(--wp--custom--duration--fast) ease,
		color var(--wp--custom--duration--fast) ease,
		border-color var(--wp--custom--duration--fast) ease;
}

.clash-fest-btn--primary {
	background-color: var(--wp--preset--color--red);
	color: var(--wp--preset--color--white);
	box-shadow: 0 6px 28px rgba(220, 0, 0, 0.35);
}

.clash-fest-btn--primary:hover,
.clash-fest-btn--primary:focus-visible {
	background-color: var(--wp--preset--color--red-bright);
	transform: translateY(-2px);
}

.clash-fest-btn--ghost {
	background-color: rgba(255, 255, 255, 0.06);
	color: var(--wp--preset--color--contrast);
	border-color: rgba(255, 255, 255, 0.5);
}

.clash-fest-btn--ghost:hover,
.clash-fest-btn--ghost:focus-visible {
	background-color: var(--wp--preset--color--white);
	color: var(--wp--preset--color--black);
	border-color: var(--wp--preset--color--white);
	transform: translateY(-2px);
}

/* --- Hero --- */
.clash-fest-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 82svh;
	padding-block: var(--wp--preset--spacing--80);
	overflow: hidden;
	isolation: isolate;
	color: var(--wp--preset--color--white);
}

.clash-fest-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.clash-fest-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.78) 100%);
}

.clash-fest-hero__inner {
	width: 100%;
	max-width: 1140px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 0.5rem + 2vw, 2rem);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--wp--preset--spacing--40);
}

/* EU co-funded mark — enlarged, centered, sits at the bottom of the hero. */
.clash-fest-hero__eu {
	display: flex;
	justify-content: center;
	margin: var(--wp--preset--spacing--40) 0 0;
}

.clash-fest-hero__eu img {
	height: clamp(40px, 6vw, 56px);
	width: auto;
}

.clash-fest-hero__logo {
	height: clamp(56px, 9vw, 128px);
	width: auto;
	max-width: 90%;
	filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.6));
}

.clash-fest-hero__title {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	line-height: 1;
}

/* Festival name is the priority alongside the logo. */
.clash-fest-hero__sub {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: var(--wp--preset--font-size--xx-large);
	line-height: 1.02;
}

/* Year is a quiet detail, not the focal point. */
.clash-fest-hero__year {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--medium);
	letter-spacing: 0.35em;
	text-indent: 0.35em;
	color: var(--wp--preset--color--subtle);
}

.clash-fest-hero__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem 1.2rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: var(--wp--preset--font-size--base);
}

.clash-fest-hero__meta li {
	position: relative;
}

.clash-fest-hero__meta li + li::before {
	content: "·";
	color: var(--wp--preset--color--red);
	margin-right: 1.2rem;
}

.clash-fest-hero__cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--wp--preset--spacing--40);
	margin-top: var(--wp--preset--spacing--40);
}

/* Hero CTAs read as primary actions — larger than the shared button base. */
.clash-fest-hero__cta .clash-fest-btn {
	font-size: var(--wp--preset--font-size--medium);
	padding: 0.95em 2.1em;
}

.clash-fest-hero__social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	margin-top: var(--wp--preset--spacing--40);
	font-family: var(--wp--preset--font-family--oswald);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: var(--wp--preset--font-size--base);
}

.clash-fest-hero__social-label {
	color: rgba(255, 255, 255, 0.6);
}

.clash-fest-hero__social a {
	color: var(--wp--preset--color--contrast);
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	width: 2.9em;
	height: 2.9em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	transition: background-color var(--wp--custom--duration--fast) ease, color var(--wp--custom--duration--fast) ease, transform var(--wp--custom--duration--fast) ease;
}

.clash-fest-hero__social a:hover,
.clash-fest-hero__social a:focus-visible {
	transform: translateY(-2px);
}

.clash-fest-hero__social a:hover {
	background-color: var(--wp--preset--color--red);
	border-color: var(--wp--preset--color--red);
	color: var(--wp--preset--color--white);
}

/* Brand glyphs inside the round social links (fill: currentColor). */
.clash-social-icon {
	display: block;
	width: 1.3em;
	height: 1.3em;
}

/* --- Sticky section nav --- */
.clash-fest-nav {
	position: sticky;
	top: var(--clash-header-h);
	z-index: 90;
	background-color: var(--wp--preset--color--surface);
	border-block: 1px solid var(--wp--preset--color--line);
}

/* Anchor-jump offset: stop just below BOTH sticky bars (main header + this
   sub-nav) so the target section's label sits a small gap under them — not
   hidden, not pushed far down. ~3.5rem ≈ the sub-nav height. */
.clash-festival [id^="cf-"] {
	scroll-margin-top: calc(var(--clash-header-h) + 3.5rem);
}

/* Festival sections use a tighter top rhythm than the homepage so anchor jumps
   land the heading close under the sub-nav (and sections aren't over-spaced). */
.clash-festival .clash-section {
	padding-block-start: var(--wp--preset--spacing--60);
}

.clash-fest-nav__inner {
	max-width: 1140px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 0.5rem + 2vw, 2rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.clash-fest-nav__list {
	display: flex;
	flex-wrap: nowrap;
	gap: clamp(0.75rem, 0.25rem + 1.5vw, 1.75rem);
	margin: 0;
	padding: 0.65rem 0;
	list-style: none;
	overflow-x: auto;
	scrollbar-width: none;
}

.clash-fest-nav__list::-webkit-scrollbar {
	display: none;
}

.clash-fest-nav__link {
	display: inline-block;
	padding: 0.35rem 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--subtle);
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	transition: color var(--wp--custom--duration--fast) ease, border-color var(--wp--custom--duration--fast) ease;
}

.clash-fest-nav__link:hover,
.clash-fest-nav__link.is-active {
	color: var(--wp--preset--color--contrast);
	border-bottom-color: var(--wp--preset--color--red);
}

.clash-fest-nav__cta {
	flex: 0 0 auto;
	padding: 0.5em 1.1em;
	font-size: var(--wp--preset--font-size--small);
}

/* --- Section shared bits --- */
.clash-fest-label {
	margin: 0 0 0.5rem;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--red-bright);
}

.clash-fest-heading,
.clash-fest-about__heading {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 1;
	font-size: var(--wp--preset--font-size--x-large);
}

.clash-fest-intro,
.clash-fest-about__lead {
	margin: var(--wp--preset--spacing--40) 0 0;
	max-width: 60ch;
	font-size: var(--wp--preset--font-size--medium);
	line-height: 1.5;
	color: var(--wp--preset--color--subtle);
}

/* --- About --- */
.clash-fest-acronym {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--wp--preset--spacing--50);
	margin: var(--wp--preset--spacing--70) 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

.clash-fest-acronym li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
}

.clash-fest-acronym__letter {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--xx-large);
	line-height: 0.9;
	color: var(--wp--preset--color--red);
}

.clash-fest-acronym__word {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--subtle);
}

.clash-fest-about__body {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--wp--preset--spacing--50);
	margin-top: var(--wp--preset--spacing--60);
}

.clash-fest-about__body p {
	margin: 0;
	line-height: 1.6;
	color: var(--wp--preset--color--subtle);
}

.clash-fest-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: var(--wp--preset--spacing--50);
	margin: var(--wp--preset--spacing--70) 0 0;
	padding: 0;
	list-style: none;
}

.clash-fest-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.25rem;
}

.clash-fest-stat__value {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--xx-large);
	line-height: 1;
	color: var(--wp--preset--color--contrast);
}

.clash-fest-stat__suffix {
	color: var(--wp--preset--color--red);
}

.clash-fest-stat__label {
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--muted);
}

/* --- Disciplines --- */
.clash-fest-disc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: var(--wp--preset--spacing--50);
	margin: var(--wp--preset--spacing--60) 0 0;
	padding: 0;
	list-style: none;
}

.clash-fest-disc {
	background-color: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--line);
	border-radius: 10px;
	padding: var(--wp--preset--spacing--50);
	transition: border-color var(--wp--custom--duration--fast) ease, transform var(--wp--custom--duration--fast) var(--wp--custom--ease--out-expo);
}

.clash-fest-disc:hover {
	border-color: var(--wp--preset--color--red);
	transform: translateY(-3px);
}

.clash-fest-disc__name {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	font-size: var(--wp--preset--font-size--large);
}

.clash-fest-disc__rules {
	margin: 0.4rem 0 0;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--red-bright);
}

.clash-fest-disc__desc {
	margin: 0.75rem 0 0;
	line-height: 1.55;
	color: var(--wp--preset--color--subtle);
}

/* Per-discipline links (rules / invite / register) — placeholder pills until
   the owner supplies the real URLs (then each becomes an <a>). */
.clash-fest-disc__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: var(--wp--preset--spacing--50);
}

.clash-fest-disc__link {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: var(--wp--preset--font-size--small);
	padding: 0.4em 0.9em;
	border: 1px solid var(--wp--preset--color--line);
	border-radius: 999px;
	color: var(--wp--preset--color--muted);
	cursor: not-allowed;
}

@media (max-width: 781px) {
	:root {
		--clash-header-h: 77px;
	}
}

/* ============================================================
 * Festival page (slice 2b) — schedule, registration, education,
 * partners, venue, FAQ, tickets, closing. Tokens only.
 * ========================================================== */

/* Tags (schedule item categories) */
.clash-fest-tag {
	display: inline-block;
	margin-top: 0.5rem;
	padding: 0.2em 0.7em;
	border-radius: 999px;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: var(--wp--preset--font-size--small);
}

.clash-fest-tag--competition {
	background: rgba(220, 0, 0, 0.18);
	color: var(--wp--preset--color--red-bright);
}

.clash-fest-tag--education {
	background: var(--wp--preset--color--surface-raised);
	color: var(--wp--preset--color--subtle);
}

.clash-fest-tag--ceremony,
.clash-fest-tag--general {
	background: var(--wp--preset--color--surface-raised);
	color: var(--wp--preset--color--subtle);
}

/* Shared content cards + "coming soon" button */
.clash-fest-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--wp--preset--spacing--50);
	margin: var(--wp--preset--spacing--60) 0 0;
	padding: 0;
	list-style: none;
}

.clash-fest-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--line);
	border-radius: 10px;
	padding: var(--wp--preset--spacing--50);
}

.clash-fest-card__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	font-size: var(--wp--preset--font-size--large);
}

.clash-fest-card__desc {
	margin: 0.6rem 0 var(--wp--preset--spacing--50);
	line-height: 1.55;
	color: var(--wp--preset--color--subtle);
	flex: 1 1 auto;
}

.clash-fest-btn--soon {
	margin-top: auto;
	background: transparent;
	color: var(--wp--preset--color--muted);
	border-color: var(--wp--preset--color--line);
	cursor: not-allowed;
	pointer-events: none;
}

/* Schedule */
.clash-fest-sched__tabs {
	display: flex;
	gap: 0.5rem;
	margin: var(--wp--preset--spacing--60) 0 var(--wp--preset--spacing--50);
	overflow-x: auto;
	scrollbar-width: none;
}

.clash-fest-sched__tabs::-webkit-scrollbar {
	display: none;
}

.clash-fest-sched__tab {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	padding: 0.7rem 1.1rem;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--line);
	border-radius: 8px;
	color: var(--wp--preset--color--subtle);
	cursor: pointer;
	transition: background-color var(--wp--custom--duration--fast) ease, color var(--wp--custom--duration--fast) ease, border-color var(--wp--custom--duration--fast) ease;
}

.clash-fest-sched__tab:hover {
	border-color: var(--wp--preset--color--red);
}

.clash-fest-sched__tab.is-active {
	background: var(--wp--preset--color--red);
	border-color: var(--wp--preset--color--red);
	color: var(--wp--preset--color--white);
}

.clash-fest-sched__day {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	font-size: var(--wp--preset--font-size--base);
}

.clash-fest-sched__date {
	font-size: var(--wp--preset--font-size--small);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.clash-fest-sched__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.clash-fest-sched__item {
	display: flex;
	gap: var(--wp--preset--spacing--50);
	padding: var(--wp--preset--spacing--50) 0;
	border-top: 1px solid var(--wp--preset--color--line);
}

.clash-fest-sched__time {
	flex: 0 0 4rem;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	color: var(--wp--preset--color--red);
}

.clash-fest-sched__name {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	font-size: var(--wp--preset--font-size--medium);
}

.clash-fest-sched__desc {
	margin: 0.35rem 0 0;
	line-height: 1.5;
	color: var(--wp--preset--color--subtle);
}

/* Education */
.clash-fest-edu__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--wp--preset--spacing--50);
	margin: var(--wp--preset--spacing--60) 0 0;
	padding: 0;
	list-style: none;
	counter-reset: edu;
}

.clash-fest-edu__item {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--line);
	border-radius: 10px;
	padding: var(--wp--preset--spacing--50);
}

.clash-fest-edu__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	background: var(--wp--preset--color--red);
	color: var(--wp--preset--color--white);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
}

.clash-fest-edu__name {
	margin: var(--wp--preset--spacing--40) 0 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	text-transform: uppercase;
	font-size: var(--wp--preset--font-size--medium);
}

.clash-fest-edu__desc {
	margin: 0.5rem 0 0;
	line-height: 1.55;
	color: var(--wp--preset--color--subtle);
}

.clash-fest-edu__callout {
	margin-top: var(--wp--preset--spacing--60);
	padding: var(--wp--preset--spacing--60);
	background: var(--wp--preset--color--surface);
	border-left: 4px solid var(--wp--preset--color--red);
	border-radius: 8px;
}

.clash-fest-edu__callout p {
	margin: 0;
	line-height: 1.6;
}

.clash-fest-edu__platform {
	margin-top: 0.75rem !important;
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--small);
}

/* Partners */
.clash-fest-partners__wall {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: var(--wp--preset--spacing--40);
	margin: var(--wp--preset--spacing--60) 0;
	padding: 0;
	list-style: none;
}

.clash-fest-partners__slot {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 9;
	background: var(--wp--preset--color--surface);
	border: 1px dashed var(--wp--preset--color--line);
	border-radius: 8px;
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--small);
}

.clash-fest-partners__cta {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--line);
	border-radius: 10px;
	padding: var(--wp--preset--spacing--60);
}

.clash-fest-partners__cta .clash-fest-card__desc {
	max-width: 60ch;
}

/* Venue */
.clash-fest-venue__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--wp--preset--spacing--60);
	margin: var(--wp--preset--spacing--60) 0 0;
	align-items: stretch;
}

.clash-fest-venue__map {
	min-height: 320px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--wp--preset--color--line);
}

.clash-fest-venue__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	filter: grayscale(0.3) contrast(1.05);
}

.clash-fest-venue__sub {
	margin: 0 0 var(--wp--preset--spacing--50);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	font-size: var(--wp--preset--font-size--large);
}

.clash-fest-venue__ways {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: var(--wp--preset--spacing--50);
}

.clash-fest-venue__way-name {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--wp--preset--color--red-bright);
	font-size: var(--wp--preset--font-size--base);
}

.clash-fest-venue__way-desc {
	margin: 0.25rem 0 0;
	line-height: 1.55;
	color: var(--wp--preset--color--subtle);
}

.clash-fest-venue__acc {
	margin-top: var(--wp--preset--spacing--60);
	max-width: 60ch;
}

/* FAQ */
.clash-fest-faq__list {
	margin: var(--wp--preset--spacing--60) 0 0;
	padding: 0;
	list-style: none;
}

.clash-fest-faq__item {
	border-top: 1px solid var(--wp--preset--color--line);
}

.clash-fest-faq__item:last-child {
	border-bottom: 1px solid var(--wp--preset--color--line);
}

.clash-fest-faq__q {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
}

.clash-fest-faq__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: var(--wp--preset--spacing--50) 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	text-align: left;
	color: var(--wp--preset--color--contrast);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	font-size: var(--wp--preset--font-size--medium);
}

.clash-fest-faq__btn:hover {
	color: var(--wp--preset--color--red-bright);
}

.clash-fest-faq__icon {
	flex: 0 0 auto;
	color: var(--wp--preset--color--red);
	font-weight: 400;
	transition: transform var(--wp--custom--duration--fast) ease;
}

.clash-fest-faq__btn[aria-expanded="true"] .clash-fest-faq__icon {
	transform: rotate(45deg);
}

.clash-fest-faq__a {
	padding: 0 0 var(--wp--preset--spacing--50);
}

.clash-fest-faq__a p {
	margin: 0;
	max-width: 75ch;
	line-height: 1.6;
	color: var(--wp--preset--color--subtle);
}

/* Tickets + closing */
.clash-fest-tickets__inner,
.clash-fest-closing__inner {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.clash-fest-tickets__inner .clash-fest-intro {
	margin-inline: auto;
}

.clash-fest-tickets__inner .clash-fest-btn {
	margin-top: var(--wp--preset--spacing--50);
	font-size: var(--wp--preset--font-size--medium);
	padding: 0.95em 2.4em;
}

.clash-fest-closing__email {
	margin: var(--wp--preset--spacing--40) 0 0;
	font-size: var(--wp--preset--font-size--medium);
}

.clash-fest-closing__email a {
	color: var(--wp--preset--color--red-bright);
}

.clash-fest-closing__social {
	justify-content: center;
}

.clash-fest-closing__eu {
	margin-top: var(--wp--preset--spacing--70);
	padding-top: var(--wp--preset--spacing--60);
	border-top: 1px solid var(--wp--preset--color--line);
	max-width: 70ch;
}

.clash-fest-closing__eu-mark {
	height: clamp(36px, 5vw, 48px);
	width: auto;
}

.clash-fest-closing__eu-legal {
	margin: var(--wp--preset--spacing--40) 0 0;
	font-size: var(--wp--preset--font-size--small);
	line-height: 1.55;
	color: var(--wp--preset--color--muted);
}

.clash-fest-closing__eu-ref {
	margin: 0.75rem 0 0;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--subtle);
}

@media (max-width: 781px) {
	.clash-fest-venue__grid {
		grid-template-columns: 1fr;
	}

	.clash-fest-sched__tab {
		flex: 0 0 auto;
	}
}

/* ============================================================
 * Festival discipline sub-pages (slice 2d) + overview card links.
 * ========================================================== */

/* Overview cards are now links to the discipline pages. */
.clash-fest-disc__link-wrap {
	display: block;
	color: inherit;
	text-decoration: none;
}

.clash-fest-disc__more {
	display: inline-block;
	margin-top: var(--wp--preset--spacing--50);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--red-bright);
}

.clash-fest-disc:hover .clash-fest-disc__more {
	color: var(--wp--preset--color--contrast);
}

/* Discipline sub-page (/festival/{mma,muay-thai,k-1}) — full-bleed banner + detail. */
.clash-fest-discpage__banner {
	padding-block: var(--wp--preset--spacing--80) var(--wp--preset--spacing--70);
	background:
		radial-gradient(120% 100% at 70% 0%, rgba(220, 0, 0, 0.30) 0%, rgba(220, 0, 0, 0) 55%),
		linear-gradient(160deg, #1a0303 0%, var(--wp--preset--color--base) 70%);
	border-bottom: 1px solid var(--wp--preset--color--line);
}

.clash-fest-discpage__name {
	margin: var(--wp--preset--spacing--30) 0 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 0.95;
	font-size: var(--wp--preset--font-size--hero);
}

.clash-fest-discpage__tagline {
	margin: var(--wp--preset--spacing--40) 0 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--subtle);
	font-size: var(--wp--preset--font-size--medium);
}

.clash-fest-discpage__body {
	max-width: 760px;
}

.clash-fest-discpage__block {
	margin-bottom: var(--wp--preset--spacing--70);
}

.clash-fest-discpage__block:last-of-type {
	margin-bottom: 0;
}

.clash-fest-discpage__h {
	margin: 0 0 var(--wp--preset--spacing--40);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	font-size: var(--wp--preset--font-size--large);
}

.clash-fest-discpage__block p {
	margin: 0 0 0.75rem;
	line-height: 1.6;
	color: var(--wp--preset--color--subtle);
}

.clash-fest-discpage__req {
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--small);
}

.clash-fest-discpage__ages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.clash-fest-discpage__ages li {
	padding: 0.6em 0.9em;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--line);
	border-radius: 8px;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.clash-fest-discpage__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: var(--wp--preset--spacing--50);
}

.clash-fest-discpage__back {
	display: inline-block;
	margin-top: var(--wp--preset--spacing--70);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--red-bright);
	text-decoration: none;
}

.clash-fest-discpage__back:hover {
	color: var(--wp--preset--color--contrast);
}

/* Disciplines overview — age-class line on each card. */
.clash-fest-disc__ages {
	margin: var(--wp--preset--spacing--30) 0 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--muted);
}

/* Hero deadline line under the primary CTA (2e). */
.clash-fest-hero__deadline {
	margin: var(--wp--preset--spacing--40) 0 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--subtle);
}

/* FAQ trailing register CTA (2e). */
.clash-fest-faq__cta {
	margin: var(--wp--preset--spacing--70) 0 0;
	text-align: center;
}

/* ============================================================
 * Festival conversion core (slice 2e-2) — why-register, registration
 * tiles, email-notify capture, supported-athlete program. Tokens only.
 * ============================================================ */

/* Shared small sub-heading (registration notify, supported covers). */
.clash-fest-sub {
	margin: 0 0 var(--wp--preset--spacing--40);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: var(--wp--preset--font-size--medium);
	color: var(--wp--preset--color--contrast);
}

/* Why-register: benefit list with check icons. */
.clash-fest-why__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--wp--preset--spacing--40) var(--wp--preset--spacing--60);
	margin: var(--wp--preset--spacing--60) 0 0;
	padding: 0;
	list-style: none;
}

.clash-fest-why__item {
	display: flex;
	gap: var(--wp--preset--spacing--30);
	align-items: flex-start;
	font-size: var(--wp--preset--font-size--medium);
	line-height: 1.4;
}

.clash-fest-why__check {
	flex: 0 0 auto;
	width: 1.4em;
	height: 1.4em;
	margin-top: 0.1em;
	color: var(--wp--preset--color--red-bright);
}

/* Registration — friction-killer chips (€0 + deadline). */
.clash-fest-reg__killers {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--30);
	margin: var(--wp--preset--spacing--50) 0 0;
	padding: 0;
	list-style: none;
}

.clash-fest-reg__killers li {
	padding: 0.4em 1em;
	background: var(--wp--preset--color--surface-raised);
	border: 1px solid var(--wp--preset--color--line);
	border-radius: 4px;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--contrast);
}

.clash-fest-reg__killers li:first-child {
	background: var(--wp--preset--color--red);
	border-color: var(--wp--preset--color--red);
	color: var(--wp--preset--color--white);
}

/* Registration — club data-sheet helper line. */
.clash-fest-reg__club {
	margin: var(--wp--preset--spacing--50) 0 0;
}

.clash-fest-reg__club a,
.clash-fest-reg__support a {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--red-bright);
	text-decoration: none;
}

.clash-fest-reg__club a:hover,
.clash-fest-reg__support a:hover {
	color: var(--wp--preset--color--contrast);
}

.clash-fest-reg__support {
	margin: var(--wp--preset--spacing--50) 0 0;
}

/* Registration — discipline tiles (the conversion grid). */
.clash-fest-reg__tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--wp--preset--spacing--50);
	margin: var(--wp--preset--spacing--60) 0 0;
	padding: 0;
	list-style: none;
}

.clash-fest-reg-tile {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--40);
	padding: var(--wp--preset--spacing--60);
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--line);
	border-top: 3px solid var(--wp--preset--color--red);
}

.clash-fest-reg-tile__name {
	margin: 0;
	font-size: var(--wp--preset--font-size--large);
}

.clash-fest-reg-tile__meta {
	margin: 0;
	display: grid;
	gap: var(--wp--preset--spacing--30);
}

.clash-fest-reg-tile__meta div {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: var(--wp--preset--spacing--30);
	border-bottom: 1px solid var(--wp--preset--color--line);
}

.clash-fest-reg-tile__meta dt {
	margin: 0;
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--small);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.clash-fest-reg-tile__meta dd {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	color: var(--wp--preset--color--contrast);
	text-align: right;
}

.clash-fest-reg-tile .clash-fest-btn {
	margin-top: auto;
	text-align: center;
}

/* Email-notify capture (registration + supported). */
.clash-fest-notify {
	margin: var(--wp--preset--spacing--70) 0 0;
	padding: var(--wp--preset--spacing--60);
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--line);
}

.clash-fest-notify__note {
	margin: 0 0 var(--wp--preset--spacing--40);
	color: var(--wp--preset--color--subtle);
}

.clash-fest-notify__label {
	display: block;
	margin-bottom: var(--wp--preset--spacing--20);
	font-family: var(--wp--preset--font-family--oswald);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--muted);
}

.clash-fest-notify__row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--30);
}

.clash-fest-notify__input {
	flex: 1 1 16rem;
	padding: 0.7em 1em;
	background: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--line);
	color: var(--wp--preset--color--contrast);
	font-family: var(--wp--preset--font-family--raleway);
	font-size: var(--wp--preset--font-size--base);
}

.clash-fest-notify__input:focus-visible {
	outline: 3px solid var(--wp--preset--color--red);
	outline-offset: 2px;
}

.clash-fest-notify__consent {
	margin: var(--wp--preset--spacing--30) 0 0;
	color: var(--wp--preset--color--muted);
	font-size: 0.75rem;
}

.clash-fest-notify__ok {
	margin: var(--wp--preset--spacing--30) 0 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	color: var(--wp--preset--color--red-bright);
}

/* Supported-athlete program: covers + notify side by side. */
.clash-fest-supported__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--wp--preset--spacing--70);
	margin: var(--wp--preset--spacing--60) 0 0;
	align-items: start;
}

.clash-fest-supported__grid .clash-fest-why__list {
	grid-template-columns: 1fr;
	margin-top: 0;
}

.clash-fest-supported__notify {
	margin-top: 0;
}

@media (max-width: 781px) {
	.clash-fest-why__list,
	.clash-fest-reg__tiles,
	.clash-fest-supported__grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
 * Events archive (slice 3R) — /sundmused high-fidelity "Feature" layout.
 * Dark fight-poster aesthetic. Theme tokens + documented decorative rgba
 * (stripe / scrim / giant numeral — same exception as the home/festival hero).
 * ============================================================ */

/* Main butts the header (cancel WP's global top margin). */
.clash-events {
	margin-block-start: 0;
}

.clash-events-archive {
	position: relative;
	padding-bottom: 74px; /* room for the fixed bottom CTA bar */
}

.clash-events-archive__wrap {
	padding: clamp(1.4rem, 1rem + 2vw, 2.6rem) clamp(0.9rem, 0.5rem + 3vw, 2.5rem) clamp(2.5rem, 2rem + 3vw, 4rem);
}

/* Mono utility (system stack — the prototype's Roboto Mono is a stand-in). */
.clash-mono {
	font-family: ui-monospace, SFMono-Regular, Menlo, "Roboto Mono", monospace;
	letter-spacing: 0.06em;
}

/* Page head */
.clash-events-head {
	margin-bottom: clamp(1rem, 0.6rem + 2vw, 1.5rem);
}

.clash-events-head__title {
	margin: 0.3rem 0 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 0.95;
	font-size: clamp(1.75rem, 1.2rem + 3vw, 2.75rem);
}

/* Section divider */
.clash-divider {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: clamp(1.2rem, 1rem + 2vw, 2rem) 0 1rem;
}

.clash-divider__sq {
	width: 11px;
	height: 11px;
	flex: none;
	background: var(--wp--preset--color--red);
}

.clash-divider__sq--muted {
	background: var(--wp--preset--color--muted);
}

.clash-divider__label {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-size: 0.94rem;
}

.clash-divider__count {
	font-size: 0.7rem;
	color: var(--wp--preset--color--muted);
}

.clash-divider__rule {
	flex: 1;
	height: 1px;
	background: var(--wp--preset--color--line);
}

/* Buttons */
.clash-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 50px;
	padding: 0 1.6rem;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.95rem;
	text-decoration: none;
	border: 1px solid transparent;
	transition: background-color var(--wp--custom--duration--fast) ease, border-color var(--wp--custom--duration--fast) ease, color var(--wp--custom--duration--fast) ease;
}

.clash-btn--primary {
	background: var(--wp--preset--color--red);
	color: var(--wp--preset--color--white);
}

.clash-btn--primary:hover,
.clash-btn--primary:focus-visible {
	background: var(--wp--preset--color--red-deep);
}

.clash-btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.3);
	color: var(--wp--preset--color--contrast);
}

.clash-btn--ghost:hover,
.clash-btn--ghost:focus-visible {
	border-color: var(--wp--preset--color--red);
	color: var(--wp--preset--color--red-bright);
}

.clash-btn--sm {
	min-height: 40px;
	padding: 0 1rem;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
}

/* Two-event hero */
.clash-events-hero {
	display: flex;
	gap: clamp(0.9rem, 0.6rem + 1.5vw, 1.4rem);
	flex-wrap: wrap;
	align-items: stretch;
}

.clash-events-hero__side {
	flex: 1 1 290px;
	display: flex;
	flex-direction: column;
	gap: clamp(0.9rem, 0.6rem + 1.5vw, 1.4rem);
}

/* Shared poster card */
.clash-evcard {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	border: 1px solid var(--wp--preset--color--line);
	overflow: hidden;
	background: var(--wp--preset--color--base);
}

.clash-evcard--feature {
	flex: 2 1 460px;
	min-height: clamp(440px, 58vh, 620px);
}

.clash-evcard--second {
	flex: 1 1 auto;
	min-height: clamp(280px, 34vh, 380px);
}

.clash-evcard__media {
	position: absolute;
	inset: 0;
	background-color: var(--wp--preset--color--base);
	background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.028) 0 2px, transparent 2px 12px);
	background-size: cover;
	background-position: center;
}

.clash-evcard__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(10, 10, 10, 0.95) 100%);
}

.clash-evcard__numeral {
	position: absolute;
	right: -0.6rem;
	top: -2rem;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	line-height: 0.78;
	font-size: clamp(180px, 28vw, 380px);
	color: rgba(220, 0, 0, 0.1);
	pointer-events: none;
}

.clash-evcard__numeral--sm {
	font-size: clamp(110px, 15vw, 200px);
}

.clash-evcard__numeral--grid {
	font-size: 112px;
	right: 0.3rem;
	top: auto;
	bottom: -1.2rem;
	color: rgba(255, 255, 255, 0.05);
}

.clash-evcard__medialabel {
	position: absolute;
	left: clamp(1rem, 2vw, 1.75rem);
	top: 1rem;
	font-size: 0.69rem;
	color: rgba(255, 255, 255, 0.45);
	z-index: 2;
}

.clash-evcard--grid .clash-evcard__medialabel {
	top: auto;
	bottom: 10px;
	left: 12px;
}

.clash-evcard__body {
	position: relative;
	z-index: 2;
	padding: clamp(1.25rem, 0.8rem + 1.6vw, 2.1rem);
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.clash-evcard__eyebrow {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-size: 0.8rem;
	color: var(--wp--preset--color--red-bright);
}

/* Slim "starring" line — confirmed fighter names on the featured card. */
.clash-evcard__starring {
	margin: 0.15rem 0 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	font-size: clamp(0.82rem, 0.7rem + 0.5vw, 1rem);
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.82);
}

.clash-evcard__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 0.9;
	font-size: clamp(2.9rem, 7.5vw, 6.1rem);
}

.clash-evcard__title--sm {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	line-height: 0.96;
}

.clash-evcard__meta,
.clash-evcard__meta-sm {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	flex-wrap: wrap;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	letter-spacing: 0.04em;
	font-size: clamp(0.88rem, 0.8rem + 0.4vw, 1.05rem);
	color: rgba(255, 255, 255, 0.78);
}

.clash-evcard__meta-sm {
	font-size: 0.9rem;
	gap: 0;
}

.clash-evcard__date {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.clash-evcard__sq {
	width: 8px;
	height: 8px;
	flex: none;
	background: var(--wp--preset--color--red);
}

.clash-evcard__venue {
	color: rgba(255, 255, 255, 0.7);
}

.clash-evcard__summary {
	margin: 0;
	max-width: 52ch;
	font-family: var(--wp--preset--font-family--raleway);
	font-size: 1rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
}

.clash-evcard__cta-row {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-top: 0.25rem;
}

.clash-evcard__tagrow {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-wrap: wrap;
}

/* EU co-funded pill */
.clash-eu-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	border: 1px solid rgba(80, 110, 210, 0.8);
	background: rgba(0, 51, 153, 0.22);
	padding: 0.2rem 0.55rem;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	letter-spacing: 0.1em;
	font-size: 0.62rem;
	text-transform: uppercase;
	color: var(--wp--preset--color--subtle);
}

.clash-eu-pill__sq {
	width: 8px;
	height: 8px;
	flex: none;
	background: var(--wp--preset--color--eu-blue);
	border: 1px solid var(--wp--preset--color--line);
}

/* VIP panel */
.clash-vip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--line);
	padding: 1.1rem 1.25rem;
	text-decoration: none;
	transition: border-color var(--wp--custom--duration--fast) ease;
}

.clash-vip:hover {
	border-color: var(--wp--preset--color--red);
}

.clash-vip__h {
	display: block;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 1.05rem;
	color: var(--wp--preset--color--contrast);
}

.clash-vip__p {
	display: block;
	margin-top: 0.2rem;
	font-family: var(--wp--preset--font-family--raleway);
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.6);
}

.clash-vip__arrow {
	color: var(--wp--preset--color--red);
	font-size: 1.4rem;
	font-family: var(--wp--preset--font-family--oswald);
	flex: none;
}

/* Past grid */
.clash-events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: clamp(0.9rem, 0.6rem + 1.5vw, 1.4rem);
}

.clash-events-grid__item.is-hidden {
	display: none;
}

/* Grid (event-card) */
.clash-evcard--grid {
	justify-content: flex-start;
	min-height: 300px;
	background: var(--wp--preset--color--surface);
}

.clash-evcard__media--grid {
	position: relative;
	inset: auto;
	display: block;
	aspect-ratio: 16 / 10;
}

.clash-evcard__tag {
	position: absolute;
	left: 12px;
	top: 12px;
	z-index: 2;
	background: var(--wp--preset--color--red);
	color: var(--wp--preset--color--white);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	letter-spacing: 0.1em;
	font-size: 0.69rem;
	padding: 0.25rem 0.55rem;
	text-transform: uppercase;
}

.clash-evcard__play {
	position: absolute;
	inset: 0;
	z-index: 2;
	margin: auto;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 3px;
	color: var(--wp--preset--color--white);
	background: rgba(0, 0, 0, 0.32);
	transition: border-color var(--wp--custom--duration--fast) ease, color var(--wp--custom--duration--fast) ease;
}

.clash-evcard--grid:hover .clash-evcard__play {
	border-color: var(--wp--preset--color--red);
	color: var(--wp--preset--color--red-bright);
}

.clash-evcard__body--grid {
	position: static;
	padding: 0.95rem 1.05rem 1.05rem;
	gap: 0.55rem;
	flex: 1;
}

.clash-evcard__title--grid {
	font-size: clamp(1.2rem, 2.4vw, 1.5rem);
	line-height: 1.04;
}

.clash-evcard__title--grid a {
	color: var(--wp--preset--color--contrast);
	text-decoration: none;
}

.clash-evcard__title--grid a:hover {
	color: var(--wp--preset--color--red-bright);
}

.clash-evcard__actions {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	flex-wrap: wrap;
	margin-top: auto;
	padding-top: 0.4rem;
}

/* Discipline filter chips */
.clash-events-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.4rem;
}

.clash-chip {
	cursor: pointer;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.72rem;
	padding: 0.5rem 1rem;
	background: transparent;
	color: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: background-color var(--wp--custom--duration--fast) ease, color var(--wp--custom--duration--fast) ease, border-color var(--wp--custom--duration--fast) ease;
}

.clash-chip:hover {
	color: var(--wp--preset--color--contrast);
	border-color: rgba(255, 255, 255, 0.4);
}

.clash-chip.is-active {
	background: var(--wp--preset--color--red);
	color: var(--wp--preset--color--white);
	border-color: var(--wp--preset--color--red);
}

/* Fixed bottom "next event" CTA bar */
.clash-events-sticky {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 2.25rem;
	z-index: 120;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.6rem clamp(0.9rem, 4vw, 2.5rem);
	background: rgba(10, 10, 10, 0.94);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid rgba(220, 0, 0, 0.45);
}

.clash-events-sticky__label {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	min-width: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: clamp(0.72rem, 0.6rem + 0.6vw, 0.88rem);
	color: var(--wp--preset--color--contrast);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.clash-events-sticky__sq {
	width: 8px;
	height: 8px;
	flex: none;
	background: var(--wp--preset--color--red);
}

.clash-events-sticky__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	flex: none;
	min-height: 44px;
	padding: 0 1.4rem;
	background: var(--wp--preset--color--red);
	color: var(--wp--preset--color--white);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.88rem;
	text-decoration: none;
}

.clash-events-sticky__cta:hover {
	background: var(--wp--preset--color--red-deep);
}

/* The events page has its own sticky CTA bar → hide the global mobile one. */
body:has(.clash-events-sticky) .clash-sticky-cta {
	display: none;
}

/* Compact fight-card teaser rows (design: name vs name, no chrome) */
.clash-fightcard.is-compact,
.clash-fightcard.is-compact .clash-fightcard__list {
	background: transparent;
	gap: 0.4rem;
}

.clash-fightcard.is-compact .clash-fightcard__bout {
	background: transparent;
	padding: 0;
	gap: 0.25rem;
}

.clash-fightcard.is-compact .clash-fightcard__tags {
	display: none;
}

.clash-fightcard.is-compact .clash-fightcard__pair {
	gap: 0.75rem;
}

.clash-fightcard.is-compact .clash-fightcard__name {
	font-size: 0.95rem;
	color: var(--wp--preset--color--contrast);
}

.clash-fightcard__name--tba {
	color: rgba(255, 255, 255, 0.5);
	font-weight: 500;
}

@media (max-width: 600px) {
	.clash-events-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
 * Single event page (slice 3d) — /sundmused/:event. Reuses .clash-evcard*,
 * .clash-btn*, .clash-divider*, .clash-vip*, .clash-events-sticky*.
 * ============================================================ */

.clash-evsingle-main {
	margin-block-start: 0;
}

.clash-evsingle {
	display: block;
	padding-bottom: 74px; /* room for the fixed sticky CTA */
}

/* Full-bleed poster hero */
.clash-evsingle-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: clamp(420px, 64vh, 680px);
	overflow: hidden;
	background: var(--wp--preset--color--base);
}

.clash-evsingle-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.clash-evsingle-hero__body {
	width: 100%;
	max-width: 1140px;
	margin-inline: auto;
	padding: clamp(1.5rem, 1rem + 3vw, 3rem) clamp(0.9rem, 0.5rem + 3vw, 2.5rem);
}

.clash-evsingle-hero__back {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}

.clash-evsingle-hero__back:hover {
	color: var(--wp--preset--color--red-bright);
}

.clash-evsingle-hero__tagrow {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.clash-evsingle-hero__title {
	font-size: clamp(2.6rem, 8vw, 6.5rem);
}

/* Constrained content below the hero */
.clash-evsingle__wrap {
	max-width: 1140px;
	margin-inline: auto;
	padding: 0 clamp(0.9rem, 0.5rem + 3vw, 2.5rem);
}

.clash-evsingle__section {
	margin-top: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
}

.clash-evsingle__seeall {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.75rem;
	color: var(--wp--preset--color--red-bright);
	text-decoration: none;
	white-space: nowrap;
}

.clash-evsingle__seeall:hover {
	color: var(--wp--preset--color--contrast);
}

.clash-btn.is-disabled {
	background: var(--wp--preset--color--surface-raised);
	color: var(--wp--preset--color--muted);
	cursor: default;
}

/* Past-event gallery grid (lightbox deferred — links open the full image) */
.clash-evsingle-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: clamp(0.5rem, 0.3rem + 1vw, 0.9rem);
}

.clash-evsingle-gallery__item {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border: 1px solid var(--wp--preset--color--line);
}

.clash-evsingle-gallery__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--wp--custom--duration--normal) var(--wp--custom--ease--out-expo);
}

.clash-evsingle-gallery__item:hover .clash-evsingle-gallery__img {
	transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
	.clash-evsingle-hero__video {
		display: none;
	}
}

/* Clickable card titles + "Vaata sündmust" link (reach the single-event page). */
.clash-evcard__title a {
	color: inherit;
	text-decoration: none;
}

.clash-evcard__title a:hover {
	color: var(--wp--preset--color--red-bright);
}

.clash-evcard__eventlink {
	align-self: center;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
}

.clash-evcard__eventlink:hover {
	color: var(--wp--preset--color--red-bright);
}

/* ============================================================
 * News index (/uudised, slice 5) + single post. Reuses .clash-news-card*,
 * .clash-events-filter / .clash-chip, .clash-events-archive__head. Tokens only.
 * ============================================================ */

.clash-news-main {
	margin-block-start: 0;
}

.clash-news-archive {
	padding-block: var(--wp--preset--spacing--50) var(--wp--preset--spacing--80);
}

.clash-news-grid--archive {
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* Category tag on the card media */
.clash-news-card__media {
	position: relative;
}

.clash-news-empty {
	color: var(--wp--preset--color--muted);
}

/* Pagination */
.clash-news-pagination {
	margin-block-start: var(--wp--preset--spacing--70);
}

.clash-news-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
	justify-content: center;
}

.clash-news-pagination a,
.clash-news-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 0 0.6rem;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--wp--preset--color--subtle);
	text-decoration: none;
	border: 1px solid var(--wp--preset--color--line);
}

.clash-news-pagination a:hover {
	border-color: var(--wp--preset--color--red);
	color: var(--wp--preset--color--contrast);
}

.clash-news-pagination .current {
	background: var(--wp--preset--color--red);
	border-color: var(--wp--preset--color--red);
	color: var(--wp--preset--color--white);
}

/* ---- Single post (editorial) ---- */
.clash-post {
	margin-block-start: 0;
	padding-bottom: var(--wp--preset--spacing--80);
}

/* Hero: featured image with the title + date overlaid on a dark scrim. */
.clash-post__hero {
	position: relative;
	margin-block-start: 0;
	min-height: clamp(280px, 40vh, 420px);
	background: var(--wp--preset--color--surface);
}

.clash-post__cover {
	margin: 0;
}

.clash-post__cover img {
	display: block;
	width: 100%;
	height: clamp(340px, 58vh, 640px);
	object-fit: cover;
}

.clash-post__overlay {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-block: clamp(3rem, 2rem + 8vw, 7rem) clamp(1.25rem, 1rem + 2vw, 2.5rem);
	padding-inline: clamp(1rem, 0.5rem + 3vw, 3rem);
	background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0) 100%);
}

/* Column centred on the page; text reads left, as normal. */
.clash-post__overlay > * {
	width: 100%;
	max-width: 1040px;
	margin-inline: 0;
	text-align: left;
}

.clash-post__body {
	padding-inline: clamp(1rem, 0.5rem + 2vw, 2rem);
	padding-block-start: var(--wp--preset--spacing--60);
}

.clash-post__date {
	margin: 0 0 0.5rem;
	font-family: var(--wp--preset--font-family--oswald);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: var(--wp--preset--font-size--small);
	color: rgba(255, 255, 255, 0.82);
}

.clash-post__title {
	margin: 0;
	font-size: var(--wp--preset--font-size--x-large);
	/* Roomier than the global 1.05 so Estonian diacritics (ä, õ, ü, ö) on a
	   wrapped line don't collide with the line above. */
	line-height: 1.15;
	color: var(--wp--preset--color--white);
}

.clash-post__body .wp-block-post-content {
	font-family: var(--wp--preset--font-family--raleway);
	font-size: var(--wp--preset--font-size--medium);
	line-height: 1.7;
	color: var(--wp--preset--color--subtle);
}

.clash-post__body .wp-block-post-content :where(h2, h3) {
	color: var(--wp--preset--color--contrast);
	margin-block: 1.6em 0.5em;
}

.clash-post__body .wp-block-post-content a {
	color: var(--wp--preset--color--red-bright);
}

/* ---------------------------------------------------------------------------
   Notify-form honeypot (slice 5b) — visually hidden, off the tab order.
--------------------------------------------------------------------------- */
.clash-fest-notify__hp,
.clash-gate__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

/* ---------------------------------------------------------------------------
   Ticket email-gate modal (slice 5c, DF-3).
--------------------------------------------------------------------------- */
.clash-gate[hidden] {
	display: none;
}

.clash-gate {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1rem, 4vw, 2rem);
}

body.clash-gate-open {
	overflow: hidden;
}

.clash-gate__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.78);
	backdrop-filter: blur(2px);
}

.clash-gate__dialog {
	position: relative;
	z-index: 1;
	width: min(440px, 100%);
	max-height: calc(100dvh - 2rem);
	overflow-y: auto;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--line);
	border-top: 3px solid var(--wp--preset--color--red);
	padding: clamp(1.5rem, 4vw, 2.5rem);
}

/* Full-width inputs/buttons carry their own padding — keep it inside the box
   so they don't overflow the dialog. */
.clash-gate__dialog,
.clash-gate__dialog * {
	box-sizing: border-box;
}

.clash-gate__close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	width: 2.25rem;
	height: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	line-height: 1;
	background: none;
	border: 0;
	color: var(--wp--preset--color--muted);
	cursor: pointer;
	transition: color var(--wp--custom--duration--fast, 150ms) ease;
}

.clash-gate__close:hover,
.clash-gate__close:focus-visible {
	color: var(--wp--preset--color--contrast);
}

.clash-gate__eyebrow {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--x-large);
	color: var(--wp--preset--color--red);
	line-height: 1;
	margin: 0 0 0.25rem;
}

.clash-gate__title {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	font-size: var(--wp--preset--font-size--large);
	color: var(--wp--preset--color--contrast);
	line-height: 1.1;
	margin: 0 0 0.5rem;
}

.clash-gate__desc {
	color: var(--wp--preset--color--subtle);
	font-size: var(--wp--preset--font-size--small);
	margin: 0 0 1.25rem;
}

.clash-gate__form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.clash-gate__label {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--subtle);
}

.clash-gate__input {
	width: 100%;
	padding: 0.7rem 0.9rem;
	background: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--line);
	color: var(--wp--preset--color--contrast);
	font-family: var(--wp--preset--font-family--raleway);
	font-size: var(--wp--preset--font-size--base);
}

.clash-gate__input:focus-visible {
	outline: 2px solid var(--wp--preset--color--red-bright);
	outline-offset: 1px;
}

.clash-gate__hint {
	margin: -0.25rem 0 0;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--muted);
}

.clash-gate__check {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--subtle);
	line-height: 1.4;
	cursor: pointer;
}

.clash-gate__check input {
	margin-top: 0.15rem;
	accent-color: var(--wp--preset--color--red);
	flex: 0 0 auto;
}

.clash-gate__error {
	margin: 0;
	color: var(--wp--preset--color--red-bright);
	font-size: var(--wp--preset--font-size--small);
}

.clash-gate__submit,
.clash-gate__continue {
	margin-top: 0.5rem;
	width: 100%;
	text-align: center;
}

/* Quiet escape hatch — skip the signup + discount, go straight to tickets. */
.clash-gate__skip {
	display: block;
	width: 100%;
	margin-top: 0.25rem;
	padding: 0.4rem;
	background: none;
	border: 0;
	color: var(--wp--preset--color--muted);
	font-family: var(--wp--preset--font-family--raleway);
	font-size: var(--wp--preset--font-size--small);
	text-align: center;
	cursor: pointer;
	transition: color var(--wp--custom--duration--fast, 150ms) ease;
}

.clash-gate__skip:hover,
.clash-gate__skip:focus-visible {
	color: var(--wp--preset--color--contrast);
	text-decoration: underline;
}

.clash-gate__code {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	letter-spacing: 0.06em;
	font-size: clamp(1.75rem, 7vw, 2.75rem);
	line-height: 1.1;
	color: var(--wp--preset--color--red);
	text-align: center;
	border: 1px dashed var(--wp--preset--color--red-deep);
	padding: 0.7em 0.4em;
	margin: 0 0 1rem;
	background: var(--wp--preset--color--base);
	max-width: 100%;
	overflow-wrap: break-word;
}

/* ---------------------------------------------------------------------------
   Fight quote — dark red-edged pull quote for news posts. Works as a core
   Quote block style ("Võitlustsitaat" → .is-style-fight-quote) and as legacy
   custom-HTML <blockquote class="fight-quote">. Italic system serif (no extra
   web font, same approach as the mono labels).
--------------------------------------------------------------------------- */
.fight-quote,
.wp-block-quote.is-style-fight-quote {
	position: relative;
	margin-block: var(--wp--preset--spacing--60);
	padding: clamp(2.25rem, 1.5rem + 3vw, 3.25rem) clamp(1.5rem, 1rem + 2vw, 2.75rem) clamp(1.5rem, 1rem + 2vw, 2.5rem);
	background: var(--wp--preset--color--black);
	border-left: 6px solid var(--wp--preset--color--red);
	color: var(--wp--preset--color--white);
}

.fight-quote::before,
.wp-block-quote.is-style-fight-quote::before {
	content: "\201C";
	position: absolute;
	top: clamp(-0.2rem, -0.5rem + 1vw, 0.3rem);
	left: clamp(1rem, 0.5rem + 1vw, 1.6rem);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 700;
	font-size: clamp(3.5rem, 2rem + 6vw, 6rem);
	line-height: 1;
	color: var(--wp--preset--color--red);
	pointer-events: none;
}

.fight-quote p,
.wp-block-quote.is-style-fight-quote p {
	margin: 0 0 1rem;
	font-family: Georgia, "Times New Roman", serif;
	font-style: italic;
	font-size: clamp(1.25rem, 1rem + 1.1vw, 1.7rem);
	line-height: 1.45;
	color: var(--wp--preset--color--white);
}

.fight-quote cite,
.wp-block-quote.is-style-fight-quote cite {
	display: block;
	font-family: var(--wp--preset--font-family--oswald);
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--red);
}

/* ===========================================================================
   ATHLETES HUB (/sportlased) — slice 6b-1. Dark fight-poster ladder design.
   rgba whites = the design's text-opacity hierarchy + scrims (functional).
=========================================================================== */
.clash-athletes {
	margin-block-start: 0;
	background: var(--wp--preset--color--base);
}

.clash-athletes__inner {
	max-width: 1140px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 0.5rem + 2vw, 1.5rem);
	padding-block: clamp(2rem, 1rem + 4vw, 2.75rem) clamp(4rem, 3rem + 6vw, 6rem);
}

.clash-athletes__eyebrow {
	margin: 0 0 0.75rem;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 0.75rem;
	color: var(--wp--preset--color--red);
}

.clash-athletes__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	line-height: 0.95;
	font-size: clamp(2.5rem, 1rem + 8vw, 4.75rem);
	color: var(--wp--preset--color--white);
}

.clash-athletes__lead {
	margin: 1rem 0 0;
	max-width: 54ch;
	font-family: var(--wp--preset--font-family--raleway);
	font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.2rem);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.6);
}

.clash-athletes__ladders {
	display: flex;
	flex-direction: column;
	gap: clamp(2.25rem, 1.5rem + 3vw, 3rem);
	margin-block-start: clamp(2rem, 1.5rem + 3vw, 3rem);
}

/* ---- One ladder ---------------------------------------------------------- */
.clash-ladder {
	scroll-margin-top: 120px;
}

.clash-ladder__head {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.75rem;
	padding-bottom: 0.9rem;
	border-bottom: 2px solid var(--wp--preset--color--red);
}

.clash-ladder__disc {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wp--preset--color--white);
	background: var(--wp--preset--color--red-deep);
	padding: 0.2rem 0.6rem;
	border-radius: 4px;
}

.clash-ladder__weight {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wp--preset--color--white);
}

.clash-ladder__gender {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: 0.62rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 0.18rem 0.5rem;
	border-radius: 4px;
}

/* ---- States -------------------------------------------------------------- */
.clash-ladder__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-align: center;
	padding: clamp(2rem, 1.5rem + 3vw, 2.9rem) 1.5rem;
	margin-top: 1rem;
	background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 14px, transparent 14px 28px), var(--wp--preset--color--surface);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.6);
}

.clash-ladder__emptytext {
	margin: 0;
	max-width: 36ch;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.clash-ladder__vacant {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	margin-top: 1rem;
	padding: 0.7rem 0.95rem;
	background: var(--wp--preset--color--surface);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-left: 3px solid var(--wp--preset--color--red);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}

.clash-ladder__vacant .clash-trophy { color: var(--wp--preset--color--red); flex: none; }

/* ---- Desktop table ------------------------------------------------------- */
.clash-ladder__table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 0.9rem;
}

.clash-ladder__h {
	text-align: left;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	padding: 0 0.75rem 0.65rem;
}

.clash-ladder__h--rank { width: 120px; }
.clash-ladder__h--rec { width: 150px; text-align: right; }

.clash-ladder__row {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	cursor: pointer;
	transition: background-color var(--wp--custom--duration--fast, 150ms) ease;
}

.clash-ladder__row:hover { background: var(--wp--preset--color--surface-raised); }

.clash-ladder__rank {
	padding: 0.95rem 0.75rem;
	vertical-align: middle;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.4);
}

.clash-ladder__pos {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	font-size: 1.2rem;
	letter-spacing: 0.02em;
}

.clash-ladder__athlete { padding: 0.95rem 0.75rem; vertical-align: middle; }
.clash-ladder__rec {
	padding: 0.95rem 0.75rem;
	vertical-align: middle;
	text-align: right;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.85);
}

.clash-ladder__rowlink { text-decoration: none; color: inherit; display: block; }

.clash-ladder__who { display: flex; align-items: center; gap: 0.8rem; min-width: 0; }

.clash-ladder__thumb {
	flex: none;
	position: relative;
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	overflow: hidden;
	background: linear-gradient(160deg, #1d1d1d, #000);
	border: 1px solid rgba(255, 255, 255, 0.12);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.6);
}

/* Same red wash + bottom fade as the featured-fighter cards. */
.clash-ladder__thumb::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: radial-gradient(120% 95% at 50% 8%, rgba(220, 0, 0, 0.24), transparent 62%);
}

.clash-ladder__thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 55%);
}

.clash-ladder__thumbimg { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.clash-ladder__id { min-width: 0; }

.clash-ladder__name {
	display: block;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.05;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--wp--preset--color--white);
}

.clash-ladder__sub { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.2rem; }

.clash-ladder__nick {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wp--preset--color--red);
}

.clash-ladder__cc {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: 0.62rem;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 0.1rem 0.4rem;
	border-radius: 4px;
}

/* ---- Champion "Banner" row ----------------------------------------------- */
.clash-ladder__row.is-champion {
	background: linear-gradient(110deg, var(--wp--preset--color--red), var(--wp--preset--color--red-deep));
	border-top: 2px solid var(--wp--preset--color--red);
	border-bottom: 2px solid var(--wp--preset--color--red);
}

.clash-ladder__row.is-champion:hover { background: linear-gradient(110deg, var(--wp--preset--color--red), var(--wp--preset--color--red-deep)); }
.clash-ladder__row.is-champion .clash-ladder__rank { color: var(--wp--preset--color--white); padding-block: 1.25rem; }
.clash-ladder__row.is-champion .clash-ladder__pos { font-size: 1.85rem; }
.clash-ladder__row.is-champion .clash-trophy { vertical-align: middle; margin-right: 0.3rem; }
.clash-ladder__champlabel {
	display: block;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: 0.56rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 0.2rem;
}
.clash-ladder__row.is-champion .clash-ladder__athlete,
.clash-ladder__row.is-champion .clash-ladder__rec { padding-block: 1.25rem; }
.clash-ladder__row.is-champion .clash-ladder__thumb { width: 76px; height: 76px; border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.clash-ladder__row.is-champion .clash-ladder__name { font-size: 1.5rem; }
.clash-ladder__row.is-champion .clash-ladder__nick { color: rgba(255, 255, 255, 0.85); }
.clash-ladder__row.is-champion .clash-ladder__cc { color: rgba(255, 255, 255, 0.8); border-color: rgba(255, 255, 255, 0.3); }
.clash-ladder__row.is-champion .clash-ladder__rec { color: #fff; font-size: 1.35rem; }

/* ---- Mobile stacked cards (hidden on desktop) ---------------------------- */
.clash-ladder__cards { display: none; }

@media (max-width: 759px) {
	.clash-ladder__table { display: none; }
	.clash-ladder__cards { display: flex; flex-direction: column; gap: 0.55rem; margin-top: 0.9rem; }
	.clash-ladder__card {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		padding: 0.8rem;
		text-decoration: none;
		background: var(--wp--preset--color--surface-raised);
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 8px;
	}
	.clash-ladder__card.is-champion { background: linear-gradient(110deg, var(--wp--preset--color--red), var(--wp--preset--color--red-deep)); border-color: var(--wp--preset--color--red); }
	.clash-ladder__cardrank {
		flex: none;
		display: inline-flex;
		align-items: center;
		gap: 0.25rem;
		min-width: 38px;
		font-family: var(--wp--preset--font-family--oswald);
		font-weight: 700;
		font-size: 1.05rem;
		letter-spacing: 0.02em;
		color: var(--wp--preset--color--white);
	}
	.clash-ladder__card .clash-ladder__who { flex: 1; }
	.clash-ladder__card.is-champion .clash-ladder__nick { color: rgba(255, 255, 255, 0.85); }
	.clash-ladder__card.is-champion .clash-ladder__cc { color: rgba(255, 255, 255, 0.8); border-color: rgba(255, 255, 255, 0.3); }
	.clash-ladder__cardrec {
		flex: none;
		font-family: var(--wp--preset--font-family--oswald);
		font-weight: 600;
		font-size: 1rem;
		letter-spacing: 0.04em;
		color: var(--wp--preset--color--white);
	}
}

/* ===========================================================================
   ATHLETES HUB — slider, fighter card, control bar (slice 6b-1b).
=========================================================================== */
/* ---- Featured slider ----------------------------------------------------- */
.clash-slider {
	margin-block: clamp(2rem, 1.5rem + 2vw, 2.75rem) 0;
}

.clash-slider__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-block-end: 1.1rem;
}

.clash-slider__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: clamp(1.25rem, 1rem + 1.4vw, 1.75rem);
	color: var(--wp--preset--color--white);
}

.clash-slider__arrows { display: flex; gap: 0.5rem; }

.clash-slider__arrow {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 4px;
	color: var(--wp--preset--color--white);
	cursor: pointer;
	transition: border-color var(--wp--custom--duration--fast, 150ms) ease, color var(--wp--custom--duration--fast, 150ms) ease;
}

.clash-slider__arrow:hover,
.clash-slider__arrow:focus-visible { border-color: var(--wp--preset--color--red); color: var(--wp--preset--color--red); }

.clash-slider__wrap { position: relative; }

.clash-slider__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	/* Proximity (not mandatory) so the endless-loop wrap doesn't fight snap. */
	scroll-snap-type: x proximity;
	padding-block-end: 14px;
	scrollbar-width: thin;
}

.clash-slider__track > .clash-fcard { flex: 0 0 232px; scroll-snap-align: start; }

.clash-slider__viewall {
	flex: 0 0 150px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.6rem;
	text-align: center;
	text-decoration: none;
	background: transparent;
	border: 1px dashed rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.6);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding-inline: 0.9rem;
	transition: border-color var(--wp--custom--duration--fast, 150ms) ease, color var(--wp--custom--duration--fast, 150ms) ease;
}

.clash-slider__viewall:hover { border-color: var(--wp--preset--color--red); color: var(--wp--preset--color--white); }
.clash-slider__viewall-i { font-size: 1.4rem; }

.clash-slider__fade {
	position: absolute;
	top: 0;
	width: 80px;
	height: calc(100% - 14px);
	pointer-events: none;
	z-index: 2;
	opacity: 0;
	transition: opacity var(--wp--custom--duration--normal, 300ms) ease;
}
.clash-slider__fade--l { left: 0; background: linear-gradient(to right, var(--wp--preset--color--base), transparent); }
.clash-slider__fade--r { right: 0; background: linear-gradient(to left, var(--wp--preset--color--base), transparent); }
/* Left fade appears only once scrolled (never cuts the first card at rest);
   right fade is the scroll hint, hidden at the end. JS toggles the classes. */
.clash-slider__wrap.is-scrolled .clash-slider__fade--l { opacity: 1; }
.clash-slider__wrap:not(.is-end) .clash-slider__fade--r { opacity: 1; }

/* ---- Fighter card -------------------------------------------------------- */
.clash-fcard {
	display: flex;
	flex-direction: column;
	background: var(--wp--preset--color--surface-raised);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: border-color var(--wp--custom--duration--fast, 150ms) ease;
}

.clash-fcard:hover { border-color: var(--wp--preset--color--surface-raised); border-color: rgba(255, 255, 255, 0.28); }

.clash-fcard__well {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: linear-gradient(160deg, #1d1d1d, #000);
	display: grid;
	place-items: center;
}

.clash-fcard__wash {
	position: absolute;
	inset: 0;
	background: radial-gradient(120% 80% at 50% 12%, rgba(220, 0, 0, 0.18), transparent 60%);
}

.clash-fcard__numeral {
	position: absolute;
	right: 8px;
	bottom: 38px;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	font-size: 120px;
	line-height: 0.8;
	color: rgba(255, 255, 255, 0.05);
	pointer-events: none;
}

.clash-fcard__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.clash-fcard__ph { color: rgba(255, 255, 255, 0.18); }

.clash-fcard .clash-rank-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	color: var(--wp--preset--color--white);
	background: rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0.3rem 0.5rem;
	border-radius: 4px;
}

.clash-fcard .clash-rank-badge.is-champion {
	background: linear-gradient(110deg, var(--wp--preset--color--red), var(--wp--preset--color--red-deep));
	border-color: transparent;
}

.clash-fcard__scrim {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 0.8rem 0.8rem 0.75rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.4) 60%, transparent);
}

.clash-fcard__disc {
	display: block;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: 0.62rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wp--preset--color--red);
	margin-block-end: 0.25rem;
}

.clash-fcard__nick {
	display: block;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.clash-fcard__name {
	display: block;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 1.02;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--wp--preset--color--white);
}

.clash-fcard__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.7rem 0.85rem 0.8rem;
}

.clash-fcard__rec {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--white);
}

.clash-fcard__cc {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: 0.62rem;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 0.18rem 0.45rem;
	border-radius: 4px;
}

/* ---- Sticky control bar -------------------------------------------------- */
.clash-controls {
	position: sticky;
	top: var(--clash-header-h, 64px);
	z-index: 40;
	background: var(--wp--preset--color--base);
	border-block-end: 1px solid rgba(255, 255, 255, 0.12);
	margin-block-start: clamp(1.5rem, 1rem + 2vw, 2.25rem);
}

.clash-controls__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding-block-start: 0.5rem;
}

.clash-tabs {
	display: flex;
	gap: 0.25rem;
	overflow-x: auto;
	scrollbar-width: none;
}
.clash-tabs::-webkit-scrollbar { display: none; }

.clash-tab {
	padding: 0.8rem 1.1rem;
	white-space: nowrap;
	background: transparent;
	border: 0;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	transition: color var(--wp--custom--duration--fast, 150ms) ease;
}
.clash-tab:hover { color: var(--wp--preset--color--white); }
.clash-tab.is-active { color: var(--wp--preset--color--white); border-bottom-color: var(--wp--preset--color--red); }

.clash-gender { display: flex; gap: 0.25rem; }
.clash-gender[hidden] { display: none; }

.clash-gender__btn {
	padding: 0.5rem 1rem;
	cursor: pointer;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: transparent;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}
.clash-gender__btn.is-active { background: var(--wp--preset--color--red); border-color: var(--wp--preset--color--red); color: var(--wp--preset--color--white); }

.clash-jump {
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
	padding-block: 0.8rem;
	scrollbar-width: none;
}
.clash-jump::-webkit-scrollbar { display: none; }
.clash-jump:empty { display: none; }

.clash-chipw {
	padding: 0.45rem 0.85rem;
	white-space: nowrap;
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: var(--wp--preset--color--surface-raised);
	border-radius: 999px;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	transition: border-color var(--wp--custom--duration--fast, 150ms) ease;
}
.clash-chipw:hover { border-color: var(--wp--preset--color--red); }
.clash-chipw__n { margin-inline-start: 0.4rem; opacity: 0.5; }

/* Hidden ladders (tab-scoped). */
.clash-ladder[hidden] { display: none; }

/* Amateur-record tag (small, next to W–L–D). */
.clash-am {
	display: inline-block;
	margin-inline-start: 0.35em;
	vertical-align: middle;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: 0.6em;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 4px;
	padding: 0.05em 0.32em;
}

.clash-ladder__row.is-champion .clash-am,
.clash-ladder__card.is-champion .clash-am { color: rgba(255, 255, 255, 0.75); border-color: rgba(255, 255, 255, 0.4); }

/* ===========================================================================
   ATHLETE PROFILE (/sportlased/:slug) — slice 6b-2.
   Dark fight-poster profile: hero (rank/division/record/portrait), fight
   history, bio, videos, socials, related. Tokens + documented functional rgba.
   =========================================================================== */
.clash-profile {
	max-width: 1180px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 0.5rem + 2.5vw, 2.5rem);
	padding-block: clamp(1.25rem, 0.75rem + 2vw, 2.5rem) var(--wp--preset--spacing--80);
}
.clash-profile__back {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--small);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wp--preset--color--subtle);
	text-decoration: none;
	transition: color var(--wp--custom--motion--duration--fast, 150ms) ease;
}
.clash-profile__back:hover { color: var(--wp--preset--color--red-bright); }

/* Hero ------------------------------------------------------------------- */
.clash-profile__hero {
	position: relative;
	margin-block-start: clamp(1rem, 0.5rem + 1.5vw, 1.75rem);
	padding-block-end: clamp(1.5rem, 1rem + 2vw, 2.5rem);
	border-block-end: 2px solid var(--wp--preset--color--red);
	overflow: hidden;
}
.clash-profile__hero::before {
	content: "";
	position: absolute;
	inset: -40% -10% auto auto;
	width: 60%;
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(220, 0, 0, 0.18), transparent 70%);
	pointer-events: none;
	z-index: 0;
}
.clash-profile__watermark {
	position: absolute;
	top: -0.28em;
	right: -0.02em;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	font-size: clamp(8rem, 4rem + 18vw, 18rem);
	line-height: 0.8;
	color: rgba(220, 0, 0, 0.08);
	z-index: 0;
	pointer-events: none;
	user-select: none;
}
.clash-profile__herogrid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.5fr 0.9fr;
	gap: clamp(1.25rem, 0.5rem + 3vw, 3rem);
	align-items: end;
}
.clash-profile__badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin-block-end: 0.9rem;
}
.clash-profile__rankbadge {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--small);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.34em 0.7em;
	border-radius: 4px;
	line-height: 1;
}
.clash-profile__rankbadge.is-champion {
	color: var(--wp--preset--color--white);
	background: linear-gradient(135deg, var(--wp--preset--color--red), var(--wp--preset--color--red-deep));
}
.clash-profile__rankbadge.is-champion svg { fill: currentColor; }
.clash-profile__rankbadge.is-ranked {
	color: var(--wp--preset--color--red-bright);
	border: 1px solid var(--wp--preset--color--red);
}
.clash-profile__rankbadge.is-unranked {
	color: var(--wp--preset--color--muted);
	border: 1px solid var(--wp--preset--color--line);
}
.clash-profile__pill {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--small);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.34em 0.7em;
	border-radius: 4px;
	color: var(--wp--preset--color--subtle);
	background: var(--wp--preset--color--surface-raised);
	line-height: 1;
}
.clash-profile__pill--disc {
	color: var(--wp--preset--color--white);
	background: rgba(220, 0, 0, 0.16);
}
.clash-profile__nick {
	margin: 0 0 0.15rem;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--large);
	color: var(--wp--preset--color--red-bright);
	line-height: 1.1;
}
.clash-profile__name {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 0.98;
	font-size: clamp(2.5rem, 1rem + 6vw, 5.25rem);
	color: var(--wp--preset--color--contrast);
}
.clash-profile__stats {
	display: flex;
	align-items: center;
	gap: clamp(0.85rem, 0.4rem + 1.5vw, 1.5rem);
	margin-block-start: 1.1rem;
}
.clash-profile__rec { display: flex; flex-direction: column; gap: 0.1rem; }
.clash-profile__recnum {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	font-size: clamp(2rem, 1rem + 3vw, 3.25rem);
	line-height: 0.95;
	color: var(--wp--preset--color--white);
}
.clash-profile__reclbl {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--small);
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
}
.clash-profile__divider { width: 1px; align-self: stretch; background: var(--wp--preset--color--line); }
.clash-profile__cc {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--medium);
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--subtle);
}
.clash-profile__portrait {
	position: relative;
	aspect-ratio: 4 / 5;
	background: linear-gradient(160deg, #1d1d1d, #000);
	border: 1px solid var(--wp--preset--color--line);
	overflow: hidden;
}
/* Same red wash + bottom fade as the featured-fighter cards. */
.clash-profile__portrait::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: radial-gradient(120% 80% at 50% 12%, rgba(220, 0, 0, 0.2), transparent 60%);
}
.clash-profile__portrait::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.25) 45%, transparent);
}
.clash-profile__portraitimg { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.clash-profile__ph {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: grid;
	place-items: center;
	color: rgba(255, 255, 255, 0.12);
}

/* Body sections ---------------------------------------------------------- */
.clash-profile__body {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--70);
	margin-block-start: var(--wp--preset--spacing--70);
}
.clash-profile__section { display: block; }
.clash-profile__section .clash-divider { margin-block-end: 1.25rem; }
.clash-profile__empty,
.clash-profile__biotext {
	margin: 0;
	font-family: var(--wp--preset--font-family--raleway);
	font-size: var(--wp--preset--font-size--base);
	line-height: 1.65;
	color: var(--wp--preset--color--subtle);
	max-width: 70ch;
}
.clash-profile__empty { color: var(--wp--preset--color--muted); }

/* Fight history ---------------------------------------------------------- */
.clash-profile__bouts { display: flex; flex-direction: column; gap: 1px; background: var(--wp--preset--color--line); border: 1px solid var(--wp--preset--color--line); }
.clash-bout {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.9fr);
	gap: 1rem;
	align-items: center;
	padding: 0.85rem 1.1rem;
	background: var(--wp--preset--color--surface);
}
.clash-bout__result { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.clash-bout__chip {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	font-size: 0.95rem;
	border-radius: 4px;
	color: var(--wp--preset--color--white);
	background: var(--wp--preset--color--surface-raised);
}
.clash-bout--w .clash-bout__chip { background: var(--wp--preset--color--red); }
.clash-bout--l .clash-bout__chip { background: var(--wp--preset--color--surface-raised); color: var(--wp--preset--color--muted); }
.clash-bout--d .clash-bout__chip,
.clash-bout--nc .clash-bout__chip { background: var(--wp--preset--color--surface-raised); color: var(--wp--preset--color--subtle); font-size: 0.7rem; }
.clash-bout__opp { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.clash-bout__outlbl {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: 0.7rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
}
.clash-bout__oppname {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--base);
	color: var(--wp--preset--color--contrast);
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.clash-bout__oppname:hover { color: var(--wp--preset--color--red-bright); }
.clash-bout__event {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--subtle);
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	min-width: 0;
}
.clash-bout__date { color: var(--wp--preset--color--muted); font-size: 0.78rem; }
.clash-bout__method,
.clash-bout__chg {
	font-family: var(--wp--preset--font-family--raleway);
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--subtle);
	min-width: 0;
}
.clash-bout__mlbl {
	display: block;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: 0.68rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
}

/* Videos ----------------------------------------------------------------- */
.clash-profile__videos {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: var(--wp--preset--spacing--50);
}
.clash-profile__video { text-decoration: none; display: block; }
.clash-profile__videowell {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 9;
	background: var(--wp--preset--color--surface) center/cover no-repeat;
	border: 1px solid var(--wp--preset--color--line);
	overflow: hidden;
}
.clash-profile__videowell::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}
.clash-profile__play {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: rgba(220, 0, 0, 0.92);
	transition: transform var(--wp--custom--motion--duration--fast, 150ms) ease;
}
.clash-profile__video:hover .clash-profile__play { transform: scale(1.08); }
.clash-profile__videolbl {
	display: block;
	margin-block-start: 0.5rem;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--small);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--wp--preset--color--subtle);
}

/* Socials ---------------------------------------------------------------- */
.clash-profile__socials { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.clash-profile__social {
	display: grid;
	place-items: center;
	width: 2.8rem;
	height: 2.8rem;
	border: 1px solid var(--wp--preset--color--line);
	border-radius: 4px;
	color: var(--wp--preset--color--subtle);
	transition: color var(--wp--custom--motion--duration--fast, 150ms) ease, border-color var(--wp--custom--motion--duration--fast, 150ms) ease;
}
.clash-profile__social:hover { color: var(--wp--preset--color--white); border-color: var(--wp--preset--color--red); }
.clash-profile__social .clash-social-icon { width: 20px; height: 20px; }

/* Related ---------------------------------------------------------------- */
.clash-profile__related {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: var(--wp--preset--spacing--40);
}
.clash-profile__relcard {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.7rem 0.9rem;
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--line);
	text-decoration: none;
	transition: border-color var(--wp--custom--motion--duration--fast, 150ms) ease;
}
.clash-profile__relcard:hover { border-color: var(--wp--preset--color--red); }
.clash-profile__relthumb {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 50%;
	background: var(--wp--preset--color--surface-raised);
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--wp--preset--color--subtle);
}
.clash-profile__relid { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.clash-profile__relname {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--base);
	color: var(--wp--preset--color--contrast);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.clash-profile__relpos { color: var(--wp--preset--color--red-bright); }
.clash-profile__relrec {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--muted);
}

@media (max-width: 768px) {
	.clash-profile__herogrid { grid-template-columns: 1fr; align-items: start; }
	.clash-profile__portrait { max-width: 260px; order: -1; }
	.clash-bout {
		grid-template-columns: 1fr;
		gap: 0.4rem;
	}
	.clash-bout__method:empty,
	.clash-bout__chg:empty { display: none; }
}

/* ===========================================================================
   "HOW RANKINGS WORK" fan explainer (athletes archive) + profile own-ladders.
   =========================================================================== */
.clash-rankhelp {
	margin-block-end: var(--wp--preset--spacing--60);
	border-block-end: 1px solid var(--wp--preset--color--line);
}
.clash-rankhelp__summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding-block: 1rem;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--medium);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wp--preset--color--contrast);
}
.clash-rankhelp__summary::-webkit-details-marker { display: none; }
.clash-rankhelp__summary::before {
	content: "+";
	font-size: 1.2em;
	line-height: 1;
	color: var(--wp--preset--color--red-bright);
}
.clash-rankhelp[open] .clash-rankhelp__summary::before { content: "\2013"; }
.clash-rankhelp__body {
	padding-block-end: 1.25rem;
	max-width: 70ch;
	font-family: var(--wp--preset--font-family--raleway);
	font-size: var(--wp--preset--font-size--base);
	line-height: 1.6;
	color: var(--wp--preset--color--subtle);
}
.clash-rankhelp__body p { margin: 0 0 0.8rem; }
.clash-rankhelp__body ul { margin: 0 0 0.8rem; padding-inline-start: 1.2rem; }
.clash-rankhelp__body li { margin-block-end: 0.3rem; }
.clash-rankhelp__body strong { color: var(--wp--preset--color--contrast); }
.clash-rankhelp__tldr { color: var(--wp--preset--color--white); }

/* Profile: the fighter's own ladders — same tables as the archive, but smaller. */
.clash-profile__ladders {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--60);
}
.clash-profile__ladders .clash-ladder__thumb,
.clash-profile__ladders .clash-ladder__row.is-champion .clash-ladder__thumb { width: 48px; height: 48px; }
.clash-profile__ladders .clash-ladder__weight { font-size: var(--wp--preset--font-size--large); }
.clash-profile__ladders .clash-ladder__name { font-size: var(--wp--preset--font-size--base); }

/* Fight-history bout: discipline (style) + weight-class tags. */
.clash-bout__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-block-end: 0.3rem; }
.clash-bout__tag {
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: 0.6rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wp--preset--color--subtle);
	background: var(--wp--preset--color--surface-raised);
	padding: 0.18em 0.5em;
	border-radius: 4px;
	white-space: nowrap;
}
.clash-bout__tag--disc { color: var(--wp--preset--color--white); background: rgba(220, 0, 0, 0.16); }
.clash-bout__evname { font-weight: 600; }

/* ============================================================================
   CLASH 5 — ticket-sales event page (design handoff 1b). Tokens only.
   ============================================================================ */
.clash5 { --c5-pad: clamp(1rem, 0.4rem + 2.4vw, 2.5rem); color: var(--wp--preset--color--contrast); }
.clash5 *, .clash5 *::before, .clash5 *::after { box-sizing: border-box; }
.clash5-wrap { max-width: 1140px; margin-inline: auto; padding-inline: var(--c5-pad); }

.clash5-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--wp--preset--font-family--oswald); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; padding: 0.85rem 1.4rem; border-radius: var(--wp--custom--radius--base, 8px); border: 1px solid transparent; cursor: pointer; transition: background var(--wp--custom--duration--fast, 150ms) ease, transform var(--wp--custom--duration--fast, 150ms) ease; }
.clash5-btn .clash5-i { width: 18px; height: 18px; }
.clash5-btn--primary { background: var(--wp--preset--color--red); color: var(--wp--preset--color--white); box-shadow: var(--wp--custom--shadow--accent, 0 10px 30px rgba(220,0,0,0.28)); }
.clash5-btn--primary:hover { background: var(--wp--preset--color--red-dark); }
.clash5-btn--primary:active { transform: translateY(1px) scale(0.99); }
.clash5-btn--light { background: var(--wp--preset--color--white); color: var(--wp--preset--color--black); padding: 0.5rem 0.9rem; font-size: 0.8rem; }

.clash5-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--wp--preset--font-family--oswald); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.6rem; border-radius: 4px; border: 1px solid var(--wp--preset--color--line); color: var(--wp--preset--color--contrast); }
.clash5-badge--live { color: var(--wp--preset--color--white); }
.clash5-badge--solid { background: var(--wp--preset--color--red); border-color: var(--wp--preset--color--red); color: var(--wp--preset--color--white); }
.clash5-badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--wp--preset--color--red); }
@media (prefers-reduced-motion: no-preference) { .clash5-badge--live .clash5-badge__dot { animation: clash5-pulse 1.8s ease-in-out infinite; } }
@keyframes clash5-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.clash5-hero { position: relative; overflow: hidden; }
.clash5-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.clash5-hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.78) 52%, rgba(10,10,10,0.55) 100%); }
.clash5-hero__scrim2 { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, var(--wp--preset--color--base) 1%, transparent 30%); }
.clash5-hero__inner { position: relative; z-index: 2; max-width: 1140px; margin-inline: auto; padding: clamp(2.5rem,1rem+5vw,3.4rem) var(--c5-pad) clamp(3rem,1rem+6vw,4rem); display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(1.5rem,1rem+3vw,3rem); align-items: center; }
.clash5-hero__eyebrowrow { display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.clash5-hero__kicker { font-family: var(--wp--preset--font-family--oswald); font-weight: 500; font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wp--preset--color--subtle); }
.clash5-hero__h1 { font-family: var(--wp--preset--font-family--oswald); font-weight: 700; font-size: clamp(3rem,1rem+7vw,5.75rem); line-height: 0.9; letter-spacing: 0.005em; text-transform: uppercase; color: var(--wp--preset--color--white); margin: 0; }
.clash5-accent { color: var(--wp--preset--color--red); }
.clash5-hero__tagline { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.9rem; font-family: var(--wp--preset--font-family--raleway); font-size: 0.95rem; color: var(--wp--preset--color--contrast); }
.clash5-hero__bar { width: 28px; height: 2px; background: var(--wp--preset--color--red); flex: none; }
.clash5-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.1rem; margin-top: 1.1rem; font-family: var(--wp--preset--font-family--oswald); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--wp--preset--color--white); }
.clash5-hero__venue { font-weight: 700; }
.clash5-hero__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--wp--preset--color--red); flex: none; }

.clash5-cd { display: flex; align-items: flex-start; gap: 0.6rem; margin-top: 1.7rem; }
.clash5-cd__unit { text-align: center; min-width: 64px; background: var(--wp--preset--color--surface-raised); border: 1px solid var(--wp--preset--color--line); border-radius: var(--wp--custom--radius--base, 8px); padding: 0.7rem 0.85rem; }
.clash5-cd__num { display: block; font-family: var(--wp--preset--font-family--oswald); font-weight: 700; font-size: clamp(2rem,1rem+3vw,3.4rem); line-height: 1; letter-spacing: 0.02em; color: var(--wp--preset--color--white); font-variant-numeric: tabular-nums; }
.clash5-cd__lbl { display: block; font-family: var(--wp--preset--font-family--oswald); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--wp--preset--color--muted); margin-top: 0.45rem; }
.clash5-cd__sep { font-family: var(--wp--preset--font-family--oswald); font-weight: 700; font-size: clamp(2rem,1rem+3vw,3.4rem); color: var(--wp--preset--color--red); line-height: 1; margin-top: 0.5rem; }

.clash5-tickets { background: var(--wp--preset--color--surface-raised); border: 1px solid var(--wp--preset--color--line); border-radius: var(--wp--custom--radius--base, 8px); padding: 1.4rem; box-shadow: 0 14px 38px rgba(0,0,0,0.55); }
.clash5-tickets__head { display: flex; justify-content: space-between; align-items: baseline; gap: 0.6rem; margin-bottom: 1rem; }
.clash5-tickets__title { font-family: var(--wp--preset--font-family--oswald); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--wp--preset--color--white); }
.clash5-tickets__from { font-family: var(--wp--preset--font-family--raleway); font-size: 0.85rem; color: var(--wp--preset--color--subtle); }
.clash5-tickets__list { display: flex; flex-direction: column; gap: 0.6rem; }
.clash5-tier { display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem 0.9rem; border: 1px solid var(--wp--preset--color--line); border-radius: var(--wp--custom--radius--base, 8px); background: rgba(255,255,255,0.02); text-align: left; cursor: pointer; width: 100%; transition: border-color 150ms ease, background 150ms ease; }
.clash5-tier:hover { border-color: var(--wp--preset--color--line-strong); }
.clash5-tier.is-selected { border-color: var(--wp--preset--color--red); background: rgba(220,0,0,0.08); }
.clash5-tier__dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--wp--preset--color--line); flex: none; }
.clash5-tier.is-selected .clash5-tier__dot { border-color: var(--wp--preset--color--red); background: radial-gradient(circle, var(--wp--preset--color--red) 40%, transparent 46%); }
.clash5-tier__id { flex: 1 1 auto; min-width: 0; }
.clash5-tier__name { display: block; font-family: var(--wp--preset--font-family--oswald); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--wp--preset--color--white); }
.clash5-tier__chip { font-size: 0.55rem; letter-spacing: 0.1em; color: var(--wp--preset--color--contrast); background: rgba(255,255,255,0.1); border: 1px solid var(--wp--preset--color--line); padding: 0.1em 0.4em; border-radius: 4px; vertical-align: middle; }
.clash5-tier__sub { display: block; font-family: var(--wp--preset--font-family--raleway); font-size: 0.75rem; color: var(--wp--preset--color--subtle); margin-top: 0.15rem; }
.clash5-tier__price { font-family: var(--wp--preset--font-family--oswald); font-weight: 700; font-size: 1.25rem; line-height: 1; color: var(--wp--preset--color--white); flex: none; }
.clash5-tickets__cta { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; margin-top: 1.1rem; font-family: var(--wp--preset--font-family--oswald); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; padding: 0.9rem 1.2rem; border-radius: var(--wp--custom--radius--base, 8px); background: var(--wp--preset--color--red); color: var(--wp--preset--color--white); box-shadow: var(--wp--custom--shadow--accent, 0 10px 30px rgba(220,0,0,0.28)); transition: background 150ms ease, transform 150ms ease; }
.clash5-tickets__cta:hover { background: var(--wp--preset--color--red-dark); }
.clash5-tickets__cta:active { transform: translateY(1px) scale(0.99); }
.clash5-tickets__cta .clash5-i { width: 18px; height: 18px; }
.clash5-tickets__fine { font-family: var(--wp--preset--font-family--raleway); font-size: 0.75rem; color: var(--wp--preset--color--muted); text-align: center; margin: 0.8rem 0 0; }

.clash5-stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); background: var(--wp--preset--color--surface); border-top: 1px solid var(--wp--preset--color--line); border-bottom: 1px solid var(--wp--preset--color--line); border-right: 1px solid var(--wp--preset--color--line); }
.clash5-stat { padding: 1.6rem 0.5rem; border-left: 1px solid var(--wp--preset--color--line); text-align: center; }
.clash5-stat__v { display: block; font-family: var(--wp--preset--font-family--oswald); font-weight: 700; font-size: clamp(2rem,1rem+3vw,3.25rem); line-height: 1; color: var(--wp--preset--color--white); }
.clash5-stat__l { display: block; font-family: var(--wp--preset--font-family--oswald); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wp--preset--color--subtle); margin-top: 0.5rem; }

.clash5-section { padding-block: clamp(3rem,1.5rem+5vw,4.5rem); }
.clash5-section--surface { background: var(--wp--preset--color--surface); border-top: 1px solid var(--wp--preset--color--line); }
.clash5-shead { max-width: 760px; }
.clash5-shead--center { margin-inline: auto; text-align: center; }
.clash5-eyebrow { font-family: var(--wp--preset--font-family--oswald); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wp--preset--color--red); margin: 0 0 0.5rem; }
.clash5-shead__h { font-family: var(--wp--preset--font-family--oswald); font-weight: 600; font-size: clamp(1.8rem,1rem+3vw,2.8rem); line-height: 1.05; letter-spacing: 0.02em; text-transform: uppercase; color: var(--wp--preset--color--white); margin: 0; }
.clash5-shead__d { font-family: var(--wp--preset--font-family--raleway); font-size: 1rem; color: var(--wp--preset--color--subtle); margin: 0.7rem 0 0; }

.clash5-main { border: 1px solid var(--wp--preset--color--red); border-radius: var(--wp--custom--radius--base, 8px); overflow: hidden; background: linear-gradient(180deg, rgba(220,0,0,0.12), var(--wp--preset--color--surface-raised) 60%); margin-top: 2rem; }
.clash5-main__top { display: flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 0.9rem 1rem; border-bottom: 1px solid var(--wp--preset--color--line); flex-wrap: wrap; }
.clash5-main__sub { font-family: var(--wp--preset--font-family--oswald); font-weight: 500; font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wp--preset--color--subtle); }
.clash5-main__body { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; }
.clash5-well { position: relative; min-height: 320px; overflow: hidden; }
.clash5-well img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.clash5-well__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.93), transparent 58%); }
.clash5-well__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.1rem 1.25rem; text-align: center; }
.clash5-well__name { display: block; font-family: var(--wp--preset--font-family--oswald); font-weight: 700; font-size: 1.4rem; text-transform: uppercase; color: var(--wp--preset--color--white); }
.clash5-well__corner { display: block; font-family: var(--wp--preset--font-family--oswald); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wp--preset--color--subtle); margin-top: 0.3rem; }
.clash5-well__corner--home { color: var(--wp--preset--color--red); }
.clash5-vs { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 1.4rem; background: var(--wp--preset--color--black); }
.clash5-vs__v { font-family: var(--wp--preset--font-family--oswald); font-weight: 700; font-size: 2rem; color: var(--wp--preset--color--red); letter-spacing: 0.06em; }
.clash5-vs__l { font-family: var(--wp--preset--font-family--oswald); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wp--preset--color--muted); white-space: nowrap; }
.clash5-main__note { font-family: var(--wp--preset--font-family--raleway); font-size: 0.82rem; color: var(--wp--preset--color--subtle); padding: 1rem 1.25rem; border-top: 1px solid var(--wp--preset--color--line); margin: 0; }

.clash5-under { margin-top: 1.5rem; }
.clash5-under__label { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.9rem; font-family: var(--wp--preset--font-family--oswald); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wp--preset--color--subtle); }
.clash5-under__rule { flex: 1 1 auto; height: 1px; background: var(--wp--preset--color--line); }
.clash5-under__cap { font-family: var(--wp--preset--font-family--raleway); font-size: 0.82rem; color: var(--wp--preset--color--subtle); margin: 0.9rem 0 0; }

.clash5-venue { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem,1rem+3vw,2.75rem); align-items: center; margin-top: 2rem; }
.clash5-venue__rows { display: flex; flex-direction: column; }
.clash5-vrow { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--wp--preset--color--line); }
.clash5-vrow:last-child { border-bottom: 0; }
.clash5-vrow__icon { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border: 1px solid var(--wp--preset--color--line); border-radius: var(--wp--custom--radius--base, 8px); color: var(--wp--preset--color--red); }
.clash5-vrow__t { display: block; font-family: var(--wp--preset--font-family--oswald); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wp--preset--color--white); }
.clash5-vrow__v { display: block; font-family: var(--wp--preset--font-family--raleway); font-size: 0.9rem; color: var(--wp--preset--color--subtle); margin-top: 0.25rem; }
.clash5-venue__photo { position: relative; border-radius: var(--wp--custom--radius--base, 8px); overflow: hidden; border: 1px solid var(--wp--preset--color--line); min-height: 360px; }
.clash5-venue__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.clash5-venue__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78), transparent 55%); }
.clash5-venue__overlay { position: absolute; left: 1.1rem; bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }

.clash5-watch { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.25rem; }
.clash5-wcard { background: var(--wp--preset--color--surface-raised); border: 1px solid var(--wp--preset--color--line); border-radius: var(--wp--custom--radius--base, 8px); padding: 1.5rem; }
.clash5-wcard__icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--wp--preset--color--line); border-radius: var(--wp--custom--radius--base, 8px); color: var(--wp--preset--color--red); margin-bottom: 1rem; }
.clash5-wcard__h { font-family: var(--wp--preset--font-family--oswald); font-weight: 600; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--wp--preset--color--white); margin: 0 0 0.4rem; }
.clash5-wcard__d { font-family: var(--wp--preset--font-family--raleway); font-size: 0.9rem; color: var(--wp--preset--color--subtle); line-height: 1.5; margin: 0; }

.clash5-close { background: linear-gradient(180deg, rgba(220,0,0,0.2), transparent), var(--wp--preset--color--black); border-top: 2px solid var(--wp--preset--color--red); padding-block: clamp(2.75rem,1.5rem+4vw,3.6rem); text-align: center; }
.clash5-close__h { font-family: var(--wp--preset--font-family--oswald); font-weight: 700; font-size: clamp(1.9rem,1rem+3vw,2.9rem); text-transform: uppercase; color: var(--wp--preset--color--white); letter-spacing: 0.02em; margin: 0; }
.clash5-close__sub { font-family: var(--wp--preset--font-family--raleway); font-size: 0.95rem; color: var(--wp--preset--color--subtle); margin: 0.6rem 0 1.3rem; }
.clash5-close__cta { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.clash5-close__note { font-family: var(--wp--preset--font-family--raleway); font-size: 0.82rem; color: var(--wp--preset--color--subtle); }

@media (max-width: 900px) {
	.clash5-hero__inner { grid-template-columns: 1fr; }
	.clash5-stats { grid-template-columns: repeat(2,1fr); border-right: 0; }
	.clash5-stat:nth-child(2n) { border-right: 1px solid var(--wp--preset--color--line); }
	.clash5-main__body { grid-template-columns: 1fr; }
	.clash5-vs { padding: 1rem; }
	.clash5-venue { grid-template-columns: 1fr; }
	.clash5-watch { grid-template-columns: 1fr; }
}

/* ============================================================================
   CLASH 5 — design-handoff fidelity pass: Oswald latin-ext (Estonian glyphs),
   exact 8px-scale spacing (72px section rhythm), stronger hero scrim,
   edge-to-edge corner wells.
   ============================================================================ */
@font-face { font-family: "Oswald"; font-style: normal; font-weight: 400; font-display: swap; src: url(assets/fonts/oswald-400-ext.woff2) format("woff2"); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+032C, U+0334, U+0337, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Oswald"; font-style: normal; font-weight: 500; font-display: swap; src: url(assets/fonts/oswald-500-ext.woff2) format("woff2"); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+032C, U+0334, U+0337, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Oswald"; font-style: normal; font-weight: 600; font-display: swap; src: url(assets/fonts/oswald-600-ext.woff2) format("woff2"); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+032C, U+0334, U+0337, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Oswald"; font-style: normal; font-weight: 700; font-display: swap; src: url(assets/fonts/oswald-700-ext.woff2) format("woff2"); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+032C, U+0334, U+0337, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

/* Headings explicitly Oswald (don't depend on the inherited preset var). */
.clash5-hero__h1 { font-family: "Oswald", system-ui, sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.005em; }
.clash5-shead__h, .clash5-close__h, .clash5-well__name, .clash5-tickets__title, .clash5-wcard__h, .clash5-vs__v, .clash5-cd__num, .clash5-stat__v { font-family: "Oswald", system-ui, sans-serif; }
.clash5-shead__h { font-weight: 600; }

/* Exact container + 72px section rhythm. */
.clash5-wrap { max-width: 1140px; margin-inline: auto; padding-left: 40px; padding-right: 40px; }
.clash5-section { padding-block: 72px; }
.clash5-hero__inner { max-width: 1140px; padding: 54px 40px 64px; gap: 48px; }
.clash5-shead { margin-bottom: 0; }
.clash5-main { margin-top: 32px; }
.clash5-under { margin-top: 24px; }
.clash5-under__label { margin-bottom: 14px; }
.clash5-venue { margin-top: 32px; }
.clash5-vrow { padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.clash5-watch { margin-top: 36px; gap: 20px; }
.clash5-stat { padding: 26px 8px; }
.clash5-close { padding-block: 58px; }

/* Stronger hero protection scrim — the headline must dominate the photo. */
.clash5-hero__scrim { background: linear-gradient(90deg, rgba(10, 10, 10, 0.96) 0%, rgba(10, 10, 10, 0.78) 52%, rgba(10, 10, 10, 0.55) 100%); }
.clash5-hero__scrim2 { background: linear-gradient(to top, #0a0a0a 1%, transparent 30%); }

/* Corner wells: fighter image fills the panel edge-to-edge on a dark base. */
.clash5-well { background: linear-gradient(180deg, #1a1a1a, #000); min-height: 320px; }
.clash5-well img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }

@media (max-width: 600px) {
	.clash5-wrap, .clash5-hero__inner { padding-left: 20px; padding-right: 20px; }
	.clash5-hero__inner { padding-top: 36px; padding-bottom: 44px; }
}

/* Clash 5 hero tweaks: larger countdown + red "Piletid müügil" badge. */
.clash5-cd__unit { min-width: 74px; padding: 0.85rem 1rem; }
.clash5-cd__num, .clash5-cd__sep { font-size: clamp(2.5rem, 1rem + 4vw, 4.25rem); }
.clash5-badge--live { background: var(--wp--preset--color--red); border-color: var(--wp--preset--color--red); color: var(--wp--preset--color--white); }
.clash5-badge--live .clash5-badge__dot { background: var(--wp--preset--color--white); }

/* Countdown: fixed-width boxes + tabular figures so the row never reflows. */
.clash5-cd__unit { width: clamp(70px, 8.5vw, 108px); min-width: 0; }
.clash5-cd__num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

/* Stat strip: larger numbers. */
.clash5-stat__v { font-size: clamp(2.6rem, 1.4rem + 3.4vw, 4.25rem); }

/* Home-hero countdown — compact variant of the Clash 5 countdown. */
.clash-hero__cd { margin-top: 1.1rem; gap: 0.4rem; flex-wrap: wrap; }
.clash-hero__cd .clash5-cd__unit { width: clamp(54px, 5.5vw, 76px); padding: 0.5rem 0.5rem; }
.clash-hero__cd .clash5-cd__num, .clash-hero__cd .clash5-cd__sep { font-size: clamp(1.5rem, 1rem + 2vw, 2.4rem); }
.clash-hero__cd .clash5-cd__lbl { font-size: 0.5rem; }

/* ============================================================================
   GALLERY LIGHTBOX — in-page photo browsing (event galleries).
   ============================================================================ */
body.clash-lb-open { overflow: hidden; }
.clash-lb { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.93); }
.clash-lb[hidden] { display: none; }
.clash-lb__stage { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; padding: clamp(1rem, 4vw, 3rem); }
.clash-lb__img { max-width: min(92vw, 1400px); max-height: 86vh; width: auto; height: auto; object-fit: contain; border: 1px solid rgba(255, 255, 255, 0.12); }
.clash-lb__close, .clash-lb__nav { position: absolute; display: grid; place-items: center; background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 255, 255, 0.18); color: #fff; cursor: pointer; font-family: var(--wp--preset--font-family--oswald); line-height: 1; transition: background 150ms ease, border-color 150ms ease; }
.clash-lb__close:hover, .clash-lb__nav:hover { background: var(--wp--preset--color--red); border-color: var(--wp--preset--color--red); }
.clash-lb__close { top: clamp(0.5rem, 2vw, 1.5rem); right: clamp(0.5rem, 2vw, 1.5rem); width: 46px; height: 46px; font-size: 1.6rem; border-radius: 4px; }
.clash-lb__nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; border-radius: 50%; }
.clash-lb__prev { left: clamp(0.5rem, 2vw, 2rem); }
.clash-lb__next { right: clamp(0.5rem, 2vw, 2rem); }
.clash-lb__count { position: absolute; bottom: clamp(0.75rem, 2.5vw, 1.75rem); left: 50%; transform: translateX(-50%); font-family: var(--wp--preset--font-family--oswald); font-size: 0.8rem; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.7); }
.clash-evsingle-gallery__item { cursor: zoom-in; }
@media (max-width: 600px) { .clash-lb__nav { width: 44px; height: 44px; font-size: 1.6rem; } }

/* Gallery: cap visible thumbs; the "+N" tile + hidden items stay browsable. */
.clash-evsingle-gallery__item { position: relative; }
.clash-evsingle-gallery__item.is-hidden { display: none; }
.clash-evsingle-gallery__item.has-more::after {
	content: attr(data-more);
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(0, 0, 0, 0.66);
	color: #fff;
	font-family: var(--wp--preset--font-family--oswald);
	font-weight: 600;
	font-size: clamp(1.3rem, 3vw, 2rem);
	letter-spacing: 0.04em;
}

/* ============================================================================
   MOBILE FIXES (live review): fight-card stacking, festival hero title,
   bottom-bar clearance.
   ============================================================================ */

/* Fight-card: stack each bout vertically on phones so names don't overlap. */
@media (max-width: 640px) {
	.clash-fightcard__pair { grid-template-columns: 1fr; gap: 0.3rem; align-items: stretch; }
	.clash-fightcard__fighter,
	.clash-fightcard__fighter:last-child { flex-direction: row; text-align: left; gap: 0.7rem; }
	.clash-fightcard__fighter:last-child .clash-fightcard__info { align-items: flex-start; }
	.clash-fightcard__fighter:last-child .clash-fightcard__sub { flex-direction: row; }
	.clash-fightcard__photo { width: 56px; aspect-ratio: 3 / 4; }
	.clash-fightcard__photo--tba,
	.clash-fightcard__photo--empty { width: 46px; }
	.clash-fightcard__photo--tba::after,
	.clash-fightcard__photo--empty::after { font-size: 1.1rem; }
	.clash-fightcard__name { font-size: var(--wp--preset--font-size--base); }
	.clash-fightcard__vs { justify-self: start; margin-left: 64px; }
}

/* Festival hero title: shrink so the long Estonian word never overflows. */
@media (max-width: 600px) {
	.clash-fest-hero__sub { font-size: clamp(1.85rem, 8vw, 2.7rem); overflow-wrap: anywhere; }
}

/* Champions slider on phones: centre one card (with peeks), not the gap. */
@media (max-width: 600px) {
	.clash-slider__track { padding-inline: max(8px, calc((100vw - 232px) / 2)); scroll-padding-inline: 0; }
	.clash-slider__track > .clash-fcard { scroll-snap-align: center; }
}
