/*
Theme Name: Triangle Ice
Description: A custom block theme scaffolded by Studio Code.
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 7.2
Version: 0.1.10
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: triangle-ice
Tags: full-site-editing, block-patterns, block-styles, wide-blocks, accessibility-ready, style-variations
*/

/* WordPress inserts margin-block-start: var(--wp--style--block-gap) between the
   template's top-level sections (header part, main, footer part) — a gap that
   exists even when no markup asks for it. Zero it so sections butt edge-to-edge
   and own their vertical rhythm via padding; this does not affect block gaps
   inside nested layouts. */
.wp-site-blocks > * + * {
	margin-block-start: 0;
}

:root {
	--site-navy: var(--wp--preset--color--arena-navy);
	--site-rink: var(--wp--preset--color--rink-blue);
	--site-cyan: var(--wp--preset--color--glacier-cyan);
	--site-action: var(--wp--preset--color--action-blue);
	--site-frost: var(--wp--preset--color--frost-white);
	--site-mist: var(--wp--preset--color--ice-mist);
	--site-steel: var(--wp--preset--color--steel-gray);
}

/* === buttons === */
.wp-block-button__link.wp-element-button,
.wp-block-search__button.wp-element-button {
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 6px 0 rgba(8, 40, 60, 0.35), 0 10px 18px rgba(8, 40, 60, 0.28);
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease, color 0.2s ease;
}
.wp-block-button__link.wp-element-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 8px 0 rgba(8, 40, 60, 0.35), 0 14px 22px rgba(8, 40, 60, 0.32);
}
.wp-block-button__link.wp-element-button:active {
	transform: translateY(1px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 2px 0 rgba(8, 40, 60, 0.35), 0 4px 10px rgba(8, 40, 60, 0.24);
}
@media (prefers-reduced-motion: reduce) {
	.wp-block-button__link.wp-element-button,
	.site-footer__contact-link {
		transition: none;
	}
	.wp-block-button__link.wp-element-button:hover,
	.wp-block-button__link.wp-element-button:active,
	.site-footer__contact-link:hover {
		transform: none;
	}
}

/* === Fluent Forms submit button, matched to site accent color === */
.fluentform .ff-btn-submit {
	background-color: var(--site-action) !important;
	border-color: var(--site-action) !important;
}
.fluentform .ff-btn-submit:hover {
	background-color: var(--site-rink) !important;
	border-color: var(--site-rink) !important;
}

/* === back to top === */
.back-to-top {
	position: fixed;
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 100;
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	background: var(--site-action);
	color: var(--site-frost);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 6px 0 rgba(8, 40, 60, 0.35), 0 10px 18px rgba(8, 40, 60, 0.28);
	transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.15s ease, background-color 0.2s ease;
}
.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.back-to-top:hover {
	transform: translateY(-3px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 8px 0 rgba(8, 40, 60, 0.35), 0 14px 22px rgba(8, 40, 60, 0.32);
}
.back-to-top:active {
	transform: translateY(1px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 2px 0 rgba(8, 40, 60, 0.35), 0 4px 10px rgba(8, 40, 60, 0.24);
}
@media (max-width: 782px) {
	.back-to-top {
		right: 1rem;
		bottom: 1rem;
		width: 44px;
		height: 44px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.back-to-top {
		transition: opacity 0.2s linear;
	}
	.back-to-top.is-visible {
		transform: none;
	}
	.back-to-top:hover,
	.back-to-top:active {
		transform: none;
	}
}

/* === motion === */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}
/* === header === */
.site-header.has-arena-navy-background-color {
	position: relative;
	background: linear-gradient(90deg, rgb(214, 222, 227) 0px, var(--site-frost) 260px, var(--site-frost) calc(100% - 260px), rgb(214, 222, 227) 100%);
}
.site-header::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--site-cyan), transparent);
}
.site-header__inner {
	position: relative;
	width: 100%;
	max-width: var(--wp--style--global--wide-size, 1320px);
	margin-inline: auto;
	padding: 1.25rem var(--wp--preset--spacing--50, 2rem);
	align-items: center;
	z-index: 1;
}

.site-header__brand {
	align-items: center;
	gap: 0.75rem;
}
.site-header__logo {
	line-height: 0;
	flex-shrink: 0;
}
.site-header__logo img {
	display: block;
	border-radius: 8px;
	width: min(220px, 100%);
	height: auto;
	max-height: 150px;
}
.site-header__title a {
	font-family: var(--wp--preset--font-family--display);
	font-weight: 700;
	font-size: 1.2rem;
	letter-spacing: 0.01em;
	color: var(--site-frost) !important;
	text-decoration: none;
}
.site-header__nav {
	flex-wrap: wrap;
}
.site-header__nav .wp-block-navigation__container {
	gap: 0.5rem 1.5rem;
}
.site-header__nav a.wp-block-navigation-item__content {
	font-family: var(--wp--preset--font-family--body);
	font-weight: 500;
	font-size: 0.85rem;
	opacity: 1;
	transition: opacity 0.2s ease, color 0.2s ease;
}
.site-header__nav.has-frost-white-color a.wp-block-navigation-item__content,
.site-header__nav.has-frost-white-color .wp-block-navigation-item__content {
	color: var(--site-navy) !important;
}
.site-header__nav a.wp-block-navigation-item__content:hover {
	opacity: 1;
}
.site-header__nav.has-frost-white-color a.wp-block-navigation-item__content:hover {
	color: var(--site-action) !important;
}
.site-header__nav .wp-block-navigation__submenu-container {
	background: var(--site-navy);
	border: 1px solid rgba(79, 209, 232, 0.25);
}
/* Hamburger toggle: round steel-gray badge so the icon reads clearly
   against the navy header instead of blending into it.
   Deliberately NOT setting `display` here — core (plus the widened-
   breakpoint rule below) controls display:none vs flex for this button
   depending on viewport, and a `display:flex` on this more-specific
   selector would beat core's `display:none` and leave the button visible
   at desktop widths too (confirmed: it did). align-items/justify-content
   below only take effect once something else has already made it flex. */
.site-header__nav .wp-block-navigation__responsive-container-open {
	background-color: var(--site-steel);
	border-radius: 50%;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	align-items: center;
	justify-content: center;
}
.site-header__nav.has-frost-white-color .wp-block-navigation__responsive-container-open {
	color: var(--site-frost) !important;
}
.site-header__nav.has-frost-white-color .wp-block-navigation__responsive-container-open svg {
	fill: var(--site-frost);
}
/* Mobile overlay menu inherits the desktop nav's right-alignment via this
   custom property; reset it so overlay items are centered instead. The
   close (X) button lives outside this wrapper, so it stays top-right. */
.site-header__nav .wp-block-navigation__responsive-container-content {
	--navigation-layout-justification-setting: center;
}
/* Decorative label shown only above the mobile/overlay menu items.
   CSS-generated, so it's not announced by all screen readers — the menu
   itself is still labeled via the nav's own aria-label="Menu".
   Scoped to .is-menu-open: the container/content markup is also what
   renders the desktop nav (core reuses the same DOM), so without this
   the label would show at all times, not just in the mobile overlay. */
.site-header__nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content::before {
	content: "Menu";
	display: block;
	text-align: center;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--site-frost);
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(245, 249, 251, 0.2);
}
/* Turn the overlay menu into a right-side drawer instead of a fullscreen
   modal. Core only ever toggles display:none <-> flex via .is-menu-open,
   which can't transition — so, ONLY at the widths where this container is
   actually acting as the mobile/tablet menu (see the breakpoint below), we
   keep it permanently display:flex and hide/show it instead with transform
   + visibility, which *can* animate. Off-screen it's translated clear of
   the viewport and made non-interactive (visibility + pointer-events) so it
   can't be focused or clicked while closed.
   This must stay scoped to that breakpoint — core reuses this same
   container/content markup to render the desktop inline menu at wider
   widths, so forcing fixed positioning unconditionally breaks the desktop
   nav entirely (confirmed: it did, in an earlier version of this rule).
   Every property below needs !important: core has its own
   `:not(.hidden-by-default):not(.is-menu-open)` rule (at min-width:600px)
   that sets position:relative, and its two :not() clauses give it higher
   specificity than a plain two-class selector — without !important that
   rule wins, position silently falls back to relative/in-flow, and the
   100vh height then pushes the whole header (and everything after it)
   down by a full viewport height while the drawer sits closed
   (confirmed: it did). */
@media (max-width: 949px) {
	.site-header__nav .wp-block-navigation__responsive-container {
		display: flex !important;
		position: fixed !important;
		top: 0 !important;
		right: 0 !important;
		left: auto !important;
		width: min(85vw, 320px) !important;
		height: 100vh !important;
		transform: translateX(100%);
		transition: transform 0.3s ease, visibility 0.3s ease;
		visibility: hidden;
		pointer-events: none;
	}
	.site-header__nav .wp-block-navigation__responsive-container.is-menu-open {
		transform: translateX(0);
		visibility: visible;
		pointer-events: auto;
	}
}
/* The desktop rule above forces nav-item text to navy for readability
   against the header's light gradient background — but that selector also
   matches items inside the open mobile drawer, which now has a dark navy
   background (see overlayBackgroundColor on the nav block), so it was
   rendering navy-on-navy. Force the overlay's own text color back once
   the drawer is open. */
.site-header__nav .wp-block-navigation__responsive-container.is-menu-open a.wp-block-navigation-item__content,
.site-header__nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	color: var(--site-frost) !important;
}
.site-header__nav .wp-block-navigation__responsive-container.is-menu-open a.wp-block-navigation-item__content:hover {
	color: var(--site-cyan) !important;
}
/* Widen the mobile/overlay-menu breakpoint from the core default (600px)
   up to 949px so tablets also get the hamburger menu. */
@media (min-width: 600px) and (max-width: 949px) {
	.site-header__nav .wp-block-navigation__responsive-container-open {
		display: flex !important;
	}
}
.site-header__actions {
	align-items: center;
	gap: 1.25rem;
	flex-shrink: 0;
}
.site-header__entryeeze .wp-element-button {
	background: var(--site-action);
	color: var(--site-frost);
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.5rem 1.1rem;
	border-radius: 999px;
	white-space: nowrap;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 4px 0 rgba(8, 40, 60, 0.35), 0 8px 14px rgba(8, 40, 60, 0.28);
}
.site-header__entryeeze .wp-element-button:hover {
	background: var(--site-frost);
	color: var(--site-navy);
}
.site-header__social {
	gap: 1rem;
}
.site-header__social .wp-social-link.has-frost-white-color a,
.site-header__social .wp-social-link a {
	color: var(--site-navy) !important;
	opacity: 0.85;
	width: 52px;
	height: 52px;
}
.site-header__social .wp-social-link svg {
	width: 30px;
	height: 30px;
}
.site-header__social .wp-social-link:hover a {
	opacity: 1;
	color: var(--site-action) !important;
}
/* === footer === */
.site-footer {
	padding: 3rem 0 2.5rem;
}
.site-footer__inner {
	width: 100%;
	max-width: var(--wp--style--global--wide-size, 1200px);
	margin-inline: auto;
	padding-inline: var(--wp--preset--spacing--50, 2rem);
	gap: 2rem;
	align-items: flex-start;
}
.site-footer__col {
	gap: 0.5rem;
	min-width: 200px;
}
.site-footer__col--center {
	align-items: center;
	text-align: center;
}
.site-footer__social {
	gap: 0.75rem;
	margin-top: 0.25rem;
}
.site-footer__social .wp-social-link a {
	color: var(--site-frost) !important;
	opacity: 0.85;
	width: 36px;
	height: 36px;
}
.site-footer__social .wp-social-link svg {
	width: 20px;
	height: 20px;
}
.site-footer__social .wp-social-link:hover a {
	opacity: 1;
	color: var(--site-cyan) !important;
}
.site-footer__col--usfs {
	align-items: center;
	text-align: center;
}
.site-footer__usfs-logo {
	margin: 0 0 0.5rem !important;
	display: block;
}
.site-footer__usfs-logo img {
	display: inline-block;
	width: 100%;
	height: auto;
}
.site-footer a {
	color: var(--site-frost) !important;
	opacity: 0.8;
}
.site-footer a:hover {
	opacity: 1;
	color: var(--site-cyan) !important;
}
.site-footer__contact-link {
	display: inline-block;
	color: var(--site-frost) !important;
	opacity: 1 !important;
	background-color: var(--site-action);
	font-weight: 600;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	margin-top: 0.25rem;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 4px 0 rgba(8, 40, 60, 0.35), 0 8px 14px rgba(8, 40, 60, 0.28);
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease;
}
.site-footer__contact-link:hover {
	background-color: var(--site-frost);
	color: var(--site-navy) !important;
	transform: translateY(-2px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 6px 0 rgba(8, 40, 60, 0.3), 0 10px 18px rgba(8, 40, 60, 0.3);
}
/* === hero === */
/* === sections === */
.page-title-band {
	padding: 3.5rem var(--wp--preset--spacing--50, 2rem) 3rem;
	text-align: center;
}
.page-title-band__title {
	font-size: var(--wp--preset--font-size--x-large);
	margin: 0;
}
.page-content {
	padding: 3rem var(--wp--preset--spacing--50, 2rem) 4rem;
}
.page-content h2 {
	color: var(--site-navy);
	margin-top: 2.5rem;
}
.competitions-photo {
	max-width: 480px;
	margin: 1rem auto 2.5rem !important;
}
.competitions-photo img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 14px;
}
.dogwood-logo {
	max-width: 260px;
	margin: 2rem auto !important;
}
.dogwood-logo img {
	display: block;
	width: 100%;
	height: auto;
}
.testpass-photo {
	max-width: 320px;
	margin: 2rem auto !important;
}
.testpass-photo img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 14px;
}
.page-content ul {
	padding-left: 1.2rem;
}
.page-content ul li {
	margin-bottom: 0.4rem;
}
/* === cards === */
.home-hero {
	position: relative;
	padding: 3rem var(--wp--preset--spacing--50, 2rem) 3.5rem;
	text-align: center;
	overflow: hidden;
}
.home-hero__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--site-cyan);
	margin: 0 auto 1rem;
}
.home-hero__title {
	font-size: var(--wp--preset--font-size--xx-large);
	max-width: 780px;
	margin: 0 auto 1.25rem;
}
.home-hero__lede {
	max-width: 620px;
	margin: 0 auto 2rem;
	font-size: 1.15rem;
	opacity: 0.92;
}
.home-hero .wp-block-buttons {
	justify-content: center;
}
.home-hero .is-style-outline .wp-block-button__link {
	border-color: var(--site-frost);
	color: var(--site-frost);
}
.home-hero .is-style-outline .wp-block-button__link:hover {
	background: var(--site-frost);
	color: var(--site-navy);
}
.home-intro {
	position: relative;
	padding: 1.75rem var(--wp--preset--spacing--50, 2rem);
	max-width: 760px;
	margin-inline: auto;
	z-index: 1;
}
.home-intro::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: url("/wp-content/uploads/2026/07/tfsc-logo-blades.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 380px auto;
	opacity: 0.15;
	mix-blend-mode: multiply;
}
.home-intro__text {
	text-align: center;
	font-size: 1.15rem;
	color: var(--site-steel);
}
/* === cta === */
.home-pillars {
	padding: 4rem var(--wp--preset--spacing--50, 2rem) 4.5rem;
}
.home-pillars > h2 {
	max-width: 900px;
	margin-inline: auto;
	margin-bottom: 2.5rem;
}
.home-pillars__grid {
	max-width: 1320px;
	margin-inline: auto;
	gap: 1.5rem;
}
.home-pillar {
	background: var(--site-frost);
	border-radius: 14px;
	padding: 2rem 1.75rem;
	border: 1px solid rgba(10, 31, 61, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-pillar:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(10, 31, 61, 0.12);
}
.home-pillar h3 {
	color: var(--site-navy);
	margin-top: 0;
	font-size: 1.35rem !important;
}
.home-pillar p a {
	font-weight: 600;
}
.home-cta {
	padding: 4rem var(--wp--preset--spacing--50, 2rem) 1.5rem;
	text-align: center;
}
.home-cta__text {
	max-width: 560px;
	margin: 0 auto 1.75rem;
	opacity: 0.9;
}
/* === home photos === */
.home-photos {
	padding: 0 var(--wp--preset--spacing--50, 2rem) 3.5rem;
}
.home-photos__grid {
	max-width: 1320px;
	margin-inline: auto;
	gap: 1.5rem;
}
.home-photo {
	margin: 0;
	border-radius: 14px;
	overflow: hidden;
}
.home-photo img {
	display: block;
	width: 100%;
	height: 320px;
	object-fit: cover;
	border-radius: 14px;
}
.home-photo--wide {
	max-width: 900px;
	margin-inline: auto !important;
}
.home-photo--wide img {
	height: auto !important;
	object-fit: initial !important;
}

/* === synchro === */
.synchro-intro {
	align-items: center;
	gap: 1.5rem;
}
.synchro-intro__logo {
	flex-shrink: 0;
	margin: 0;
}
.synchro-photo {
	margin: 1.5rem 0;
	border-radius: 14px;
	overflow: hidden;
}
.synchro-photo img {
	border-radius: 14px;
	display: block;
}
.synchro-photo figcaption {
	color: var(--site-steel);
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

/* === coaches === */
.coach-card {
	align-items: center;
	gap: 1.75rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(10, 31, 61, 0.1);
}
.coach-card__photo {
	flex-shrink: 0;
}
.coach-card__photo .is-style-rounded img {
	border-radius: 50%;
	object-fit: cover;
}
.coach-card h3 {
	margin-top: 0;
	color: var(--site-navy);
}
.coach-card__photo--placeholder {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: var(--site-mist);
	display: flex;
	align-items: center;
	justify-content: center;
}
.coach-card__initials {
	margin: 0;
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--site-rink);
}
.coach-name-list {
	columns: 2;
	column-gap: 2rem;
	list-style: none;
	padding-left: 0;
	margin-top: 1.5rem;
}
.coach-name-list li {
	padding: 0.6rem 0;
	border-bottom: 1px solid rgba(10, 31, 61, 0.1);
	break-inside: avoid;
}
.board-roster-details {
	margin-top: 1.5rem;
}
.board-roster-details summary {
	cursor: pointer;
	list-style: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--site-navy);
	font-family: var(--wp--preset--font-family--display);
	font-weight: 600;
	font-size: 27px;
	line-height: 1.15;
}
.board-roster-details summary::-webkit-details-marker {
	display: none;
}
.board-roster-details summary::after {
	content: "\2304";
	font-size: 1.2rem;
	transition: transform 0.2s ease;
}
.board-roster-details[open] summary::after {
	transform: rotate(180deg);
}
.board-roster-details summary:hover {
	color: var(--site-cyan);
}
.board-roster-details .coach-card:first-of-type {
	margin-top: 1.75rem;
}

/* === membership === */
.membership-tier {
	position: relative;
	overflow: hidden;
	padding: 2rem 2.25rem;
	margin-block: 1.5rem;
	background: var(--site-navy);
	border-radius: 14px;
	border-left: none;
	color: var(--site-frost);
}
.membership-tier::before {
	content: "";
	position: absolute;
	inset: -60px -60px auto auto;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(124, 198, 232, 0.28), transparent 70%);
	pointer-events: none;
}
.membership-tier h3 {
	color: var(--site-frost);
	margin-top: 0;
	font-size: 1.3rem;
	position: relative;
}
.membership-tier__note {
	font-weight: 400;
	font-size: 0.85rem;
	color: var(--site-cyan);
	opacity: 0.85;
}
.membership-tier__forwhom {
	font-style: italic;
	color: #cbe0ea;
	position: relative;
}
.membership-tier__benefits-label {
	margin-bottom: 0.5rem;
	color: var(--site-frost);
	position: relative;
	padding-top: 1rem;
	border-top: 1px solid rgba(245, 249, 251, 0.15);
}
.membership-tier ul.wp-block-list {
	position: relative;
	list-style: none;
	padding-left: 0;
}
.membership-tier ul.wp-block-list li {
	color: #cbe0ea;
	padding: 0.4rem 0 0.4rem 1.2rem;
	position: relative;
}
.membership-tier ul.wp-block-list li::before {
	content: "\2014";
	position: absolute;
	left: 0;
	color: var(--site-cyan);
}
/* === grant table === */
.grant-table {
	position: relative;
	overflow: hidden;
	background: var(--site-navy);
	border-radius: 14px;
	padding: 2rem 2.25rem;
	margin-block: 2rem;
}
.grant-table::after {
	content: "";
	position: absolute;
	inset: -60px -60px auto auto;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(124, 198, 232, 0.28), transparent 70%);
	pointer-events: none;
}
.grant-table table {
	position: relative;
	width: 100%;
	border-collapse: collapse;
}
.grant-table th,
.grant-table td {
	border: none;
	border-bottom: 1px solid rgba(245, 249, 251, 0.15);
}
.grant-table thead th {
	text-align: left;
	color: var(--site-cyan);
	font-family: var(--wp--preset--font-family--body);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0 0.75rem 1rem 0;
}
.grant-table tbody td {
	color: var(--site-frost);
	padding: 1rem 0.75rem 1rem 0;
	border-bottom-style: dashed;
}
.grant-table tbody tr:last-child td {
	border-bottom: none;
}
.grant-table tbody td:first-child {
	font-weight: 600;
}
.grant-table tbody td:not(:first-child) {
	font-family: var(--wp--preset--font-family--display);
	font-weight: 600;
	font-size: 1.15rem;
}
/* === contact === */
.contact-info {
	background: var(--site-mist);
	border-radius: 14px;
	padding: 2rem;
}
.contact-info h3 {
	color: var(--site-navy);
	margin-top: 1.5rem;
	font-size: 1.1rem;
}
.contact-info h3:first-child {
	margin-top: 0;
}
.wp-block-jetpack-contact-form input[type="text"],
.wp-block-jetpack-contact-form input[type="email"],
.wp-block-jetpack-contact-form textarea {
	border: 1px solid rgba(10, 31, 61, 0.2);
	border-radius: 8px;
	padding: 0.65rem 0.85rem;
	font-family: var(--wp--preset--font-family--body);
	width: 100%;
}
.wp-block-jetpack-contact-form input:focus,
.wp-block-jetpack-contact-form textarea:focus {
	outline: 2px solid var(--site-cyan);
	outline-offset: 1px;
}

/* === responsive === */
@media (max-width: 782px) {
	.site-header.has-arena-navy-background-color {
		background: linear-gradient(90deg, rgb(214, 222, 227) 0px, var(--site-frost) 90px, var(--site-frost) calc(100% - 90px), rgb(214, 222, 227) 100%);
	}
	.home-hero__title {
		font-size: 2.5rem;
	}
	.home-hero {
		padding: 2rem 1.25rem 2.5rem;
	}
	.home-pillars__grid {
		flex-wrap: wrap;
	}
	.home-pillar {
		flex-basis: 100% !important;
	}
	.site-header__inner {
		flex-wrap: wrap;
		padding: 1rem 1.25rem;
	}
	.site-footer__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.site-footer__col {
		align-items: center;
	}
	.synchro-intro {
		flex-direction: column;
		align-items: flex-start;
	}
	.coach-name-list {
		columns: 1;
	}
	.grant-table {
		padding: 1.5rem 1.25rem;
		overflow-x: auto;
		overflow-y: visible;
		-webkit-overflow-scrolling: touch;
	}
	.grant-table table {
		width: max-content;
		min-width: 480px;
	}
	.grant-table th,
	.grant-table td {
		white-space: nowrap;
	}
	.grant-table::before {
		content: "Swipe left to see full table \2190";
		display: block;
		color: var(--site-cyan);
		font-family: var(--wp--preset--font-family--body);
		text-transform: uppercase;
		letter-spacing: 0.04em;
		font-size: 0.7rem;
		font-weight: 600;
		margin-bottom: 0.75rem;
	}
}
