:root {
	--acryr-bg: #ffffff;
	--acryr-surface: #ffffff;
	--acryr-surface-soft: #f7f7f7;
	--acryr-line: #e9e9e9;
	--acryr-line-strong: #d8d8d8;
	--acryr-text: #111111;
	--acryr-muted: #666666;
	--acryr-red: #e10600;
	--acryr-black: #111111;
	--acryr-radius: 24px;
	--acryr-radius-sm: 16px;
	--acryr-shadow: 0 18px 36px rgba(0, 0, 0, 0.05);
	--acryr-font-heading: "Exo", sans-serif;
	--acryr-font-body: "Barlow", sans-serif;
	--acryr-hero-panel-bg: url("../images/hero-panel-bg.jpg");
	--acryr-deco-top: url("../../../plugins/acryr-core/assets/decor/deco1.webp");
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--acryr-bg);
	color: var(--acryr-text);
	font-family: var(--acryr-font-body);
	margin: 0;
}

a {
	color: inherit;
}

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

.site-shell {
	min-height: 100vh;
}

.site-container {
	margin: 0 auto;
	max-width: 1540px;
	padding: 0 28px;
}

.site-header {
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(233, 233, 233, 0.92);
	position: sticky;
	top: 0;
	transition:
		background-color 0.22s ease,
		border-color 0.22s ease,
		box-shadow 0.22s ease,
		color 0.22s ease;
	z-index: 50;
}

.home .site-header {
	background: transparent;
	border-bottom-color: transparent;
	box-shadow: none;
	left: 0;
	position: fixed;
	right: 0;
	top: 18px;
}

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

.home .site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.94);
	border-bottom-color: rgba(233, 233, 233, 0.92);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	top: 0;
}

body.admin-bar .home .site-header.is-scrolled {
	top: 32px;
}

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

.home .site-header.is-scrolled .site-header__brand {
	gap: 0;
	max-width: 96px;
}

.home .site-header.is-scrolled .site-header__home {
	gap: 0;
	grid-template-columns: 78px 0;
}

.home .site-header.is-scrolled .site-header__logo img,
.home .site-header.is-scrolled .site-header__logo .custom-logo {
	max-height: 42px;
}

.home .site-header.is-open:not(.is-scrolled) {
	background: linear-gradient(180deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.72) 100%);
}

.site-header__bar {
	align-items: center;
	display: flex;
	gap: 28px;
	justify-content: space-between;
	min-height: 78px;
	padding: 0 26px;
	position: relative;
}

.site-header__brand {
	align-items: start;
	display: grid;
	gap: 10px;
	min-width: 0;
	flex: 1 1 auto;
	max-width: min(760px, calc(100% - 420px));
}

.site-header__home {
	align-items: start;
	display: grid;
	gap: 10px;
	grid-template-columns: 58px minmax(0, 1fr);
	min-width: 0;
	text-decoration: none;
}

.site-header__logo {
	display: inline-flex;
	flex: 0 0 auto;
	line-height: 0;
	padding-top: 2px;
}

.site-header__logo .custom-logo-link {
	display: inline-flex;
}

.site-header__logo img,
.site-header__logo .custom-logo {
	height: auto;
	max-height: 34px;
	width: auto;
}

.site-header__brand-copy {
	display: grid;
	align-content: start;
	gap: 3px;
	min-width: 0;
	transition:
		opacity 0.18s ease,
		transform 0.18s ease,
		max-width 0.18s ease;
}

.site-header__eyebrow,
.page-hero__eyebrow,
.section-header__eyebrow,
.section-head__eyebrow,
.surface-card__meta,
.hero-slide__eyebrow,
.hero-slide__panel-label {
	color: var(--acryr-red);
	font-family: var(--acryr-font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.1;
	margin: 0;
	text-transform: uppercase;
}

.site-header__title,
.page-hero__title,
.section-header__title,
.section-head__title,
.surface-card__title,
.hero-slide__title,
.hero-slide__panel-title {
	font-family: var(--acryr-font-heading);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0;
}

.site-header__title {
	font-size: clamp(0.92rem, 1.1vw, 1.25rem);
	line-height: 0.98;
	max-width: 24ch;
	text-wrap: balance;
}

.site-header__tagline {
	color: var(--acryr-muted);
	font-size: 0.72rem;
	line-height: 1.3;
	margin: 0;
	max-width: 40ch;
	padding-left: 52px;
	transition:
		opacity 0.18s ease,
		transform 0.18s ease,
		max-height 0.18s ease,
		margin 0.18s ease;
}

.home .site-header.is-scrolled .site-header__brand-copy,
.home .site-header.is-scrolled .site-header__tagline {
	max-height: 0;
	max-width: 0;
	margin: 0;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	transform: translateY(-6px);
}

.home .site-header:not(.is-scrolled) .site-header__title,
.home .site-header:not(.is-scrolled) .site-header__tagline,
.home .site-header:not(.is-scrolled) .site-menu a,
.home .site-header:not(.is-scrolled) .site-header__toggle {
	color: #ffffff;
}

.home .site-header:not(.is-scrolled) .site-header__eyebrow {
	color: rgba(255, 255, 255, 0.84);
}

.home .site-header:not(.is-scrolled) .site-header__tagline {
	color: rgba(255, 255, 255, 0.8);
}

.home .site-header:not(.is-scrolled) .site-header__toggle {
	border-color: rgba(255, 255, 255, 0.36);
}

.home .site-header:not(.is-scrolled) .site-menu a::after {
	background: #ffffff;
}

.site-header__toggle {
	background: none;
	border: 1px solid var(--acryr-line-strong);
	border-radius: 999px;
	display: none;
	font-family: var(--acryr-font-body);
	font-size: 0.95rem;
	letter-spacing: 0.05em;
	padding: 8px 14px;
	text-transform: uppercase;
	position: relative;
	z-index: 3;
}

.site-header__nav {
	display: flex;
	flex: 0 0 auto;
	margin-left: auto;
	align-items: center;
}

.site-menu,
.site-footer__menu,
.site-footer__nav ul {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__nav li,
.site-footer__menu li,
.site-footer__nav ul li {
	list-style: none;
	margin: 0;
}

.site-menu a,
.site-footer__menu a,
.site-footer__nav ul a,
.subnav-strip a,
.surface-card__link,
.hero-slide__panel-links a {
	font-family: var(--acryr-font-body);
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-footer__menu a,
.site-footer__nav ul a {
	padding: 8px 0;
}

.site-menu a {
	color: var(--acryr-black);
	display: inline-block;
	padding: 6px 0;
	position: relative;
	white-space: nowrap;
}

.site-menu a::after,
.surface-card__link::after,
.hero-slide__panel-links a::after,
.subnav-strip a::after {
	background: var(--acryr-red);
	bottom: -2px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.18s ease;
	width: 100%;
}

.site-menu a:hover::after,
.surface-card__link:hover::after,
.hero-slide__panel-links a:hover::after,
.subnav-strip a:hover::after {
	transform: scaleX(1);
}

.site-main {
	padding: 0 0 80px;
}

.hero-carousel {
	border-bottom: 1px solid var(--acryr-line);
	padding: 0 0 36px;
}

.hero-carousel__viewport.site-container {
	max-width: none;
	padding: 0;
}

.hero-carousel__viewport {
	padding-top: 0;
}

.hero-carousel__track {
	position: relative;
}

.hero-carousel__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.9fr) minmax(320px, 0.72fr);
	min-height: 100vh;
}

.hero-slide {
	display: none;
	min-height: 100vh;
}

.hero-slide.is-active {
	display: block;
}

.hero-slide__main {
	background: var(--acryr-surface);
	border: 0;
	border-radius: 0;
	display: flex;
	min-height: 100vh;
	overflow: hidden;
	position: relative;
}

.hero-slide__main::before {
	background:
		linear-gradient(90deg, rgba(9, 11, 14, 0.9) 0%, rgba(9, 11, 14, 0.74) 32%, rgba(9, 11, 14, 0.22) 58%, rgba(9, 11, 14, 0.08) 100%),
		var(--hero-image, none);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.hero-slide__main--has-image::after {
	background: linear-gradient(180deg, rgba(5, 10, 16, 0.08) 0%, rgba(5, 10, 16, 0.44) 100%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.hero-slide__copy {
	align-content: end;
	display: grid;
	gap: 18px;
	max-width: min(720px, 62%);
	padding: 188px 56px 64px;
	position: relative;
	z-index: 2;
}

body.admin-bar .hero-slide__copy {
	padding-top: 220px;
}

.hero-slide__title {
	font-size: clamp(2rem, 3.5vw, 3.5rem);
	max-width: 10ch;
	color: #ffffff;
}

.hero-slide__panel--static {
	position: relative;
	z-index: 2;
}

.hero-slide__text {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.08rem;
	line-height: 1.55;
	margin: 0;
	max-width: 56ch;
}

.hero-slide__eyebrow {
	color: rgba(255, 255, 255, 0.86);
}

.hero-slide__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.site-button {
	align-items: center;
	background: var(--acryr-red);
	border: 1px solid var(--acryr-red);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-family: var(--acryr-font-body);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	padding: 11px 18px;
	text-decoration: none;
	text-transform: uppercase;
}

.site-button--soft {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
	backdrop-filter: blur(10px);
}

.site-button--dark {
	background: var(--acryr-black);
	border-color: var(--acryr-black);
	color: #fff;
}

.hero-slide__panel {
	background:
		linear-gradient(180deg, rgba(8, 12, 17, 0.72) 0%, rgba(8, 12, 17, 0.9) 100%),
		var(--acryr-hero-panel-bg);
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 54px rgba(0, 0, 0, 0.22);
	display: grid;
	gap: 18px;
	min-height: 100vh;
	padding: 158px 34px 34px;
	color: #ffffff;
	position: relative;
}

body.admin-bar .hero-slide__panel {
	padding-top: 208px;
}

.hero-slide__panel-title {
	font-size: clamp(1.7rem, 2.5vw, 2.4rem);
	color: #ffffff;
}

.hero-slide__panel-branding {
	display: grid;
	gap: 6px;
	justify-items: start;
	margin-top: -24px;
}

.hero-slide__panel-chapa {
	align-items: center;
	background: transparent;
	display: inline-flex;
	justify-content: center;
	max-width: 380px;
	padding: 0;
	width: min(100%, 380px);
}

.hero-slide__panel-chapa img {
	filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.28));
	max-height: 184px;
	object-fit: contain;
	transform: scale(1.08);
	transform-origin: left center;
	width: 100%;
}

.hero-slide__panel-logo-group {
	display: grid;
	gap: 10px;
}

.hero-slide__panel-logo-label {
	color: rgba(255, 255, 255, 0.68);
	font-family: var(--acryr-font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hero-slide__panel-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hero-slide__panel-logos img {
	background: rgba(255, 255, 255, 0.96);
	border-radius: 14px;
	height: 48px;
	object-fit: contain;
	padding: 8px 10px;
	width: auto;
}

.hero-slide__panel-meta {
	display: grid;
	gap: 12px;
}

.hero-slide__panel-meta span {
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	font-family: var(--acryr-font-body);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding-bottom: 12px;
	color: rgba(255, 255, 255, 0.88);
	text-transform: uppercase;
}

.hero-slide__panel-links {
	display: grid;
	gap: 12px;
	margin-top: auto;
}

.hero-slide__panel-links a,
.surface-card__link,
.subnav-strip a {
	color: var(--acryr-black);
	position: relative;
	width: fit-content;
}

.hero-slide__panel-links a {
	color: #ffffff;
}

.hero-slide__panel-links a::after {
	background: #ffffff;
}

.hero-carousel__nav {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	left: 24px;
	padding-top: 0;
	position: absolute;
	right: 24px;
	bottom: 20px;
	z-index: 5;
}

.hero-carousel__dots {
	display: flex;
	gap: 8px;
}

.hero-carousel__dot,
.hero-carousel__arrow {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	color: #ffffff;
	cursor: pointer;
	backdrop-filter: blur(10px);
}

.hero-carousel__dot {
	height: 12px;
	padding: 0;
	width: 12px;
}

.hero-carousel__dot.is-active {
	background: var(--acryr-red);
	border-color: var(--acryr-red);
}

.hero-carousel__arrow {
	font-family: var(--acryr-font-heading);
	font-size: 1.8rem;
	height: 42px;
	line-height: 1;
	padding: 0 14px;
}

.site-section {
	padding: 18px 0;
}

.site-section--tight {
	padding-top: 10px;
}

.section-head {
	margin-bottom: 16px;
}

.section-head--compact .section-head__title,
.section-header__title {
	font-size: clamp(1.6rem, 2.2vw, 2.35rem);
}

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

.content-grid--cards {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.surface-card,
.content-sheet,
.page-hero,
.acryr-filters {
	background: #fff;
	border: 1px solid var(--acryr-line);
	border-radius: var(--acryr-radius);
	box-shadow: var(--acryr-shadow);
}

.surface-card {
	padding: 22px;
}

.surface-card--light {
	box-shadow: none;
}

.surface-card__title {
	font-size: clamp(1.3rem, 1.8vw, 1.8rem);
}

.surface-card__title a {
	text-decoration: none;
}

.surface-card__content {
	color: var(--acryr-muted);
	font-size: 1rem;
	line-height: 1.6;
}

.surface-card__facts,
.page-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 12px 0 16px;
}

.surface-card__facts span,
.page-hero__facts span {
	background: var(--acryr-surface-soft);
	border: 1px solid var(--acryr-line);
	border-radius: 999px;
	font-family: var(--acryr-font-body);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 6px 12px;
	text-transform: uppercase;
}

.surface-card--feature {
	min-height: 228px;
}

.championship-layout {
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.championship-callout {
	display: grid;
	align-content: start;
	gap: 14px;
}

.championship-callout__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 6px;
}

.championship-race-list {
	display: grid;
	gap: 12px;
}

.championship-race-row {
	align-items: center;
	border-bottom: 1px solid var(--acryr-line);
	display: grid;
	gap: 10px 18px;
	grid-template-columns: minmax(0, 1fr) auto;
	padding-bottom: 12px;
}

.championship-race-row:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.championship-race-row h3,
.championship-race-row h4,
.championship-race-row p {
	margin: 0;
}

.championship-race-row h3,
.championship-race-row h4 {
	font-family: var(--acryr-font-heading);
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1;
}

.championship-race-row h3 a,
.championship-race-row h4 a {
	text-decoration: none;
}

.championship-race-row p {
	color: var(--acryr-muted);
	font-size: 0.98rem;
	margin-top: 4px;
}

.championship-race-row__meta {
	display: grid;
	justify-items: end;
	gap: 6px;
	text-align: right;
}

.championship-race-row__meta span,
.championship-race-row__meta strong {
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.championship-race-row__meta strong {
	color: var(--acryr-red);
}

.section-link {
	margin: 18px 0 0;
}

.page-hero {
	margin: 18px 0;
	padding: 28px;
}

.page-hero__inner {
	max-width: 980px;
}

.page-hero__title {
	font-size: clamp(1.9rem, 3vw, 3rem);
}

.page-hero__intro {
	color: var(--acryr-muted);
	font-size: 1.08rem;
	line-height: 1.65;
	margin: 14px 0 0;
	max-width: 68ch;
}

.content-sheet {
	margin: 18px 0;
	overflow: hidden;
}

.content-sheet__body {
	padding: 26px;
}

.content-sheet__body > *:first-child {
	margin-top: 0;
}

.content-sheet__body > *:last-child {
	margin-bottom: 0;
}

.content-sheet__body p,
.content-sheet__body li {
	color: #2f2f2f;
	line-height: 1.7;
}

.content-sheet__body h2,
.content-sheet__body h3,
.content-sheet__body h4 {
	font-family: var(--acryr-font-heading);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.02;
	margin-bottom: 0.45em;
}

.content-sheet__body h2 {
	font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.content-sheet__body h3 {
	font-size: clamp(1.2rem, 1.7vw, 1.65rem);
}

.section-header {
	border-bottom: 1px solid var(--acryr-line);
	padding: 22px 26px 0;
}

.subnav-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 8px 0 0;
	padding: 0 6px;
}

.subnav-strip--section {
	border-bottom: 1px solid var(--acryr-line);
	margin: 0 0 22px;
	padding: 0 0 14px;
}

.site-footer {
	border-top: 1px solid var(--acryr-line);
	margin-top: 40px;
	background: var(--acryr-surface-soft);
}

.site-footer__inner {
	display: grid;
	gap: 32px;
	grid-template-columns: minmax(220px, 1.5fr) minmax(220px, 1fr) minmax(220px, 1fr);
	padding: 38px 0 42px;
	align-items: start;
}

.site-footer__title {
	font-family: var(--acryr-font-heading);
	font-size: 2rem;
	margin: 0;
	text-transform: uppercase;
}

.site-footer__text,
.site-footer__copy {
	color: var(--acryr-muted);
	margin: 0;
}

.site-footer__heading {
	font-family: var(--acryr-font-body);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.site-footer__contact,
.site-footer__logos {
	display: grid;
	align-content: start;
	gap: 8px;
}

.site-footer__nav {
	display: grid;
	gap: 12px;
}

.site-footer__menu {
	flex-wrap: wrap;
	justify-content: start;
}

.site-footer__menu li {
	margin: 0;
}

.site-footer__menu a {
	padding: 8px 0;
}

.site-footer__support {
	display: grid;
	gap: 18px;
}

.site-footer__line {
	color: var(--acryr-text);
	margin: 0;
}

.site-footer__line a {
	text-decoration: none;
}

.site-footer__logo-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.site-footer__logo-item {
	align-items: center;
	background: #ffffff;
	border: none;
	display: inline-flex;
	justify-content: center;
	min-height: 66px;
	padding: 10px 14px;
}

.site-footer__logo-item img {
	max-height: 42px;
	width: auto;
}

.site-footer__support {
	display: grid;
	gap: 18px;
}

.site-footer__social,
.site-footer__partner-logos {
	display: grid;
	gap: 10px;
}

.site-footer__social-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.site-footer__social-link,
.site-footer__social-icon {
	color: var(--acryr-ink);
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.site-footer__social-link svg {
	width: 18px;
	height: 18px;
}

.site-footer__logo-strip--compact {
	gap: 10px;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	width: 100%;
}

.site-footer__bottom .site-footer__nav {
	flex: 1 1 100%;
	justify-content: center;
}

.site-footer__bottom .site-footer__nav--bottom {
	text-align: center;
}

.site-footer__bottom .site-footer__nav .site-footer__menu,
.site-footer__bottom .site-footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__bottom .site-footer__nav .site-footer__menu li,
.site-footer__bottom .site-footer__nav ul li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__bottom .site-footer__nav .site-footer__menu a,
.site-footer__bottom .site-footer__nav ul a {
	padding: 10px 0;
	display: inline-flex;
}

.site-footer__copy {
	padding-top: 8px;
	text-align: center;
	flex: 1 1 auto;
	min-width: 220px;
}

.site-footer__partner-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.site-footer__logo-item--small {
	min-height: 48px;
	padding: 8px 10px;
}

.site-footer__logo-item--small img {
	max-height: 30px;
}

@media (max-width: 960px) {
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom {
		justify-content: flex-start;
		text-align: left;
	}
}

@media (max-width: 640px) {
	.site-footer__partner-strip,
	.site-footer__logo-strip,
	.site-footer__logo-strip--compact,
	.site-footer__social-list {
		justify-content: flex-start;
	}
}

.acryr-filters {
	box-shadow: none;
	margin: 18px 0;
	padding: 18px;
}

.acryr-filters__grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.acryr-filters__field {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.acryr-filters__field select {
	background: #fff;
	border: 1px solid var(--acryr-line-strong);
	border-radius: 12px;
	font-family: var(--acryr-font-body);
	max-width: 100%;
	padding: 10px 12px;
	width: 100%;
}

.acryr-filters__actions {
	display: flex;
	gap: 10px;
	margin-top: 12px;
}

.acryr-filters--results .acryr-filters__grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1180px) {
	.acryr-filters--results .acryr-filters__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.acryr-filters--results .acryr-filters__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.acryr-filters--results .acryr-filters__grid {
		grid-template-columns: 1fr;
	}
}

.acryr-table {
	border-collapse: collapse;
	width: 100%;
}

.acryr-table th,
.acryr-table td {
	border-bottom: 1px solid var(--acryr-line);
	padding: 12px 10px;
	text-align: left;
}

.acryr-itinerary__header,
.acryr-itinerary__logos,
.acryr-itinerary__group {
	background: transparent;
}

.results-showcase {
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.results-showcase__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.surface-card--result-race {
	background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
	border: 1px solid var(--acryr-line);
	color: var(--acryr-text);
	min-height: 240px;
	display: grid;
	align-content: start;
}

.surface-card--result-race__top {
	display: grid;
	gap: 14px;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
}

.surface-card--result-race__badge {
	align-items: center;
	background: #fff;
	border: 1px solid var(--acryr-line);
	border-radius: 16px;
	display: flex;
	justify-content: center;
	padding: 10px;
	width: 108px;
}

.surface-card--result-race__badge img {
	height: auto;
	max-height: 56px;
	object-fit: contain;
	width: 100%;
}

.surface-card--result-race__heading {
	display: grid;
	gap: 6px;
}

.surface-card--result-race .surface-card__meta,
.surface-card--result-race .surface-card__title,
.surface-card--result-race .surface-card__content,
.surface-card--result-race .surface-card__link,
.surface-card--result-race .surface-card__facts span {
	color: inherit;
}

.surface-card--result-race .surface-card__facts span {
	background: #ffffff;
	border-color: var(--acryr-line);
}

.surface-card--result-race .surface-card__content {
	color: var(--acryr-muted-strong);
}

.surface-card--result-race .surface-card__link {
	font-weight: 800;
}

.results-showcase__live,
.championship-callout--image {
	overflow: hidden;
}

.results-showcase__live-media,
.championship-callout__media,
.featured-race-hero__media,
.page-hero__media {
	align-items: center;
	background: linear-gradient(180deg, #fbfbfb 0%, #f3f4f6 100%);
	border-radius: 18px;
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 16px;
}

.results-showcase__live-media img,
.championship-callout__media img,
.featured-race-hero__media img,
.page-hero__media img {
	height: auto;
	max-height: 240px;
	object-fit: contain;
	width: 100%;
}

.content-sheet__body--featured-race {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
	align-items: center;
}

.page-hero--visual {
	display: grid;
	gap: 0;
	grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
	overflow: hidden;
	padding: 0;
}

.page-hero--visual .page-hero__inner {
	padding: 24px;
	max-width: none;
}

.acryr-single--tripulacion {
	background:
		linear-gradient(180deg, rgba(7, 14, 21, 0.78) 0%, rgba(7, 14, 21, 0.44) 20%, rgba(244, 247, 250, 0.9) 44%, rgba(244, 247, 250, 0.98) 100%),
		var(--acryr-deco-top);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% min(500px, 42vw), cover;
}

.trip-hero {
	align-items: stretch;
	display: grid;
	gap: 0;
	grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
	overflow: hidden;
	padding: 0;
}

.trip-hero__vehicle {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
	min-height: 360px;
}

.trip-hero__vehicle img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.trip-hero__content {
	align-content: center;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.93) 100%);
	display: grid;
	padding: 32px;
}

.trip-hero__meta {
	display: grid;
	gap: 8px;
}

.trip-hero__meta p {
	margin: 0;
}

.trip-crew__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trip-profile-card {
	background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
	border: 1px solid var(--acryr-line);
	border-radius: 22px;
	display: grid;
	gap: 12px;
	justify-items: center;
	padding: 22px 18px;
	text-align: center;
}

.trip-profile-card__avatar,
.trip-profile-card__vehicle {
	background: #eef3f8;
	border: 1px solid var(--acryr-line);
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.trip-profile-card__avatar {
	border-radius: 999px;
	height: 132px;
	width: 132px;
}

.trip-profile-card__avatar img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.trip-profile-card--vehicle {
	grid-column: span 2;
	justify-items: start;
	text-align: left;
}

.trip-profile-card__vehicle {
	border-radius: 18px;
	height: 210px;
	width: 100%;
}

.trip-profile-card__vehicle img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.trip-profile-card__role {
	color: var(--acryr-red);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin: 0;
	text-transform: uppercase;
}

.trip-profile-card__name {
	font-size: 1.1rem;
	margin: 0;
}

.trip-profile-card__name a {
	text-decoration: none;
}

.acryr-single--profile {
	background:
		linear-gradient(180deg, rgba(7, 14, 21, 0.76) 0%, rgba(7, 14, 21, 0.4) 18%, rgba(244, 247, 250, 0.9) 42%, rgba(244, 247, 250, 0.98) 100%),
		var(--acryr-deco-top);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% min(460px, 40vw), cover;
}

.portal-shell {
	display: grid;
	gap: 28px;
	padding: 28px 0 48px;
}

.portal-hero {
	background:
		linear-gradient(135deg, rgba(7, 14, 21, 0.88) 0%, rgba(7, 14, 21, 0.58) 52%, rgba(7, 14, 21, 0.28) 100%),
		var(--acryr-deco-top);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 32px;
	color: #ffffff;
	overflow: hidden;
	padding: 36px;
	position: relative;
}

.portal-hero::after {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 46%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.portal-hero > * {
	position: relative;
	z-index: 1;
}

.portal-hero__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
}

.portal-hero__eyebrow,
.portal-section__eyebrow,
.portal-card__eyebrow,
.portal-press-card__eyebrow {
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.portal-section__eyebrow,
.portal-card__eyebrow,
.portal-press-card__eyebrow {
	color: var(--acryr-red);
}

.portal-hero__title,
.portal-section__title {
	font-family: var(--acryr-font-heading);
	font-size: clamp(2.2rem, 4vw, 4.2rem);
	line-height: 0.94;
	margin: 0;
	text-transform: uppercase;
}

.portal-section__title {
	color: var(--acryr-black);
	font-size: clamp(1.65rem, 2.5vw, 2.5rem);
}

.portal-hero__text,
.portal-section__text,
.portal-card__text,
.portal-press-card__text,
.portal-step__text,
.portal-note {
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

.portal-hero__text,
.portal-note {
	color: rgba(255, 255, 255, 0.82);
	max-width: 60ch;
}

.portal-hero__actions,
.portal-card__actions,
.portal-press__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.portal-status {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 24px;
	display: grid;
	gap: 14px;
	padding: 24px;
}

.portal-status__list,
.portal-step__list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
}

.portal-status__item,
.portal-step__item {
	align-items: center;
	display: grid;
	gap: 12px;
	grid-template-columns: 44px minmax(0, 1fr);
}

.portal-status__badge,
.portal-step__badge {
	align-items: center;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 14px;
	display: inline-flex;
	font-family: var(--acryr-font-heading);
	font-size: 0.95rem;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.portal-status__text {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.5;
	margin: 4px 0 0;
}

.portal-section {
	display: grid;
	gap: 18px;
}

.portal-section__head {
	display: grid;
	gap: 8px;
	max-width: 72ch;
}

.portal-section__text,
.portal-card__text,
.portal-press-card__text,
.portal-step__text {
	color: var(--acryr-muted);
}

.portal-grid,
.portal-press-grid,
.portal-steps {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-card,
.portal-press-card,
.portal-step {
	background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
	border: 1px solid var(--acryr-line);
	border-radius: 26px;
	box-shadow: var(--acryr-shadow);
	display: grid;
	gap: 16px;
	padding: 24px;
}

.portal-card__title,
.portal-press-card__title,
.portal-step__title {
	font-family: var(--acryr-font-heading);
	font-size: 1.4rem;
	line-height: 1;
	margin: 0;
	text-transform: uppercase;
}

.portal-card__meta,
.portal-press-card__meta {
	color: var(--acryr-muted);
	font-size: 0.88rem;
	margin: 0;
}

.portal-link {
	color: var(--acryr-red);
	font-weight: 700;
	text-decoration: none;
}

.portal-link:hover,
.portal-link:focus-visible {
	text-decoration: underline;
}

.portal-pill {
	background: #f3f6fa;
	border: 1px solid var(--acryr-line);
	border-radius: 999px;
	color: var(--acryr-black);
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 700;
	padding: 8px 12px;
}

.portal-card__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.portal-note {
	background: linear-gradient(135deg, rgba(7, 14, 21, 0.95) 0%, rgba(29, 35, 42, 0.94) 100%);
	border-radius: 24px;
	padding: 24px;
}

.portal-note a {
	color: #ffffff;
}

.entity-hero {
	align-items: stretch;
	display: grid;
	gap: 0;
	grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
	overflow: hidden;
	padding: 0;
}

.entity-hero__media {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
	display: flex;
	justify-content: center;
	min-height: 340px;
	padding: 28px;
}

.entity-hero__media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.entity-hero__media--portrait img {
	border-radius: 28px;
	object-fit: cover;
}

.entity-hero__media--vehicle img {
	border-radius: 22px;
	object-fit: cover;
}

.entity-hero__content {
	align-content: center;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.93) 100%);
	display: grid;
	padding: 32px;
}

.entity-hero__meta {
	display: grid;
	gap: 8px;
}

.entity-hero__meta p {
	margin: 0;
}

.entity-summary__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-sheet__body--race-summary {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
	align-items: start;
}

.content-sheet--race-hub .content-sheet__body,
.content-sheet--timing-center .content-sheet__body {
	display: grid;
	gap: 24px;
}

.race-hub {
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr) minmax(260px, 0.95fr);
}

.race-hub__card,
.timing-center__card {
	background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
	border: 1px solid var(--acryr-line);
	border-radius: 22px;
	padding: 22px;
}

.race-hub__eyebrow,
.timing-center__eyebrow {
	color: var(--acryr-red);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.race-hub__title,
.timing-center__title {
	font-family: var(--acryr-font-heading);
	font-size: clamp(1.35rem, 2vw, 2.1rem);
	line-height: 1.02;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.race-hub__plate {
	align-items: center;
	background: linear-gradient(180deg, #fbfbfb 0%, #f2f5f8 100%);
	border: 1px solid var(--acryr-line);
	border-radius: 18px;
	display: flex;
	justify-content: center;
	min-height: 210px;
	padding: 20px;
}

.race-hub__plate img {
	height: auto;
	max-height: 160px;
	object-fit: contain;
	width: 100%;
}

.race-hub__facts,
.race-hub__chips,
.race-hub__ranking-meta,
.race-hub__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.race-hub__facts {
	margin-top: 16px;
}

.race-hub__facts span,
.race-hub__chips span,
.timing-center__state {
	background: #eef3f8;
	border: 1px solid var(--acryr-line);
	border-radius: 999px;
	color: var(--acryr-muted-strong);
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 700;
	padding: 7px 12px;
}

.race-hub__stats {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 18px;
}

.race-hub__stat {
	background: #f4f7fa;
	border: 1px solid var(--acryr-line);
	border-radius: 16px;
	display: grid;
	gap: 4px;
	padding: 16px;
}

.race-hub__stat-value {
	color: var(--acryr-text);
	font-family: var(--acryr-font-heading);
	font-size: clamp(1.35rem, 2vw, 2rem);
	line-height: 1;
}

.race-hub__stat-label,
.race-hub__copy,
.race-hub__note,
.timing-center__intro,
.timing-center__copy {
	color: var(--acryr-muted);
}

.race-hub__ranking {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.race-hub__ranking-item {
	align-items: center;
	border-bottom: 1px solid var(--acryr-line);
	display: flex;
	gap: 14px;
	justify-content: space-between;
	padding-bottom: 12px;
}

.race-hub__ranking-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.race-hub__ranking-item strong {
	color: var(--acryr-blue);
	display: inline-block;
	min-width: 34px;
}

.race-hub__ranking-item span {
	vertical-align: middle;
}

.race-hub__ranking-meta {
	justify-content: flex-end;
}

.race-hub__list {
	color: var(--acryr-text);
	display: grid;
	gap: 10px;
	margin: 0 0 18px;
	padding-left: 18px;
}

.race-hub__empty,
.race-hub__note,
.timing-center__intro {
	margin: 0;
}

.race-summary__content--full {
	max-width: none;
}

.timing-center__grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timing-center__card {
	display: grid;
	gap: 12px;
}

.timing-center__card-top {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.timing-center__card-top .timing-center__eyebrow {
	margin-bottom: 0;
}

.timing-center__card p:last-child {
	margin-bottom: 0;
}

.race-summary__plate {
	background: #ffffff;
	border: 1px solid var(--acryr-line);
	border-radius: 18px;
	padding: 18px;
}

.race-summary__plate img {
	max-height: 160px;
	object-fit: contain;
	width: 100%;
}

.content-sheet--live {
	border-color: rgba(225, 6, 0, 0.18);
}

.live-timing-callout,
.acryr-results-online__hero {
	align-items: center;
	background: linear-gradient(135deg, #111111 0%, #1f2831 100%);
	border-radius: 18px;
	color: #ffffff;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: space-between;
	padding: 20px 22px;
}

.live-timing-callout p,
.acryr-results-online__hero p,
.acryr-results-online__hero h3 {
	margin: 0;
}

.live-timing-frame {
	margin-top: 18px;
	border: 1px solid var(--acryr-line);
	border-radius: 18px;
	overflow: hidden;
}

.live-timing-frame iframe {
	background: #ffffff;
	border: 0;
	display: block;
	height: 760px;
	width: 100%;
}

.acryr-results-leaders {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	margin: 20px 0;
}

.acryr-results-leader-card {
	background: #f7f7f7;
	border: 1px solid var(--acryr-line);
	border-radius: 18px;
	padding: 18px;
}

.acryr-results-leader-card__eyebrow {
	color: var(--acryr-red);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.acryr-results-leader-card__title,
.acryr-results-online__hero h3 {
	font-family: var(--acryr-font-heading);
	font-size: 1.2rem;
	line-height: 1;
	margin: 0;
}

.acryr-results-leader-card__crew {
	font-size: 1rem;
	font-weight: 700;
	margin: 10px 0 12px;
}

.acryr-results-leader-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.acryr-results-leader-card__meta span {
	background: #ffffff;
	border: 1px solid var(--acryr-line);
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 6px 10px;
	text-transform: uppercase;
}

.acryr-results-leader-card__time {
	font-family: var(--acryr-font-heading);
	font-size: 1.55rem;
	margin: 16px 0 0;
}

.acryr-results-online__table-wrap {
	margin-top: 16px;
	overflow-x: auto;
}

@media (max-width: 1200px) {
	.hero-slide,
	.hero-slide__main,
	.content-grid,
	.feature-grid,
	.content-grid--cards {
		grid-template-columns: 1fr 1fr;
	}

	.hero-slide__main {
		min-height: auto;
	}

	.hero-slide__title {
		max-width: 100%;
	}

	.hero-slide__copy {
		max-width: 72%;
	}

	.results-showcase,
	.content-sheet__body--featured-race,
	.page-hero--visual,
	.content-sheet__body--race-summary,
	.race-hub,
	.timing-center__grid,
	.portal-hero__grid,
	.portal-grid,
	.portal-press-grid,
	.portal-steps,
	.trip-hero,
	.trip-crew__grid,
	.entity-hero,
	.entity-summary__grid {
		grid-template-columns: 1fr;
	}

	.trip-profile-card--vehicle {
		grid-column: auto;
	}
}

@media (max-width: 920px) {
	.site-header__toggle {
		display: inline-flex;
	}

	.site-header__nav {
		background: rgba(12, 16, 21, 0.92);
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
		display: none;
		left: 0;
		margin-top: 10px;
		max-height: calc(100vh - 120px);
		overflow-y: auto;
		padding: 14px 28px 18px;
		position: absolute;
		right: 0;
		top: 100%;
		z-index: 5;
	}

	.site-header.is-open .site-header__nav {
		display: block;
	}

	.site-menu {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.site-menu a {
		font-size: 1rem;
		padding: 2px 0;
	}

	.hero-carousel__layout,
	.hero-slide,
	.hero-slide__main,
	.championship-layout,
	.content-grid,
	.feature-grid,
	.content-grid--cards {
		grid-template-columns: 1fr;
	}

	.portal-hero,
	.portal-card,
	.portal-press-card,
	.portal-step,
	.portal-note {
		border-radius: 22px;
	}

	.hero-slide__main {
		overflow: hidden;
	}

	.hero-slide__copy,
	.hero-slide__panel {
		padding: 24px;
	}

	.trip-hero__content {
		padding: 24px;
	}

	.entity-hero__content {
		padding: 24px;
	}

	.portal-shell {
		gap: 22px;
		padding: 22px 0 36px;
	}

	.portal-hero {
		padding: 26px 22px;
	}

	.site-container {
		padding: 0 18px;
	}

	.hero-slide,
	.hero-slide__main,
	.hero-slide__panel {
		min-height: auto;
	}

	.hero-slide__main::before {
		background:
			linear-gradient(180deg, rgba(9, 11, 14, 0.56) 0%, rgba(9, 11, 14, 0.3) 30%, rgba(9, 11, 14, 0.76) 100%),
			var(--hero-image, none);
		background-position: center;
		background-size: cover;
	}

	.hero-slide__copy {
		max-width: 100%;
		min-height: 420px;
		padding-top: 110px;
		padding-bottom: 92px;
	}

	body.admin-bar .hero-slide__copy {
		padding-top: 142px;
	}

	.hero-slide__panel {
		background:
			linear-gradient(180deg, rgba(8, 12, 17, 0.76) 0%, rgba(8, 12, 17, 0.92) 100%),
			var(--acryr-hero-panel-bg);
		border-radius: 0 0 26px 26px;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		padding-top: 24px;
	}

	.hero-slide__panel-chapa {
		max-width: 290px;
		width: min(100%, 290px);
	}

	.hero-slide__panel-chapa img {
		max-height: 138px;
		transform: none;
	}

	.trip-profile-card__avatar {
		height: 116px;
		width: 116px;
	}

	.entity-hero__media {
		min-height: 300px;
		padding: 20px;
	}

	body.admin-bar .hero-slide__panel {
		padding-top: 40px;
	}

	.hero-carousel__nav {
		bottom: auto;
		left: 24px;
		padding-top: 16px;
		position: relative;
		right: 24px;
	}

	.results-showcase__grid,
	.content-grid--cards {
		grid-template-columns: 1fr;
	}

	.surface-card--result-race__top {
		grid-template-columns: 1fr;
	}

	.surface-card--result-race__badge {
		width: 124px;
	}

	.race-hub__stats {
		grid-template-columns: 1fr;
	}

	.live-timing-frame iframe {
		height: 680px;
	}
}

@media (max-width: 640px) {
	.home .site-header {
		top: 12px;
	}

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

	body.admin-bar .home .site-header.is-scrolled {
		top: 46px;
	}

	.site-header__bar {
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 14px;
		padding: 14px 0;
	}

	.site-header__brand {
		display: grid;
		flex: 1 1 100%;
		max-width: 100%;
	}

	.site-header__home {
		align-items: flex-start;
		grid-template-columns: 52px minmax(0, 1fr);
	}

	.site-header__toggle {
		align-self: flex-start;
		margin-left: 0;
	}

	.site-header__nav {
		padding: 14px 18px 18px;
	}

	.site-header__tagline {
		display: none;
	}

	.home .site-header__bar {
		min-height: 66px;
	}

	.hero-slide {
		min-height: auto;
	}

	.hero-slide__title,
	.page-hero__title {
		max-width: 100%;
	}

	.hero-slide__panel-title {
		font-size: clamp(1.55rem, 8vw, 2.15rem);
	}

	.hero-slide__panel-logos img {
		height: 42px;
	}

	.hero-slide__actions,
	.championship-callout__actions,
	.acryr-filters__actions,
	.subnav-strip {
		flex-direction: column;
		align-items: flex-start;
	}

	.championship-race-row {
		grid-template-columns: 1fr;
	}

	.championship-race-row__meta {
		justify-items: start;
		text-align: left;
	}

	.page-hero,
	.content-sheet__body,
	.section-header,
	.surface-card {
		padding-left: 18px;
		padding-right: 18px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.race-hub__card,
	.timing-center__card {
		padding: 18px;
	}

	.race-hub__ranking-item {
		align-items: flex-start;
		flex-direction: column;
	}

	.race-hub__ranking-meta,
	.timing-center__card-top {
		justify-content: flex-start;
	}

	.live-timing-frame {
		display: none;
	}
}

.page-template-en-construccion {
	background:
		radial-gradient(circle at top left, rgba(225, 6, 0, 0.16), transparent 34%),
		radial-gradient(circle at right center, rgba(0, 167, 226, 0.14), transparent 28%),
		linear-gradient(180deg, #f7f8fa 0%, #eef2f6 100%);
	min-height: 100vh;
}

.construction-page {
	min-height: 100vh;
	padding: 32px;
}

.construction-page__shell {
	align-items: center;
	display: grid;
	min-height: calc(100vh - 64px);
	position: relative;
}

.construction-page__backdrop {
	background:
		linear-gradient(135deg, rgba(12, 16, 21, 0.12) 0%, rgba(12, 16, 21, 0.08) 100%),
		url("../images/hero-panel-bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border: 1px solid rgba(255, 255, 255, 0.58);
	border-radius: 36px;
	box-shadow: 0 30px 90px rgba(17, 17, 17, 0.08);
	inset: 0;
	position: absolute;
}

.construction-page__card {
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(17, 17, 17, 0.08);
	border-radius: 32px;
	box-shadow: 0 24px 54px rgba(17, 17, 17, 0.09);
	display: grid;
	gap: 26px;
	margin: 0 auto;
	max-width: 860px;
	padding: 44px;
	position: relative;
	z-index: 1;
}

.construction-page__brand {
	display: grid;
	gap: 14px;
	justify-items: start;
}

.construction-page__logo {
	height: auto;
	max-width: min(100%, 280px);
}

.construction-page__eyebrow,
.construction-page__status {
	font-family: var(--acryr-font-body);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin: 0;
	text-transform: uppercase;
}

.construction-page__eyebrow {
	color: var(--acryr-muted);
}

.construction-page__status {
	color: var(--acryr-red);
}

.construction-page__copy {
	display: grid;
	gap: 14px;
}

.construction-page__title {
	font-family: var(--acryr-font-heading);
	font-size: clamp(2.4rem, 5vw, 4.4rem);
	line-height: 0.95;
	margin: 0;
	max-width: 10ch;
	text-transform: uppercase;
}

.construction-page__lead {
	color: var(--acryr-text);
	font-size: clamp(1.02rem, 1.7vw, 1.2rem);
	font-weight: 600;
	line-height: 1.65;
	margin: 0;
	max-width: 58ch;
}

.construction-page__body,
.construction-page__body p {
	color: var(--acryr-muted);
	font-size: 1rem;
	line-height: 1.75;
	margin: 0;
	max-width: 62ch;
}

.construction-page__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.construction-page__details {
	border-top: 1px solid rgba(17, 17, 17, 0.08);
	color: var(--acryr-muted);
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	padding-top: 22px;
}

@media (max-width: 920px) {
	.construction-page {
		padding: 18px;
	}

	.construction-page__shell {
		min-height: calc(100vh - 36px);
	}

	.construction-page__card {
		padding: 28px 22px;
	}
}

@media (max-width: 640px) {
	.construction-page__title {
		max-width: 100%;
	}

	.construction-page__actions,
	.construction-page__details {
		align-items: flex-start;
		flex-direction: column;
	}
}
