/* B-72 theme styles. Colours and fonts come from theme.json presets. */

:root {
	--b72-red: var(--wp--preset--color--tablered, #9A2D26);
	--b72-red-deep: var(--wp--preset--color--tablered-deep, #75211C);
	--b72-gold: var(--wp--preset--color--gold, #E9C84F);
	--b72-ink: var(--wp--preset--color--ink, #23140F);
	--b72-ink-soft: var(--wp--preset--color--ink-soft, #6A5A52);
	--b72-brown: var(--wp--preset--color--brown, #3A2620);
	--b72-paper: var(--wp--preset--color--paper, #F6F3EE);
	--b72-surface: var(--wp--preset--color--surface, #FFFFFF);
	--b72-rule: var(--wp--preset--color--rule, #E3DBD1);
	--b72-display: var(--wp--preset--font-family--anybody, "Arial Narrow", sans-serif);
}

:focus-visible { outline: 3px solid var(--b72-ink); outline-offset: 3px; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { font-stretch: 80%; letter-spacing: -0.01em; }

/* Header and footer */
.wp-site-blocks > header,
.wp-site-blocks > footer {
	padding-inline: var(--wp--style--root--padding-left, 20px);
}
.b72-header,
.b72-footer {
	max-width: var(--wp--style--global--wide-size, 1200px);
	margin-inline: auto;
}
.b72-header { padding-block: 20px; gap: 20px; }
.b72-brand { gap: 12px; }
.b72-brand .wp-block-site-logo img { display: block; }
.b72-site-title { font-size: 0.95rem; font-weight: 700; line-height: 1.2; margin: 0; }
.b72-site-title a { color: var(--b72-ink); text-decoration: none; }
.b72-site-tagline { font-size: 0.95rem; line-height: 1.2; color: var(--b72-ink-soft); margin: 0; }
.b72-nav-wrap { gap: 10px 26px; }
.b72-header .wp-block-navigation a { text-decoration: none; }
.b72-header .wp-block-navigation a:hover { color: var(--b72-red); text-decoration: underline; text-underline-offset: 4px; }
.b72-join .wp-block-button__link { padding: 9px 18px; font-size: 0.97rem; }

.b72-footer { padding-block: 48px 32px; margin-top: 48px; border-top: 1px solid var(--b72-rule); }
.b72-footer h3 { font-size: 1rem; margin: 0 0 6px; }
.b72-footer p { color: var(--b72-ink-soft); margin: 0; }

.b72-main { padding-bottom: 24px; }

/* ---- Hero: the table ------------------------------------------------ */
.wp-block-group.b72-table {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	min-height: 460px;
	margin-block: 8px 12px;
	border-radius: 10px;
	overflow: hidden;
	color: #fff;
	box-shadow: 0 30px 50px -30px rgba(35, 20, 15, 0.55), 0 0 0 6px var(--b72-red-deep);
	/* Layers, top to bottom: net mesh (2), net band, highlight, table surface. */
	background:
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.45) 0 1px, transparent 1px 6px) 50% 0 / 10px 100% no-repeat,
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.45) 0 1px, transparent 1px 6px) 50% 0 / 10px 100% no-repeat,
		linear-gradient(90deg,
			transparent calc(50% - 7px), #fff calc(50% - 7px), #fff calc(50% - 5px),
			rgba(35, 20, 15, 0.6) calc(50% - 5px), rgba(35, 20, 15, 0.6) calc(50% + 5px),
			#fff calc(50% + 5px), #fff calc(50% + 7px), transparent calc(50% + 7px)),
		radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.05), transparent 60%),
		var(--b72-red);
}
.b72-table::before { /* 2 cm edge line */
	content: "";
	position: absolute;
	inset: 14px;
	border: 4px solid var(--b72-gold);
	border-radius: 3px;
	pointer-events: none;
}
.b72-table::after { /* centre line */
	content: "";
	position: absolute;
	left: 18px;
	right: 18px;
	top: 50%;
	height: 2px;
	transform: translateY(-1px);
	background: var(--b72-gold);
	pointer-events: none;
}
.wp-block-group.b72-table > * { position: relative; z-index: 1; margin: 0; }

.wp-block-group.b72-q {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: clamp(36px, 5vw, 60px);
}
.wp-block-group.b72-q > * { margin: 0; }
.b72-q-tl { justify-content: flex-end; padding-bottom: 28px !important; gap: 0.3em !important; }
.b72-q-tr { justify-content: flex-end; padding-bottom: 28px !important; padding-left: clamp(48px, 6vw, 80px) !important; }
.b72-q-bl { justify-content: flex-start; padding-top: 28px !important; }
.b72-q-br { justify-content: flex-start; padding-top: 28px !important; padding-left: clamp(48px, 6vw, 80px) !important; }

.b72-table .b72-hero-title {
	font-family: var(--b72-display);
	font-weight: 900;
	font-stretch: 72%;
	font-size: clamp(2.8rem, 6.4vw, 5.4rem);
	line-height: 0.92;
	letter-spacing: -0.015em;
	text-transform: uppercase;
	color: var(--b72-gold);
}
.b72-table .b72-hero-sub {
	font-family: var(--b72-display);
	font-weight: 900;
	font-style: italic;
	font-stretch: 130%;
	font-size: clamp(1.45rem, 3.3vw, 2.8rem);
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
}
.b72-table .b72-hero-lede { max-width: 34ch; font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); }
.b72-table a { color: #fff; }
.b72-table .wp-block-buttons { gap: 12px; }
.b72-table .wp-block-button__link { border: 2px solid #fff; }
.b72-table .b72-btn-gold .wp-block-button__link { background: var(--b72-gold); border-color: var(--b72-gold); color: var(--b72-ink); }
.b72-table .b72-btn-gold .wp-block-button__link:hover { background: #F1D673; }
.b72-table .is-style-outline .wp-block-button__link { background: transparent; color: #fff; }
.b72-table .is-style-outline .wp-block-button__link:hover { background: rgba(255, 255, 255, 0.12); }

.b72-quick-facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.b72-quick-facts li { display: grid; grid-template-columns: 7.5em 1fr; gap: 12px; color: rgba(255, 255, 255, 0.92); }
.b72-quick-facts strong { font-weight: 600; color: rgba(255, 255, 255, 0.8); }

/* ---- Neste trening scoreboard -------------------------------------- */
.b72-next__label { font-weight: 600; font-size: 0.95rem; color: rgba(255, 255, 255, 0.85); margin: 0 0 10px; }
.b72-board { display: flex; gap: 8px; }
.b72-flip {
	position: relative;
	min-width: 1.2em;
	padding: 10px 14px 8px;
	border-radius: 8px;
	background: var(--b72-ink);
	color: #fff;
	font-family: var(--b72-display);
	font-weight: 800;
	font-stretch: 70%;
	font-size: clamp(2.2rem, 4.4vw, 3.4rem);
	line-height: 1;
	text-align: center;
	font-variant-numeric: tabular-nums;
	box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.6);
}
.b72-flip::after { /* hinge */
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 2px;
	background: rgba(0, 0, 0, 0.35);
}
.b72-flip--day {
	display: flex;
	align-items: center;
	padding-inline: 16px;
	background: var(--b72-gold);
	color: var(--b72-ink);
	font-stretch: 90%;
	font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}
.b72-flip--day::after { display: none; }
.b72-next__meta { margin: 12px 0 0; }
.b72-next__meta span { color: rgba(255, 255, 255, 0.8); }
/* Outside the table (e.g. placed elsewhere by an editor) */
.b72-next:not(.b72-table *) .b72-next__label,
.b72-next:not(.b72-table *) .b72-next__meta span { color: var(--b72-ink-soft); }

/* ---- Sections ------------------------------------------------------- */
.wp-block-group.b72-section { padding-top: 72px; }
.wp-block-group.b72-section > * { margin-block: 0; }
.b72-section-head { gap: 16px; margin-bottom: 28px !important; }
.b72-section-head h2 { margin: 0; }
.b72-section-head p { color: var(--b72-ink-soft); max-width: 52ch; margin: 0; }
.b72-muted { color: var(--b72-ink-soft); max-width: 40ch; }

/* ---- Timetable ------------------------------------------------------ */
.b72-tt-scroll { overflow-x: auto; background: var(--b72-surface); border: 1px solid var(--b72-rule); border-radius: 12px; }
.b72-tt { display: grid; position: relative; padding: 0 14px 14px 0; }
.b72-tt-day { grid-row: 1; display: flex; align-items: center; padding-left: 8px; font-weight: 700; font-size: 0.95rem; border-bottom: 1px solid var(--b72-rule); }
.b72-tt-day.is-today { color: var(--b72-red); }
.b72-tt-date { margin-left: 6px; font-weight: 500; color: var(--b72-ink-soft); font-variant-numeric: tabular-nums; }
.b72-tt-day.is-today .b72-tt-date { color: inherit; }
.b72-tt-day.is-today .b72-tt-date::after { content: " (i dag)"; }
.b72-tt-sep { grid-row: 1 / -1; border-left: 1px solid var(--b72-rule); }
.b72-tt-hour { grid-column: 1; padding-right: 10px; text-align: right; font-size: 0.8rem; color: var(--b72-ink-soft); font-variant-numeric: tabular-nums; transform: translateY(-0.6em); }
.b72-tt-line { border-top: 1px dashed var(--b72-rule); }
.b72-session {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 2px 3px;
	padding: 7px 9px;
	overflow: hidden;
	border-radius: 7px;
	font-size: 0.82rem;
	line-height: 1.25;
}
.b72-session b { font-size: 0.88rem; }
.b72-session__time { font-variant-numeric: tabular-nums; opacity: 0.9; }
.b72-session__coach { opacity: 0.85; }

/* Session colours come from each group (Treningstider → Grupper) as inline styles. */

.b72-legend { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 18px 0 0; padding: 0; list-style: none; font-size: 0.95rem; }
.b72-legend li { display: flex; align-items: baseline; gap: 10px; max-width: 30ch; }
.b72-legend i { flex: none; width: 14px; height: 14px; border-radius: 4px; transform: translateY(2px); }
.b72-legend span { color: var(--b72-ink-soft); }
.b72-legend strong { color: var(--b72-ink); }

/* ---- New players ---------------------------------------------------- */
.b72-newbie { gap: 48px; }
.b72-newbie h2 { margin: 0 0 16px; }
.b72-steps { list-style: none; margin: 0; padding: 0; counter-reset: b72-step; }
.b72-steps li {
	position: relative;
	counter-increment: b72-step;
	padding: 22px 0 22px 84px;
	border-top: 1px solid var(--b72-rule);
	color: var(--b72-ink-soft);
	max-width: 60ch;
}
.b72-steps li:last-child { border-bottom: 1px solid var(--b72-rule); }
.b72-steps li::before {
	content: counter(b72-step);
	position: absolute;
	left: 0;
	top: 20px;
	font-family: var(--b72-display);
	font-weight: 900;
	font-stretch: 70%;
	font-size: 3rem;
	line-height: 0.9;
	color: var(--b72-red);
}
.b72-steps strong { display: block; margin-bottom: 4px; font-size: 1.2rem; color: var(--b72-ink); }

/* ---- News ----------------------------------------------------------- */
.b72-news { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; }
.b72-feature {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	min-height: 300px;
	padding: 32px;
	overflow: hidden;
	border-radius: 12px;
	background: var(--b72-red);
	color: #fff;
}
.b72-feature::after { /* a quarter of the table */
	content: "";
	position: absolute;
	right: -40px;
	bottom: -40px;
	width: 220px;
	height: 160px;
	border: 4px solid rgba(233, 200, 79, 0.4);
	border-radius: 4px;
}
.b72-feature time { font-weight: 600; font-size: 0.95rem; opacity: 0.85; }
.b72-feature h3 {
	margin: 8px 0 0;
	font-family: var(--b72-display);
	font-weight: 800;
	font-stretch: 80%;
	font-size: clamp(1.8rem, 3.2vw, 2.5rem);
	line-height: 1.02;
}
.b72-feature p { max-width: 44ch; margin: 12px 0 0; opacity: 0.92; }
.b72-feature a { position: relative; z-index: 1; color: #fff; font-weight: 700; }
.b72-news-list { list-style: none; margin: 0; padding: 0; }
.b72-news-list li { padding-block: 18px; border-top: 1px solid var(--b72-rule); }
.b72-news-list li:last-child { border-bottom: 1px solid var(--b72-rule); }
.b72-news-list time { font-size: 0.9rem; color: var(--b72-ink-soft); }
.b72-news-list a { display: block; margin-top: 2px; font-weight: 700; font-size: 1.15rem; line-height: 1.3; color: var(--b72-ink); text-decoration: none; }
.b72-news-list a:hover { color: var(--b72-red); text-decoration: underline; text-underline-offset: 4px; }
.b72-news-list p { margin: 4px 0 0; font-size: 0.97rem; color: var(--b72-ink-soft); }

/* ---- Sponsors ------------------------------------------------------- */
.b72-sponsors { padding-top: 28px; border-top: 1px solid var(--b72-rule); }
.b72-sponsors__label { margin: 0 0 16px; font-size: 0.95rem; color: var(--b72-ink-soft); }
.b72-sponsors ul { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 48px; margin: 0; padding: 0; list-style: none; }
.b72-sponsors img { display: block; width: auto; max-width: 160px; max-height: 52px; object-fit: contain; }
.b72-sponsor-name { font-family: var(--b72-display); font-weight: 800; font-size: 1.5rem; color: var(--b72-ink-soft); }
.b72-sponsors a { text-decoration: none; }

/* ---- News archive and articles ------------------------------------- */
.b72-post-list { list-style: none; padding: 0; }
.b72-post-list > li { padding-block: 22px; border-top: 1px solid var(--b72-rule); }
.b72-post-list > li > * { margin-block: 4px 0; }
.b72-post-list__title { font-family: inherit; font-stretch: 100%; font-size: 1.4rem; font-weight: 700; letter-spacing: 0; }
.b72-post-list__title a { color: var(--b72-ink); text-decoration: none; }
.b72-post-list__title a:hover { color: var(--b72-red); text-decoration: underline; }
.b72-post-title { margin-top: 8px; }

/* ---- Small screens -------------------------------------------------- */
@media (max-width: 860px) {
	.wp-block-group.b72-table {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		min-height: 0;
		background: radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.05), transparent 60%), var(--b72-red);
	}
	.b72-table::after { display: none; }
	.b72-q-tl { order: 1; padding-bottom: 12px !important; }
	.b72-q-bl { order: 2; padding-top: 12px !important; padding-bottom: 56px !important; }
	.b72-q-tr { order: 3; padding-top: 56px !important; padding-bottom: 12px !important; padding-left: clamp(36px, 5vw, 60px) !important; }
	.b72-q-br { order: 4; padding-top: 12px !important; padding-left: clamp(36px, 5vw, 60px) !important; }
	.b72-q-tr::before { /* the net, now across the table */
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: -6px;
		height: 12px;
		border-block: 2px solid #fff;
		background:
			repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.45) 0 1px, transparent 1px 6px),
			repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.45) 0 1px, transparent 1px 6px),
			rgba(35, 20, 15, 0.6);
	}
	.b72-news { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
	.wp-block-group.b72-q { padding: 32px 26px; }
	.b72-quick-facts li { grid-template-columns: 1fr; gap: 0; }
}
@media (prefers-reduced-motion: reduce) {
	* { scroll-behavior: auto !important; }
}
html { scroll-behavior: smooth; }

/* ---- Cancelled sessions --------------------------------------------- */
.b72-session.is-cancelled {
	background: repeating-linear-gradient(135deg, var(--b72-surface) 0 8px, var(--b72-paper) 8px 16px) !important;
	color: var(--b72-ink-soft) !important;
	box-shadow: inset 0 0 0 1px var(--b72-rule) !important;
}
.b72-session.is-cancelled b,
.b72-session.is-cancelled .b72-session__time { text-decoration: line-through; }
.b72-session__cancel {
	align-self: flex-start;
	margin-top: 4px;
	padding: 2px 7px;
	border-radius: 4px;
	background: var(--b72-ink);
	color: #fff;
	font-weight: 700;
	font-size: 0.78rem;
	opacity: 1;
}
.b72-break-notice {
	margin: 0 0 12px;
	padding: 12px 16px;
	border-radius: 10px;
	background: var(--b72-gold);
	color: var(--b72-ink);
}

/* ---- Tournament page ------------------------------------------------ */
.b72-editor-note { display: none; }
.editor-styles-wrapper .b72-editor-note {
	display: block;
	padding: 12px 16px;
	border: 2px dashed var(--b72-red);
	border-radius: 8px;
	background: var(--b72-surface);
	font-size: 0.95rem;
}

.wp-block-group.b72-tour-hero {
	position: relative;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 32px 48px;
	align-items: end;
	margin-block: 8px 0;
	padding: clamp(36px, 5vw, 60px);
	border-radius: 10px;
	overflow: hidden;
	color: #fff;
	background: radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.05), transparent 60%), var(--b72-red);
	box-shadow: 0 30px 50px -30px rgba(35, 20, 15, 0.55), 0 0 0 6px var(--b72-red-deep);
}
.b72-tour-hero::before { /* edge line, as on the table */
	content: "";
	position: absolute;
	inset: 14px;
	border: 4px solid var(--b72-gold);
	border-radius: 3px;
	pointer-events: none;
}
.wp-block-group.b72-tour-hero > *,
.wp-block-group.b72-tour-hero__main > *,
.wp-block-group.b72-tour-hero__date > * { position: relative; margin: 0; }
.b72-tour-hero__main { display: flex; flex-direction: column; gap: 18px; }
.b72-tour-hero__date { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.b72-tour-hero .b72-tour-title {
	font-family: var(--b72-display);
	font-weight: 900;
	font-stretch: 72%;
	font-size: clamp(2.8rem, 7vw, 5.6rem);
	line-height: 0.92;
	text-transform: uppercase;
	color: var(--b72-gold);
}
.b72-tour-lede { max-width: 44ch; font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); }
.b72-tour-hero .wp-block-buttons { gap: 12px; }
.b72-tour-hero .wp-block-button__link { border: 2px solid #fff; }
.b72-tour-hero .b72-btn-gold .wp-block-button__link { background: var(--b72-gold); border-color: var(--b72-gold); color: var(--b72-ink); }
.b72-tour-hero .b72-btn-gold .wp-block-button__link:hover { background: #F1D673; }
.b72-tour-hero .is-style-outline .wp-block-button__link { background: transparent; color: #fff; }
.b72-tour-hero .is-style-outline .wp-block-button__link:hover { background: rgba(255, 255, 255, 0.12); }
.b72-tour-hero .b72-board { gap: 8px; }
.b72-tour-hero .b72-board > .b72-flip { margin: 0; font-size: clamp(2.4rem, 5vw, 3.8rem); }
.b72-tour-hero .b72-board > .b72-flip--day { text-transform: uppercase; font-size: clamp(1.4rem, 2.8vw, 2rem); }
.b72-tour-venue { font-size: 1.05rem; line-height: 1.4; color: rgba(255, 255, 255, 0.9); }
.b72-tour-venue strong { color: #fff; }

.b72-tour-facts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 36px auto 0 !important;
	padding: 0;
	list-style: none;
	border-block: 1px solid var(--b72-rule);
}
.b72-tour-facts li { padding: 18px 20px 18px 0; }
.b72-tour-facts li + li { padding-left: 20px; border-left: 1px solid var(--b72-rule); }
.b72-tour-facts strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--b72-ink-soft); }

.b72-tour-table { margin: 0; overflow-x: auto; background: var(--b72-surface); border: 1px solid var(--b72-rule); border-radius: 12px; }
.b72-tour-table table { min-width: 520px; border-collapse: collapse; }
.wp-block-table.b72-tour-table thead { border-bottom: 1px solid var(--b72-rule); }
.b72-tour-table th,
.b72-tour-table td { padding: 12px 16px; border: 0; border-bottom: 1px solid var(--b72-rule); text-align: left; font-variant-numeric: tabular-nums; }
.b72-tour-table thead th { font-size: 0.9rem; color: var(--b72-ink-soft); border-bottom: 1px solid var(--b72-rule); }
.b72-tour-table tbody tr:last-child td { border-bottom: 0; }
.b72-tour-table td:first-child { font-weight: 600; }

.b72-tour-program { gap: 48px; margin-top: 20px !important; }
.b72-tour-program h3 { margin: 0 0 8px; }
.b72-tour-times { margin: 0; padding: 0; list-style: none; }
.b72-tour-times li { position: relative; padding: 10px 0 10px 76px; border-top: 1px solid var(--b72-rule); }
.b72-tour-times strong {
	position: absolute;
	left: 0;
	font-family: var(--b72-display);
	font-weight: 800;
	font-stretch: 80%;
	font-size: 1.15rem;
	color: var(--b72-red);
	font-variant-numeric: tabular-nums;
}
#program > .b72-muted { margin-top: 16px; }

.b72-tour-signup { gap: 48px; }
.b72-tour-signup > .wp-block-column:last-child {
	padding: 24px;
	border-radius: 12px;
	background: var(--b72-surface);
	border: 1px solid var(--b72-rule);
}
.b72-tour-signup h2,
.b72-tour-signup h3 { margin-top: 0; }
.b72-tour-info { gap: 40px; margin-top: 20px !important; }
.b72-tour-info h3 { margin: 0 0 6px; }
.b72-tour-info p { color: var(--b72-ink-soft); margin: 0; }

@media (max-width: 860px) {
	.wp-block-group.b72-tour-hero { grid-template-columns: 1fr; }
	.b72-tour-facts { grid-template-columns: 1fr 1fr; }
	.b72-tour-facts li:nth-child(3) { padding-left: 0; border-left: 0; }
	.b72-tour-facts li:nth-child(n+3) { border-top: 1px solid var(--b72-rule); }
}
@media (max-width: 480px) {
	.b72-tour-facts { grid-template-columns: 1fr; }
	.b72-tour-facts li,
	.b72-tour-facts li + li { padding-left: 0; border-left: 0; }
	.b72-tour-facts li + li { border-top: 1px solid var(--b72-rule); }
}

/* ---- Neste turnering (bottom-right of the table) --------------------- */
.b72-next-tour > * { margin: 0; }
.b72-next-tour__label { font-weight: 600; font-size: 0.95rem; color: rgba(255, 255, 255, 0.85); }
.b72-table .b72-next-tour__title {
	margin-top: 6px;
	font-family: var(--b72-display);
	font-weight: 800;
	font-stretch: 80%;
	font-size: clamp(1.8rem, 3.4vw, 2.6rem);
	line-height: 1;
	letter-spacing: -0.01em;
}
.b72-table .b72-next-tour__title a { color: #fff; text-decoration: none; }
.b72-table .b72-next-tour__title a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.b72-next-tour__date { margin-top: 8px; font-weight: 700; font-size: 1.1rem; color: var(--b72-gold); }
.b72-next-tour__deadline { margin-top: 2px; color: rgba(255, 255, 255, 0.85); }
.b72-next-tour__links { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 16px; }
.b72-table .b72-next-tour__links a { font-weight: 700; }
.b72-table .b72-next-tour__cta {
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--b72-gold);
	color: var(--b72-ink) !important;
	text-decoration: none;
}
.b72-table .b72-next-tour__cta:hover { background: #F1D673; }
.b72-block-hint { margin: 12px 0 6px; font-size: 0.8rem; opacity: 0.75; }

/* ---- Tournament archive --------------------------------------------- */
.b72-archive-head > h1 { margin: 0; }
.b72-archive-head > .b72-muted { margin: 12px 0 0; }
.b72-tour-list { margin-top: 40px !important; }
.b72-tour-list h2 { margin: 0 0 16px; font-size: clamp(1.6rem, 3vw, 2rem); }
.b72-tour-list h2:not(:first-child) { margin-top: 56px; }
.b72-tour-list ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--b72-rule); }
.b72-tour-list li {
	display: grid;
	grid-template-columns: 17rem 1fr auto;
	gap: 6px 24px;
	align-items: baseline;
	padding-block: 18px;
	border-bottom: 1px solid var(--b72-rule);
}
.b72-tour-list__date { font-weight: 700; color: var(--b72-red); font-variant-numeric: tabular-nums; }
.b72-tour-list__date span { font-weight: 500; color: var(--b72-ink-soft); }
.b72-tour-list__name { font-family: var(--b72-display); font-weight: 800; font-stretch: 80%; font-size: 1.6rem; line-height: 1.1; color: var(--b72-ink); text-decoration: none; }
.b72-tour-list__name:hover { color: var(--b72-red); text-decoration: underline; }
.b72-tour-list__status { padding: 3px 10px; border-radius: 999px; background: var(--b72-gold); color: var(--b72-ink); font-weight: 700; font-size: 0.85rem; }
.b72-tour-list .is-past .b72-tour-list__date,
.b72-tour-list .is-past .b72-tour-list__name { color: var(--b72-ink-soft); }
.b72-tour-list .is-past .b72-tour-list__name { font-size: 1.3rem; }
@media (max-width: 640px) {
	.b72-tour-list li { grid-template-columns: 1fr auto; }
	.b72-tour-list__date { grid-column: 1 / -1; }
}
