/*
Theme Name: FIJOY Games
Theme URI: https://www.fijoygames.no/
Author: FIJOY Games
Author URI: https://www.fijoygames.no/
Description: A cinematic, responsive and performance-focused custom theme for FIJOY Games.
Version: 1.7.8
Requires at least: 6.6
Tested up to: 7.0
Requires PHP: 7.4
Text Domain: fijoy-games
*/

@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url("./assets/fonts/Manrope-VariableFont_wght.woff2") format("woff2");
}

:root {
	--marine: #002939;
	--marine-deep: #00121c;
	--marine-black: #000b11;
	--teal: #004d6b;
	--teal-bright: #087ba1;
	--coral: #ee825b;
	--coral-light: #ffad8c;
	--steel: #a9b8be;
	--mist: #c4d1d6;
	--white: #fff;
	--charcoal: #313133;
	--line: rgb(255 255 255 / 14%);
	--surface: rgb(255 255 255 / 6%);
	--surface-strong: rgb(255 255 255 / 10%);
	--shadow: 0 30px 80px rgb(0 0 0 / 35%);
	--content: 760px;
	--wide: 1280px;
	--gutter: clamp(1rem, 4vw, 4rem);
	--header-height: 82px;
	--radius-s: 12px;
	--radius-m: 24px;
	--radius-l: 40px;
	--ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
	overflow-x: clip;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 2rem);
}

body {
	margin: 0;
	overflow-x: clip;
	background:
		radial-gradient(circle at 85% -10%, rgb(0 77 107 / 35%), transparent 34rem),
		var(--marine-deep);
	color: var(--white);
	font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: clamp(1rem, .2vw + .96rem, 1.125rem);
	font-weight: 420;
	line-height: 1.68;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

::selection {
	background: var(--coral);
	color: var(--marine);
}

img,
picture,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

figure {
	margin: 0;
}

a {
	color: inherit;
	text-decoration-thickness: .08em;
	text-underline-offset: .2em;
}

a,
button,
input,
select,
textarea,
summary {
	-webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	color: inherit;
}

:focus-visible {
	outline: 3px solid var(--coral-light);
	outline-offset: 4px;
}

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

.screen-reader-text:focus,
.skip-link:focus {
	top: .75rem;
	left: .75rem;
	z-index: 10000;
	width: auto;
	height: auto;
	padding: .8rem 1.1rem;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: var(--white);
	color: var(--marine);
	border-radius: 8px;
	font-weight: 750;
}

.section-shell {
	width: min(100% - (2 * var(--gutter)), var(--wide));
	margin-inline: auto;
}

.site-main {
	min-height: 60vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-block: 0 .65em;
	color: var(--white);
	font-weight: 760;
	letter-spacing: -.045em;
	line-height: 1.04;
	text-wrap: balance;
}

h1 {
	font-size: clamp(3rem, 6.5vw, 6.8rem);
}

h2 {
	font-size: clamp(2.1rem, 4vw, 4.2rem);
}

h3 {
	font-size: clamp(1.45rem, 2.2vw, 2.35rem);
}

p {
	margin-block: 0 1.2em;
}

.eyebrow,
.section-index {
	display: flex;
	align-items: center;
	gap: .6rem;
	margin: 0 0 1rem;
	color: var(--coral-light);
	font-size: .74rem;
	font-weight: 780;
	letter-spacing: .16em;
	line-height: 1.4;
	text-transform: uppercase;
}

.section-index {
	color: var(--mist);
}

.eyebrow--status span {
	width: .5rem;
	height: .5rem;
	background: var(--coral);
	border-radius: 50%;
	box-shadow: 0 0 0 .4rem rgb(238 130 91 / 15%);
	animation: status-pulse 2.6s ease-in-out infinite;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .8rem;
}

.button,
.wp-element-button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: .8rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: .82rem;
	font-weight: 780;
	letter-spacing: .055em;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		background-color .25s var(--ease),
		border-color .25s var(--ease),
		color .25s var(--ease),
		transform .25s var(--ease),
		box-shadow .25s var(--ease);
}

.button:hover,
.wp-element-button:hover,
.wp-block-button__link:hover {
	transform: translateY(-2px);
}

.button--primary,
.wp-element-button,
.wp-block-button__link {
	background: var(--coral-light);
	color: var(--marine-deep);
	box-shadow: 0 10px 30px rgb(238 130 91 / 20%);
}

.button--primary:hover,
.wp-element-button:hover,
.wp-block-button__link:hover {
	background: var(--white);
	box-shadow: 0 16px 36px rgb(238 130 91 / 28%);
}

.button--ghost {
	background: rgb(255 255 255 / 5%);
	border-color: rgb(255 255 255 / 30%);
	color: var(--white);
	backdrop-filter: blur(12px);
}

.button--ghost:hover {
	background: rgb(255 255 255 / 12%);
	border-color: rgb(255 255 255 / 55%);
}

.button--light {
	background: var(--white);
	color: var(--marine);
}

.button--light:hover {
	background: #e8f3f6;
}

.button--compact {
	min-height: 44px;
	padding: .65rem 1rem;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: .25rem;
	color: var(--white);
	font-size: .82rem;
	font-weight: 760;
	letter-spacing: .055em;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	margin-top: 1.4rem;
	margin-left: calc(-100% - .25rem);
	background: var(--coral);
	transform: scaleX(.35);
	transform-origin: left;
	transition: transform .3s var(--ease);
}

.text-link:hover::after {
	transform: scaleX(1);
}

/* Header */

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 900;
	height: var(--header-height);
	border-bottom: 1px solid transparent;
	transition:
		background-color .3s var(--ease),
		border-color .3s var(--ease),
		backdrop-filter .3s var(--ease),
		height .3s var(--ease);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgb(0 11 17 / 80%), transparent);
	opacity: 1;
	pointer-events: none;
}

body:not(.home) .site-header,
.site-header.is-scrolled,
body.menu-open .site-header {
	background: rgb(0 18 28 / 90%);
	border-color: var(--line);
	backdrop-filter: blur(20px) saturate(130%);
}

.site-header.is-scrolled {
	height: 68px;
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: clamp(1rem, 3vw, 2.5rem);
	width: min(100% - (2 * var(--gutter)), 1440px);
	height: 100%;
	margin-inline: auto;
}

.fijoy-brand {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	color: var(--white);
	text-decoration: none;
}

.fijoy-brand__logo {
	width: 126px;
	height: auto;
	transition: opacity .2s ease, transform .3s var(--ease);
}

.site-navigation {
	justify-self: center;
}

.mobile-nav-contact {
	display: none;
}

.fijoy-menu,
.site-navigation .menu {
	display: flex;
	align-items: center;
	gap: clamp(.8rem, 1.45vw, 1.55rem);
	padding: 0;
	margin: 0;
	list-style: none;
}

.fijoy-menu > li,
.site-navigation .menu > li {
	position: relative;
	margin: 0;
}

.fijoy-menu > .menu-item-has-children,
.site-navigation .menu > .menu-item-has-children {
	display: block;
}

.fijoy-menu a,
.site-navigation .menu a,
.submenu-trigger {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: rgb(255 255 255 / 82%);
	font-size: clamp(.74rem, .15vw + .72rem, .86rem);
	font-weight: 650;
	letter-spacing: .01em;
	text-decoration: none;
	white-space: nowrap;
	transition: color .2s ease;
}

.submenu-trigger {
	gap: .65rem;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
}

.fijoy-menu > li > a::after,
.site-navigation .menu > li > a::after {
	content: "";
	position: absolute;
	inset: auto 0 .2rem;
	height: 2px;
	background: var(--coral);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .28s var(--ease);
}

.submenu-trigger::before {
	content: "";
	position: absolute;
	inset: auto 0 .2rem;
	height: 2px;
	background: var(--coral);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .28s var(--ease);
}

.submenu-trigger::after {
	content: "";
	width: 5px;
	height: 5px;
	margin-top: -.2rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	transition: transform .2s ease;
}

.fijoy-menu a:hover,
.fijoy-menu .current-menu-item > a,
.fijoy-menu .current-menu-parent > .submenu-trigger,
.fijoy-menu .current-menu-ancestor > .submenu-trigger,
.site-navigation .menu a:hover,
.site-navigation .current-menu-item > a,
.site-navigation .current-menu-parent > .submenu-trigger,
.site-navigation .current-menu-ancestor > .submenu-trigger,
.submenu-trigger:hover,
.submenu-trigger:focus-visible {
	color: var(--white);
}

.fijoy-menu > li > a:hover::after,
.fijoy-menu > .current-menu-item > a::after,
.site-navigation .menu > li > a:hover::after,
.site-navigation .current-menu-item > a::after,
.submenu-trigger:hover::before,
.submenu-trigger:focus-visible::before,
.fijoy-menu > .current-menu-parent > .submenu-trigger::before,
.fijoy-menu > .current-menu-ancestor > .submenu-trigger::before,
.site-navigation .current-menu-parent > .submenu-trigger::before,
.site-navigation .current-menu-ancestor > .submenu-trigger::before {
	transform: scaleX(1);
	transform-origin: left;
}

.sub-menu {
	position: absolute;
	top: calc(100% + .45rem);
	left: 0;
	display: grid;
	gap: .25rem;
	min-width: 310px;
	padding: .7rem;
	margin: 0;
	visibility: hidden;
	background: rgb(0 25 38 / 96%);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow);
	list-style: none;
	opacity: 0;
	transform: translateY(-.45rem);
	transition: opacity .2s ease, transform .2s var(--ease), visibility .2s;
}

.sub-menu::before {
	content: "";
	position: absolute;
	inset: -.5rem 0 auto;
	height: .5rem;
}

.sub-menu a {
	width: 100%;
	min-height: 44px;
	padding: .55rem .7rem;
	border-radius: 8px;
	font-size: .76rem;
	line-height: 1.35;
	white-space: normal;
}

.sub-menu a:hover {
	background: var(--surface-strong);
}

html:not(.js-ready) .menu-item-has-children:hover > .sub-menu,
html:not(.js-ready) .menu-item-has-children:focus-within > .sub-menu,
.menu-item-has-children.submenu-open > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.menu-item-has-children.submenu-open > .submenu-trigger::after {
	transform: translateY(2px) rotate(225deg);
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: .65rem;
	min-width: 44px;
	min-height: 44px;
	padding: 0;
	background: none;
	border: 0;
	font-size: .72rem;
	font-weight: 760;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.menu-toggle__icon {
	position: relative;
	width: 26px;
	height: 16px;
}

.menu-toggle__icon i {
	position: absolute;
	right: 0;
	display: block;
	width: 26px;
	height: 2px;
	background: currentColor;
	transition: transform .25s var(--ease), top .25s var(--ease);
}

.menu-toggle__icon i:first-child {
	top: 2px;
}

.menu-toggle__icon i:last-child {
	top: 12px;
	width: 18px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
	top: 7px;
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
	top: 7px;
	width: 26px;
	transform: rotate(-45deg);
}

.page-progress {
	position: fixed;
	inset: 0 0 auto;
	z-index: 999;
	height: 2px;
	pointer-events: none;
}

.page-progress span {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, var(--coral), var(--coral-light));
	transform: scaleX(0);
	transform-origin: left;
}

.admin-bar .page-progress {
	top: 32px;
}

/* Homepage hero */

.home-hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: clamp(620px, 84svh, 860px);
	overflow: hidden;
	background: var(--marine-black);
	isolation: isolate;
}

.home-hero::before {
	content: "";
	position: absolute;
	inset: auto 0 0;
	z-index: 2;
	height: 38%;
	background: linear-gradient(0deg, var(--marine-deep), transparent);
	pointer-events: none;
}

.home-hero__media {
	position: absolute;
	inset: 0;
	z-index: -3;
}

.home-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgb(0 12 18 / 94%) 0%, rgb(0 18 28 / 72%) 38%, rgb(0 18 28 / 8%) 72%),
		linear-gradient(180deg, rgb(0 0 0 / 15%), rgb(0 18 28 / 30%));
}

.home-hero__media picture,
.home-hero__media img {
	width: 100%;
	height: 100%;
}

.home-hero__media img {
	object-fit: cover;
	object-position: center top;
	transform: scale(1.015);
	animation: hero-settle .9s var(--ease) both;
}

.home-hero__texture {
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: .13;
	background-image:
		linear-gradient(120deg, transparent 47%, rgb(255 255 255 / 10%) 48%, transparent 49%),
		linear-gradient(60deg, transparent 47%, rgb(255 255 255 / 8%) 48%, transparent 49%);
	background-size: 56px 96px;
	mask-image: linear-gradient(90deg, black, transparent 72%);
}

.home-hero__content {
	z-index: 3;
	width: min(100% - (2 * var(--gutter)), 1440px);
	margin: calc(var(--header-height) + 2rem) auto 3.5rem;
}

.home-hero h1 {
	max-width: 8ch;
	margin-bottom: .34em;
	font-size: clamp(3.9rem, 7.7vw, 7.9rem);
	font-weight: 780;
	letter-spacing: -.065em;
	line-height: .86;
	text-transform: uppercase;
}

.home-hero__title-primary,
.home-hero__title-accent {
	display: block;
}

.home-hero__title-primary {
	max-width: 7.1ch;
}

.home-hero__title-accent {
	width: max-content;
	max-width: 100%;
	margin-top: .34em;
	color: var(--coral-light);
	font-family: "Manrope", system-ui, sans-serif;
	font-size: .5em;
	font-weight: 720;
	font-style: normal;
	letter-spacing: -.045em;
	line-height: 1;
	-webkit-text-stroke: 0;
	text-shadow: none;
	white-space: nowrap;
}

.home-hero__lead {
	max-width: 590px;
	margin-bottom: 1.5rem;
	color: rgb(255 255 255 / 76%);
	font-size: clamp(1rem, .55vw + .9rem, 1.22rem);
	line-height: 1.55;
}

.platform-list {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
	padding: 0;
	margin: 1.3rem 0 0;
	list-style: none;
}

.platform-list li {
	padding: .35rem .65rem;
	background: rgb(255 255 255 / 7%);
	border: 1px solid rgb(255 255 255 / 15%);
	border-radius: 999px;
	color: rgb(255 255 255 / 68%);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

.home-hero__release {
	position: absolute;
	right: var(--gutter);
	bottom: 2.4rem;
	z-index: 3;
	display: grid;
	justify-items: end;
}

.home-hero__release strong {
	font-size: clamp(2.5rem, 4vw, 4.5rem);
	font-weight: 250;
	letter-spacing: -.06em;
	line-height: 1;
}

.home-hero__release span {
	color: var(--mist);
	font-size: .68rem;
	font-weight: 740;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.scroll-cue {
	position: absolute;
	bottom: 2.2rem;
	left: 50%;
	z-index: 4;
	display: grid;
	justify-items: center;
	gap: .5rem;
	color: rgb(255 255 255 / 64%);
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-decoration: none;
	text-transform: uppercase;
	transform: translateX(-50%);
}

.scroll-cue i {
	display: block;
	width: 1px;
	height: 42px;
	overflow: hidden;
	background: rgb(255 255 255 / 25%);
}

.scroll-cue i::after {
	content: "";
	display: block;
	width: 100%;
	height: 50%;
	background: var(--coral);
	animation: scroll-line 2s ease-in-out infinite;
}

/* Homepage sections */

.manifesto,
.games-showcase {
	padding-block: clamp(3.25rem, 4.5vw, 5rem);
}

.manifesto {
	position: relative;
	overflow: clip;
}

.manifesto::after {
	content: "";
	position: absolute;
	right: -8rem;
	bottom: -4rem;
	width: 28rem;
	height: 28rem;
	background: radial-gradient(circle, rgb(0 77 107 / 28%), transparent 68%);
	pointer-events: none;
}

.manifesto__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: end;
}

.manifesto__grid h2 {
	max-width: 13ch;
	margin: 0;
}

.manifesto__grid > div {
	padding-bottom: .45rem;
	color: rgb(255 255 255 / 67%);
}

.timeline-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: clamp(2.5rem, 5vw, 4.5rem);
	border-block: 1px solid var(--line);
}

.timeline-strip > div {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 1rem;
	min-height: 88px;
	padding: 1rem clamp(1rem, 2vw, 2rem);
	border-right: 1px solid var(--line);
}

.timeline-strip > div:last-child {
	border-right: 0;
}

.timeline-strip strong {
	color: var(--coral);
	font-size: clamp(1.55rem, 2.3vw, 2.55rem);
	font-weight: 300;
	letter-spacing: -.06em;
}

.timeline-strip span {
	max-width: 16ch;
	color: var(--mist);
	font-size: .72rem;
	font-weight: 670;
	letter-spacing: .09em;
	line-height: 1.45;
	text-transform: uppercase;
}

.section-heading {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	align-items: end;
	margin-bottom: clamp(2rem, 3.5vw, 3.25rem);
}

.section-heading h2 {
	margin: 0;
}

.section-heading > p {
	max-width: 30ch;
	margin: 0 0 .5rem;
	color: var(--mist);
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 2rem);
}

.game-card {
	position: relative;
	overflow: hidden;
	background: linear-gradient(145deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 3%));
	border: 1px solid var(--line);
	border-radius: var(--radius-m);
	transition: border-color .3s ease, transform .35s var(--ease), box-shadow .35s var(--ease);
}

.game-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--marine);
}

.game-card__media::after {
	content: "";
	position: absolute;
	inset: 35% 0 0;
	background: linear-gradient(transparent, rgb(0 12 18 / 82%));
}

.game-card__media picture,
.game-card__media img {
	width: 100%;
	height: 100%;
}

.game-card__media img {
	object-fit: cover;
	transition: transform .8s var(--ease), filter .5s ease;
}

.game-card__media--contain img {
	padding: .45rem;
	object-fit: contain;
}

.game-card__status {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	z-index: 2;
	padding: .38rem .65rem;
	background: rgb(0 18 28 / 75%);
	border: 1px solid rgb(255 255 255 / 18%);
	border-radius: 999px;
	color: var(--white);
	font-size: .65rem;
	font-weight: 730;
	letter-spacing: .08em;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}

.game-card > .fijoy-block-inline > span {
	display: block;
	padding: .75rem clamp(1.25rem, 2vw, 1.8rem) 0;
	color: var(--coral-light);
	font-size: .66rem;
	font-weight: 780;
	letter-spacing: .08em;
	line-height: 1.35;
	text-transform: uppercase;
}

.game-card__body {
	padding: clamp(1.25rem, 2vw, 1.8rem);
}

.game-card__body h3 {
	margin-bottom: .55rem;
}

.game-card__body h3 a {
	text-decoration: none;
}

.game-card__body > p:not(.eyebrow):not(.text-link) {
	min-height: 4.8em;
	color: rgb(255 255 255 / 64%);
	font-size: .96rem;
}

.community-feature {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	min-height: 440px;
	background:
		linear-gradient(130deg, rgb(238 130 91 / 10%), transparent 45%),
		var(--marine);
	border-block: 1px solid var(--line);
}

.community-feature__media {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 400px;
	overflow: hidden;
	background:
		linear-gradient(145deg, rgb(0 0 0 / 35%), transparent),
		radial-gradient(circle at center, rgb(8 123 161 / 30%), transparent 62%),
		var(--marine-black);
}

.community-feature__media::before,
.community-feature__media::after {
	content: "";
	position: absolute;
	border: 1px solid rgb(255 255 255 / 8%);
	border-radius: 50%;
}

.community-feature__media::before {
	width: 70%;
	aspect-ratio: 1;
}

.community-feature__media::after {
	width: 45%;
	aspect-ratio: 1;
}

.community-feature__media img {
	position: relative;
	z-index: 2;
	width: min(56%, 400px);
	aspect-ratio: 1;
	object-fit: contain;
	border-radius: 24px;
	filter: drop-shadow(0 30px 60px rgb(0 0 0 / 40%));
}

.community-feature__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2.5rem, 4vw, 4rem);
}

.community-feature__content h2 {
	max-width: 11ch;
}

.community-feature__content > p:not(.section-index) {
	max-width: 590px;
	color: rgb(255 255 255 / 68%);
}

.contact-band {
	position: relative;
	display: grid;
	grid-template-columns: 1.3fr .7fr;
	gap: clamp(2rem, 8vw, 8rem);
	align-items: center;
	margin-block: clamp(4rem, 7vw, 6.5rem);
	padding: clamp(2rem, 4.5vw, 4.25rem);
	overflow: hidden;
	background:
		linear-gradient(110deg, rgb(238 130 91 / 10%), transparent 42%),
		linear-gradient(155deg, rgb(8 123 161 / 8%), transparent 62%),
		var(--marine-deep);
	border-block: 1px solid var(--line);
	border-radius: 0;
	color: var(--white);
}

.contact-band::before {
	position: absolute;
	top: -1px;
	left: 0;
	width: clamp(78px, 11vw, 180px);
	height: 3px;
	background: var(--coral);
	content: "";
}

.contact-band::after {
	position: absolute;
	top: .9rem;
	right: clamp(1rem, 2vw, 1.8rem);
	color: var(--steel);
	content: "FIJOY / CONNECT";
	font-size: .56rem;
	font-weight: 760;
	letter-spacing: .15em;
}

.contact-band h2 {
	color: var(--white);
}

.contact-band .eyebrow {
	color: var(--coral-light);
}

.contact-band h2 {
	margin: 0;
	font-size: clamp(2.2rem, 4vw, 4.25rem);
}

.contact-band > div:last-child {
	font-weight: 560;
}

.contact-band > div:last-child p {
	color: rgb(255 255 255 / 72%);
}

.contact-band .button--light {
	background: var(--coral-light);
	color: var(--marine-deep);
}

/* Interior pages and Gutenberg content */

.page-main,
.single-main,
.archive-main,
.error-main {
	padding-top: var(--header-height);
}

.page-hero,
.single-hero {
	padding-block: clamp(3.75rem, 7vw, 6rem) clamp(2.5rem, 4.5vw, 4rem);
}

.page-hero {
	position: relative;
	border-bottom: 1px solid var(--line);
}

.page-hero::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: min(45vw, 620px);
	height: 100%;
	background:
		linear-gradient(120deg, transparent, rgb(0 77 107 / 22%)),
		repeating-linear-gradient(60deg, transparent 0 40px, rgb(255 255 255 / 3%) 41px 42px);
	mask-image: linear-gradient(90deg, transparent, black);
	pointer-events: none;
}

.page-hero h1 {
	max-width: 14ch;
	margin: 0;
	font-size: clamp(2.8rem, 5.5vw, 5.4rem);
}

.entry-content {
	--wp--style--global--content-size: var(--content);
	--wp--style--global--wide-size: var(--wide);
	overflow-wrap: anywhere;
}

.entry-content::after {
	content: "";
	display: block;
	height: clamp(3rem, 5vw, 5rem);
}

.entry-content > *:not(.alignfull):not(.alignwide) {
	width: min(100% - (2 * var(--gutter)), var(--content));
	margin-inline: auto;
}

.entry-content > .alignwide {
	width: min(100% - (2 * var(--gutter)), var(--wide));
	margin-inline: auto;
}

.entry-content > .alignfull {
	width: 100%;
	margin-inline: 0;
}

.entry-content > h1:first-of-type {
	max-width: 15ch;
	padding-top: clamp(3rem, 5vw, 5rem);
	margin-bottom: .5em;
	font-size: clamp(2.8rem, 5.5vw, 5.4rem);
}

.entry-content > h1:first-of-type + h2,
.entry-content > h1:first-of-type + h3 {
	margin-top: -1rem;
	color: var(--coral-light);
	font-size: clamp(1rem, 1.4vw, 1.35rem);
	font-weight: 650;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.entry-content h2 {
	margin-top: 1.35em;
	font-size: clamp(1.9rem, 3.3vw, 3.25rem);
}

.entry-content h3 {
	margin-top: 1.55em;
	font-size: clamp(1.35rem, 2vw, 2rem);
}

.entry-content :where(p, li) {
	color: rgb(255 255 255 / 76%);
}

.entry-content :where(a:not(.wp-element-button):not(.wp-block-button__link)) {
	color: var(--coral-light);
	text-decoration-color: rgb(238 130 91 / 45%);
	transition: color .2s ease, text-decoration-color .2s ease;
}

.entry-content :where(a:not(.wp-element-button):not(.wp-block-button__link)):hover {
	color: var(--white);
	text-decoration-color: var(--coral);
}

.entry-content hr,
.wp-block-separator {
	height: 1px;
	margin-block: clamp(1.5rem, 3vw, 2.5rem);
	background: var(--line);
	border: 0;
}

.entry-content .wp-block-cover {
	min-height: min(58svh, 660px);
}

.entry-content .wp-block-cover__background {
	background: linear-gradient(90deg, rgb(0 15 23 / 86%), rgb(0 15 23 / 18%)) !important;
	opacity: 1 !important;
}

.entry-content .wp-block-cover__image-background {
	filter: saturate(.92) contrast(1.04);
}

.entry-content .wp-block-columns {
	gap: clamp(1.5rem, 5vw, 5rem);
}

.entry-content .wp-block-column {
	min-width: 0;
}

.entry-content .wp-block-image {
	overflow: hidden;
	border-radius: var(--radius-s);
}

.entry-content .wp-block-image img {
	width: 100%;
	transition: transform .6s var(--ease), filter .4s ease;
}

.entry-content .wp-block-gallery {
	gap: clamp(.5rem, 1.5vw, 1rem) !important;
}

.entry-content .wp-block-gallery .wp-block-image {
	border-radius: 10px;
}

.entry-content .wp-block-image > .lightbox-trigger {
	display: grid;
	width: 44px;
	height: 44px;
	padding: 0;
	place-items: center;
	background: rgb(0 18 28 / 84%);
	border: 1px solid rgb(255 255 255 / 28%);
	border-radius: 50%;
	box-shadow: 0 8px 22px rgb(0 0 0 / 28%);
	cursor: zoom-in;
	transition:
		background-color .2s ease,
		border-color .2s ease,
		transform .2s ease;
}

.entry-content .wp-block-image > .lightbox-trigger:is(:hover, :focus-visible) {
	background: var(--coral);
	border-color: var(--coral-light);
	transform: scale(1.04);
}

.entry-content .wp-block-image > .lightbox-trigger svg {
	width: 14px;
	height: 14px;
}

.entry-content .wp-block-group.has-background,
.entry-content .wp-block-column.has-background {
	background: var(--surface) !important;
	border: 1px solid var(--line);
	border-radius: var(--radius-m);
}

.entry-content blockquote,
.wp-block-quote {
	padding: 1.2rem 1.4rem;
	margin-block: 2rem;
	background: rgb(0 77 107 / 18%);
	border-left: 3px solid var(--coral);
	border-radius: 0 var(--radius-s) var(--radius-s) 0;
}

.entry-content details {
	overflow: hidden;
	background: rgb(255 255 255 / 4%);
	border: 1px solid var(--line);
	border-radius: 12px;
}

.entry-content summary {
	position: relative;
	padding: 1rem 3rem 1rem 1.1rem;
	cursor: pointer;
	color: var(--white);
	font-weight: 700;
	list-style: none;
}

.entry-content summary::-webkit-details-marker {
	display: none;
}

.entry-content summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 1.1rem;
	color: var(--coral);
	font-size: 1.4rem;
	font-weight: 400;
	transform: translateY(-50%);
}

.entry-content details[open] summary::after {
	content: "−";
}

.entry-content details > *:not(summary) {
	padding-inline: 1.1rem;
}

.entry-content details > *:last-child {
	padding-bottom: 1rem;
}

.entry-content address,
.wp-block-jetpack-contact-info,
.fijoy-contact-info {
	padding: 1.5rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-s);
	color: var(--white);
	font-style: normal;
}

.fijoy-contact-info p {
	margin: 0;
}

/* Privacy Policy */

.privacy-main {
	background:
		radial-gradient(circle at 90% 8%, rgb(0 77 107 / 30%), transparent 28rem),
		var(--marine-deep);
}

.privacy-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
	gap: clamp(2rem, 7vw, 7rem);
	align-items: end;
	padding-block: clamp(4rem, 7vw, 6.5rem) clamp(3rem, 5vw, 4.5rem);
	border-bottom: 1px solid var(--line);
}

.privacy-hero h1 {
	max-width: none;
	margin: 0;
	font-size: clamp(3rem, 6vw, 6rem);
}

.privacy-hero__intro {
	max-width: 42rem;
	color: rgb(255 255 255 / 74%);
}

.privacy-hero__intro > p:first-child {
	font-size: clamp(1.05rem, 1vw + .8rem, 1.3rem);
	line-height: 1.55;
}

.privacy-updated {
	margin: 1.4rem 0 0;
	color: var(--mist);
	font-size: .72rem;
	font-weight: 720;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.privacy-updated time {
	margin-left: .45rem;
	color: var(--white);
}

.privacy-shell {
	display: grid;
	grid-template-columns: minmax(170px, 220px) minmax(0, 820px);
	justify-content: space-between;
	gap: clamp(2.5rem, 7vw, 7rem);
	padding-block: clamp(3.5rem, 6vw, 6rem);
}

.privacy-toc {
	position: sticky;
	top: calc(var(--header-height) + 2rem);
	align-self: start;
	padding: 1.1rem;
	background: rgb(255 255 255 / 4%);
	border: 1px solid var(--line);
	border-radius: var(--radius-s);
}

.privacy-toc h2 {
	margin-bottom: .8rem;
	color: var(--steel);
	font-size: .7rem;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.privacy-toc ol {
	display: grid;
	gap: .15rem;
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: privacy-nav;
}

.privacy-toc li {
	counter-increment: privacy-nav;
}

.privacy-toc a {
	display: grid;
	grid-template-columns: 1.6rem 1fr;
	gap: .35rem;
	padding: .42rem .35rem;
	border-radius: 7px;
	color: rgb(255 255 255 / 72%);
	font-size: .78rem;
	line-height: 1.35;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease;
}

.privacy-toc a::before {
	content: counter(privacy-nav, decimal-leading-zero);
	color: var(--coral-light);
	font-size: .62rem;
	font-weight: 720;
	letter-spacing: .06em;
}

.privacy-toc a:hover {
	background: var(--surface);
	color: var(--white);
}

.privacy-content {
	min-width: 0;
}

.privacy-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .8rem;
	margin: 0 0 clamp(3rem, 6vw, 5rem);
}

.privacy-summary > div {
	padding: 1.1rem;
	background: linear-gradient(145deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 3%));
	border: 1px solid var(--line);
	border-radius: var(--radius-s);
}

.privacy-summary :is(dt, h3) {
	margin-bottom: .35rem;
	color: var(--white);
	font-size: .84rem;
	font-weight: 760;
}

.privacy-summary :is(dd, p) {
	margin: 0;
	color: rgb(255 255 255 / 65%);
	font-size: .76rem;
	line-height: 1.55;
}

.privacy-section {
	padding-block: clamp(2.4rem, 4.5vw, 3.8rem);
	border-top: 1px solid var(--line);
	scroll-margin-top: calc(var(--header-height) + 2rem);
}

.privacy-section:first-of-type {
	border-top: 0;
}

.privacy-section .section-index {
	margin-bottom: .7rem;
	color: var(--coral-light);
}

.privacy-section h2 {
	max-width: 18ch;
	margin-bottom: .7em;
	font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.privacy-section p,
.privacy-section li {
	color: rgb(255 255 255 / 73%);
}

.privacy-section ul {
	display: grid;
	gap: .75rem;
	padding-left: 1.15rem;
	margin-block: 1.25rem;
}

.privacy-section li::marker {
	color: var(--coral);
}

.privacy-section a:not(.button):not(.wp-block-button__link):not(.wp-element-button) {
	color: var(--coral-light);
	text-decoration-color: rgb(255 173 140 / 42%);
}

.privacy-section--contact {
	position: relative;
	padding: clamp(1.75rem, 3vw, 2.75rem);
	background:
		linear-gradient(90deg, rgb(238 130 91 / 9%), transparent 62%),
		var(--marine-deep);
	border: 0;
	border-block: 1px solid var(--line);
	border-radius: 0;
}

.privacy-section--contact::before {
	position: absolute;
	top: -1px;
	left: 0;
	width: clamp(72px, 9vw, 142px);
	height: 3px;
	background: var(--coral);
	content: "";
}

/* Game pages */

.fijoy-game-page .entry-content {
	padding-top: 0;
}

.fijoy-game-page .entry-content > h1:first-of-type {
	position: relative;
	z-index: 2;
	max-width: 13ch;
}

.fijoy-game-page .entry-content > p,
.fijoy-game-page .entry-content > h2,
.fijoy-game-page .entry-content > h3,
.fijoy-game-page .entry-content > h4 {
	text-wrap: pretty;
}

.fijoy-game-page .entry-content > h4 {
	color: rgb(255 255 255 / 76%);
	font-size: clamp(1.1rem, 1.3vw, 1.4rem);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.5;
}

.fijoy-game-page .entry-content > figure.alignfull {
	position: relative;
	max-height: none;
	overflow: visible;
	background: rgb(255 255 255 / 2%);
}

.fijoy-game-page .entry-content > figure.alignfull img {
	width: 100%;
	max-height: 78svh;
	object-fit: contain;
	object-position: center;
}

.fijoy-game-page .entry-content > .wp-block-cover.alignfull {
	margin-block: clamp(2.5rem, 5vw, 4.5rem);
}

.fijoy-game-page .entry-content > .wp-block-separator {
	display: none;
}

/* Community */

.community-main {
	background:
		radial-gradient(circle at 20% 12%, rgb(0 77 107 / 30%), transparent 30rem),
		var(--marine-deep);
}

.page-community .entry-content > h1:first-of-type {
	max-width: 16ch;
	text-align: left !important;
}

.page-community .entry-content > h1:first-of-type + h3 {
	text-align: left !important;
}

.page-community .entry-content > h1:first-of-type + h2 {
	max-width: 42rem;
	margin-top: -.2rem;
	color: rgb(255 255 255 / 72%);
	font-size: clamp(1.1rem, 1.6vw, 1.35rem);
	font-weight: 520;
	line-height: 1.5;
	text-align: left !important;
}

.page-community .entry-content > .wp-block-group:first-of-type {
	gap: 1rem;
	align-items: stretch;
	padding: 0 !important;
	background: none !important;
	border: 0;
}

.page-community .entry-content > .wp-block-group:first-of-type > * {
	flex: 1 1 320px;
}

.page-community .entry-content > .wp-block-group:first-of-type .wp-block-cover {
	min-height: clamp(19rem, 32vw, 26rem);
}

.page-community .entry-content > .wp-block-group:first-of-type .has-large-font-size {
	font-size: clamp(1rem, 1.4vw, 1.2rem) !important;
	line-height: 1.55;
}

.community-toolbar {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: .75rem;
	width: min(100% - (2 * var(--gutter)), var(--wide));
	margin: 2rem auto;
	padding: .8rem;
	background: rgb(255 255 255 / 5%);
	border: 1px solid var(--line);
	border-radius: 18px;
	box-shadow: 0 20px 50px rgb(0 0 0 / 12%);
}

.community-search {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding-inline: .75rem;
}

.community-search::before {
	content: "";
	width: 12px;
	height: 12px;
	border: 2px solid var(--coral);
	border-radius: 50%;
	box-shadow: 5px 5px 0 -4px var(--coral);
}

.community-search input {
	width: 100%;
	min-height: 46px;
	padding: 0;
	background: transparent;
	border: 0;
	color: var(--white);
	outline: 0;
}

.community-search:focus-within {
	border-radius: 8px;
	outline: 3px solid var(--coral);
	outline-offset: 3px;
}

.community-search input::placeholder {
	color: rgb(255 255 255 / 70%);
}

.community-result-count {
	display: grid;
	place-items: center;
	min-width: 9rem;
	padding-inline: 1rem;
	background: var(--marine);
	border-radius: 12px;
	color: var(--mist);
	font-size: .72rem;
	font-weight: 720;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.page-community .entry-content > .wp-block-group.is-layout-grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: clamp(1rem, 2vw, 2rem) !important;
	align-items: start;
}

.fijoy-community-card {
	position: relative;
	align-self: start;
	gap: .65rem !important;
	padding: clamp(1.15rem, 2.5vw, 2rem) !important;
	overflow: hidden;
	background:
		linear-gradient(155deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 3%)) !important;
	border: 1px solid var(--line) !important;
	border-radius: var(--radius-m) !important;
	box-shadow: 0 20px 55px rgb(0 0 0 / 12%);
	transition: border-color .25s ease, transform .3s var(--ease);
}

.fijoy-community-card[hidden] {
	display: none !important;
}

.fijoy-community-card > .wp-block-separator {
	display: none;
}

.fijoy-community-card > .wp-block-group.is-nowrap,
.fijoy-community-card .is-nowrap {
	flex-wrap: wrap !important;
	gap: .45rem !important;
}

.fijoy-community-card h2,
.fijoy-community-card h3 {
	margin: 0;
	font-size: clamp(1.15rem, 1.7vw, 1.6rem);
	letter-spacing: -.025em;
	line-height: 1.18;
}

.fijoy-community-card h4,
.fijoy-community-card .community-meta {
	margin: 0;
	color: var(--white);
	font-size: .78rem;
	font-weight: 760;
	letter-spacing: .02em;
	line-height: 1.45;
}

.fijoy-community-card .wp-block-group.is-nowrap h2,
.fijoy-community-card .wp-block-group.is-nowrap h3,
.fijoy-community-card .wp-block-group.is-nowrap h4,
.fijoy-community-card .wp-block-group.is-nowrap .community-meta {
	padding: .3rem .55rem;
	background: rgb(0 77 107 / 32%);
	border: 1px solid rgb(255 255 255 / 10%);
	border-radius: 999px;
	color: var(--mist);
	font-size: .67rem;
	font-weight: 680;
	letter-spacing: .045em;
	white-space: normal;
}

.fijoy-community-card .wp-block-buttons {
	margin-block: .3rem;
}

.fijoy-community-card .wp-block-button__link {
	width: 100%;
}

.fijoy-community-card details {
	width: 100%;
}

.fijoy-community-card .wp-block-gallery {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
}

.fijoy-community-card .wp-block-gallery figure:first-child {
	grid-column: span 3;
}

.fijoy-community-card .wp-block-gallery img {
	aspect-ratio: 16 / 9;
	padding: .2rem;
	object-fit: contain !important;
	object-position: center;
	background: rgb(0 11 17 / 72%);
}

.page-community .entry-content > h2:last-of-type,
.page-community .entry-content > h2:last-of-type ~ p,
.page-community .entry-content > h2:last-of-type ~ .wp-block-buttons {
	position: relative;
}

.community-empty {
	grid-column: 1 / -1;
	padding: 3rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-m);
	text-align: center;
}

/* Posts, search, errors */

.archive-main,
.single-main,
.error-main {
	padding-bottom: clamp(5rem, 10vw, 10rem);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.post-card {
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-m);
}

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

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s var(--ease);
}

.post-card__body {
	padding: 1.5rem;
}

.post-card__body h2 {
	font-size: 1.6rem;
}

.post-card__body h2 a {
	text-decoration: none;
}

.empty-state {
	grid-column: 1 / -1;
	padding: clamp(2rem, 5vw, 5rem);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-m);
}

.single-article {
	max-width: var(--wide);
	margin-inline: auto;
}

.single-hero h1 {
	max-width: 14ch;
}

.single-hero__image {
	margin-top: 3rem;
	overflow: hidden;
	border-radius: var(--radius-m);
}

.error-main {
	display: grid;
	place-items: center;
	min-height: 84svh;
}

.error-panel {
	position: relative;
	width: min(100%, 920px);
	padding-block: 6rem;
}

.error-panel h1 {
	max-width: 10ch;
	font-size: clamp(3rem, 7vw, 7rem);
}

.error-panel > p:not(.eyebrow):not(.error-code) {
	max-width: 42ch;
	color: var(--mist);
}

.error-code {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	margin: 0;
	color: rgb(255 255 255 / 3%);
	font-size: clamp(10rem, 30vw, 26rem);
	font-weight: 800;
	line-height: .8;
}

/* Footer */

.site-footer {
	position: relative;
	overflow: hidden;
	background: var(--marine-black);
	border-top: 1px solid var(--line);
}

.site-footer__glow {
	position: absolute;
	top: -24rem;
	left: 10%;
	width: 48rem;
	height: 38rem;
	background: radial-gradient(circle, rgb(0 77 107 / 42%), transparent 66%);
	pointer-events: none;
}

.site-footer__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(3rem, 10vw, 10rem);
	width: min(100% - (2 * var(--gutter)), var(--wide));
	padding-block: clamp(3.5rem, 5.5vw, 5.5rem);
	margin-inline: auto;
}

.fijoy-brand--footer .fijoy-brand__logo {
	width: clamp(160px, 15vw, 205px);
}

.site-footer__brand > p {
	max-width: 38ch;
	margin-top: 1.1rem;
	color: var(--mist);
}

.location-label {
	color: rgb(255 255 255 / 68%);
	font-size: .7rem;
	font-weight: 680;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.site-footer__nav {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.site-footer__nav h2 {
	margin-bottom: 1.25rem;
	color: var(--steel);
	font-size: .72rem;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.site-footer__nav ul {
	display: grid;
	gap: .6rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__nav a {
	color: rgb(255 255 255 / 78%);
	font-size: .94rem;
	text-decoration: none;
	transition: color .2s ease, padding-left .25s var(--ease);
}

.site-footer__nav a:hover {
	padding-left: .2rem;
	color: var(--coral-light);
}

.site-footer__contact-link {
	display: inline-flex;
	margin-bottom: 1rem;
	color: var(--white);
	font-weight: 720;
}

.site-footer__social-links {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem 1rem;
	padding-top: .85rem !important;
	border-top: 1px solid rgb(255 255 255 / 10%);
}

.site-footer__social-links a {
	font-size: .84rem;
}

.site-footer__all-channels {
	display: inline-flex;
	margin-top: .9rem;
	color: var(--coral-light) !important;
	font-size: .72rem !important;
	font-weight: 740;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.site-footer__legal {
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	width: min(100% - (2 * var(--gutter)), var(--wide));
	padding-block: 1.4rem;
	margin-inline: auto;
	border-top: 1px solid var(--line);
	color: rgb(255 255 255 / 76%);
	font-size: .72rem;
}

.site-footer__legal p {
	margin: 0;
}

.site-footer__legal a {
	color: inherit;
}

@media (hover: hover) and (pointer: fine) {
	.fijoy-brand:hover .fijoy-brand__logo {
		opacity: .9;
		transform: translateY(-1px);
	}

	.game-card:hover,
	.js-ready [data-reveal].is-visible.game-card:hover {
		border-color: rgb(238 130 91 / 48%);
		box-shadow: var(--shadow);
		transform: translateY(-4px);
	}

	.game-card:hover .game-card__media img {
		transform: scale(1.035);
	}

	.entry-content .wp-block-image a:hover img {
		filter: brightness(1.05) saturate(1.05);
		transform: scale(1.015);
	}

	.fijoy-community-card:hover {
		border-color: rgb(238 130 91 / 40%) !important;
		transform: translateY(-3px);
	}

	.post-card:hover .post-card__media img {
		transform: scale(1.035);
	}
}

/* Floorball Editor, Store and Steam news */

.editor-main,
.store-main,
.newswire-main {
	padding-top: var(--header-height);
}

.compact-page-hero {
	padding-block: clamp(3.5rem, 6vw, 5.5rem) clamp(2.5rem, 4vw, 3.5rem);
}

.compact-page-hero h1 {
	max-width: 11ch;
	margin-bottom: .2em;
	font-size: clamp(3.25rem, 6vw, 6rem);
}

.compact-page-hero > p:last-child {
	max-width: 42rem;
	margin: 0;
	color: rgb(255 255 255 / 72%);
	font-size: clamp(1.05rem, 1vw + .8rem, 1.3rem);
}

.editor-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, .7fr);
	gap: clamp(2rem, 7vw, 7rem);
	align-items: center;
	padding-block: clamp(3rem, 6vw, 5.5rem);
}

.editor-hero h1 {
	max-width: 10ch;
	margin-bottom: .28em;
	font-size: clamp(3.5rem, 7vw, 7rem);
}

.editor-hero__lead {
	max-width: 42rem;
	margin-bottom: 1.6rem;
	color: rgb(255 255 255 / 76%);
	font-size: clamp(1.05rem, 1.2vw + .75rem, 1.35rem);
	line-height: 1.55;
}

.editor-hero__art {
	position: relative;
	width: min(100%, 470px);
	justify-self: end;
}

.editor-hero__art::before {
	content: "";
	position: absolute;
	inset: 12%;
	z-index: -1;
	background: rgb(8 123 161 / 35%);
	border-radius: 50%;
	filter: blur(60px);
}

.editor-hero__art img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
	border-radius: clamp(18px, 3vw, 36px);
	box-shadow: 0 30px 80px rgb(0 0 0 / 35%);
}

.product-facts {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	padding: 0;
	margin: 0 0 1.6rem;
	list-style: none;
}

.product-facts li {
	padding: .42rem .72rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--mist);
	font-size: .68rem;
	font-weight: 720;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.editor-steps,
.workshop-section,
.editor-projects,
.store-section,
.store-news,
.newswire-section {
	padding-block: clamp(2.75rem, 3.5vw, 4rem);
}

.compact-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr);
	gap: clamp(1.5rem, 5vw, 5rem);
	align-items: end;
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.compact-heading h2 {
	max-width: 13ch;
	margin: 0;
	font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.compact-heading > p,
.compact-heading > .text-link {
	max-width: 36rem;
	margin: 0;
	color: rgb(255 255 255 / 68%);
}

.community-content-notice {
	display: grid;
	grid-template-columns: minmax(160px, .28fr) minmax(0, 1fr);
	gap: clamp(.75rem, 3vw, 3rem);
	align-items: start;
	padding: clamp(1.15rem, 2vw, 1.55rem) clamp(1.1rem, 2.4vw, 2rem);
	margin: 0 0 clamp(1.25rem, 3vw, 2rem);
	border-block: 1px solid var(--line);
	background: linear-gradient(90deg, rgb(238 130 91 / 9%), transparent 64%);
}

.community-content-notice strong {
	color: var(--coral-light);
	font-size: .67rem;
	font-weight: 800;
	letter-spacing: .12em;
	line-height: 1.45;
	text-transform: uppercase;
}

.community-content-notice p {
	max-width: 78ch;
	margin: 0;
	color: rgb(255 255 255 / 72%);
	font-size: .82rem;
	line-height: 1.6;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: none;
}

.process-grid li,
.workshop-card,
.news-card {
	padding: clamp(1.25rem, 2vw, 1.75rem);
	background: linear-gradient(145deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 3%));
	border: 1px solid var(--line);
	border-radius: 18px;
}

.process-grid li > span {
	display: block;
	margin-bottom: 1.5rem;
	color: var(--coral-light);
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .1em;
}

.process-grid h3,
.workshop-card h3,
.news-card h3 {
	margin-bottom: .45rem;
	font-size: clamp(1.15rem, 1.8vw, 1.5rem);
	letter-spacing: -.025em;
}

.process-grid p,
.workshop-card p,
.news-card p {
	margin: 0;
	color: rgb(255 255 255 / 68%);
	font-size: .9rem;
	line-height: 1.55;
}

.workshop-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.workshop-card {
	display: flex;
	flex-direction: column;
	min-height: 220px;
}

.workshop-card h3 {
	max-width: 22ch;
}

.workshop-card p {
	margin-bottom: 1.25rem;
}

.workshop-card .text-link {
	margin-top: auto;
}

.workshop-card__topline,
.news-card__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: .4rem 1rem;
	margin-bottom: 1rem;
	color: var(--coral-light);
	font-size: .62rem;
	font-weight: 760;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.workshop-card__topline span:last-child,
.news-card__meta time {
	color: var(--mist);
}

.section-action {
	margin: 1.25rem 0 0;
}

.editor-project-grid.entry-content {
	padding: 0;
}

.editor-project-grid.entry-content::after {
	display: none;
}

.editor-project-grid.entry-content > * {
	width: 100% !important;
	margin-inline: 0 !important;
}

:is(.editor-project-grid, .editor-projects) > .wp-block-group.is-layout-grid,
:is(.editor-project-grid, .editor-projects) > .editor-legacy-grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 1rem !important;
	align-items: start;
}

:is(.editor-project-grid, .editor-projects) .fijoy-community-card {
	align-self: start;
	height: auto;
	min-height: 39.125rem;
}

.editor-projects .community-toolbar {
	width: 100%;
	margin-inline: 0;
}

:is(.editor-project-grid, .editor-projects) .community-card__title {
	display: grid;
	align-items: center;
	min-block-size: 2.36em;
}

:is(.editor-project-grid, .editor-projects) .fijoy-community-card > .wp-block-group {
	padding: 0 !important;
	background: none !important;
	border: 0 !important;
}

:is(.editor-project-grid, .editor-projects) .community-card__inner {
	display: grid !important;
	grid-template-columns: minmax(0, 1.05fr) minmax(200px, .95fr);
	gap: .75rem 1rem !important;
	align-items: start;
}

.community-card__inner > .community-card__title {
	grid-column: 1 / -1;
}

.community-cover-gallery {
	grid-column: 1;
	align-self: start;
	width: 100%;
	min-height: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	margin: 0 !important;
	background: rgb(0 11 17 / 72%);
	border: 1px solid rgb(255 255 255 / 7%);
	border-radius: 10px;
}

.community-cover-gallery figure,
.community-cover-gallery img {
	width: 100% !important;
	height: 100% !important;
}

.community-cover-gallery img {
	display: block;
	padding: clamp(.55rem, 1.1vw, .9rem);
	object-fit: contain !important;
}

.community-card__info {
	display: grid;
	grid-column: 2;
	gap: .45rem;
	align-content: start;
	min-width: 0;
}

.community-card__info > * {
	margin-block: 0 !important;
}

.community-card__inner > .community-gallery-disclosure {
	grid-column: 1 / -1;
	margin-top: .25rem;
}

.community-card__inner > .community-changelog-disclosure,
.community-card__inner > .community-meta--feedback,
.community-card__inner > .community-meta--creator {
	grid-column: 1 / -1;
}

.community-card__inner > .community-changelog-disclosure {
	margin-top: .25rem;
}

.community-changelog-disclosure > summary {
	min-height: 58px;
}

.community-changelog-disclosure > :not(summary) {
	max-width: none;
}

.community-changelog-disclosure details {
	margin-inline: clamp(.75rem, 1.5vw, 1.25rem);
}

.community-changelog-disclosure details ul {
	columns: 2 260px;
	column-gap: clamp(1.5rem, 3vw, 3rem);
	padding-right: clamp(.75rem, 1.5vw, 1.25rem);
}

.community-changelog-disclosure details li {
	break-inside: avoid;
	margin-bottom: .45rem;
}

.community-card__info details > summary {
	min-height: 48px;
}

.community-catalogue {
	padding-block: clamp(3.75rem, 7vw, 7rem);
}

.community-catalogue .community-content-notice {
	margin-block: clamp(1.5rem, 3vw, 2.5rem);
}

.community-catalogue .community-toolbar {
	width: 100%;
	margin: 0 0 1rem;
	border-radius: 0;
	box-shadow: none;
}

.community-catalogue__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	align-items: start;
}

.community-catalogue-card {
	position: relative;
	align-self: start;
	width: 100%;
	margin: 0;
	overflow: hidden;
	background:
		linear-gradient(145deg, rgb(8 123 161 / 8%), transparent 60%),
		var(--marine-deep) !important;
	border: 1px solid var(--line) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.community-catalogue-card::before {
	position: absolute;
	top: -1px;
	left: 0;
	z-index: 4;
	width: clamp(68px, 8vw, 120px);
	height: 3px;
	background: var(--coral);
	content: "";
}

.community-catalogue-card--workshop {
	display: flex;
	flex-direction: column;
	min-height: 14rem;
	padding: clamp(1.25rem, 1.8vw, 1.7rem);
}

.community-catalogue-card--direct {
	min-height: 0;
	padding: clamp(1.15rem, 2.2vw, 1.75rem) !important;
}

.community-catalogue-card[hidden] {
	display: none !important;
}

.community-catalogue-card .community-card__inner {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(150px, 1fr);
	gap: .8rem 1rem !important;
	align-items: start;
	padding: 0 !important;
	background: none !important;
	border: 0 !important;
}

.community-catalogue-card .community-card__topline {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: .45rem 1rem;
	margin: 0 0 .25rem;
	color: var(--mist);
	font-size: .64rem;
	font-weight: 780;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.community-availability {
	color: var(--coral-light);
}

.community-catalogue-card .community-card__title {
	grid-column: 1 / -1;
	min-block-size: 0;
	margin: 0 0 .2rem;
}

.community-catalogue-card .community-cover-gallery {
	grid-column: 1;
}

.community-catalogue-card .community-card__info {
	grid-column: 2;
}

.community-catalogue-card .community-card__inner > :is(
	.community-gallery-disclosure,
	.community-changelog-disclosure,
	.community-meta--feedback,
	.community-meta--creator
) {
	grid-column: 1 / -1;
}

.community-catalogue-card--workshop .text-link {
	margin-top: auto;
}

.community-catalogue__workshop-link {
	margin-top: 1.25rem;
}

.community-catalogue .community-empty {
	border-radius: 0;
}

.store-main {
	background:
		radial-gradient(circle at 80% 8%, rgb(8 123 161 / 22%), transparent 28rem),
		var(--marine-deep);
}

.store-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.store-card {
	overflow: hidden;
	background: linear-gradient(150deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 3%));
	border: 1px solid var(--line);
	border-radius: 20px;
}

.store-card--featured,
.store-card--wide {
	display: grid;
	grid-column: span 2;
	grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
}

.store-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--marine-black);
}

.store-card--featured .store-card__media,
.store-card--wide .store-card__media {
	height: 100%;
	aspect-ratio: auto;
}

.store-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .6s var(--ease);
}

.store-card__media--contain img {
	padding: 1.25rem;
	object-fit: contain;
}

.store-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(1.35rem, 2.5vw, 2.1rem);
}

.store-card__body h2 {
	margin-bottom: .45rem;
	font-size: clamp(1.5rem, 2.3vw, 2.4rem);
}

.store-card__body > p:not(.eyebrow) {
	margin-top: 0;
	color: rgb(255 255 255 / 68%);
	font-size: .94rem;
	line-height: 1.55;
}

.store-price {
	display: grid;
	gap: .1rem;
	margin: auto 0 1.15rem;
}

.store-price strong {
	font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

.store-price span {
	color: var(--mist);
	font-size: .72rem;
}

.steam-rating {
	display: flex;
	gap: .75rem;
	align-items: center;
	padding: .65rem .8rem;
	margin: 0 0 1.15rem;
	background: rgb(8 123 161 / 16%);
	border: 1px solid rgb(8 123 161 / 42%);
	border-radius: 12px;
}

.steam-rating strong {
	color: var(--coral-light);
	font-size: 1.25rem;
}

.steam-rating span {
	color: var(--mist);
	font-size: .72rem;
	line-height: 1.35;
}

.steam-price-note {
	max-width: 62rem;
	margin: 1.2rem 0 0;
	color: rgb(255 255 255 / 72%);
	font-size: .72rem;
}

.store-hero {
	padding-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
}

.store-section {
	padding-top: clamp(1.75rem, 3vw, 2.5rem);
}

.store-catalog-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, .52fr);
	gap: clamp(1.5rem, 5vw, 5rem);
	align-items: end;
	margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.store-catalog-heading h2 {
	max-width: 13ch;
	margin: 0;
	font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.store-catalog-heading > p {
	max-width: 34rem;
	margin: 0;
	color: rgb(255 255 255 / 68%);
}

.store-toolbar {
	position: relative;
	display: grid;
	grid-template-columns: minmax(240px, 1fr) minmax(210px, .42fr) auto;
	gap: 1px;
	align-items: stretch;
	margin-bottom: 1.25rem;
	background: rgb(169 184 190 / 22%);
	border: 1px solid rgb(169 184 190 / 24%);
}

.store-toolbar::before {
	position: absolute;
	top: -1px;
	left: 0;
	z-index: 2;
	width: clamp(72px, 9vw, 142px);
	height: 3px;
	background: var(--coral);
	content: "";
}

.store-toolbar label {
	display: grid;
	gap: .45rem;
	padding: .85rem 1rem 1rem;
	background: var(--marine-deep);
}

.store-toolbar label > span,
.store-toolbar__count {
	color: var(--mist);
	font-size: .61rem;
	font-weight: 780;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.store-toolbar input,
.store-toolbar select {
	width: 100%;
	min-height: 46px;
	padding: .65rem .8rem;
	background: rgb(255 255 255 / 4%);
	border: 1px solid rgb(169 184 190 / 30%);
	border-radius: 0;
	color: var(--white);
	font: inherit;
	font-size: .84rem;
}

.store-toolbar input::placeholder {
	color: rgb(255 255 255 / 46%);
}

.store-toolbar input:focus,
.store-toolbar select:focus {
	border-color: var(--coral-light);
	outline: 2px solid rgb(255 173 140 / 26%);
	outline-offset: 1px;
}

.store-toolbar select option {
	background: var(--marine-deep);
	color: var(--white);
}

.store-toolbar__count {
	display: grid;
	min-width: 118px;
	padding: 1rem;
	margin: 0;
	place-items: center;
	background: rgb(8 123 161 / 13%);
	text-align: center;
}

.store-toolbar__submit {
	grid-column: 1 / -1;
	border-radius: 0;
}

.store-toolbar__submit[hidden] {
	display: none;
}

.store-catalog {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
	background: transparent;
	border: 0;
}

.catalog-product {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	background:
		linear-gradient(155deg, rgb(8 123 161 / 9%), transparent 44%),
		var(--marine-deep);
	border: 1px solid rgb(169 184 190 / 25%);
}

.catalog-product[hidden] {
	display: none;
}

.catalog-product__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background:
		linear-gradient(145deg, rgb(8 123 161 / 10%), transparent 55%),
		var(--marine-black);
	border-bottom: 1px solid var(--line);
}

.catalog-product__media::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 38%;
	height: 3px;
	background: var(--coral);
	content: "";
	pointer-events: none;
}

.catalog-product__media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.catalog-product__media img {
	width: 100%;
	height: 100%;
	padding: 0;
	object-fit: cover;
	object-position: center;
	transition: transform .5s var(--ease), opacity .5s var(--ease);
}

.catalog-product__media--contain img {
	padding: clamp(1rem, 2.4vw, 2rem);
	object-fit: contain;
}

.catalog-product__media:hover img,
.catalog-product__media:focus-visible img {
	opacity: .9;
	transform: scale(1.025);
}

.catalog-product__commerce-rail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(8.5rem, auto);
	gap: .75rem 1rem;
	align-items: center;
	min-height: 76px;
	padding: .8rem clamp(1rem, 1.5vw, 1.35rem);
	background:
		linear-gradient(105deg, rgb(8 123 161 / 9%), transparent 55%),
		rgb(255 255 255 / 2%);
	border-bottom: 1px solid var(--line);
}

.catalog-product__availability {
	color: var(--mist);
	font-size: .6rem;
	font-weight: 820;
	letter-spacing: .09em;
	line-height: 1.35;
	text-transform: uppercase;
}

.catalog-product__price-snapshot {
	display: grid;
	grid-template-columns: auto auto;
	gap: .05rem .55rem;
	align-items: baseline;
	justify-content: end;
	text-align: right;
}

.catalog-product__price-heading {
	display: flex;
	grid-column: 1 / -1;
	gap: .45rem;
	align-items: center;
	justify-content: flex-end;
}

.catalog-product__price-heading small {
	color: var(--coral-light);
	font-size: .54rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.catalog-product__price-heading em {
	padding: .15rem .3rem;
	background: var(--coral-light);
	color: var(--marine-black);
	font-size: .52rem;
	font-style: normal;
	font-weight: 850;
	letter-spacing: .07em;
	line-height: 1.2;
	text-transform: uppercase;
}

.catalog-product__price-snapshot strong {
	color: var(--white);
	font-size: clamp(1rem, 1.35vw, 1.3rem);
	letter-spacing: -.025em;
	line-height: 1.12;
}

.catalog-product--sale .catalog-product__price-snapshot strong {
	color: var(--coral-light);
}

.catalog-product__price-snapshot del {
	color: var(--mist);
	font-size: .62rem;
}

.catalog-product__price-note {
	margin: 0 0 .85rem;
	color: var(--mist);
	font-size: .65rem;
	line-height: 1.5;
}

.catalog-product__body {
	display: flex;
	min-height: 0;
	flex: 1;
	flex-direction: column;
	padding: clamp(1.25rem, 1.8vw, 1.75rem);
}

.catalog-product__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: .35rem 1rem;
	padding-bottom: .7rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--line);
	color: var(--mist);
	font-size: .59rem;
	font-weight: 780;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.catalog-product--sale .catalog-product__meta span:first-child {
	color: var(--coral-light);
}

.catalog-product h3 {
	margin: 0 0 .65rem;
	font-size: clamp(1.35rem, 1.8vw, 1.85rem);
	letter-spacing: -.035em;
	line-height: 1.08;
}

.catalog-product__description {
	margin: 0 0 1.25rem;
	color: rgb(255 255 255 / 66%);
	font-size: .88rem;
	line-height: 1.65;
}

.catalog-product__commerce {
	margin-top: auto;
}

.catalog-product__rating {
	display: flex;
	gap: .55rem;
	align-items: baseline;
	padding-top: .7rem;
	margin-bottom: .9rem;
	border-top: 1px solid var(--line);
}

.catalog-product__rating strong {
	color: var(--coral-light);
	font-size: 1.05rem;
}

.catalog-product__rating span {
	color: var(--mist);
	font-size: .66rem;
}

.catalog-product__action {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
	min-height: 54px;
	padding: .9rem 1rem;
	margin-top: .5rem;
	background: var(--coral-light);
	border: 1px solid var(--coral-light);
	color: var(--marine-black);
	font-size: .72rem;
	font-weight: 820;
	letter-spacing: .06em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.catalog-product__action span {
	color: currentcolor;
	font-size: 1rem;
}

.catalog-product__action:hover,
.catalog-product__action:focus-visible {
	padding-inline: 1rem;
	background: var(--white);
	border-color: var(--white);
	color: var(--marine-black);
	transform: translateY(-2px);
}

.store-empty {
	grid-column: 1 / -1;
	padding: clamp(2rem, 5vw, 4rem);
	background: var(--marine-deep);
	text-align: center;
}

.store-empty[hidden] {
	display: none;
}

.store-empty h3 {
	margin-bottom: .35rem;
}

.store-empty p {
	margin: 0;
	color: var(--mist);
}

@media (max-width: 1100px) {
	.store-catalog {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.store-catalog-heading,
	.store-toolbar {
		grid-template-columns: 1fr;
	}

	.store-catalog {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.store-toolbar__count {
		min-height: 44px;
		padding: .7rem 1rem;
		place-items: center start;
		text-align: left;
	}
}

@media (max-width: 720px) {
	.store-catalog {
		grid-template-columns: 1fr;
	}

	.catalog-product__commerce-rail {
		grid-template-columns: minmax(0, 1fr) minmax(7.75rem, auto);
		min-height: 70px;
		padding: .75rem 1rem;
	}

	.catalog-product__body {
		min-height: 0;
	}
}

.newswire-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.news-card {
	display: flex;
	flex-direction: column;
	min-height: 250px;
}

.news-card h3 a {
	text-decoration: none;
}

.news-card p {
	margin-bottom: 1.2rem;
}

.news-card .text-link {
	margin-top: auto;
}

.newswire-sources {
	padding: 1.5rem;
	margin-top: 1.5rem;
	background: var(--surface);
	border-radius: 16px;
}

.newswire-sources > p {
	margin-top: 0;
	color: var(--mist);
}

/* Floorball League 2010 Remaster */

.remaster-main {
	padding-top: var(--header-height);
	background:
		radial-gradient(circle at 84% 12%, rgb(8 123 161 / 20%), transparent 32rem),
		var(--marine-deep);
}

.remaster-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
	align-items: center;
	min-height: min(820px, calc(100svh - var(--header-height)));
	padding-inline: var(--gutter);
	overflow: hidden;
	background:
		linear-gradient(90deg, rgb(0 18 28 / 98%) 0 46%, rgb(0 18 28 / 66%) 70%, rgb(0 18 28 / 90%)),
		linear-gradient(145deg, var(--marine-deep), var(--marine));
	border-bottom: 1px solid var(--line);
}

.remaster-hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(120deg, transparent 49%, rgb(255 255 255 / 3%) 50%, transparent 51%),
		linear-gradient(30deg, transparent 49%, rgb(255 255 255 / 2%) 50%, transparent 51%);
	background-size: 84px 84px;
	content: "";
	opacity: .34;
	pointer-events: none;
}

.remaster-hero__copy {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-block: clamp(4rem, 8vw, 7rem);
	margin: 0;
}

.remaster-hero__copy .eyebrow {
	margin-bottom: .5rem;
}

.remaster-hero__logo {
	display: block;
	width: min(460px, 100%);
	max-width: 100%;
	height: auto;
	margin: 0 auto -.45rem;
	object-fit: contain;
}

.remaster-hero__lead {
	max-width: 650px;
	margin: 0 0 1.4rem;
	color: rgb(255 255 255 / 78%);
	font-size: clamp(1.05rem, 1.7vw, 1.35rem);
	line-height: 1.55;
}

.remaster-hero__art {
	position: relative;
	z-index: 1;
	align-self: end;
	height: min(760px, calc(100svh - var(--header-height)));
}

.remaster-hero__art picture,
.remaster-hero__art img {
	display: block;
	width: 100%;
	height: 100%;
}

.remaster-hero__art img {
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(0 1.5rem 2.5rem rgb(0 0 0 / 34%));
}

@media (min-width: 681px) and (max-height: 820px) {
	.remaster-hero__copy {
		padding-block: 2rem 1rem;
	}

	.remaster-hero__logo {
		width: min(320px, 56vw);
	}

	.remaster-hero__lead {
		font-size: 1.05rem;
	}
}

.remaster-story,
.remaster-features,
.remaster-details,
.remaster-roadmap {
	padding-block: clamp(2.75rem, 3.5vw, 4rem);
}

.remaster-story__copy {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.5rem, 4vw, 4rem);
	max-width: 1040px;
	margin-top: 2.25rem;
}

.remaster-story__copy p,
.remaster-tech__copy p {
	margin: 0;
	color: rgb(255 255 255 / 72%);
	font-size: clamp(1rem, 1.25vw, 1.16rem);
	line-height: 1.75;
}

.remaster-feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.remaster-feature-grid article,
.roadmap-grid article {
	padding: clamp(1.25rem, 2vw, 1.8rem);
	background: linear-gradient(145deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 3%));
	border: 1px solid var(--line);
	border-radius: 18px;
}

.remaster-feature-grid article > span {
	display: block;
	margin-bottom: 1.7rem;
	color: var(--coral-light);
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .1em;
}

.remaster-feature-grid h3,
.roadmap-grid h3 {
	margin-bottom: .55rem;
	font-size: clamp(1.15rem, 1.65vw, 1.45rem);
}

.remaster-feature-grid p,
.roadmap-grid article > p:not(.eyebrow) {
	margin: 0;
	color: rgb(255 255 255 / 66%);
	font-size: .88rem;
	line-height: 1.6;
}

.character-feature {
	display: grid;
	grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
	gap: clamp(2rem, 6vw, 6rem);
	padding: clamp(2.75rem, 4vw, 4rem) clamp(1.5rem, 3.5vw, 3.5rem);
	background:
		radial-gradient(circle at 92% 30%, rgb(238 130 91 / 16%), transparent 24rem),
		linear-gradient(140deg, rgb(8 123 161 / 18%), rgb(255 255 255 / 3%));
	border-block: 1px solid var(--line);
}

.character-feature__intro p:last-child {
	max-width: 600px;
	margin-bottom: 0;
	color: rgb(255 255 255 / 72%);
	line-height: 1.7;
}

.character-steps {
	display: grid;
	gap: .7rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.character-steps li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: center;
	padding: 1rem 1.15rem;
	background: rgb(0 18 28 / 62%);
	border: 1px solid var(--line);
	border-radius: 14px;
}

.character-steps span {
	display: grid;
	width: 2.4rem;
	height: 2.4rem;
	place-items: center;
	color: var(--coral-light);
	background: rgb(238 130 91 / 10%);
	border-radius: 50%;
	font-size: .68rem;
	font-weight: 800;
}

.character-steps p {
	margin: 0;
	color: rgb(255 255 255 / 78%);
	font-size: .9rem;
	line-height: 1.55;
}

.detail-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .65rem;
	padding: 0;
	margin: 2rem 0 0;
	list-style: none;
}

.detail-list li {
	position: relative;
	padding: .85rem 1rem .85rem 2rem;
	color: rgb(255 255 255 / 75%);
	background: rgb(255 255 255 / 4%);
	border: 1px solid var(--line);
	border-radius: 12px;
	font-size: .84rem;
	line-height: 1.45;
}

.detail-list li::before {
	position: absolute;
	top: 1.1rem;
	left: .85rem;
	width: .42rem;
	height: .42rem;
	background: var(--coral);
	border-radius: 50%;
	content: "";
}

.remaster-tech {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	gap: clamp(2rem, 7vw, 7rem);
	padding-block: clamp(3rem, 4.5vw, 4.75rem);
	border-block: 1px solid var(--line);
}

.remaster-tech__copy {
	display: grid;
	gap: 1.2rem;
}

.remaster-tech__capabilities {
	display: grid;
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--line);
	list-style: none;
	counter-reset: fiona-capability;
}

.remaster-tech__capabilities li {
	position: relative;
	display: grid;
	grid-template-columns: 3rem minmax(150px, .72fr) minmax(0, 1.28fr);
	gap: 1rem;
	align-items: baseline;
	padding: 1.15rem 0;
	border-bottom: 1px solid var(--line);
	counter-increment: fiona-capability;
}

.remaster-tech__capabilities li::before {
	color: var(--coral-light);
	font-size: .62rem;
	font-weight: 820;
	letter-spacing: .1em;
	content: "0" counter(fiona-capability);
}

.remaster-tech__capabilities strong {
	color: var(--white);
	font-size: clamp(.95rem, 1.35vw, 1.1rem);
}

.remaster-tech__capabilities span {
	color: rgb(255 255 255 / 64%);
	font-size: .86rem;
	line-height: 1.55;
}

.roadmap-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.roadmap-grid .eyebrow {
	min-height: 2.1em;
	margin-bottom: .65rem;
	font-size: .58rem;
}

.development-note {
	max-width: 700px;
	margin: 1.35rem 0 0;
	color: rgb(255 255 255 / 70%);
	font-size: .72rem;
	line-height: 1.55;
}

.remaster-cta {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
	gap: clamp(2rem, 6vw, 6rem);
	padding: clamp(2.75rem, 3.5vw, 4rem) clamp(1.5rem, 3.5vw, 3.5rem);
	margin-bottom: clamp(2.75rem, 3.5vw, 4rem);
	color: var(--white);
	background:
		linear-gradient(110deg, rgb(238 130 91 / 10%), transparent 46%),
		var(--marine-deep);
	border-block: 1px solid var(--line);
	border-radius: 0;
}

.remaster-cta::before {
	position: absolute;
	top: -1px;
	left: 0;
	width: clamp(78px, 11vw, 180px);
	height: 3px;
	background: var(--coral);
	content: "";
}

.remaster-cta h2 {
	max-width: 760px;
	margin-bottom: 0;
	color: var(--white);
}

.remaster-cta .eyebrow,
.remaster-cta .text-link {
	color: var(--coral-light);
}

.remaster-cta p {
	margin-top: 0;
	color: rgb(255 255 255 / 72%);
}

/* Source-backed product, contact and future pages */

.product-main,
.contact-main,
.future-main {
	padding-top: var(--header-height);
	background:
		radial-gradient(circle at 84% 5%, rgb(8 123 161 / 18%), transparent 30rem),
		var(--marine-deep);
}

.product-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
	min-height: min(760px, calc(100svh - var(--header-height)));
	padding-block: clamp(3rem, 6vw, 5.5rem) clamp(4.5rem, 8vw, 7rem);
	border-bottom: 1px solid var(--line);
}

.product-hero::before,
.contact-hero::before,
.future-hero::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(120deg, transparent 49%, rgb(255 255 255 / 2.5%) 50%, transparent 51%);
	background-size: 74px 74px;
	content: "";
	mask-image: linear-gradient(90deg, transparent, black);
	pointer-events: none;
}

.product-hero__copy,
.product-hero__media,
.contact-hero > *,
.future-hero > * {
	position: relative;
	z-index: 1;
}

.product-hero h1 {
	max-width: 11ch;
	margin-bottom: .28em;
	font-size: clamp(3.25rem, 5.7vw, 6rem);
}

.product-hero__tagline {
	max-width: 15ch;
	margin: -.15rem 0 .75rem;
	color: var(--coral-light);
	font-size: clamp(1.35rem, 2.3vw, 2.15rem);
	font-weight: 760;
	letter-spacing: -.035em;
	line-height: 1.08;
}

.product-hero__lead {
	max-width: 630px;
	margin-bottom: 1.35rem;
	color: rgb(255 255 255 / 76%);
	font-size: clamp(1.02rem, 1.2vw, 1.25rem);
	line-height: 1.58;
}

.product-hero__media {
	overflow: hidden;
	background: var(--marine);
	border: 1px solid var(--line);
	border-radius: var(--radius-m);
	box-shadow: var(--shadow);
}

.product-hero__media picture,
.product-hero__media img {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.product-hero__media img {
	object-fit: contain;
	object-position: center;
}

.product-hero__media--contain {
	background:
		radial-gradient(circle at 55% 50%, rgb(8 123 161 / 26%), transparent 55%),
		var(--marine-deep);
}

.product-rating {
	display: inline-grid;
	grid-template-columns: auto 1fr;
	gap: .75rem;
	align-items: center;
	padding: .65rem .8rem;
	margin-top: 1.2rem;
	background: rgb(8 123 161 / 14%);
	border: 1px solid rgb(8 123 161 / 34%);
	border-radius: 12px;
}

.product-rating > strong {
	color: var(--coral-light);
	font-size: 1.5rem;
	line-height: 1;
}

.product-rating > span {
	display: grid;
	color: var(--white);
	font-size: .72rem;
	font-weight: 700;
	line-height: 1.3;
}

.product-rating small {
	color: var(--mist);
	font-size: .62rem;
	font-weight: 500;
}

.section-scroll-cue {
	position: absolute;
	right: 0;
	bottom: 1.3rem;
	left: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: .45rem;
	align-items: center;
	width: max-content;
	margin-inline: auto;
	color: rgb(255 255 255 / 58%);
	font-size: .58rem;
	font-weight: 750;
	letter-spacing: .12em;
	text-decoration: none;
	text-transform: uppercase;
}

.section-scroll-cue i {
	position: relative;
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	border: 1px solid rgb(255 255 255 / 22%);
	border-radius: 50%;
}

.section-scroll-cue i::after {
	position: absolute;
	top: .25rem;
	left: .38rem;
	width: .38rem;
	height: .38rem;
	border-right: 1px solid var(--coral-light);
	border-bottom: 1px solid var(--coral-light);
	content: "";
	transform: rotate(45deg);
	animation: cue-down 1.8s ease-in-out infinite;
}

.product-history,
.product-section,
.product-split,
.controls-showcase,
.media-strip,
.editor-capabilities,
.editor-workflow,
.contact-details,
.contact-purpose,
.future-direction,
.remaster-interface,
.remaster-development {
	padding-block: clamp(2.75rem, 3.5vw, 4rem);
}

.product-history {
	border-bottom: 1px solid var(--line);
}

.product-history__intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr);
	gap: clamp(1.5rem, 5vw, 5rem);
	align-items: end;
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.product-history__intro h2 {
	max-width: 15ch;
	margin: 0;
	font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.product-history__intro > p {
	max-width: 36rem;
	margin: 0;
	color: rgb(255 255 255 / 68%);
}

.product-history__timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: rgb(169 184 190 / 22%);
	border-block: 1px solid var(--line);
}

.product-history__timeline::before {
	position: absolute;
	top: -1px;
	left: 0;
	z-index: 2;
	width: clamp(72px, 9vw, 142px);
	height: 3px;
	background: var(--coral);
	content: "";
}

.product-history__timeline article {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: clamp(1.15rem, 2.4vw, 2rem);
	align-items: start;
	padding: clamp(1.4rem, 2.8vw, 2.25rem);
	background:
		linear-gradient(145deg, rgb(8 123 161 / 8%), transparent 58%),
		var(--marine-deep);
}

.product-history__timeline article > strong {
	color: transparent;
	font-size: clamp(2.4rem, 4vw, 4.5rem);
	font-weight: 760;
	letter-spacing: -.08em;
	line-height: .9;
	-webkit-text-stroke: 1px rgb(255 173 140 / 70%);
}

.product-history__timeline h3 {
	margin: 0 0 .45rem;
	font-size: clamp(1.15rem, 1.7vw, 1.45rem);
}

.product-history__timeline p {
	max-width: 52ch;
	margin: 0;
	color: rgb(255 255 255 / 68%);
	font-size: .84rem;
	line-height: 1.6;
}

.feature-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.feature-card-grid--five {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-card-grid--six {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card-grid article,
.stat-panel-grid article,
.future-pillars article,
.development-grid article {
	padding: clamp(1.2rem, 2vw, 1.7rem);
	background: linear-gradient(145deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 3%));
	border: 1px solid var(--line);
	border-radius: 18px;
}

.feature-card-grid article > span,
.future-pillars article > span,
.development-grid article > span {
	display: block;
	margin-bottom: 1.35rem;
	color: var(--coral-light);
	font-size: .62rem;
	font-weight: 800;
	letter-spacing: .1em;
}

.feature-card-grid h3,
.stat-panel-grid h3,
.future-pillars h3,
.development-grid h3 {
	margin-bottom: .45rem;
	font-size: clamp(1.05rem, 1.5vw, 1.35rem);
	letter-spacing: -.025em;
}

.feature-card-grid p,
.stat-panel-grid p,
.future-pillars p,
.development-grid p {
	margin: 0;
	color: rgb(255 255 255 / 66%);
	font-size: .84rem;
	line-height: 1.58;
}

.product-split {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
	border-block: 1px solid var(--line);
}

.product-split__copy > p:not(.section-index) {
	color: rgb(255 255 255 / 72%);
}

.product-split__media {
	overflow: hidden;
	background: var(--marine);
	border: 1px solid var(--line);
	border-radius: var(--radius-m);
	box-shadow: 0 24px 70px rgb(0 0 0 / 24%);
}

.product-split__media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: contain;
}

.check-list {
	display: grid;
	gap: .55rem;
	padding: 0;
	margin: 1.5rem 0 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 1.4rem;
	color: rgb(255 255 255 / 74%);
	font-size: .85rem;
	line-height: 1.5;
}

.check-list li::before {
	position: absolute;
	top: .5em;
	left: 0;
	width: .48rem;
	height: .48rem;
	background: var(--coral);
	border-radius: 50%;
	content: "";
}

.stat-panel-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.stat-panel-grid article > strong {
	display: block;
	margin-bottom: 1rem;
	color: var(--coral-light);
	font-size: clamp(2rem, 4vw, 3.5rem);
	letter-spacing: -.06em;
	line-height: 1;
}

.controls-showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
	border-block: 1px solid var(--line);
}

.controls-showcase figure {
	overflow: hidden;
	background: #050505;
	border: 1px solid var(--line);
	border-radius: var(--radius-m);
}

.controls-showcase figure img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: contain;
}

.media-strip__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.media-strip figure {
	overflow: hidden;
	background: var(--marine);
	border: 1px solid var(--line);
	border-radius: 16px;
}

.media-strip img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: contain;
}

.product-bridge {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr);
	gap: clamp(2rem, 6vw, 6rem);
	padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3.5vw, 3.5rem);
	margin-bottom: clamp(3rem, 6vw, 5rem);
	background:
		linear-gradient(130deg, rgb(238 130 91 / 9%), transparent 55%),
		var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-m);
}

.product-bridge h2 {
	margin-bottom: 0;
	font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.product-bridge__links {
	display: grid;
	gap: .55rem;
}

.product-bridge__links a {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: .85rem 1rem;
	background: rgb(0 18 28 / 58%);
	border: 1px solid var(--line);
	border-radius: 10px;
	text-decoration: none;
	transition: border-color .2s ease, transform .2s var(--ease);
}

.product-bridge__links a:hover {
	border-color: rgb(238 130 91 / 48%);
	transform: translateX(.2rem);
}

.product-bridge__links strong {
	font-size: .82rem;
}

.product-bridge__links span {
	color: var(--mist);
	font-size: .7rem;
	text-align: right;
}

.editorial-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.editorial-feature-grid article {
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 18px;
}

.editorial-feature-grid figure,
.editorial-feature-grid img {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.editorial-feature-grid img {
	object-fit: contain;
}

.editorial-feature-grid article > div {
	padding: 1.2rem;
}

.editorial-feature-grid span {
	display: block;
	margin-bottom: .8rem;
	color: var(--coral-light);
	font-size: .6rem;
	font-weight: 800;
	letter-spacing: .11em;
}

.editorial-feature-grid h3 {
	margin-bottom: .45rem;
	font-size: 1.25rem;
}

.editorial-feature-grid p {
	margin: 0;
	color: rgb(255 255 255 / 66%);
	font-size: .84rem;
	line-height: 1.58;
}

.practice-tech,
.release-panel,
.future-status,
.contact-social {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
	gap: clamp(2rem, 7vw, 7rem);
	padding-block: clamp(2.75rem, 3.5vw, 4rem);
	border-block: 1px solid var(--line);
}

.practice-tech > div:last-child p,
.release-panel > div:last-child p,
.future-status > div:last-child p {
	color: rgb(255 255 255 / 72%);
}

.release-panel,
.future-status,
.contact-social {
	position: relative;
	padding: clamp(2rem, 4vw, 3.5rem);
	margin-block: clamp(2.5rem, 4vw, 3.5rem);
	color: var(--white);
	background:
		linear-gradient(110deg, rgb(238 130 91 / 10%), transparent 46%),
		var(--marine-deep);
	border: 0;
	border-block: 1px solid var(--line);
	border-radius: 0;
}

.release-panel::before,
.future-status::before,
.contact-social::before {
	position: absolute;
	top: -1px;
	left: 0;
	width: clamp(78px, 11vw, 180px);
	height: 3px;
	background: var(--coral);
	content: "";
}

.release-panel h2,
.future-status h2,
.contact-social h2 {
	color: var(--white);
}

.release-panel .eyebrow,
.future-status .eyebrow,
.future-status .text-link,
.contact-social .eyebrow {
	color: var(--coral-light);
}

.release-panel > div:last-child p,
.future-status > div:last-child p {
	color: rgb(255 255 255 / 72%);
}

.release-panel .button--light,
.future-status .button--light,
.contact-social .button--light,
.remaster-cta .button--light {
	background: var(--coral-light);
	color: var(--marine-deep);
}

/* Contact */

.contact-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr);
	gap: clamp(2rem, 7vw, 7rem);
	align-items: end;
	min-height: min(500px, calc(100svh - var(--header-height)));
	padding-block: clamp(3.25rem, 5vw, 4.75rem) clamp(3.75rem, 6vw, 5.25rem);
	border-bottom: 1px solid var(--line);
}

.contact-hero h1 {
	margin-bottom: 0;
	font-size: clamp(3.5rem, 7vw, 7rem);
}

.contact-hero__lead {
	margin: 0;
	color: rgb(255 255 255 / 72%);
	font-size: clamp(1.05rem, 1.4vw, 1.3rem);
	line-height: 1.65;
}

.contact-card-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, .875fr));
	gap: 1rem;
}

.contact-card {
	display: grid;
	align-content: space-between;
	min-height: 160px;
	padding: 1.35rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 16px;
	text-decoration: none;
}

a.contact-card {
	transition: border-color .2s ease, transform .25s var(--ease);
}

a.contact-card:hover {
	border-color: rgb(238 130 91 / 48%);
	transform: translateY(-3px);
}

.contact-card--primary {
	background: linear-gradient(145deg, rgb(238 130 91 / 16%), rgb(255 255 255 / 4%));
}

.contact-card > span {
	color: var(--coral-light);
	font-size: .62rem;
	font-weight: 800;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.contact-card strong {
	align-self: end;
	font-size: clamp(1.05rem, 2vw, 1.6rem);
	overflow-wrap: anywhere;
}

.contact-card small {
	color: var(--mist);
	font-size: .7rem;
	line-height: 1.45;
}

.contact-purpose {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr);
	gap: clamp(2rem, 7vw, 7rem);
	border-top: 1px solid var(--line);
}

.contact-purpose__list {
	display: grid;
	gap: .55rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.contact-purpose__list li {
	display: grid;
	grid-template-columns: minmax(110px, .32fr) 1fr;
	gap: 1rem;
	padding: .9rem 1rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 10px;
}

.contact-purpose__list strong {
	font-size: .8rem;
}

.contact-purpose__list span {
	color: var(--mist);
	font-size: .78rem;
}

.contact-social {
	align-items: end;
}

.contact-social > ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .5rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.contact-social > ul a {
	display: flex;
	justify-content: space-between;
	padding: .75rem .9rem;
	background: rgb(255 255 255 / 4%);
	border: 1px solid rgb(255 255 255 / 15%);
	border-radius: 9px;
	color: var(--white);
	font-size: .78rem;
	font-weight: 740;
	text-decoration: none;
}

.contact-social > ul a:hover,
.contact-social > ul a:focus-visible {
	background: rgb(238 130 91 / 12%);
	border-color: var(--coral);
	color: var(--coral-light);
}

.contact-social__directory {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 2.5vw, 2.5rem);
	align-self: stretch;
}

.contact-social__group {
	padding-left: 1rem;
	border-left: 1px solid rgb(255 255 255 / 16%);
}

.contact-social__group h3 {
	margin: 0 0 .7rem;
	color: var(--white);
	font-size: .78rem;
	font-weight: 760;
	letter-spacing: .04em;
}

.contact-social__group .contact-social__links {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
}

.contact-social__group .contact-social__links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	min-height: 44px;
	padding: .5rem 0;
	border-bottom: 1px solid rgb(255 255 255 / 10%);
	color: rgb(255 255 255 / 78%);
	font-size: .76rem;
	font-weight: 690;
	text-decoration: none;
}

.contact-social__group .contact-social__links a:hover,
.contact-social__group .contact-social__links a:focus-visible {
	border-color: var(--coral);
	color: var(--coral-light);
}

/* Floorball League 2028 */

.future-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, .7fr);
	gap: clamp(2rem, 8vw, 8rem);
	align-items: center;
	min-height: min(610px, calc(100svh - var(--header-height)));
	padding-block: clamp(3.5rem, 5vw, 5rem);
	border-bottom: 1px solid var(--line);
}

.future-hero__copy {
	max-width: 760px;
}

.future-hero h1 {
	max-width: 11ch;
	font-size: clamp(3.5rem, 6.8vw, 7rem);
}

.future-hero__copy > p:not(.eyebrow) {
	max-width: 650px;
	color: rgb(255 255 255 / 72%);
	font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}

.future-hero__mark {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 330px;
	overflow: hidden;
	background:
		linear-gradient(145deg, rgb(8 123 161 / 9%), transparent 58%);
	border-block: 1px solid var(--line);
	border-radius: 0;
}

.future-hero__mark::before {
	position: absolute;
	top: -1px;
	left: 0;
	width: clamp(72px, 10vw, 142px);
	height: 3px;
	background: var(--coral);
	content: "";
}

.future-hero__mark::after {
	position: absolute;
	top: .8rem;
	right: 1rem;
	color: var(--steel);
	content: "FBL / NEXT";
	font-size: .54rem;
	font-weight: 760;
	letter-spacing: .16em;
}

.future-hero__mark span,
.future-hero__mark strong {
	position: absolute;
	font-size: clamp(7rem, 13vw, 12rem);
	font-weight: 800;
	letter-spacing: -.1em;
	line-height: .8;
}

.future-hero__mark span {
	top: 12%;
	left: 8%;
	color: rgb(255 255 255 / 12%);
}

.future-hero__mark strong {
	right: 8%;
	bottom: 12%;
	color: var(--coral-light);
}

.future-hero__mark i {
	width: 70%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--coral), transparent);
	transform: rotate(-22deg);
}

.future-pillars {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.16fr) minmax(0, .92fr);
	gap: 0;
	margin-top: clamp(2rem, 4vw, 3.5rem);
	isolation: isolate;
	background:
		linear-gradient(90deg, rgb(255 255 255 / 2%), transparent 28%, rgb(0 77 107 / 10%) 72%, transparent),
		rgb(255 255 255 / 1.5%);
	border-block: 1px solid rgb(169 184 190 / 28%);
}

.future-pillars::before {
	position: absolute;
	top: -2px;
	left: 0;
	z-index: 2;
	width: clamp(72px, 9vw, 140px);
	height: 3px;
	background: var(--coral);
	content: "";
}

.future-pillars::after {
	position: absolute;
	top: -.72rem;
	right: clamp(1rem, 2vw, 2rem);
	z-index: 2;
	padding-inline: .55rem;
	background: var(--marine-deep);
	color: var(--steel);
	content: "FBL / 2028";
	font-size: .56rem;
	font-weight: 760;
	letter-spacing: .16em;
}

.future-pillars article {
	position: relative;
	min-height: 270px;
	padding: clamp(2rem, 3vw, 3rem) !important;
	overflow: hidden;
	background: transparent !important;
	border: 0 !important;
	border-left: 1px solid rgb(169 184 190 / 20%) !important;
	border-radius: 0 !important;
	transition: background-color .3s ease;
}

.future-pillars article:first-child {
	border-left: 0 !important;
}

.future-pillars article:nth-child(2) {
	background: linear-gradient(145deg, rgb(8 123 161 / 11%), transparent 62%) !important;
}

.future-pillars article::before {
	position: absolute;
	top: clamp(2rem, 3vw, 3rem);
	left: clamp(2rem, 3vw, 3rem);
	width: 2.25rem;
	height: 2px;
	background: var(--coral);
	content: "";
}

.future-pillars article > span {
	position: absolute;
	top: .4rem;
	right: clamp(1rem, 2vw, 2rem);
	margin: 0;
	color: rgb(169 184 190 / 18%);
	font-size: clamp(5.8rem, 8vw, 9rem);
	font-weight: 760;
	letter-spacing: -.1em;
	line-height: 1;
	-webkit-text-stroke: 1px rgb(169 184 190 / 18%);
	user-select: none;
}

.future-pillars h3 {
	position: relative;
	max-width: 13ch;
	margin: clamp(4.75rem, 6vw, 6.5rem) 0 .75rem;
	font-size: clamp(1.45rem, 2vw, 2rem);
	letter-spacing: -.04em;
	line-height: 1.08;
}

.future-pillars p {
	position: relative;
	max-width: 36ch;
	margin: 0;
	color: rgb(255 255 255 / 70%);
	font-size: clamp(.88rem, 1vw, 1rem);
	line-height: 1.62;
}

@media (hover: hover) and (pointer: fine) {
	.future-pillars article:hover {
		background-color: rgb(0 77 107 / 12%) !important;
	}
}

@media (max-width: 900px) {
	.future-pillars {
		grid-template-columns: 1fr;
	}

	.future-pillars article {
		min-height: 210px;
		border-left: 0 !important;
		border-top: 1px solid rgb(169 184 190 / 20%) !important;
	}

	.future-pillars article:first-child {
		border-top: 0 !important;
	}
}

@media (max-width: 560px) {
	.future-pillars article {
		min-height: 190px;
		padding: 1.6rem !important;
	}

	.future-pillars article::before {
		top: 1.6rem;
		left: 1.6rem;
	}

	.future-pillars article > span {
		right: 1rem;
		font-size: 5.25rem;
	}

	.future-pillars h3 {
		margin-top: 4.2rem;
		font-size: 1.55rem;
	}
}

/* Editor source-backed workflow */

.editor-workflow {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
	gap: clamp(2rem, 7vw, 7rem);
	align-items: center;
	border-block: 1px solid var(--line);
}

.editor-workflow__copy > p:not(.section-index):not(.development-note) {
	color: rgb(255 255 255 / 72%);
}

.editor-format-panel {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .6rem;
	padding: .8rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 18px;
}

.editor-format-panel > div {
	display: grid;
	gap: .3rem;
	padding: 1rem;
	background: rgb(0 18 28 / 62%);
	border: 1px solid rgb(255 255 255 / 8%);
	border-radius: 10px;
}

.editor-format-panel__wide {
	grid-column: 1 / -1;
}

.editor-format-panel span {
	color: var(--steel);
	font-size: .6rem;
	font-weight: 760;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.editor-format-panel strong {
	color: var(--mist);
	font-size: .78rem;
	overflow-wrap: anywhere;
}

/* Remaster interface, development status and timeline */

.remaster-interface__grid {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	align-items: start;
	gap: 1rem;
}

.remaster-interface figure,
.match-vision {
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 18px;
}

.remaster-interface figure img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: contain;
}

.remaster-interface figcaption {
	padding: .7rem .9rem;
	color: var(--steel);
	font-size: .64rem;
	line-height: 1.45;
}

.match-vision {
	--hud-home: #385e8e;
	--hud-away: #f2cf00;
	--hud-deep: #001e2c;
	--hud-raised: #0c3441;
	--hud-cyan: #00c7bd;
	--hud-text: #f0f7fa;
	--hud-muted: #b0c6d2;
	--hud-stroke: #8acdda;
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: auto 1fr auto auto;
	min-height: 30rem;
	height: auto;
	aspect-ratio: auto;
	padding: clamp(.75rem, 2vw, 1.4rem);
	background:
		linear-gradient(180deg, rgb(24 112 171 / 52%), transparent 34%),
		radial-gradient(circle at 50% 28%, #0b527b, #001722 68%);
	isolation: isolate;
}

.match-vision::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgb(0 30 44 / 38%), transparent 30%, transparent 70%, rgb(0 30 44 / 38%)),
		radial-gradient(circle at 50% 30%, transparent, rgb(0 12 20 / 36%) 74%);
	content: "";
}

.match-vision.is-radar-vertical {
	aspect-ratio: auto;
	min-height: clamp(34rem, 52vw, 42rem);
}

.match-scorebug {
	width: min(94%, 600px);
	aspect-ratio: 600 / 88;
	margin-inline: auto;
	color: var(--hud-text);
	filter: drop-shadow(0 4px 2px rgb(0 0 0 / 36%));
	font-family: Manrope, sans-serif;
	animation: hud-scorebug-reveal .72s cubic-bezier(.2, .8, .2, 1) both;
	transform-origin: center top;
}

.match-scorebug__body {
	position: relative;
	display: grid;
	grid-template-columns: 10% 18.333% 10% 23.334% 10% 18.333% 10%;
	align-items: center;
	height: 61.36%;
	background: rgb(0 30 44 / 97%);
	border: 1px solid rgb(255 255 255 / 16%);
	border-radius: 2px;
	box-shadow: 0 4px 0 rgb(0 0 0 / 36%);
	font-weight: 750;
	text-align: center;
}

.match-scorebug__hairline {
	position: absolute;
	top: -1px;
	width: 50%;
	height: 3px;
	opacity: .86;
}

.match-scorebug__hairline--home {
	left: 0;
	background: var(--hud-home);
}

.match-scorebug__hairline--away {
	right: 0;
	background: var(--hud-away);
}

.match-scorebug__flag {
	justify-self: center;
	width: 76%;
	aspect-ratio: 5 / 3;
	border: 1px solid rgb(255 255 255 / 28%);
	box-shadow: 0 1px 2px rgb(0 0 0 / 45%);
}

.match-scorebug__flag--fin {
	background:
		linear-gradient(90deg, transparent 27%, #123d78 27% 43%, transparent 43%),
		linear-gradient(transparent 40%, #123d78 40% 61%, transparent 61%),
		#fff;
}

.match-scorebug__flag--swe {
	background:
		linear-gradient(90deg, transparent 27%, #fecc02 27% 39%, transparent 39%),
		linear-gradient(transparent 42%, #fecc02 42% 58%, transparent 58%),
		#006aa7;
}

.match-scorebug__team {
	display: grid;
	align-items: center;
	align-self: stretch;
	color: #fff;
	font-size: clamp(.62rem, 2vw, 1.55rem);
	font-weight: 650;
	text-shadow: 0 1px 2px rgb(0 0 0 / 74%);
}

.match-scorebug__team--home {
	background: color-mix(in srgb, var(--hud-home) 88%, transparent);
	clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.match-scorebug__team--away {
	background: color-mix(in srgb, var(--hud-away) 88%, transparent);
	clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.match-scorebug__number {
	display: grid;
	align-items: center;
	align-self: stretch;
	margin-block: 0;
	background: rgb(0 41 57 / 40%);
	font-size: clamp(.8rem, 2.6vw, 2rem);
	font-weight: 720;
	line-height: 1;
}

.match-scorebug__number--home {
	background:
		linear-gradient(to top, var(--hud-home) 0 3px, transparent 3px),
		rgb(0 41 57 / 40%);
	clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
}

.match-scorebug__number--away {
	background:
		linear-gradient(to top, var(--hud-away) 0 3px, transparent 3px),
		rgb(0 41 57 / 40%);
	clip-path: polygon(0 0, 91% 0, 100% 100%, 0 100%);
}

.match-scorebug__emblem {
	justify-self: center;
	display: grid;
	width: 44%;
	aspect-ratio: 1;
	place-items: center;
	overflow: visible;
}

.match-scorebug__emblem img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 1px 2px rgb(0 0 0 / 65%));
}

.match-scorebug__clock {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	width: 40.667%;
	height: 38.64%;
	margin-inline: auto;
	background: rgb(3 9 16 / 92%);
	border: 1px solid rgb(255 255 255 / 14%);
	border-radius: 0 0 3px 3px;
	box-shadow: 0 3px 0 rgb(0 0 0 / 30%);
	color: var(--hud-muted);
	font-size: clamp(.48rem, 1.55vw, 1.15rem);
	font-weight: 750;
	text-align: center;
	animation: hud-clock-reveal .48s .24s cubic-bezier(.2, .8, .2, 1) both;
}

.match-scorebug__clock time {
	position: relative;
	color: var(--hud-text);
}

.match-scorebug__clock time::before {
	position: absolute;
	top: 10%;
	bottom: 10%;
	left: 0;
	width: 1px;
	background: rgb(255 255 255 / 22%);
	content: "";
}

.match-vision.is-goal-home .match-scorebug__body {
	animation: hud-goal-home .56s ease-out;
}

.match-vision.is-goal-away .match-scorebug__body {
	animation: hud-goal-away .56s ease-out;
}

.match-vision.is-goal-home .match-radar__goal-svg--right,
.match-vision.is-goal-away .match-radar__goal-svg--left {
	animation: hud-goal-mouth .72s ease-out;
}

.match-vision.is-goal-home .match-scorebug__number--home,
.match-vision.is-goal-away .match-scorebug__number--away {
	animation: hud-score-roll .56s ease-out;
}

.match-radar {
	display: grid;
	align-items: end;
	width: min(72%, 520px);
	margin: auto auto clamp(.7rem, 2vw, 1.5rem);
	transition: width .35s ease;
}

.match-radar__pitch {
	position: relative;
	width: 100%;
	aspect-ratio: 2 / 1;
	overflow: hidden;
	background: rgb(0 30 44 / 72%);
	box-shadow:
		inset 0 0 0 1px rgb(138 205 218 / 35%),
		0 4px 3px rgb(0 0 0 / 30%);
	transition:
		aspect-ratio .35s ease,
		clip-path .35s ease;
}

.match-radar__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
	pointer-events: none;
}

.match-radar__line,
.match-radar__crease-svg,
.match-radar__goal-svg {
	fill: none;
	stroke: rgb(138 205 218 / 28%);
	stroke-width: .36;
	vector-effect: non-scaling-stroke;
}

.match-radar__line--goal {
	stroke: rgb(138 205 218 / 18%);
}

.match-radar__goal-svg {
	stroke: rgb(240 247 250 / 64%);
	stroke-width: .8;
}

.match-radar__faceoff-svg,
.match-radar__centre-dot-svg {
	fill: rgb(138 205 218 / 46%);
}

.match-radar__attack-svg {
	fill: var(--hud-cyan);
	opacity: .78;
}

.match-radar__trail-segment {
	fill: none;
	stroke-linecap: round;
	vector-effect: non-scaling-stroke;
}

.match-radar__trail-segment--ball {
	stroke: rgb(255 244 160 / 78%);
	stroke-width: 1.15;
}

.match-radar__trail-segment--player {
	stroke: rgb(240 247 250 / 48%);
	stroke-width: .9;
}

.match-radar__rail-track,
.match-radar__rail-fill {
	fill: none;
	stroke-linecap: butt;
	stroke-width: 2.2;
	vector-effect: non-scaling-stroke;
}

.match-radar__rail-track {
	stroke: rgb(255 255 255 / 16%);
}

.match-radar__rail-track.is-active {
	stroke: rgb(255 255 255 / 72%);
	stroke-width: 3.5;
}

.match-radar__rail-fill {
	stroke: #d8ca57;
}

.match-radar__rail-fill--home {
	stroke: #7892b5;
}

.match-radar__rail-fill--away {
	stroke: #e1c900;
}

.match-radar__rail-fill[data-energy="tired"] {
	stroke: #d3b950;
}

.match-radar__rail-fill[data-energy="danger"] {
	stroke: #ee825b;
}

.match-radar__rail-fill.is-active {
	filter: drop-shadow(0 0 1.5px rgb(255 255 255 / 76%));
}

.match-radar[data-radar-mode="flat"] .match-radar__pitch {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.match-radar[data-radar-mode="hybrid"] .match-radar__pitch {
	clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
}

.match-radar[data-radar-orientation="horizontal"][data-radar-mode="hybrid"] .match-radar__pitch {
	aspect-ratio: 2.5 / 1;
}

.match-radar[data-radar-orientation="vertical"] {
	width: min(33.12%, 239px);
}

.match-radar[data-radar-orientation="vertical"] .match-radar__pitch {
	aspect-ratio: 1 / 2;
}

.match-radar[data-radar-orientation="vertical"][data-radar-mode="hybrid"] .match-radar__pitch {
	aspect-ratio: 1 / 1.72;
}

.match-radar__centre-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background: rgb(138 205 218 / 30%);
}

.match-radar[data-radar-orientation="vertical"] .match-radar__centre-line {
	top: 50%;
	right: 0;
	bottom: auto;
	left: 0;
	width: auto;
	height: 1px;
}

.match-radar__centre-dot {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 4px;
	aspect-ratio: 1;
	background: rgb(138 205 218 / 45%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.match-radar__crease {
	position: absolute;
	top: 37.5%;
	width: 10%;
	height: 25%;
	border: 1px solid rgb(138 205 218 / 25%);
}

.match-radar__crease--left {
	left: 7.125%;
}

.match-radar__crease--right {
	right: 7.125%;
}

.match-radar[data-radar-orientation="vertical"] .match-radar__crease {
	left: 37.5%;
	width: 25%;
	height: 10%;
}

.match-radar[data-radar-orientation="vertical"] .match-radar__crease--left {
	top: 82.875%;
}

.match-radar[data-radar-orientation="vertical"] .match-radar__crease--right {
	top: 7.125%;
	right: auto;
}

.match-radar__goal {
	position: absolute;
	top: 46%;
	width: 2px;
	height: 8%;
	background: rgb(240 247 250 / 58%);
}

.match-radar__goal--left { left: 8.6%; }
.match-radar__goal--right { right: 8.6%; }

.match-radar[data-radar-orientation="vertical"] .match-radar__goal {
	left: 46%;
	width: 8%;
	height: 2px;
}

.match-radar[data-radar-orientation="vertical"] .match-radar__goal--left {
	top: 91.4%;
}

.match-radar[data-radar-orientation="vertical"] .match-radar__goal--right {
	top: 8.6%;
	right: auto;
}

.match-radar__faceoff {
	position: absolute;
	top: calc(var(--v) * 1%);
	left: calc(var(--u) * 1%);
	width: 3px;
	aspect-ratio: 1;
	background: rgb(138 205 218 / 44%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.match-radar[data-radar-orientation="vertical"] .match-radar__faceoff {
	top: calc(var(--vertical-y) * 1%);
	left: calc(var(--v) * 1%);
}

.match-radar__attack {
	position: absolute;
	top: 4%;
	left: 57%;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 7px solid var(--hud-cyan);
	opacity: .75;
}

.match-radar[data-radar-orientation="vertical"] .match-radar__attack {
	top: 3%;
	left: 50%;
	border-right: 4px solid transparent;
	border-bottom: 7px solid var(--hud-cyan);
	border-left: 4px solid transparent;
	border-top: 0;
	transform: translateX(-50%);
}

.match-radar__rail {
	position: absolute;
	right: 2%;
	left: 2%;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 3.6%;
	height: 4px;
}

.match-radar__rail--home { top: 2px; }
.match-radar__rail--away { bottom: 2px; }

.match-radar__rail i {
	background: rgb(220 196 69 / 45%);
	box-shadow: inset 0 0 0 1px rgb(255 234 115 / 10%);
}

.match-radar[data-radar-orientation="vertical"] .match-radar__rail {
	top: 2%;
	bottom: 2%;
	display: grid;
	grid-template-rows: repeat(4, minmax(0, 1fr));
	grid-template-columns: none;
	gap: 3.6%;
	width: 4px;
	height: auto;
}

.match-radar[data-radar-orientation="vertical"] .match-radar__rail--home {
	right: auto;
	left: 2px;
}

.match-radar[data-radar-orientation="vertical"] .match-radar__rail--away {
	right: 2px;
	left: auto;
}

.radar-marker {
	position: absolute;
	top: calc(var(--y) * 1%);
	left: calc(var(--x) * 1%);
	z-index: 2;
	width: clamp(5px, .8vw, 8px);
	aspect-ratio: 1;
	filter: drop-shadow(0 1px 1px rgb(0 0 0 / 85%));
	transform: translate(-50%, -50%);
	will-change: top, left;
}

.radar-marker::before {
	position: absolute;
	inset: 0;
	background: var(--hud-home);
	border: 1px solid rgb(0 10 16 / 88%);
	border-radius: 50%;
	content: "";
}

.radar-marker--away::before {
	background: var(--hud-away);
	border-radius: 0;
	clip-path: polygon(50% 0, 100% 88%, 0 88%);
}

.radar-marker--goalie::before {
	inset: -12%;
	border-radius: 0;
	clip-path: none;
	transform: rotate(45deg);
}

.radar-marker--referee {
	width: clamp(4px, .56vw, 6px);
}

.radar-marker--referee::before {
	background: #e2c84a;
	border-radius: 0;
	transform: rotate(45deg);
}

.radar-marker--controlled::after {
	position: absolute;
	inset: -55%;
	border: 1.5px solid rgb(240 247 250 / 90%);
	border-radius: 50%;
	box-shadow: 0 0 5px rgb(240 247 250 / 35%);
	content: "";
}

.radar-marker--ball {
	width: clamp(4px, .58vw, 6px);
	z-index: 4;
}

.radar-marker--ball::before {
	background: #fff;
	border: 0;
	box-shadow: 0 0 6px rgb(255 244 160 / 95%);
}

.radar-marker--ball::after {
	position: absolute;
	inset: -85%;
	border: 1px solid rgb(255 244 160 / 80%);
	border-radius: 50%;
	content: "";
	animation: hud-ball-pulse 1.15s ease-out infinite;
}

.match-radar-controls {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .55rem 1rem;
	margin-top: -.35rem;
}

.match-radar-controls fieldset {
	display: flex;
	align-items: center;
	gap: .45rem;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.match-radar-controls > [data-hud-motion-controls] {
	flex: 1 0 100%;
	justify-content: center;
}

.match-radar-controls legend {
	float: left;
	margin: 0 .1rem 0 0;
	color: var(--hud-muted);
	font-size: .56rem;
	font-weight: 760;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.match-radar-controls__group {
	display: inline-flex;
	padding: 2px;
	background: rgb(0 19 28 / 72%);
	border: 1px solid rgb(138 205 218 / 24%);
	border-radius: 4px;
}

.match-radar-controls button {
	min-width: 44px;
	min-height: 44px;
	padding: .45rem .7rem;
	background: transparent;
	border: 0;
	border-radius: 2px;
	color: var(--hud-muted);
	font: inherit;
	font-size: .7rem;
	font-weight: 720;
	cursor: pointer;
}

.match-radar-controls button[aria-pressed="true"] {
	background: var(--hud-cyan);
	color: var(--hud-deep);
}

.match-radar-controls button:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.match-radar-controls [data-hud-motion-toggle] {
	min-width: 8.5rem;
}

.match-radar-controls button:disabled {
	opacity: .64;
	cursor: not-allowed;
}

.match-vision:not(.is-simulating) .radar-marker--ball::after {
	animation-play-state: paused;
}

.match-vision__caption {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding-top: .35rem;
	color: var(--mist);
	font-size: .66rem;
}

.match-vision__caption span {
	color: var(--steel);
	text-align: right;
}

@keyframes hud-scorebug-reveal {
	from { clip-path: inset(0 50% 0 50%); opacity: .4; }
	to { clip-path: inset(0); opacity: 1; }
}

@keyframes hud-clock-reveal {
	from { clip-path: inset(0 50%); opacity: 0; }
	to { clip-path: inset(0); opacity: 1; }
}

@keyframes hud-radar-reveal {
	from { clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%); opacity: 0; }
	to { clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%); opacity: 1; }
}

@keyframes hud-ball-pulse {
	from { opacity: .9; transform: scale(.6); }
	to { opacity: 0; transform: scale(1.5); }
}

@keyframes hud-goal-mouth {
	0%, 100% { stroke: rgb(240 247 250 / 64%); filter: none; }
	38% { stroke: #fff; filter: drop-shadow(0 0 4px rgb(255 244 160 / 95%)); }
}

@keyframes hud-goal-home {
	0%, 100% { box-shadow: 0 4px 0 rgb(0 0 0 / 36%); }
	35% { box-shadow: inset 0 0 0 999px rgb(56 94 142 / 30%), 0 4px 0 rgb(0 0 0 / 36%); }
}

@keyframes hud-goal-away {
	0%, 100% { box-shadow: 0 4px 0 rgb(0 0 0 / 36%); }
	35% { box-shadow: inset 0 0 0 999px rgb(215 190 0 / 30%), 0 4px 0 rgb(0 0 0 / 36%); }
}

@keyframes hud-score-roll {
	0% { transform: translateY(-65%); opacity: 0; }
	60% { transform: translateY(5%); opacity: 1; }
	100% { transform: translateY(0); opacity: 1; }
}

.detail-list--compact {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 1rem;
}

.development-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.roadmap-timeline {
	position: relative;
	display: grid;
	gap: .65rem;
	max-width: 1050px;
	padding: 0;
	margin: 2rem 0 0;
	list-style: none;
}

.roadmap-timeline::before {
	position: absolute;
	top: 1rem;
	bottom: 1rem;
	left: 126px;
	width: 1px;
	background: linear-gradient(var(--coral), rgb(238 130 91 / 12%));
	content: "";
}

.roadmap-timeline li {
	position: relative;
	display: grid;
	grid-template-columns: 108px 1fr;
	gap: 2.3rem;
	align-items: start;
}

.roadmap-timeline li::before {
	position: absolute;
	top: 1.2rem;
	left: 122px;
	z-index: 1;
	width: 9px;
	height: 9px;
	background: var(--coral);
	border: 2px solid var(--marine-deep);
	border-radius: 50%;
	content: "";
}

.roadmap-timeline > li > span {
	padding-top: 1rem;
	color: var(--coral-light);
	font-size: .62rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-align: right;
	text-transform: uppercase;
}

.roadmap-timeline li > div {
	padding: 1rem 1.2rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 12px;
}

.roadmap-timeline h3 {
	margin-bottom: .35rem;
	font-size: 1.15rem;
}

.roadmap-timeline p {
	margin: 0;
	color: rgb(255 255 255 / 66%);
	font-size: .82rem;
	line-height: 1.55;
}

/* Denser disclosures, project cards, policy and footer */

.entry-content summary::after {
	width: .48rem;
	height: .48rem;
	border-right: 2px solid var(--coral);
	border-bottom: 2px solid var(--coral);
	content: "";
	transform: translateY(-65%) rotate(45deg);
	transition: transform .22s var(--ease);
}

.entry-content details[open] summary::after {
	content: "";
	transform: translateY(-25%) rotate(225deg);
}

.fijoy-community-card .wp-block-gallery.has-nested-images {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: .45rem !important;
}

.fijoy-community-card .wp-block-gallery.has-nested-images figure.wp-block-image {
	width: auto !important;
	margin: 0 !important;
}

.fijoy-community-card .wp-block-gallery.has-nested-images figure.wp-block-image:first-child {
	grid-column: span 3;
}

.fijoy-community-card .wp-block-gallery.has-nested-images figure.wp-block-image img {
	width: 100% !important;
	height: 100% !important;
	min-height: 86px;
	object-fit: contain !important;
	border-radius: 8px;
}

.community-gallery-disclosure__body {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .6rem;
	padding-top: .4rem;
}

.community-gallery-disclosure__body .wp-block-gallery,
.community-gallery-disclosure__body .wp-block-gallery.has-nested-images {
	display: contents !important;
}

.community-gallery-disclosure__body figure.wp-block-image,
.community-gallery-disclosure__body figure.wp-block-image:first-child {
	grid-column: auto !important;
	width: auto !important;
	aspect-ratio: 16 / 9;
	margin: 0 !important;
	overflow: hidden;
	background: rgb(0 11 17 / 72%);
	border-radius: 9px;
}

.community-gallery-disclosure__body figure.wp-block-image img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
	padding: .2rem;
	object-fit: contain !important;
	object-position: center;
}

.fijoy-community-card > .wp-block-group > h4:nth-last-child(2),
.fijoy-community-card .community-meta--feedback {
	padding-top: .9rem;
	margin-top: .4rem;
	border-top: 1px solid var(--line);
}

.fijoy-community-card > .wp-block-group > h4:last-child,
.fijoy-community-card .community-meta--creator {
	color: var(--mist);
	font-weight: 540;
}

.privacy-shell {
	padding-block: clamp(2.5rem, 4vw, 4rem);
}

.privacy-summary {
	margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.privacy-section {
	padding-block: clamp(1.8rem, 3vw, 2.6rem);
}

.site-footer__glow {
	top: -20rem;
	width: 38rem;
	height: 30rem;
	opacity: .7;
}

.site-footer__inner {
	gap: clamp(2rem, 6vw, 6rem);
	padding-block: clamp(2.4rem, 3.5vw, 3.4rem);
}

.fijoy-brand--footer .fijoy-brand__logo {
	width: clamp(130px, 12vw, 165px);
}

.site-footer__brand > p {
	margin-block: .75rem .45rem;
	font-size: .86rem;
}

.site-footer__nav h2 {
	margin-bottom: .8rem;
}

.site-footer__nav ul {
	gap: .4rem;
}

.site-footer__legal {
	padding-block: 1rem;
}

@keyframes cue-down {
	0%,
	100% { transform: translateY(-2px) rotate(45deg); opacity: .45; }
	50% { transform: translateY(2px) rotate(45deg); opacity: 1; }
}

@media (max-width: 1100px) {
	.feature-card-grid--five {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.feature-card-grid--five article:nth-last-child(-n + 2) {
		grid-column: span 1;
	}

	html:not(.js-pending):not(.js-ready) .product-main,
	html:not(.js-pending):not(.js-ready) .contact-main,
	html:not(.js-pending):not(.js-ready) .future-main {
		padding-top: 0;
	}
}

@media (max-width: 900px) {
	.product-hero,
	.product-split,
	.controls-showcase,
	.editor-workflow,
	.contact-hero,
	.contact-purpose,
	.future-hero,
	.practice-tech,
	.release-panel,
	.future-status,
	.contact-social,
	.product-bridge {
		grid-template-columns: 1fr;
	}

	.product-hero {
		min-height: 0;
	}

	.product-hero__copy {
		padding-top: 1rem;
	}

	.product-hero__media,
	.product-split__media {
		width: min(100%, 760px);
	}

	.feature-card-grid,
	.feature-card-grid--five,
	.feature-card-grid--six,
	.editorial-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-bridge {
		margin-inline: var(--gutter);
	}

	.future-hero__mark {
		width: min(100%, 560px);
		min-height: 260px;
	}

	.remaster-interface__grid {
		grid-template-columns: 1fr;
	}

	.match-vision {
		min-height: 30rem;
	}

	.detail-list--compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-card--primary {
		grid-column: 1 / -1;
	}

	:is(.editor-project-grid, .editor-projects) .fijoy-community-card {
		min-height: 0;
	}
}

@media (max-width: 680px) {
	.product-hero,
	.contact-hero,
	.future-hero {
		gap: 1.75rem;
		padding-block: 2.75rem 5rem;
	}

	.contact-hero {
		min-height: 0;
		align-items: start;
	}

	.product-hero h1,
	.contact-hero h1,
	.future-hero h1 {
		font-size: clamp(2.8rem, 13vw, 4.4rem);
	}

	.product-hero__media {
		border-radius: 14px;
	}

	.feature-card-grid,
	.feature-card-grid--five,
	.feature-card-grid--six,
	.stat-panel-grid,
	.editorial-feature-grid,
	.contact-card-grid,
	.future-pillars,
	.development-grid,
	.media-strip__grid,
	.detail-list--compact {
		grid-template-columns: 1fr;
	}

	.product-history__intro,
	.product-history__timeline {
		grid-template-columns: 1fr;
	}

	.product-history__timeline article {
		grid-template-columns: 4.4rem minmax(0, 1fr);
	}

	.controls-showcase,
	.product-split,
	.editor-workflow,
	.contact-purpose,
	.practice-tech {
		gap: 1.75rem;
	}

	.product-split,
	.controls-showcase,
	.product-history,
	.product-section,
	.media-strip,
	.editor-capabilities,
	.editor-workflow,
	.contact-details,
	.contact-purpose,
	.future-direction,
	.remaster-interface,
	.remaster-development {
		padding-block: 3.25rem;
	}

	.product-bridge {
		padding: 1.4rem;
		margin-inline: var(--gutter);
		border-radius: 16px;
	}

	.product-bridge__links a {
		display: grid;
	}

	.product-bridge__links span {
		text-align: left;
	}

	.contact-purpose__list li {
		grid-template-columns: 1fr;
		gap: .35rem;
	}

	.contact-social > ul {
		grid-template-columns: 1fr;
	}

	.contact-social__directory {
		grid-template-columns: 1fr;
	}

	.future-hero__mark {
		min-height: 210px;
	}

	.editor-format-panel {
		grid-template-columns: 1fr;
	}

	.editor-format-panel__wide {
		grid-column: auto;
	}

	:is(.editor-project-grid, .editor-projects) .community-card__inner {
		grid-template-columns: 1fr;
	}

	.community-card__inner > h3,
	.community-cover-gallery,
	.community-card__info {
		grid-column: auto;
	}

	.community-cover-gallery {
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.roadmap-timeline::before {
		left: 5px;
	}

	.roadmap-timeline li {
		grid-template-columns: 1fr;
		gap: .35rem;
		padding-left: 1.45rem;
	}

	.roadmap-timeline li::before {
		top: .55rem;
		left: 1px;
	}

	.roadmap-timeline > li > span {
		padding-top: 0;
		text-align: left;
	}

	.match-vision {
		width: 100%;
		min-width: 0;
		min-height: 30rem;
		aspect-ratio: auto;
	}

	.match-radar-controls,
	.match-radar-controls fieldset {
		width: 100%;
		min-width: 0;
	}

	.match-radar-controls fieldset {
		flex: 1 1 100%;
		flex-wrap: wrap;
		justify-content: center;
	}

	.fijoy-community-card .wp-block-gallery.has-nested-images {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.fijoy-community-card .wp-block-gallery.has-nested-images figure.wp-block-image:first-child {
		grid-column: span 2;
	}

	.community-gallery-disclosure__body {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.community-gallery-disclosure__body figure.wp-block-image:first-child {
		grid-column: auto !important;
	}

	.community-changelog-disclosure details ul {
		columns: 1;
	}

	.site-footer__inner {
		padding-block: 2rem;
	}
}

/*
 * Unified community catalogue.
 *
 * Workshop and direct-download projects share one editorial card system. The
 * accent, source label and action communicate distribution without splitting
 * the catalogue into visually unrelated components.
 */
.community-catalogue-card {
	--community-source-accent: var(--coral);
	--community-source-soft: rgb(238 130 91 / 12%);
	overflow: clip;
	padding: clamp(.8rem, 1.15vw, 1.05rem) !important;
	background:
		linear-gradient(145deg, var(--community-source-soft), transparent 48%),
		var(--marine-deep) !important;
}

.community-catalogue-card--workshop {
	--community-source-accent: #2aa9d6;
	--community-source-soft: rgb(42 169 214 / 13%);
	display: flex;
	min-height: 0;
}

.community-catalogue-card--official {
	--community-source-accent: #79d9f4;
	--community-source-soft: rgb(121 217 244 / 13%);
}

.community-catalogue-card::before {
	width: clamp(78px, 9vw, 150px);
	background: var(--community-source-accent);
}

.community-catalogue-card .community-availability,
.community-catalogue-card .text-link {
	color: var(--community-source-accent);
}

.community-catalogue-card .community-card__inner {
	flex: 1;
	width: 100%;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	grid-template-rows: auto auto auto auto 1fr auto;
	gap: .9rem 1rem !important;
	align-content: start;
	padding: clamp(.8rem, 1.2vw, 1.05rem) !important;
}

.community-catalogue-card .community-card__topline {
	align-items: center;
	min-height: 1.7rem;
	padding: 0;
	margin: 0;
}

.community-catalogue-card .community-card__title,
.community-catalogue-card--workshop .community-card__title {
	display: flex;
	align-items: center;
	justify-content: center;
	min-block-size: 3.4em;
	padding-inline: .55rem;
	margin: 0;
	font-size: clamp(1.12rem, 1.35vw, 1.42rem);
	line-height: 1.15;
	text-align: center;
}

.community-catalogue-card .community-cover-gallery {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-color: color-mix(in srgb, var(--community-source-accent) 20%, transparent);
	border-radius: 0;
}

.community-catalogue-card .community-cover-gallery a {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
}

.community-catalogue-card .community-cover-gallery img {
	padding: clamp(.45rem, .75vw, .7rem);
	object-fit: contain !important;
}

.workshop-card__media-fallback {
	display: grid;
	width: 100%;
	height: 100%;
	padding: 1rem;
	background:
		linear-gradient(135deg, transparent 0 46%, rgb(42 169 214 / 18%) 46% 54%, transparent 54%),
		rgb(0 17 25 / 75%);
	color: var(--mist);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .1em;
	place-items: center;
	text-align: center;
	text-transform: uppercase;
}

.community-catalogue-card .community-card__info {
	display: flex;
	flex-direction: column;
	gap: .65rem;
	min-height: 100%;
}

.workshop-card__description {
	margin: 0;
	color: rgb(255 255 255 / 72%) !important;
	font-size: .82rem !important;
	line-height: 1.5 !important;
}

.workshop-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: .35rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.workshop-card__tags li {
	padding: .32rem .48rem;
	background: rgb(42 169 214 / 12%);
	border: 1px solid rgb(42 169 214 / 28%);
	color: rgb(224 246 255 / 84%);
	font-size: .58rem;
	font-weight: 760;
	letter-spacing: .055em;
	line-height: 1;
	text-transform: uppercase;
}

.workshop-card__metrics {
	display: grid;
	gap: .35rem;
	padding-top: .55rem;
	margin-top: auto;
	border-top: 1px solid var(--line);
	color: var(--steel);
	font-size: .68rem;
	line-height: 1.35;
}

.workshop-card__metrics span {
	display: flex;
	justify-content: space-between;
	gap: .8rem;
}

.workshop-card__metrics strong {
	color: var(--mist);
	font-weight: 760;
}

.workshop-card__action {
	align-self: flex-start;
	margin-top: .25rem !important;
	font-size: .68rem;
}

.community-catalogue-card .community-changelog-disclosure,
.community-catalogue-card .community-gallery-disclosure {
	width: 100%;
	margin: .15rem 0 0;
	background: rgb(255 255 255 / 2.5%);
	border: 0;
	border-block: 1px solid var(--line);
	border-radius: 0;
}

.community-catalogue-card .community-changelog-disclosure > summary,
.community-catalogue-card .community-gallery-disclosure > summary {
	min-height: 3.3rem;
	padding: .85rem 1rem;
	border-left: 3px solid var(--community-source-accent);
	font-size: .9rem;
}

.workshop-card__changelog-body {
	display: grid;
	gap: .75rem;
	padding: 1rem;
	border-top: 1px solid var(--line);
}

.workshop-card__changelog-body p {
	margin: 0;
	font-size: .78rem;
	line-height: 1.55;
}

.workshop-card__changelog-date {
	color: var(--mist) !important;
	font-size: .65rem !important;
	font-weight: 780;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.community-catalogue-card--workshop .workshop-card__creator {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-self: end;
	width: 100%;
	padding: .8rem 0 0;
	margin: 0;
	border-top: 1px solid var(--line);
	color: var(--steel);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.community-catalogue-card--workshop .workshop-card__creator strong {
	margin: 0;
	color: var(--mist);
	text-align: right;
}

@media (max-width: 1180px) {
	.community-catalogue__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.community-catalogue-card {
		padding: .7rem !important;
	}

	.community-catalogue-card .community-card__inner {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		padding: .7rem !important;
	}

	.community-catalogue-card .community-card__title {
		min-block-size: 0;
		padding-block: .35rem;
	}

	.community-catalogue-card .community-cover-gallery,
	.community-catalogue-card .community-card__info {
		grid-column: 1;
	}
}

@media (hover: hover) and (pointer: fine) {
	.store-card:hover .store-card__media img {
		transform: scale(1.025);
	}

	.workshop-card:hover,
	.news-card:hover {
		border-color: rgb(238 130 91 / 38%);
	}
}

/* Motion */

.js-ready [data-reveal],
.js-ready .has-fijoy-reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .52s var(--ease), transform .52s var(--ease);
}

.js-ready [data-reveal].is-visible,
.js-ready .has-fijoy-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/*
 * Reveal complete rails as one composition. Animating individual grid cells
 * temporarily exposes their one-pixel separator canvas and makes aligned rows
 * appear broken while the page is loading.
 */
.js-ready :is(
	.feature-card-grid,
	.stat-panel-grid,
	.product-history__timeline,
	.remaster-feature-grid,
	.development-grid,
	.future-pillars
) > .has-fijoy-reveal {
	opacity: 1;
	transform: none;
	transition: none;
}

.js-ready .manifesto[data-reveal],
.js-ready .privacy-hero[data-reveal] {
	transform: none;
}

@keyframes status-pulse {
	0%,
	100% { box-shadow: 0 0 0 .35rem rgb(238 130 91 / 12%); }
	50% { box-shadow: 0 0 0 .6rem rgb(238 130 91 / 4%); }
}

@keyframes hero-settle {
	from { opacity: .65; transform: scale(1.05); }
	to { opacity: 1; transform: scale(1.015); }
}

@keyframes scroll-line {
	0% { transform: translateY(-110%); }
	60%,
	100% { transform: translateY(210%); }
}

/* Responsive */

@media (max-width: 1100px) {
	:root {
		--header-height: 72px;
	}

	.site-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	.menu-toggle {
		display: inline-flex;
		justify-self: end;
	}

	.site-header__cta {
		display: none;
	}

	.site-navigation {
		position: absolute;
		inset: 100% 0 auto;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		justify-self: stretch;
		width: 100%;
		height: calc(100dvh - var(--header-height));
		padding: clamp(2rem, 7vw, 5rem) var(--gutter);
		overflow-y: auto;
		visibility: hidden;
		background:
			radial-gradient(circle at 80% 20%, rgb(0 77 107 / 48%), transparent 35rem),
			rgb(0 18 28 / 98%);
		opacity: 0;
		transform: translateY(-1rem);
		transition: opacity .25s ease, transform .3s var(--ease), visibility .25s;
	}

	body.menu-open .site-navigation {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.fijoy-menu,
	.site-navigation .menu {
		display: grid;
		align-content: start;
		width: min(100%, 720px);
		gap: .25rem;
	}

	.mobile-nav-contact {
		display: flex;
		align-items: center;
		width: min(100%, 720px);
		min-height: 60px;
		border-bottom: 1px solid var(--line);
		color: var(--white);
		font-size: clamp(1.25rem, 4vw, 2.4rem);
		font-weight: 700;
		letter-spacing: -.03em;
		text-decoration: none;
	}

	.fijoy-menu a,
	.site-navigation .menu a,
	.submenu-trigger {
		min-height: 60px;
		font-size: clamp(1.25rem, 4vw, 2.4rem);
		font-weight: 700;
		letter-spacing: -.03em;
	}

	.fijoy-menu > li,
	.site-navigation .menu > li {
		border-bottom: 1px solid var(--line);
	}

	.fijoy-menu > .menu-item-has-children,
	.site-navigation .menu > .menu-item-has-children {
		display: block;
	}

	.fijoy-menu > li > a::after,
	.site-navigation .menu > li > a::after,
	.submenu-trigger::before {
		display: none;
	}

	.submenu-trigger {
		justify-content: space-between;
		width: 100%;
		text-align: left;
	}

	.sub-menu {
		position: static;
		display: none;
		min-width: 0;
		padding: 0 0 1rem 1rem;
		visibility: visible;
		background: transparent;
		border: 0;
		box-shadow: none;
		opacity: 1;
		transform: none;
	}

	.sub-menu::before {
		display: none;
	}

	.menu-item-has-children.submenu-open > .sub-menu {
		display: grid;
		transform: none;
	}

	.sub-menu a {
		min-height: 44px;
		font-size: 1rem;
		letter-spacing: 0;
	}

	.home-hero__release {
		display: none;
	}

	.timeline-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.timeline-strip > div:nth-child(2) {
		border-right: 0;
	}

	.timeline-strip > div:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line);
	}

	.manifesto__grid,
	.contact-band {
		grid-template-columns: 1fr;
	}

	.games-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.community-feature__content {
		padding: clamp(3rem, 6vw, 5rem);
	}

	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.admin-bar .site-navigation {
		height: calc(100dvh - var(--header-height) - 32px);
	}

	html:not(.js-pending):not(.js-ready) .site-header {
		position: static;
		height: auto;
		background: var(--marine-deep);
		border-color: var(--line);
	}

	html:not(.js-pending):not(.js-ready) .site-header__inner {
		grid-template-columns: 1fr auto;
		height: auto;
		padding-block: .75rem;
	}

	html:not(.js-pending):not(.js-ready) .menu-toggle {
		display: none;
	}

	html:not(.js-pending):not(.js-ready) .site-header__cta {
		display: inline-flex;
		justify-self: end;
	}

	html:not(.js-pending):not(.js-ready) .site-navigation,
	html:not(.js-pending):not(.js-ready) .admin-bar .site-navigation {
		position: static;
		grid-column: 1 / -1;
		justify-content: stretch;
		width: 100%;
		height: auto;
		padding: 0;
		overflow: visible;
		visibility: visible;
		background: transparent;
		opacity: 1;
		transform: none;
	}

	html:not(.js-pending):not(.js-ready) .sub-menu {
		display: grid;
	}

	html:not(.js-pending):not(.js-ready) .page-main,
	html:not(.js-pending):not(.js-ready) .single-main,
	html:not(.js-pending):not(.js-ready) .archive-main,
	html:not(.js-pending):not(.js-ready) .error-main,
	html:not(.js-pending):not(.js-ready) .editor-main,
	html:not(.js-pending):not(.js-ready) .store-main,
	html:not(.js-pending):not(.js-ready) .newswire-main {
		padding-top: 0;
	}
}

@media (max-width: 900px) {
	.privacy-hero,
	.privacy-shell {
		grid-template-columns: 1fr;
	}

	.privacy-hero {
		gap: 1.5rem;
	}

	.privacy-toc {
		position: static;
	}

	.privacy-toc ol {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.remaster-feature-grid,
	.roadmap-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.character-feature,
	.remaster-tech,
	.remaster-cta {
		grid-template-columns: 1fr;
	}

	.detail-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	:root {
		--radius-l: 26px;
		--radius-m: 18px;
	}

	body {
		font-size: 1rem;
	}

	.fijoy-brand__logo {
		width: 108px;
	}

	.home-hero {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		min-height: 0;
		padding-top: var(--header-height);
	}

	.home-hero::before,
	.home-hero__texture {
		display: none;
	}

	.home-hero__media {
		position: relative;
		inset: auto;
		z-index: 0;
		flex: 0 0 auto;
		width: 100%;
		aspect-ratio: 16 / 9;
	}

	.home-hero__media::after {
		background:
			linear-gradient(180deg, transparent 55%, var(--marine-deep)),
			linear-gradient(90deg, rgb(0 18 28 / 16%), transparent);
	}

	.home-hero__media img {
		object-fit: contain;
		object-position: center;
		transform: none;
	}

	.home-hero__content {
		width: min(100% - (2 * var(--gutter)), 640px);
		margin: 0 auto;
		padding-block: 1rem 3.25rem;
	}

	.home-hero h1 {
		font-size: clamp(3.2rem, 14.5vw, 5.2rem);
		line-height: .88;
	}

	.home-hero__lead {
		font-size: 1rem;
	}

	.home-hero .button-row {
		align-items: stretch;
		max-width: 380px;
	}

	.home-hero .button {
		flex: 0 1 auto;
		min-height: 46px;
		padding-inline: 1rem;
		font-size: .72rem;
	}

	.platform-list {
		gap: .3rem;
		margin-top: 1rem;
	}

	.platform-list li {
		padding: .3rem .5rem;
		font-size: .58rem;
	}

	.scroll-cue {
		display: none;
	}

	.manifesto,
	.games-showcase {
		padding-block: 3.75rem;
	}

	.manifesto__grid {
		gap: 1.5rem;
	}

	.timeline-strip {
		grid-template-columns: 1fr;
		margin-top: 2rem;
	}

	.timeline-strip > div {
		min-height: 68px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.timeline-strip > div:last-child {
		border-bottom: 0;
	}

	.section-heading {
		display: grid;
	}

	.games-grid {
		grid-template-columns: 1fr;
	}

	.game-card {
		display: grid;
		grid-template-columns: minmax(148px, 48%) minmax(0, 1fr);
		align-items: start;
		border-radius: 16px;
	}

	.game-card > .fijoy-block-inline > span {
		grid-column: 2;
		grid-row: 1;
		align-self: end;
		padding: 1rem 1rem 0;
	}

	.game-card__media {
		display: block;
		height: auto;
		min-height: 0;
		margin: .85rem 0 .85rem .85rem;
		overflow: hidden;
		aspect-ratio: 16 / 9;
		background: var(--marine);
		border-radius: 0;
	}

	.game-card__media img {
		object-position: center;
	}

	.game-card__status {
		position: static;
		justify-self: start;
		padding: .25rem .4rem;
		margin-top: .5rem;
		font-size: .55rem;
	}

	.game-card__body {
		grid-column: 2;
		grid-row: 2;
		padding: 1rem;
	}

	.game-card__body .eyebrow {
		display: none;
	}

	.game-card__body h3 {
		margin-bottom: .4rem;
		font-size: 1.12rem;
	}

	.game-card__body > p:not(.eyebrow):not(.text-link) {
		display: -webkit-box;
		min-height: 0;
		margin-bottom: .65rem;
		overflow: hidden;
		font-size: .72rem;
		line-height: 1.42;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.game-card__body .text-link {
		font-size: .66rem;
	}

	.community-feature {
		grid-template-columns: 1fr;
	}

	.community-feature__media {
		min-height: 300px;
	}

	.community-feature__content {
		padding: 2.75rem var(--gutter) 3.25rem;
	}

	.contact-band {
		margin-inline: var(--gutter);
		padding: 2rem;
	}

	.entry-content > h1:first-of-type {
		padding-top: 2.75rem;
	}

	.entry-content .wp-block-cover {
		min-height: 54svh;
	}

	.entry-content .wp-block-columns {
		gap: 1.25rem;
	}

	.community-toolbar {
		grid-template-columns: 1fr;
	}

	.community-result-count {
		min-height: 40px;
	}

	.page-community .entry-content > .wp-block-group.is-layout-grid {
		grid-template-columns: 1fr !important;
	}

	.fijoy-community-card .wp-block-gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.fijoy-community-card .wp-block-gallery figure:first-child {
		grid-column: span 2;
	}

	.post-grid {
		grid-template-columns: 1fr;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding-block: 2.5rem;
	}

	.site-footer__nav {
		gap: 1rem;
	}

	.site-footer__nav h2 {
		margin-bottom: .75rem;
	}

	.site-footer__nav ul {
		gap: .4rem;
	}

	.site-footer__legal {
		display: grid;
	}

	.privacy-summary {
		grid-template-columns: 1fr;
	}

	.privacy-shell {
		padding-block: 3rem;
	}

	.privacy-section {
		padding-block: 2.3rem;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.admin-bar .page-progress {
		top: 46px;
	}

	.admin-bar .site-navigation {
		height: calc(100dvh - var(--header-height) - 46px);
	}
}

@media (max-width: 430px) {
	.menu-toggle__label {
		display: none;
	}

	.button-row {
		align-items: stretch;
	}

	.button-row .button {
		flex: 1 1 100%;
	}

	.fijoy-block-page .button-row > .wp-block-buttons {
		width: 100%;
	}

	.fijoy-block-page .button-row > .wp-block-buttons > .wp-block-button,
	.fijoy-block-page .button-row > .wp-block-buttons > .wp-block-button > .wp-block-button__link {
		flex: 1 1 100%;
		width: 100%;
	}

	.home-hero .button-row .button {
		flex: 1 1 calc(50% - .4rem);
	}

	.game-card {
		grid-template-columns: 1fr;
	}

	.game-card__media {
		grid-column: 1;
		grid-row: 1;
		width: auto;
		margin: .75rem .75rem 0;
	}

	.game-card > .fijoy-block-inline > span {
		grid-column: 1;
		grid-row: 2;
		padding: .75rem 1rem 0;
	}

	.game-card__body {
		grid-column: 1;
		grid-row: 3;
		padding: 1rem;
	}

	.game-card__body h3 {
		font-size: 1.25rem;
	}

	.game-card__body > p:not(.eyebrow):not(.text-link) {
		font-size: .82rem;
		-webkit-line-clamp: 3;
	}

	.site-footer__nav {
		grid-template-columns: 1fr;
	}

	.privacy-toc ol {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) and (max-height: 700px) {
	.home-hero {
		min-height: 0;
	}

	.home-hero__content {
		margin: 0 auto;
		padding-bottom: 2rem;
	}

	.home-hero h1 {
		font-size: clamp(2.9rem, 13vw, 4.3rem);
	}

	.home-hero__lead {
		margin-bottom: 1rem;
	}
}

@media (max-width: 900px) {
	.editor-hero {
		grid-template-columns: minmax(0, 1fr) minmax(240px, .58fr);
		gap: 2rem;
	}

	:is(.editor-project-grid, .editor-projects) > .wp-block-group.is-layout-grid,
	:is(.editor-project-grid, .editor-projects) > .editor-legacy-grid {
		grid-template-columns: 1fr !important;
	}

	.process-grid,
	.newswire-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.process-grid li:last-child {
		grid-column: span 2;
	}

	.store-card--featured,
	.store-card--wide {
		grid-template-columns: 1fr;
	}

	.store-card--featured .store-card__media,
	.store-card--wide .store-card__media {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 680px) {
	.compact-page-hero {
		padding-block: 2.75rem 2rem;
	}

	.remaster-hero {
		grid-template-columns: 1fr;
		min-height: 0;
		padding-inline: var(--gutter);
	}

	.remaster-hero__copy {
		grid-row: 1;
		padding: 1rem 0 1.5rem;
	}

	.remaster-hero__logo {
		width: min(360px, 88vw);
		margin-inline: auto;
	}

	.remaster-hero__lead {
		font-size: 1rem;
	}

	.remaster-hero__art {
		grid-row: 2;
		height: min(620px, 115vw);
	}

	.editor-hero {
		grid-template-columns: 1fr;
		padding-block: 2.75rem 3.25rem;
	}

	.editor-hero__art {
		grid-row: 1;
		width: min(72vw, 330px);
		justify-self: center;
	}

	.community-content-notice {
		grid-template-columns: 1fr;
		gap: .4rem;
		padding: 1rem;
	}

	.compact-heading,
	.process-grid,
	.workshop-grid,
	.store-grid,
	.newswire-grid,
	.remaster-story__copy,
	.remaster-feature-grid,
	.detail-list,
	.roadmap-grid,
	:is(.editor-project-grid, .editor-projects) > .wp-block-group.is-layout-grid,
	:is(.editor-project-grid, .editor-projects) > .editor-legacy-grid {
		grid-template-columns: 1fr !important;
	}

	.remaster-tech__capabilities li {
		grid-template-columns: 2.4rem 1fr;
		gap: .35rem .75rem;
	}

	.remaster-tech__capabilities span {
		grid-column: 2;
	}

	.process-grid li:last-child,
	.store-card--featured,
	.store-card--wide {
		grid-column: auto;
	}

	.store-card__body {
		min-height: 0;
	}

	.workshop-card,
	.news-card {
		min-height: 0;
	}

	.remaster-story,
	.remaster-features,
	.remaster-details,
	.remaster-roadmap {
		padding-block: 3.5rem;
	}

	.remaster-feature-grid,
	.roadmap-grid {
		margin-top: 1.4rem;
	}

	.remaster-cta {
		padding: 2rem;
		margin-inline: var(--gutter);
	}
}

/* Connected FIJOY editorial system
 *
 * Content groups share a deliberate rail, divider and marker language rather
 * than appearing as unrelated floating rounded cards.
 */

:is(
	.games-grid,
	.post-grid,
	.process-grid,
	.workshop-grid,
	.newswire-grid,
	.store-grid,
	.feature-card-grid,
	.stat-panel-grid,
	.remaster-feature-grid,
	.development-grid,
	.editorial-feature-grid,
	.contact-card-grid,
	.privacy-summary,
	.detail-list
) {
	position: relative;
	gap: 1px;
	overflow: hidden;
	background: rgb(169 184 190 / 20%);
	border: 1px solid rgb(169 184 190 / 22%);
	border-radius: 0;
	isolation: isolate;
}

:is(
	.games-grid,
	.post-grid,
	.process-grid,
	.workshop-grid,
	.newswire-grid,
	.store-grid,
	.feature-card-grid,
	.stat-panel-grid,
	.remaster-feature-grid,
	.development-grid,
	.editorial-feature-grid,
	.contact-card-grid,
	.privacy-summary,
	.detail-list
)::before {
	position: absolute;
	top: -1px;
	left: 0;
	z-index: 4;
	width: clamp(72px, 9vw, 142px);
	height: 3px;
	background: var(--coral);
	content: "";
	pointer-events: none;
}

:is(
	.game-card,
	.post-card,
	.process-grid > li,
	.workshop-card,
	.news-card,
	.store-card,
	.feature-card-grid > article,
	.stat-panel-grid > article,
	.remaster-feature-grid > article,
	.development-grid > article,
	.editorial-feature-grid > article,
	.contact-card,
	.privacy-summary > div,
	.detail-list > li
) {
	position: relative;
	background:
		linear-gradient(145deg, rgb(8 123 161 / 7%), transparent 52%),
		var(--marine-deep);
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

:is(
	.game-card,
	.post-card,
	.process-grid > li,
	.workshop-card,
	.news-card,
	.store-card,
	.feature-card-grid > article,
	.stat-panel-grid > article,
	.remaster-feature-grid > article,
	.development-grid > article,
	.editorial-feature-grid > article,
	.contact-card,
	.privacy-summary > div
)::before {
	position: absolute;
	top: clamp(1rem, 1.6vw, 1.4rem);
	left: clamp(1rem, 1.8vw, 1.6rem);
	z-index: 3;
	width: 2rem;
	height: 2px;
	background: var(--coral);
	content: "";
	pointer-events: none;
}

:is(
	.feature-card-grid > article,
	.stat-panel-grid > article,
	.remaster-feature-grid > article,
	.development-grid > article
) {
	min-height: 0;
	padding: clamp(1.4rem, 2.3vw, 2rem);
}

:is(
	.feature-card-grid > article,
	.remaster-feature-grid > article,
	.development-grid > article
) > span {
	margin: 2.4rem 0 1.35rem;
}

.remaster-feature-grid > article {
	min-height: 270px;
	overflow: hidden;
}

.remaster-feature-grid > article > span {
	position: absolute;
	top: .5rem;
	right: 1.1rem;
	margin: 0;
	color: rgb(169 184 190 / 20%);
	font-size: clamp(4rem, 5vw, 6.4rem);
	font-weight: 760;
	letter-spacing: -.08em;
	line-height: 1;
	-webkit-text-stroke: 1px rgb(169 184 190 / 20%);
	user-select: none;
}

.remaster-feature-grid h3 {
	position: relative;
	margin-top: 4.6rem;
}

.process-grid > li > span {
	margin-top: 2.1rem;
	color: rgb(169 184 190 / 22%);
	font-size: clamp(2.8rem, 4vw, 4.4rem);
	line-height: 1;
	-webkit-text-stroke: 1px rgb(169 184 190 / 25%);
}

.game-card,
.post-card,
.store-card,
.editorial-feature-grid > article {
	overflow: hidden;
}

.game-card__body,
.post-card__body,
.store-card__body,
.editorial-feature-grid article > div {
	position: relative;
}

.game-card__body,
.post-card__body {
	padding-top: clamp(2.3rem, 3vw, 2.9rem);
}

.game-card__status,
.product-facts li,
.platform-list li {
	border-radius: 2px;
}

:is(.game-card__media, .post-card__media, .store-card__media)::after {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	width: 34%;
	height: 3px;
	background: var(--coral);
	content: "";
	pointer-events: none;
}

.post-grid {
	gap: 1px;
}

.store-card--featured,
.store-card--wide {
	border-radius: 0;
}

.product-bridge {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(110deg, rgb(238 130 91 / 10%), transparent 48%),
		rgb(255 255 255 / 2%);
	border: 0;
	border-block: 1px solid var(--line);
	border-radius: 0;
}

.product-bridge::before {
	position: absolute;
	top: 0;
	left: 0;
	width: clamp(80px, 10vw, 160px);
	height: 3px;
	background: var(--coral);
	content: "";
}

.product-bridge__links {
	gap: 0;
	border-top: 1px solid var(--line);
}

.product-bridge__links a {
	padding: 1rem 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--line);
	border-radius: 0;
}

.product-bridge__links a:hover {
	padding-inline: .65rem;
	background: rgb(8 123 161 / 8%);
	border-color: var(--line);
	transform: none;
}

.character-steps {
	gap: 0;
	border-block: 1px solid var(--line);
}

.character-steps li {
	padding: 1.15rem 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--line);
	border-radius: 0;
}

.character-steps li:last-child {
	border-bottom: 0;
}

.character-steps span {
	width: 2.6rem;
	height: 2.6rem;
	background: transparent;
	border-right: 2px solid var(--coral);
	border-radius: 0;
}

.detail-list > li {
	padding: 1.05rem 1.25rem 1.05rem 2.35rem;
}

.detail-list > li::before {
	left: 1.2rem;
	width: .65rem;
	height: 2px;
	border-radius: 0;
}

.roadmap-timeline {
	gap: 0;
}

.roadmap-timeline li > div {
	padding: 1.2rem 0 1.2rem 1.35rem;
	background: linear-gradient(90deg, rgb(8 123 161 / 8%), transparent 62%);
	border: 0;
	border-bottom: 1px solid var(--line);
	border-left: 2px solid rgb(238 130 91 / 52%);
	border-radius: 0;
}

.contact-card {
	min-height: 180px;
	padding: 2.7rem 1.5rem 1.5rem;
}

.contact-card--primary {
	background:
		linear-gradient(145deg, rgb(238 130 91 / 15%), transparent 60%),
		var(--marine-deep);
}

a.contact-card:hover,
.workshop-card:hover,
.news-card:hover {
	background-color: rgb(8 123 161 / 8%);
	border-color: transparent;
	box-shadow: none;
	transform: none;
}

.contact-purpose__list {
	gap: 0;
	border-block: 1px solid var(--line);
}

.contact-purpose__list li {
	padding: 1.05rem 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--line);
	border-radius: 0;
}

.contact-purpose__list li:last-child {
	border-bottom: 0;
}

.privacy-summary > div {
	padding: 2.6rem 1.25rem 1.25rem;
}

.privacy-summary dt {
	position: relative;
}

.release-panel,
.future-status,
.contact-social,
.remaster-cta {
	border-radius: 0;
	clip-path: none;
}

:is(
	.product-hero__media,
	.product-split__media,
	.controls-showcase figure,
	.media-strip figure,
	.editorial-feature-grid article,
	.remaster-interface figure,
	.match-vision
) {
	border-radius: 0;
}

.editor-format-panel {
	gap: 1px;
	padding: 1px;
	overflow: hidden;
	background: rgb(169 184 190 / 20%);
	border-radius: 0;
}

.editor-format-panel > div {
	background: var(--marine-deep);
	border: 0;
	border-radius: 0;
}

:is(.editor-project-grid, .editor-projects) .fijoy-community-card {
	border-radius: 0 !important;
	box-shadow: none;
}

:is(.editor-project-grid, .editor-projects) .fijoy-community-card::before {
	position: absolute;
	top: -1px;
	left: 0;
	z-index: 4;
	width: clamp(68px, 8vw, 120px);
	height: 3px;
	background: var(--coral);
	content: "";
}

.community-cover-gallery,
.newswire-sources,
.steam-rating {
	border-radius: 0;
}

.steam-rating {
	background: linear-gradient(90deg, rgb(8 123 161 / 16%), transparent);
	border: 0;
	border-left: 2px solid var(--coral);
}

.newswire-sources {
	position: relative;
	background: linear-gradient(90deg, rgb(8 123 161 / 10%), transparent);
	border-block: 1px solid var(--line);
}

.newswire-sources::before {
	position: absolute;
	top: -1px;
	left: 0;
	width: 5rem;
	height: 2px;
	background: var(--coral);
	content: "";
}

.privacy-toc {
	overflow: hidden;
	background: linear-gradient(145deg, rgb(8 123 161 / 9%), transparent 64%);
	border: 0;
	border-block: 1px solid var(--line);
	border-radius: 0;
}

.privacy-toc::before {
	position: absolute;
	top: -1px;
	left: 0;
	width: 4.5rem;
	height: 2px;
	background: var(--coral);
	content: "";
}

.privacy-toc a {
	border-radius: 0;
}

.entry-content .wp-block-group.has-background,
.entry-content .wp-block-column.has-background,
.fijoy-contact-info {
	border-radius: 0;
	box-shadow: none;
}

@media (max-width: 900px) {
	:is(
		.games-grid,
		.post-grid,
		.process-grid,
		.workshop-grid,
		.newswire-grid,
		.store-grid,
		.feature-card-grid,
		.stat-panel-grid,
		.remaster-feature-grid,
		.development-grid,
		.editorial-feature-grid,
		.contact-card-grid,
		.privacy-summary,
		.detail-list
	) {
		gap: 1px;
	}

	:is(
		.feature-card-grid > article,
		.stat-panel-grid > article,
		.remaster-feature-grid > article,
		.development-grid > article
	) {
		min-height: 0;
	}

	.remaster-feature-grid > article {
		min-height: 230px;
	}
}

@media (max-width: 680px) {
	:is(
		.games-grid,
		.post-grid,
		.process-grid,
		.workshop-grid,
		.newswire-grid,
		.store-grid,
		.feature-card-grid,
		.stat-panel-grid,
		.remaster-feature-grid,
		.development-grid,
		.editorial-feature-grid,
		.contact-card-grid,
		.privacy-summary,
		.detail-list
	) {
		grid-template-columns: 1fr !important;
	}

	.game-card__media {
		border-radius: 0;
	}

	:is(
		.feature-card-grid > article,
		.stat-panel-grid > article,
		.remaster-feature-grid > article,
		.development-grid > article
	) {
		min-height: 0;
		padding: 1.25rem;
	}

	.future-pillars article {
		min-height: 0;
		padding: 1.25rem !important;
	}

	.future-pillars article::before {
		top: 1.25rem;
		left: 1.25rem;
	}

	.future-pillars h3 {
		margin-top: 3.8rem;
	}

	.contact-card--primary {
		grid-column: auto;
	}

	.match-vision.is-radar-vertical {
		min-height: 29rem;
	}

	.match-vision.is-radar-vertical .match-radar {
		width: min(52%, 190px);
	}

	.release-panel,
	.future-status,
	.contact-social,
	.remaster-cta {
		clip-path: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}

	.js-ready [data-reveal] {
		opacity: 1;
		transform: none;
	}

	.js-ready .has-fijoy-reveal {
		opacity: 1;
		transform: none;
	}
}

@supports (-webkit-text-stroke: 1px currentcolor) {
	.future-pillars article > span,
	.remaster-feature-grid > article > span,
	.process-grid > li > span {
		color: transparent;
	}
}

@media (forced-colors: active) {
	.button,
	.wp-element-button,
	.wp-block-button__link {
		border: 1px solid ButtonText;
	}

	.future-pillars article > span,
	.remaster-feature-grid > article > span,
	.process-grid > li > span {
		color: CanvasText;
		-webkit-text-stroke: 0;
	}
}

/* Native FIJOY block authoring system. */
.entry-content > .fijoy-block-section,
.fijoy-block-section {
	position: relative;
	width: 100%;
	max-width: none;
	padding-block: clamp(3.5rem, 8vw, 8rem);
	border-block: 1px solid var(--line);
	border-radius: 0;
}

.fijoy-block-section > * {
	width: min(100% - (2 * var(--gutter)), var(--wide));
	margin-inline: auto;
}

.is-style-fijoy-editorial {
	background:
		linear-gradient(120deg, rgb(8 123 161 / 13%), transparent 58%),
		var(--marine-deep);
}

.is-style-fijoy-accent {
	background: var(--coral-light);
	color: var(--marine-deep);
}

.is-style-fijoy-accent :is(h1, h2, h3, h4, h5, h6, p, a, .eyebrow) {
	color: var(--marine-deep);
}

.fijoy-pattern-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(17rem, .7fr);
	gap: clamp(2rem, 8vw, 9rem);
	align-items: end;
}

.fijoy-pattern-heading > :last-child {
	max-width: 38rem;
}

.fijoy-pattern-split {
	gap: clamp(2rem, 6vw, 7rem);
	align-items: stretch;
}

.fijoy-pattern-split .wp-block-media-text__media {
	min-height: clamp(22rem, 48vw, 42rem);
	overflow: hidden;
}

.fijoy-pattern-split .wp-block-media-text__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.fijoy-pattern-split .wp-block-media-text__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2rem, 5vw, 5rem);
}

.fijoy-pattern-feature-rail {
	gap: 1px;
	padding: 1px;
	background: var(--line);
}

.fijoy-pattern-feature-rail > .wp-block-column {
	position: relative;
	min-height: 16rem;
	padding: clamp(1.5rem, 3vw, 3rem);
	overflow: hidden;
	background: var(--marine-deep);
	border-radius: 0;
}

.fijoy-pattern-feature-rail > .wp-block-column::before {
	position: absolute;
	top: 0;
	left: clamp(1.5rem, 3vw, 3rem);
	width: 3.25rem;
	height: 3px;
	background: var(--coral);
	content: "";
}

.fijoy-pattern-feature-rail .section-index {
	margin-block: 1.25rem clamp(3rem, 7vw, 6rem);
	color: var(--coral-light);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .12em;
}

.fijoy-pattern-cta {
	gap: clamp(2rem, 8vw, 8rem);
}

.fijoy-pattern-cta .wp-block-buttons {
	gap: .75rem 1.25rem;
}

.is-style-fijoy-outline .wp-block-button__link {
	background: transparent;
	color: currentcolor;
	border: 1px solid currentcolor;
}

.is-style-fijoy-outline .wp-block-button__link:hover,
.is-style-fijoy-outline .wp-block-button__link:focus-visible {
	background: var(--white);
	border-color: var(--white);
	color: var(--marine-deep);
}

.is-style-fijoy-media,
.is-style-fijoy-media img {
	border-radius: 0;
}

.fijoy-dynamic-block {
	width: 100%;
}

.fijoy-block-page .entry-content::after {
	display: none;
}

.fijoy-block-page .entry-content > .wp-block-group.section-shell {
	width: min(100% - (2 * var(--gutter)), var(--wide));
	margin-inline: auto;
}

.fijoy-block-page .entry-content > .wp-block-group.alignfull {
	width: 100%;
	margin-inline: 0;
}

/*
 * Flagship pages use native blocks as an editing surface, while their named
 * layout classes remain responsible for presentation. WordPress adds a
 * default block gap to every nested flow group; that spacing did not exist in
 * the original component markup and changes the height and rhythm of nearly
 * every section. Reset it here so each component's own gap and margins win.
 */
/*
 * The theme-level block gap is zero. These named layout parents also carry a
 * scoped fallback for hosts that cache generated global styles after a theme
 * update. Text-flow groups keep their authored heading and paragraph rhythm.
 */
.fijoy-block-page .entry-content :is(
	.home-hero,
	.home-hero__release,
	.manifesto__grid,
	.timeline-strip,
	.games-grid,
	.game-card,
	.community-feature,
	.button-row,
	.contact-band,
	.editor-hero,
	.feature-card-grid,
	.editor-workflow,
	.editor-format-panel,
	.editor-format-panel__wide,
	.editor-legacy-grid,
	.product-hero,
	.product-history__timeline,
	.product-split,
	.stat-panel-grid,
	.controls-showcase,
	.media-strip__grid,
	.product-bridge,
	.product-bridge__links,
	.remaster-feature-grid,
	.character-feature,
	.remaster-tech,
	.remaster-interface__grid,
	.development-grid,
	.remaster-cta,
	.editorial-feature-grid,
	.practice-tech,
	.release-panel,
	.future-hero,
	.future-hero__mark,
	.future-pillars,
	.future-status,
	.contact-card-grid,
	.contact-card,
	.privacy-hero,
	.privacy-shell,
	.privacy-summary
) > * {
	margin-block-start: 0;
}

/* Reset wrapper blocks without flattening authored heading/paragraph rhythm. */
.fijoy-block-page .entry-content .wp-block-group.is-layout-flow > :is(
	.wp-block-group,
	.wp-block-image,
	.wp-block-buttons,
	.fijoy-dynamic-block,
	.match-vision
) {
	margin-block-start: 0;
}

.fijoy-block-inline {
	display: contents;
}

.fijoy-block-page .product-bridge__links > p,
.fijoy-block-page p.contact-card > a,
.fijoy-block-page .timeline-strip p {
	display: contents;
}

.fijoy-block-page .button-row > .wp-block-buttons {
	margin: 0;
}

.fijoy-block-page .entry-content :where(.wp-block-image) {
	margin-block: 0;
	border-radius: 0;
}

/*
 * Core's image block sets images back to height:auto after the theme
 * stylesheet. Media components that deliberately fill a fixed or responsive
 * frame need the figure wrapper and image to inherit that frame instead.
 */
.fijoy-block-page .home-hero__media .wp-block-image,
.fijoy-block-page .wp-block-image.game-card__media,
.fijoy-block-page .remaster-hero__art .wp-block-image {
	width: 100%;
	height: 100%;
}

.fijoy-block-page .community-feature__media .wp-block-image {
	width: min(56%, 400px);
	aspect-ratio: 1;
}

.fijoy-block-page .home-hero__media .wp-block-image img,
.fijoy-block-page .wp-block-image.game-card__media img,
.fijoy-block-page .remaster-hero__art .wp-block-image img {
	height: 100%;
}

.fijoy-block-page .wp-block-button__link {
	height: auto;
}

.fijoy-block-page :is(.scroll-cue, .section-scroll-cue) {
	margin-block: 0;
}

.fijoy-block-page .scroll-cue > a {
	display: grid;
	justify-items: center;
	gap: .5rem;
	color: inherit;
	text-decoration: none;
}

.fijoy-block-page .section-scroll-cue > a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .45rem;
	color: inherit;
	text-decoration: none;
}

.fijoy-block-page :is(.scroll-cue, .section-scroll-cue) > a:focus-visible {
	border-radius: 4px;
	outline: 2px solid var(--coral-light);
	outline-offset: 6px;
}

.fijoy-block-page p.contact-card {
	position: relative;
	padding: 0;
}

.fijoy-block-page p.contact-card > a {
	display: grid;
	align-content: space-between;
	height: 100%;
	padding: 1.35rem;
	text-decoration: none;
}

.fijoy-block-page p.contact-card:has(> a) {
	transition: border-color .2s ease, transform .25s var(--ease);
}

.fijoy-block-page p.contact-card:has(> a):hover {
	border-color: rgb(238 130 91 / 48%);
	transform: translateY(-3px);
}

.fijoy-block-page p.contact-card > a > span {
	color: var(--coral-light);
	font-size: .62rem;
	font-weight: 800;
	letter-spacing: .11em;
	text-transform: uppercase;
}

@media (max-width: 900px) {
	.fijoy-pattern-heading {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.fijoy-pattern-feature-rail {
		flex-wrap: wrap !important;
	}

	.fijoy-pattern-feature-rail > .wp-block-column {
		flex-basis: calc(50% - 1px) !important;
	}
}

@media (max-width: 680px) {
	.fijoy-block-section {
		padding-block: 3.5rem;
	}

	.fijoy-pattern-split .wp-block-media-text__media {
		min-height: 20rem;
	}

	.fijoy-pattern-split .wp-block-media-text__content {
		padding: 2rem 0 0;
	}

	.fijoy-pattern-feature-rail > .wp-block-column {
		flex-basis: 100% !important;
		min-height: 12rem;
	}
}

/* Linked gallery thumbnails remain comfortably operable even when their
   rendered image is intentionally compact. */
.community-gallery-disclosure__body figure.wp-block-image a {
	display: block;
	width: 100%;
	height: 100%;
	min-width: 44px;
	min-height: 44px;
}

/* Final block-flow rhythm: authored buttons must never touch adjacent copy. */
.fijoy-block-page .entry-content :where(p, ul, ol) + .wp-block-buttons,
.fijoy-block-page .entry-content .wp-block-buttons + :where(p, ul, ol) {
	margin-top: clamp(.9rem, 1.4vw, 1.25rem);
}

.fijoy-block-page .entry-content .wp-block-buttons {
	gap: .7rem .85rem;
}

.fijoy-block-page .entry-content .wp-block-button:not(.is-style-fijoy-outline) > .wp-block-button__link {
	color: var(--marine-deep);
}

/* Final alignment fixes for product actions and the unified project catalogue. */
.product-hero__copy .fijoy-dynamic-block + .wp-block-buttons,
.fijoy-block-page .entry-content .product-hero__copy > .product-rating + .button-row {
	margin-top: 1rem;
}

.community-catalogue__grid {
	align-items: stretch;
}

.community-catalogue-card {
	align-self: stretch;
}

.community-catalogue-card--direct {
	display: flex;
}

.community-catalogue-card--direct .community-card__inner {
	flex: 1;
	width: 100%;
	grid-template-rows: auto auto auto auto auto 1fr auto;
}

.community-catalogue-card--direct .community-card__title {
	display: flex;
	align-items: center;
	justify-content: center;
	min-block-size: 3.6em;
	padding-inline: .75rem;
	line-height: 1.15;
	text-align: center;
}

.community-catalogue-card--direct .community-card__title:has(br) {
	flex-direction: column;
}

.community-catalogue-card--direct .community-card__title br {
	display: none;
}

.community-catalogue-card--direct .community-card__topline {
	padding: 1rem 1rem .5rem;
}

.community-catalogue-card--direct .community-meta--feedback {
	align-self: end;
	margin-top: .75rem;
	padding: 1rem 1rem 0;
}

.community-catalogue-card--direct .community-meta--creator {
	margin-top: .1rem;
	padding: .25rem 1rem 1rem;
}

@media (max-width: 900px) {
	.community-catalogue__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.community-catalogue-card .community-card__inner {
		grid-template-columns: minmax(0, 1fr) minmax(150px, 1fr);
	}
}

@media (max-width: 620px) {
	.community-catalogue__grid {
		grid-template-columns: 1fr;
	}

	.community-catalogue .community-toolbar {
		grid-template-columns: 1fr;
	}

	.community-catalogue .community-result-count {
		min-height: 42px;
	}

	.community-catalogue-card .community-card__inner {
		grid-template-columns: 1fr;
	}

	.community-catalogue-card--direct .community-card__inner {
		grid-template-rows: none;
	}

	.community-catalogue-card--direct .community-card__title {
		min-block-size: 0;
	}

	.community-catalogue-card .community-cover-gallery,
	.community-catalogue-card .community-card__info {
		grid-column: 1;
	}
}

/*
 * Native-block editorial rhythm.
 *
 * The site intentionally uses a zero global block gap so structural groups do
 * not inherit unpredictable WordPress spacing. These named content components
 * therefore own the small, consistent gaps between a heading, its copy and its
 * actions. Keep this scoped: restoring a global block gap would also enlarge
 * grids, media frames and the interactive match presentation.
 */
.fijoy-block-page .entry-content :is(
	.community-feature__content,
	.editor-workflow__copy,
	.product-split__copy,
	.character-feature__intro,
	.future-hero__copy
) > .wp-block-heading,
.fijoy-block-page .entry-content :is(
	.controls-showcase,
	.contact-band,
	.release-panel,
	.future-status,
	.remaster-cta
) > .wp-block-group > .wp-block-heading {
	margin-bottom: 0;
}

.fijoy-block-page .entry-content :is(
	.community-feature__content,
	.editor-workflow__copy,
	.product-split__copy,
	.character-feature__intro,
	.future-hero__copy
) > .wp-block-heading + :where(p, .wp-block-group),
.fijoy-block-page .entry-content :is(
	.controls-showcase,
	.contact-band,
	.release-panel,
	.future-status,
	.remaster-cta
) > .wp-block-group > .wp-block-heading + :where(p, .wp-block-group) {
	margin-top: clamp(.95rem, 1.5vw, 1.4rem);
}

.fijoy-block-page .entry-content .remaster-tech > .wp-block-group:first-child > .wp-block-heading + .remaster-tech__copy {
	margin-top: clamp(.95rem, 1.5vw, 1.4rem);
}

/*
 * Every native flow group needs a readable title-to-copy pause even though
 * the structural block gap remains zero. Large editorial headings receive a
 * little more air; compact card headings keep a tighter but still deliberate
 * rhythm.
 */
.fijoy-block-page .entry-content .wp-block-group.is-layout-flow > :is(h1, h2).wp-block-heading + p {
	margin-block-start: clamp(.9rem, 1.4vw, 1.25rem);
}

.fijoy-block-page .entry-content .wp-block-group.is-layout-flow > h3.wp-block-heading + p,
.community-catalogue-card--workshop > h3 + p,
.roadmap-timeline h3 + p {
	margin-block-start: .75rem;
}

.fijoy-block-page .entry-content :where(p, ul, ol) + .button-row,
.fijoy-block-page .entry-content :is(
	.contact-band,
	.release-panel,
	.future-status,
	.remaster-cta,
	.future-hero__copy
) :where(p, ul, ol) + .wp-block-buttons {
	margin-top: clamp(1.15rem, 1.9vw, 1.65rem);
}

/*
 * Core serializes many action rows as direct flow-group children. The
 * defensive flow reset above deliberately has high specificity, so match that
 * structural contract here instead of relying on a broad low-specificity
 * sibling rule. This prevents copy and actions from touching in nested CTA,
 * status and feature groups.
 */
.fijoy-block-page .entry-content .wp-block-group.is-layout-flow > :is(p, ul, ol) + .wp-block-group.button-row,
.fijoy-block-page .entry-content .wp-block-group.is-layout-flow > :is(p, ul, ol) + .wp-block-buttons {
	margin-block-start: clamp(1.15rem, 1.9vw, 1.65rem);
}

.community-catalogue-card--direct .community-card__info {
	gap: .75rem;
}

.catalog-product__body > :is(h2, h3) + p {
	margin-block-start: .8rem;
}

.fijoy-block-page .entry-content .button-row + :where(p, ul, ol),
.fijoy-block-page .entry-content .wp-block-buttons + :where(p, ul, ol) {
	margin-top: clamp(1rem, 1.5vw, 1.35rem);
}

.community-catalogue-card--workshop {
	padding: clamp(1.25rem, 1.8vw, 1.7rem);
}

.community-catalogue-card--workshop .workshop-card__creator {
	margin: auto 0 .8rem;
	color: var(--steel);
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.community-catalogue-card--workshop .workshop-card__creator strong {
	margin-left: .35rem;
	color: var(--mist);
	font-weight: 760;
	letter-spacing: 0;
	text-transform: none;
}

.community-catalogue-card--workshop .workshop-card__creator + .text-link {
	margin-top: 0;
}

.workshop-card__gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .55rem;
	padding: .8rem;
	border-top: 1px solid var(--line);
}

.workshop-card__gallery-grid figure {
	margin: 0;
	overflow: hidden;
	background: rgb(0 17 25 / 75%);
	border: 1px solid var(--line);
}

.workshop-card__gallery-grid figure:only-child {
	grid-column: 1 / -1;
}

.workshop-card__gallery-grid a {
	display: block;
	min-height: 44px;
}

.workshop-card__gallery-grid img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: contain;
}

@media (max-width: 680px) {
	.fijoy-block-page .entry-content :where(p, ul, ol) + .button-row,
	.fijoy-block-page .entry-content :is(
		.contact-band,
		.release-panel,
		.future-status,
		.remaster-cta,
		.future-hero__copy
	) :where(p, ul, ol) + .wp-block-buttons {
		margin-top: 1.1rem;
	}

	.fijoy-block-page .entry-content .wp-block-group.is-layout-flow > :is(p, ul, ol) + .wp-block-group.button-row,
	.fijoy-block-page .entry-content .wp-block-group.is-layout-flow > :is(p, ul, ol) + .wp-block-buttons {
		margin-block-start: 1.1rem;
	}
}

/*
 * Floorball Editor product screenshots.
 *
 * This final, page-scoped layer keeps native image blocks compact and
 * consistent despite the theme's earlier gallery and block-layout rules.
 */
.fijoy-block-page .entry-content .editor-screenshot-showcase {
	display: grid;
	gap: clamp(1.35rem, 2.4vw, 2rem);
	padding-block: clamp(2.75rem, 4vw, 4rem);
}

.fijoy-block-page .entry-content .editor-screenshot-showcase__note {
	max-width: 66ch;
	margin: 0;
	color: var(--steel);
	font-size: clamp(.78rem, .72rem + .18vw, .9rem);
	line-height: 1.6;
}

.fijoy-block-page .entry-content .editor-screenshot-showcase__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: clamp(.8rem, 1.5vw, 1.2rem) !important;
	align-items: start;
}

.fijoy-block-page .entry-content .editor-screenshot-showcase__grid > * {
	min-width: 0;
}

.fijoy-block-page .entry-content .editor-product-shot {
	position: relative;
	display: grid;
	grid-template-rows: auto auto;
	min-width: 0;
	margin: 0;
	overflow: hidden;
	background: var(--marine-deep);
	border: 1px solid var(--line);
	border-radius: 0;
	box-shadow: none;
}

.fijoy-block-page .entry-content .editor-product-shot::before {
	position: absolute;
	top: -1px;
	left: -1px;
	z-index: 3;
	width: clamp(72px, 9vw, 136px);
	height: 3px;
	background: var(--coral);
	content: "";
	pointer-events: none;
}

.fijoy-block-page .entry-content .editor-product-shot > a {
	display: block;
	width: 100%;
	cursor: zoom-in;
}

.fijoy-block-page .entry-content .editor-product-shot :is(img, a > img) {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
	border-radius: 0;
	transition: transform 220ms ease;
}

.fijoy-block-page .entry-content .editor-product-shot > a:hover img {
	transform: scale(1.012);
}

.fijoy-block-page .entry-content .editor-product-shot > a:focus-visible {
	outline: 2px solid var(--coral-light);
	outline-offset: -3px;
}

.fijoy-block-page .entry-content .editor-product-shot :is(figcaption, .wp-element-caption) {
	min-height: 0;
	padding: .75rem clamp(.85rem, 1.4vw, 1.05rem) .85rem;
	margin: 0;
	color: var(--steel);
	background: rgb(255 255 255 / 3%);
	border-top: 1px solid var(--line);
	font-size: clamp(.7rem, .67rem + .12vw, .78rem);
	line-height: 1.5;
	text-align: left;
}

.fijoy-block-page .entry-content .editor-product-shot figcaption {
	display: grid;
	gap: .3rem;
}

.fijoy-block-page .entry-content .editor-product-shot figcaption strong {
	color: var(--white);
	font-size: clamp(.82rem, .78rem + .12vw, .92rem);
	font-weight: 760;
	letter-spacing: -.015em;
}

.fijoy-block-page .entry-content .editor-product-shot figcaption span {
	display: block;
}

@media (prefers-reduced-motion: reduce) {
	.fijoy-block-page .entry-content .editor-product-shot :is(img, a > img) {
		transition: none;
	}
}

@media (max-width: 680px) {
	.fijoy-block-page .entry-content .editor-screenshot-showcase {
		padding-block: 2.75rem;
	}

	.fijoy-block-page .entry-content .editor-screenshot-showcase__grid {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: .85rem !important;
	}
}

/* Keep the unified catalogue rules authoritative after legacy block fallbacks. */
.community-catalogue-card--workshop {
	padding: clamp(.8rem, 1.15vw, 1.05rem) !important;
}

.community-catalogue-card--direct .community-card__topline {
	padding: 0;
}

.community-catalogue-card--workshop .workshop-card__creator {
	align-self: end;
	width: 100%;
	padding: .8rem 0 0;
	margin: 0;
}

.community-catalogue-card--workshop .workshop-card__creator strong {
	margin: 0;
}

/*
 * Workshop/direct-download parity.
 *
 * Both sources use one vertical catalogue anatomy: source, title, artwork,
 * information, expandable detail and attribution. Colour is the distribution
 * cue: Steam Workshop is cyan, while direct download remains coral.
 */
.community-catalogue-card .community-card__inner,
.community-catalogue-card--direct .community-card__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: auto;
	gap: 0 !important;
	align-content: start;
	padding: clamp(.95rem, 1.25vw, 1.2rem) !important;
}

.community-catalogue-card .community-card__topline,
.community-catalogue-card--direct .community-card__topline {
	grid-column: 1;
	min-height: 2.5rem;
	padding: .2rem .15rem .85rem;
	border-bottom: 1px solid color-mix(in srgb, var(--community-source-accent) 22%, var(--line));
}

.community-catalogue-card .community-card__title,
.community-catalogue-card--workshop .community-card__title,
.community-catalogue-card--direct .community-card__title {
	grid-column: 1;
	min-block-size: 4.8rem;
	padding: 1rem .4rem;
	margin: 0;
}

.community-catalogue-card .community-cover-gallery,
.community-catalogue-card .community-card__info {
	grid-column: 1;
}

.community-catalogue-card .community-cover-gallery {
	aspect-ratio: 16 / 10;
	margin: 0;
	background: rgb(0 17 25 / 72%);
	border: 1px solid color-mix(in srgb, var(--community-source-accent) 22%, var(--line));
}

.community-catalogue-card .community-cover-gallery img {
	width: calc(100% - clamp(1.3rem, 2vw, 1.8rem)) !important;
	height: calc(100% - clamp(1.3rem, 2vw, 1.8rem)) !important;
	min-width: 0;
	min-height: 0;
	padding: 0;
	margin: auto;
	object-position: 50% 50%;
}

.community-catalogue-card .community-cover-gallery a {
	min-width: 0;
	min-height: 0;
	overflow: hidden;
}

.community-catalogue-card .community-card__info {
	min-height: 0;
	padding: 1rem .15rem 1.1rem;
}

.workshop-card__description {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.workshop-card__metrics {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
}

.workshop-card__metrics span {
	display: grid;
	gap: .18rem;
	justify-content: start;
	padding: .25rem .55rem;
	border-left: 1px solid var(--line);
}

.workshop-card__metrics span:first-child {
	padding-left: 0;
	border-left: 0;
}

.workshop-card__metrics strong {
	font-size: .58rem;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.workshop-card__action {
	align-self: stretch;
	width: 100%;
	min-height: 2.9rem;
	padding: .8rem 1rem;
	margin-top: .35rem !important;
	background: var(--community-source-accent);
	color: var(--marine-deep) !important;
	font-size: .68rem;
	line-height: 1.25;
	text-align: center;
	white-space: normal;
	overflow-wrap: anywhere;
}

.workshop-card__action:hover,
.workshop-card__action:focus-visible {
	background: color-mix(in srgb, var(--community-source-accent) 86%, white);
	color: var(--marine-deep) !important;
}

.community-catalogue-card .community-changelog-disclosure,
.community-catalogue-card .community-gallery-disclosure {
	grid-column: 1;
	margin-top: 0;
}

.community-catalogue-card--workshop .workshop-card__creator,
.community-catalogue-card--direct .community-meta--feedback,
.community-catalogue-card--direct .community-meta--creator {
	grid-column: 1;
}

.community-catalogue-card--direct .community-meta--feedback {
	margin-top: 0;
	padding: 1rem .15rem 0;
}

.community-catalogue-card--direct .community-meta--creator {
	padding: .3rem .15rem 1rem;
}

@media (max-width: 620px) {
	.community-catalogue-card .community-card__inner,
	.community-catalogue-card--direct .community-card__inner {
		padding: .85rem !important;
	}

	.workshop-card__metrics {
		grid-template-columns: 1fr;
	}

	.workshop-card__metrics span {
		display: flex;
		justify-content: space-between;
		padding: .32rem 0;
		border-left: 0;
		border-top: 1px solid var(--line);
	}

	.workshop-card__metrics span:first-child {
		border-top: 0;
	}

	.workshop-card__gallery-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Official product channels */

.product-social {
	position: relative;
	display: grid;
	grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
	gap: clamp(2.25rem, 7vw, 7rem);
	align-items: end;
	padding-block: clamp(3rem, 5.5vw, 5.5rem);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.product-social::before {
	position: absolute;
	top: -2px;
	left: 0;
	width: clamp(120px, 14vw, 220px);
	height: 4px;
	background: var(--coral);
	content: "";
}

.product-social__intro h2 {
	max-width: 12ch;
	margin-block: .8rem 1rem;
	font-size: clamp(2.25rem, 4.6vw, 4.75rem);
	line-height: .98;
}

.product-social__intro > p:last-child {
	max-width: 52ch;
	margin: 0;
	color: var(--steel);
	font-size: clamp(.96rem, 1.25vw, 1.15rem);
	line-height: 1.6;
}

.product-social__channels {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.product-social--practice .product-social__channels {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-social__channels li {
	min-width: 0;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.product-social__channels li:nth-child(3n) {
	border-right: 0;
}

.product-social--practice .product-social__channels li:nth-child(3n) {
	border-right: 1px solid var(--line);
}

.product-social--practice .product-social__channels li:nth-child(2n) {
	border-right: 0;
}

.product-social__channels a {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: .3rem 1rem;
	min-height: 7.4rem;
	padding: 1.35rem;
	color: var(--white);
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease;
}

.product-social__channels a::before {
	position: absolute;
	top: -1px;
	left: 1.35rem;
	width: 2.75rem;
	height: 3px;
	background: var(--coral);
	content: "";
	transform: scaleX(.38);
	transform-origin: left;
	transition: transform .25s var(--ease);
}

.product-social__channels a:hover,
.product-social__channels a:focus-visible {
	background: rgb(255 255 255 / 5%);
	color: var(--coral-light);
}

.product-social__channels a:hover::before,
.product-social__channels a:focus-visible::before {
	transform: scaleX(1);
}

.product-social__channels span {
	align-self: end;
	font-size: clamp(1rem, 1.3vw, 1.25rem);
	font-weight: 760;
}

.product-social__channels small {
	grid-column: 1;
	overflow: hidden;
	color: var(--steel);
	font-size: .64rem;
	font-weight: 680;
	letter-spacing: .05em;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.product-social__channels i {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: center;
	font-size: .95rem;
	font-style: normal;
}

.product-hero__official-logo {
	width: min(100%, 560px);
	margin: 0 0 clamp(1.1rem, 2vw, 1.8rem);
}

.product-hero__official-logo img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 980px) {
	.product-social {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.product-social__intro h2 {
		max-width: 15ch;
	}
}

@media (max-width: 720px) {
	.product-social__channels,
	.product-social--practice .product-social__channels {
		grid-template-columns: 1fr;
	}

	.product-social__channels li,
	.product-social__channels li:nth-child(3n),
	.product-social--practice .product-social__channels li:nth-child(2n),
	.product-social--practice .product-social__channels li:nth-child(3n) {
		border-right: 0;
	}

	.product-social__channels a {
		min-height: 5.8rem;
		padding-inline: 1rem;
	}
}

/* Floorball League 2010 Remaster V2 brand media */

.product-hero--remaster h1,
.game-card--remaster .game-card__body h3,
.game-card > .game-card__media--remaster ~ .game-card__body h3 {
	font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 400;
	font-synthesis: none;
	letter-spacing: .01em;
	line-height: 1;
}

.remaster-brand-media,
.catalog-product__media--remaster {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background-color: var(--marine-deep);
	background-image:
		linear-gradient(115deg, rgb(0 18 28 / 94%), rgb(0 77 107 / 62%) 54%, rgb(0 11 17 / 90%)),
		radial-gradient(circle at 68% 42%, rgb(8 123 161 / 24%), transparent 58%),
		url("./assets/images/remaster-heritage-768.webp");
	background-position: center, center, 50% 39%;
	background-repeat: no-repeat;
	background-size: cover;
}

@supports (background-image: image-set(url("./assets/images/remaster-heritage-768.webp") 1x)) {
	.remaster-brand-media,
	.catalog-product__media--remaster {
		background-image:
			linear-gradient(115deg, rgb(0 18 28 / 94%), rgb(0 77 107 / 62%) 54%, rgb(0 11 17 / 90%)),
			radial-gradient(circle at 68% 42%, rgb(8 123 161 / 24%), transparent 58%),
			image-set(
				url("./assets/images/remaster-heritage-768.webp") 1x,
				url("./assets/images/remaster-heritage-1536.webp") 2x
			);
	}
}

.remaster-brand-media {
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 9;
}

.remaster-brand-media::before,
.catalog-product__media--remaster::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(90deg, rgb(8 123 161 / 78%), transparent 36%) top left / 42% 3px no-repeat,
		linear-gradient(90deg, transparent 62%, rgb(0 77 107 / 72%)) bottom right / 100% 3px no-repeat;
	content: "";
	pointer-events: none;
}

.game-card__media.remaster-brand-media::after {
	z-index: 0;
}

.remaster-brand-media > img,
.catalog-product__media--remaster picture {
	position: relative;
	z-index: 1;
}

.remaster-brand-media > img,
.fijoy-block-page .wp-block-image.remaster-brand-media > img,
.catalog-product__media--remaster img {
	width: min(66%, 31rem);
	height: 88%;
	padding: clamp(.45rem, 1.4vw, 1rem);
	aspect-ratio: 1;
	object-fit: contain;
	object-position: center;
	filter: drop-shadow(0 14px 30px rgb(0 0 0 / 45%));
}

.catalog-product__media--remaster picture {
	display: grid;
	place-items: center;
}

.catalog-product__media--remaster::after {
	z-index: 2;
}

.catalog-product__media--remaster:hover img,
.catalog-product__media--remaster:focus-visible img {
	opacity: 1;
	transform: scale(1.035);
}

@media (max-width: 480px) {
	.remaster-brand-media > img,
	.fijoy-block-page .wp-block-image.remaster-brand-media > img,
	.catalog-product__media--remaster img {
		width: 72%;
		height: 92%;
		padding: .35rem;
	}
}

/* Floorball League 2010 2025 rerelease brand media */

.product-hero--rerelease h1,
.product-hero:has(> .product-hero__media--rerelease) h1,
.game-card--rerelease .game-card__body h3,
.game-card > .game-card__media--rerelease ~ .game-card__body h3 {
	font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 400;
	font-synthesis: none;
	letter-spacing: .01em;
	line-height: 1;
}

.product-hero--rerelease,
.product-hero:has(> .product-hero__media--rerelease) {
	background:
		radial-gradient(circle at 78% 38%, rgb(201 206 209 / 10%), transparent 26rem),
		linear-gradient(112deg, #050607 0 46%, #121517 72%, #030405);
	border-bottom-color: rgb(201 206 209 / 22%);
}

.product-hero--rerelease .eyebrow,
.product-hero:has(> .product-hero__media--rerelease) .eyebrow,
.game-card--rerelease > .fijoy-block-inline > span,
.game-card > .game-card__media--rerelease ~ .fijoy-block-inline > span {
	color: #d6dadd;
}

.game-card--rerelease,
.game-card:has(> .game-card__media--rerelease),
.catalog-product--rerelease {
	background:
		linear-gradient(145deg, rgb(214 218 221 / 7%), transparent 48%),
		#080a0b;
	border-color: rgb(201 206 209 / 28%);
}

.rerelease-brand-media,
.catalog-product__media--rerelease {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background-color: #050607;
	background-image:
		linear-gradient(112deg, rgb(3 4 5 / 92%), rgb(24 27 29 / 54%) 54%, rgb(0 0 0 / 88%)),
		radial-gradient(circle at 68% 43%, rgb(214 218 221 / 15%), transparent 56%),
		url("./assets/images/rerelease-heritage-768.webp");
	background-position: center, center, 50% 42%;
	background-repeat: no-repeat;
	background-size: cover;
}

@supports (background-image: image-set(url("./assets/images/rerelease-heritage-768.webp") 1x)) {
	.rerelease-brand-media,
	.catalog-product__media--rerelease {
		background-image:
			linear-gradient(112deg, rgb(3 4 5 / 92%), rgb(24 27 29 / 54%) 54%, rgb(0 0 0 / 88%)),
			radial-gradient(circle at 68% 43%, rgb(214 218 221 / 15%), transparent 56%),
			image-set(
				url("./assets/images/rerelease-heritage-768.webp") 1x,
				url("./assets/images/rerelease-heritage-1536.webp") 2x
			);
	}
}

.rerelease-brand-media {
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 9;
}

.rerelease-brand-media::before,
.catalog-product__media--rerelease::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(90deg, #d3d7da, rgb(211 215 218 / 8%) 44%, transparent 74%) top left / 54% 3px no-repeat,
		linear-gradient(90deg, transparent 44%, rgb(174 180 184 / 64%)) bottom right / 100% 3px no-repeat;
	content: "";
	pointer-events: none;
}

.game-card__media.rerelease-brand-media::after {
	z-index: 0;
	background: linear-gradient(transparent 35%, rgb(0 0 0 / 62%));
}

.rerelease-brand-media > img,
.catalog-product__media--rerelease picture {
	position: relative;
	z-index: 1;
}

.rerelease-brand-media > img,
.fijoy-block-page .wp-block-image.rerelease-brand-media > img,
.catalog-product__media--rerelease img {
	width: min(62%, 31rem);
	height: 90%;
	padding: clamp(.35rem, 1vw, .8rem);
	aspect-ratio: 1;
	object-fit: contain;
	object-position: center;
	filter: drop-shadow(0 16px 30px rgb(0 0 0 / 55%));
}

.catalog-product__media--rerelease picture {
	display: grid;
	place-items: center;
}

.catalog-product__media--rerelease::after {
	z-index: 2;
	background: #d3d7da;
}

.catalog-product__media--rerelease:hover img,
.catalog-product__media--rerelease:focus-visible img {
	opacity: 1;
	transform: scale(1.035);
}

@media (max-width: 480px) {
	.rerelease-brand-media > img,
	.fijoy-block-page .wp-block-image.rerelease-brand-media > img,
	.catalog-product__media--rerelease img {
		width: 70%;
		height: 94%;
		padding: .25rem;
	}
}

/* Floorball League product-cover presentation
 *
 * The portrait covers sit within the existing heritage media environments
 * instead of being cropped into the landscape Home, hero and Store frames.
 */

.product-cover-media,
.catalog-product__media--product-cover {
	place-items: center;
}

.product-cover-media > img,
.fijoy-block-page .wp-block-image.product-cover-media > img,
.catalog-product__media--product-cover img {
	position: relative;
	z-index: 1;
	width: auto;
	max-width: 58%;
	height: 88%;
	padding: 0;
	aspect-ratio: 2 / 3;
	object-fit: contain;
	object-position: center;
	background: #050607;
	border: 1px solid rgb(255 255 255 / 24%);
	box-shadow:
		0 2px 0 rgb(255 255 255 / 12%),
		0 18px 42px rgb(0 0 0 / 58%);
	filter: none;
}

.product-hero__media.product-cover-media > img,
.fijoy-block-page .wp-block-image.product-hero__media.product-cover-media > img {
	height: 91%;
	box-shadow:
		0 2px 0 rgb(255 255 255 / 14%),
		0 24px 58px rgb(0 0 0 / 62%);
}

.catalog-product__media--product-cover picture {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
}

.catalog-product__media--product-cover:hover img,
.catalog-product__media--product-cover:focus-visible img {
	opacity: 1;
	transform: translateY(-2px) scale(1.035);
}

@media (max-width: 680px) {
	.game-card__media.product-cover-media {
		aspect-ratio: 1;
	}

	.product-cover-media > img,
	.fijoy-block-page .wp-block-image.product-cover-media > img,
	.catalog-product__media--product-cover img {
		max-width: 66%;
		height: 90%;
	}
}

/*
 * 1.7.5 Floorball League art direction.
 *
 * Home uses purpose-built landscape key art with a uniform card system.
 * Store posters sit on quiet branded mattes, without repeating their artwork
 * behind them, and catalogue typography remains part of the FIJOY site system.
 */

.catalog-product--rerelease h3,
.catalog-product--remaster h3 {
	font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 720;
	font-synthesis: initial;
	letter-spacing: -.035em;
	line-height: 1.08;
}

.catalog-product__media--product-cover.catalog-product__media--rerelease,
.catalog-product__media--product-cover.catalog-product__media--remaster {
	min-height: clamp(15rem, 19vw, 18rem);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.catalog-product__media--product-cover.catalog-product__media--rerelease {
	background-color: #080a0b;
	background-image:
		radial-gradient(ellipse at 50% 45%, rgb(218 223 226 / 13%), transparent 43%),
		linear-gradient(135deg, transparent 0 47%, rgb(255 255 255 / 3%) 47% 48%, transparent 48% 100%),
		linear-gradient(145deg, #171a1c, #070809 58%, #111416);
}

.catalog-product__media--product-cover.catalog-product__media--remaster {
	background-color: var(--marine-deep);
	background-image:
		radial-gradient(ellipse at 50% 43%, rgb(8 123 161 / 25%), transparent 46%),
		linear-gradient(135deg, transparent 0 47%, rgb(111 207 232 / 5%) 47% 48%, transparent 48% 100%),
		linear-gradient(145deg, #003246, #00131e 58%, #002638);
}

.catalog-product__media--product-cover.catalog-product__media--rerelease::before,
.catalog-product__media--product-cover.catalog-product__media--remaster::before {
	z-index: 0;
	background:
		linear-gradient(90deg, currentcolor, transparent 58%) top left / 42% 3px no-repeat,
		linear-gradient(90deg, transparent 58%, currentcolor) bottom right / 100% 2px no-repeat;
	opacity: .72;
}

.catalog-product__media--product-cover.catalog-product__media--rerelease::before {
	color: #d3d7da;
}

.catalog-product__media--product-cover.catalog-product__media--remaster::before {
	color: var(--teal-bright);
}

.catalog-product__media--product-cover img {
	max-width: 62%;
	height: 86%;
	border-color: rgb(255 255 255 / 28%);
	box-shadow:
		0 1px 0 rgb(255 255 255 / 14%),
		0 20px 48px rgb(0 0 0 / 58%);
}

.games-showcase .games-grid {
	align-items: stretch;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

.games-showcase .game-card {
	display: grid;
	min-width: 0;
	height: 100%;
	grid-template-rows: auto auto 1fr;
	background:
		linear-gradient(155deg, rgb(8 123 161 / 8%), transparent 45%),
		var(--marine-deep);
	border: 0;
	border-radius: 0;
}

.games-showcase .game-card--rerelease {
	background:
		linear-gradient(145deg, rgb(214 218 221 / 7%), transparent 48%),
		#080a0b;
}

.games-showcase .game-card__media {
	display: block;
	width: 100%;
	height: auto;
	min-height: 0;
	margin: 0;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--marine-black);
	border-radius: 0;
}

.games-showcase .game-card__media > img,
.fijoy-block-page .games-showcase .wp-block-image.game-card__media > img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	max-width: none;
	height: 100%;
	padding: 0;
	aspect-ratio: auto;
	object-fit: cover;
	object-position: center;
	background: transparent;
	border: 0;
	box-shadow: none;
	filter: none;
}

/*
 * The content migration changes saved blocks to these files. The content
 * property is a visual fallback for an already-open page cached before an
 * administrator gets a chance to run that migration.
 */
.games-showcase .game-card__media--rerelease > img {
	content: url("./assets/images/fbl-2010-rerelease-home-v3-1536x864.webp");
}

.games-showcase .game-card__media--remaster > img {
	content: url("./assets/images/fbl-2010-remaster-card-v3-1536x864.webp");
}

.games-showcase .game-card__media--practice > img {
	content: url("./assets/images/floorball-practice-store-v3-1536x864.webp");
}

.games-showcase .game-card__media::before {
	z-index: 2;
	background:
		linear-gradient(180deg, transparent 58%, rgb(0 11 17 / 46%)),
		linear-gradient(90deg, rgb(255 255 255 / 12%), transparent 40%) top left / 44% 1px no-repeat;
}

.games-showcase .game-card__media::after {
	inset: 0;
	z-index: 3;
	width: auto;
	height: auto;
	background:
		linear-gradient(180deg, transparent 62%, rgb(0 11 17 / 42%)),
		linear-gradient(90deg, var(--coral), transparent) top left / 34% 3px no-repeat;
}

.games-showcase .game-card--rerelease .game-card__media::after {
	background:
		linear-gradient(180deg, transparent 62%, rgb(0 0 0 / 48%)),
		linear-gradient(90deg, #d3d7da, transparent) top left / 34% 3px no-repeat;
}

.games-showcase .game-card > .fijoy-block-inline > span {
	align-self: stretch;
	padding: 1rem clamp(1.25rem, 2vw, 1.8rem) 0;
}

.games-showcase .game-card__body {
	display: flex;
	min-height: 18rem;
	flex-direction: column;
	padding: 1rem clamp(1.25rem, 2vw, 1.8rem) clamp(1.4rem, 2vw, 1.9rem);
}

.games-showcase .game-card__body h3 {
	min-height: 2em;
	margin-bottom: .75rem;
	font-size: clamp(1.45rem, 1.6vw, 1.9rem);
}

.games-showcase .game-card__body > p:not(.eyebrow):not(.text-link) {
	min-height: 0;
	margin-bottom: 1.35rem;
}

.games-showcase .game-card__body .text-link {
	margin-top: auto;
}

@media (max-width: 980px) {
	.games-showcase .games-grid {
		max-width: 760px;
		grid-template-columns: 1fr;
		margin-inline: auto;
	}

	.games-showcase .game-card__body {
		min-height: 0;
	}

	.games-showcase .game-card__body h3 {
		min-height: 0;
	}
}

@media (max-width: 480px) {
	.catalog-product__media--product-cover.catalog-product__media--rerelease,
	.catalog-product__media--product-cover.catalog-product__media--remaster {
		min-height: 15.5rem;
		aspect-ratio: 4 / 3;
	}

	.catalog-product__media--product-cover img {
		width: auto;
		max-width: 64%;
		height: 14rem;
		max-height: 14rem;
	}
}

/*
 * 1.7.6 release-priority and product-art presentation.
 *
 * The Remaster now leads the Home page, while cards and catalogue products
 * consistently use purpose-built widescreen artwork. Portrait artwork is
 * reserved for the three product-page heroes and is displayed as the artwork
 * itself rather than as a cover placed over a second background.
 */

.home-hero--remaster h1 {
	font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 400;
	font-synthesis: none;
	letter-spacing: -.035em;
	line-height: .86;
}

.home-hero--remaster .home-hero__media img {
	content: url("./assets/images/fbl-2010-remaster-hero-v3-1536x864.webp");
	object-position: right center;
}

.home-hero--remaster .home-hero__media::after {
	background:
		linear-gradient(90deg, rgb(0 11 17 / 96%) 0%, rgb(0 18 28 / 76%) 39%, rgb(0 18 28 / 12%) 74%),
		linear-gradient(180deg, rgb(0 0 0 / 16%), rgb(0 18 28 / 38%));
}

/*
 * 1.7.7 crop-safe promotional art.
 *
 * The date is already stated in the eyebrow and lead. Its former oversized
 * badge is repurposed as one compact, fully opaque brand mark in the negative
 * space between the copy and the right-weighted athlete.
 */

.home-hero--remaster .home-hero__release {
	right: clamp(16rem, 31vw, 38rem);
	bottom: clamp(2.25rem, 5vh, 4rem);
	display: block;
	width: clamp(9rem, 12vw, 14rem);
	height: clamp(9rem, 12vw, 14rem);
	background: url("./assets/images/fbl-2010-remaster-v2.svg") center / contain no-repeat;
	filter: drop-shadow(0 14px 28px rgb(0 0 0 / 38%));
}

.home-hero--remaster .home-hero__release > * {
	display: none !important;
}

.games-showcase .game-card--practice {
	background:
		linear-gradient(145deg, rgb(8 123 161 / 12%), transparent 50%),
		var(--marine-deep);
}

.games-showcase .game-card__media--practice > img,
.games-showcase .game-card__media--future > img {
	width: 100%;
	max-width: none;
	height: 100%;
	padding: 0;
	object-fit: cover;
}

.catalog-product__media.catalog-product__media--full-bleed {
	display: block;
	min-height: 0;
	aspect-ratio: 16 / 9;
	background: var(--marine-black);
}

.catalog-product__media.catalog-product__media--full-bleed picture {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
}

.catalog-product__media.catalog-product__media--full-bleed img {
	display: block;
	width: 100%;
	max-width: none;
	height: 100%;
	max-height: none;
	padding: 0;
	aspect-ratio: auto;
	object-fit: cover;
	object-position: center;
	background: transparent;
	border: 0;
	box-shadow: none;
	filter: none;
}

.catalog-product__media.catalog-product__media--full-bleed:hover img,
.catalog-product__media.catalog-product__media--full-bleed:focus-visible img {
	opacity: .94;
	transform: scale(1.025);
}

.product-hero__media.product-portrait-hero,
.fijoy-block-page .wp-block-image.product-hero__media.product-portrait-hero {
	display: block;
	justify-self: center;
	width: min(75%, 345px);
	max-width: 345px;
	overflow: hidden;
	aspect-ratio: 2 / 3;
	background: #050607;
	background-image: none;
	border: 1px solid rgb(255 255 255 / 24%);
	border-radius: 4px;
	box-shadow:
		0 1px 0 rgb(255 255 255 / 12%),
		0 28px 70px rgb(0 0 0 / 48%);
	isolation: auto;
}

.product-hero__media.product-portrait-hero::before,
.product-hero__media.product-portrait-hero::after {
	display: none;
}

.product-hero__media.product-portrait-hero > img,
.fijoy-block-page .wp-block-image.product-hero__media.product-portrait-hero > img {
	position: static;
	display: block;
	width: 100%;
	max-width: none;
	height: 100%;
	max-height: none;
	padding: 0;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	object-position: center;
	background: transparent;
	border: 0;
	box-shadow: none;
	filter: none;
	transform: none;
}

/*
 * The 2025 rerelease keeps the typography and structure shared with the other
 * products, but its complete page adopts the graphite/silver character of the
 * original printed templates.
 */

.page-floorball-league-2010 .product-main {
	--marine: #15181a;
	--marine-deep: #050607;
	--marine-black: #020303;
	--teal: #252a2d;
	--teal-bright: #8d989d;
	--coral: #c2c8cb;
	--coral-light: #edf0f1;
	--steel: #aeb5b8;
	--mist: #d1d6d8;
	--line: rgb(214 218 221 / 18%);
	--surface: rgb(214 218 221 / 5%);
	--surface-strong: rgb(214 218 221 / 9%);
	background:
		radial-gradient(circle at 84% 4%, rgb(201 206 209 / 13%), transparent 31rem),
		linear-gradient(180deg, #080a0b, #030405 68%, #090b0c);
}

.page-floorball-league-2010 .product-main::before {
	position: fixed;
	inset: var(--header-height) 0 0;
	z-index: 0;
	background-image:
		linear-gradient(125deg, transparent 48%, rgb(255 255 255 / 2.4%) 49%, transparent 50%);
	background-size: 84px 84px;
	content: "";
	mask-image: linear-gradient(90deg, transparent, black 55%, transparent);
	pointer-events: none;
}

.page-floorball-league-2010 .entry-content {
	position: relative;
	z-index: 1;
}

.page-floorball-league-2010 .product-hero--rerelease {
	background:
		radial-gradient(circle at 76% 38%, rgb(226 230 232 / 9%), transparent 24rem),
		linear-gradient(112deg, #030405 0 48%, #171a1c 76%, #050607);
	border-color: rgb(214 218 221 / 22%);
}

.page-floorball-league-2010 :is(
	.product-history__timeline article,
	.feature-card-grid article,
	.stat-panel-grid article,
	.product-bridge,
	.product-bridge__links a
) {
	background:
		linear-gradient(145deg, rgb(218 223 226 / 6%), transparent 58%),
		#0a0c0d;
	border-color: rgb(214 218 221 / 18%);
}

.page-floorball-league-2010 :is(
	.product-split__media,
	.controls-showcase figure,
	.media-strip figure
) {
	background: #060708;
	border-color: rgb(214 218 221 / 20%);
}

.page-floorball-league-2010 :is(
	.product-history,
	.product-split,
	.controls-showcase,
	.product-bridge
) {
	border-color: rgb(214 218 221 / 18%);
}

.page-floorball-league-2010 .product-history__timeline {
	background: rgb(214 218 221 / 18%);
}

.page-floorball-league-2010 .product-history__timeline article > strong {
	-webkit-text-stroke-color: rgb(237 240 241 / 72%);
}

@media (max-width: 900px) {
	.home-hero--remaster .home-hero__release {
		display: none;
	}

	.product-hero__media.product-portrait-hero,
	.fijoy-block-page .wp-block-image.product-hero__media.product-portrait-hero {
		width: min(60vw, 315px);
	}
}

@media (max-width: 680px) {
	.home-hero--remaster h1 {
		font-size: clamp(3rem, 14vw, 4.8rem);
	}

	.product-hero__media.product-portrait-hero,
	.fijoy-block-page .wp-block-image.product-hero__media.product-portrait-hero {
		width: min(75vw, 292px);
	}
}
