:root {
	--ek-red: #e31e24;
	--ek-yellow: #ffd100;
	--ek-blue: #153aa8;
	--ek-ink: #111214;
	--ek-ink-2: #1a1c20;
	--ek-muted: #68707a;
	--ek-line: #e4e6e9;
	--ek-surface: #f5f6f7;
	--ek-white: #fff;
	--ek-accent: var(--ek-red);
	--ek-radius: 12px;
	--ek-shadow: 0 18px 55px rgba(14, 16, 20, .1);
}

.ek-section,
.ek-header,
.ek-footer {
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
}

.ek-section *,
.ek-header *,
.ek-footer * {
	box-sizing: border-box;
}

.ek-section {
	position: relative;
	padding: clamp(64px, 7vw, 112px) 28px;
	color: var(--ek-ink);
	background: var(--ek-white);
	overflow: hidden;
}

.ek-container {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
}

.ek-title,
.ek-card-title,
.ek-season-badge,
.ek-eyebrow,
.ek-level,
.ek-status,
.ek-button,
.ek-header-nav,
.ek-footer h3 {
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
	font-style: italic;
	font-weight: 800;
	letter-spacing: .015em;
	text-transform: uppercase;
}

.ek-title {
	max-width: 920px;
	margin: 0;
	font-size: clamp(42px, 5.2vw, 88px);
	line-height: .94;
	text-wrap: balance;
}

.ek-card-title {
	margin: 0;
	font-size: clamp(20px, 1.65vw, 28px);
	line-height: 1.02;
}

.ek-copy,
.ek-card-copy {
	color: var(--ek-muted);
	font-size: clamp(15px, 1.1vw, 18px);
	line-height: 1.65;
}

.ek-copy {
	max-width: 760px;
	margin-top: 22px;
}

.ek-copy > :first-child {
	margin-top: 0;
}

.ek-copy > :last-child {
	margin-bottom: 0;
}

.ek-card-copy {
	margin: 14px 0 0;
}

.ek-eyebrow,
.ek-level {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: var(--ek-accent);
	font-size: 12px;
	letter-spacing: .13em;
}

.ek-eyebrow::before {
	width: 28px;
	height: 3px;
	background: currentColor;
	content: "";
}

.ek-section-intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 920px;
	margin-bottom: clamp(34px, 5vw, 64px);
}

.ek-section-intro--wide {
	max-width: 1160px;
}

.ek-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 30px;
}

.ek-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 14px 22px;
	border: 1px solid transparent;
	border-radius: 5px;
	color: var(--ek-white);
	font-size: 14px;
	line-height: 1;
	text-decoration: none !important;
	transition: transform .25s ease, color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.ek-button:hover {
	transform: translateY(-2px);
}

.ek-button--primary {
	background: var(--ek-accent);
	box-shadow: 0 10px 30px color-mix(in srgb, var(--ek-accent) 28%, transparent);
}

.ek-button--primary:hover {
	color: var(--ek-white);
	background: #bd1117;
}

.ek-button--outline {
	border-color: rgba(255, 255, 255, .65);
	color: var(--ek-white);
	background: rgba(10, 10, 10, .1);
	backdrop-filter: blur(8px);
}

.ek-button--outline:hover {
	border-color: var(--ek-white);
	color: var(--ek-ink);
	background: var(--ek-white);
}

.ek-button--outline-dark {
	border-color: var(--ek-ink);
	color: var(--ek-ink);
	background: transparent;
}

.ek-button--outline-dark:hover {
	color: var(--ek-white);
	background: var(--ek-ink);
}

.ek-button--text {
	position: relative;
	padding-inline: 8px;
}

.ek-button--text::after {
	margin-left: 10px;
	font-family: Arial, sans-serif;
	font-style: normal;
	content: "→";
	transition: transform .25s ease;
}

.ek-button--text:hover::after {
	transform: translateX(5px);
}

.ek-card {
	position: relative;
	border: 1px solid var(--ek-line);
	border-radius: var(--ek-radius);
	background: var(--ek-white);
	box-shadow: 0 8px 28px rgba(14, 16, 20, .045);
	overflow: hidden;
	transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.ek-card:hover {
	border-color: color-mix(in srgb, var(--ek-accent) 55%, var(--ek-line));
	box-shadow: var(--ek-shadow);
	transform: translateY(-5px);
}

.ek-card__body {
	padding: 26px;
}

.ek-card__media {
	position: relative;
	display: block;
	height: 230px;
	background: #ddd;
	overflow: hidden;
}

.ek-card__media img,
.ek-media-frame img,
.ek-tech-gallery img,
.ek-championship__image img,
.ek-testimonial-card__photo img,
.ek-news-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.ek-card:hover .ek-card__media img,
.ek-testimonial-card:hover .ek-testimonial-card__photo img {
	transform: scale(1.055);
}

.ek-section--dark {
	color: var(--ek-white);
	background: var(--ek-ink);
}

.ek-section--dark .ek-copy,
.ek-section--dark .ek-card-copy {
	color: #b8bdc5;
}

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

/* Header */
.ek-header {
	position: relative;
	z-index: 999;
	width: 100%;
	color: var(--ek-white);
	background: var(--ek-ink);
	transition: background-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.ek-header--sticky {
	position: sticky;
	top: 0;
}

.ek-header--transparent {
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .75), transparent);
}

.ek-header.is-scrolled {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(17, 18, 20, .97);
	box-shadow: 0 8px 35px rgba(0, 0, 0, .22);
	backdrop-filter: blur(14px);
}

.admin-bar .ek-header.is-scrolled,
.admin-bar .ek-header--sticky {
	top: 32px;
}

.ek-header__inner {
	display: flex;
	align-items: center;
	width: min(100%, 1600px);
	min-height: 82px;
	padding: 12px 30px;
	margin-inline: auto;
}

.ek-header-logo {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	max-width: 200px;
	color: inherit;
	text-decoration: none;
}

.ek-header-logo img {
	display: block;
	width: 176px;
	max-height: 58px;
	object-fit: contain;
	object-position: left center;
}

.ek-header-logo span,
.ek-footer__wordmark {
	font-family: Impact, "Arial Narrow Bold", Arial, sans-serif;
	font-size: 24px;
	font-style: italic;
	font-weight: 900;
	line-height: .9;
}

.ek-header-nav {
	display: flex;
	flex: 1 1 auto;
	justify-content: center;
	margin-inline: 30px;
}

.ek-header-nav ul,
.ek-footer-menu,
.ek-footer__contacts {
	padding: 0;
	margin: 0;
	list-style: none;
}

.ek-header-nav .ek-menu,
.ek-header-nav .ek-menu--fallback > ul {
	display: flex;
	align-items: center;
	gap: clamp(14px, 1.75vw, 30px);
}

.ek-header-nav li {
	position: relative;
}

.ek-header-nav a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 44px;
	color: inherit;
	font-size: 13px;
	font-style: normal;
	letter-spacing: .025em;
	text-decoration: none;
	white-space: nowrap;
}

.ek-header-nav > ul > li > a::after,
.ek-header-nav .ek-menu > li > a::after {
	position: absolute;
	right: 50%;
	bottom: 2px;
	left: 50%;
	height: 3px;
	background: var(--ek-accent);
	content: "";
	transition: right .25s ease, left .25s ease;
}

.ek-header-nav > ul > li > a:hover::after,
.ek-header-nav .ek-menu > li > a:hover::after,
.ek-header-nav .current-menu-item > a::after {
	right: 0;
	left: 0;
}

.ek-header-nav .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: -20px;
	display: grid;
	gap: 3px;
	width: max-content;
	min-width: 230px;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 8px;
	background: #17191d;
	box-shadow: 0 24px 55px rgba(0, 0, 0, .28);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: .25s ease;
}

.ek-header-nav .sub-menu .sub-menu {
	top: -12px;
	left: calc(100% + 12px);
}

.ek-header-nav li:hover > .sub-menu,
.ek-header-nav li:focus-within > .sub-menu,
.ek-header-nav li.is-submenu-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ek-header-nav .sub-menu a {
	min-height: auto;
	padding: 10px 12px;
	border-radius: 5px;
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
}

.ek-header-nav .sub-menu a:hover {
	background: rgba(255, 255, 255, .07);
}

.ek-header-actions {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 10px;
}

.ek-header-actions .ek-button {
	min-height: 42px;
	padding: 11px 16px;
	font-size: 12px;
}

.ek-menu-toggle {
	display: none;
	align-items: center;
	gap: 5px;
	padding: 10px;
	border: 0;
	color: var(--ek-white);
	background: transparent;
}

.ek-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
}

.ek-menu-toggle em {
	margin-left: 4px;
	font-size: 11px;
	font-style: normal;
	text-transform: uppercase;
}

/* Hero */
.ek-hero {
	display: grid;
	align-items: center;
	min-height: 86vh;
	padding: 0;
	color: var(--ek-white);
	background: var(--ek-ink);
}

.ek-hero__media,
.ek-hero__overlay {
	position: absolute;
	inset: 0;
}

.ek-hero__media img,
.ek-hero__media video,
.ek-hero-montage {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ek-hero__overlay {
	z-index: 1;
	background: linear-gradient(90deg, rgba(7, 8, 10, .78), rgba(7, 8, 10, .4) 58%, rgba(7, 8, 10, .1));
}

.ek-hero__inner {
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: inherit;
	padding: 150px 32px 100px;
}

.ek-hero__content {
	max-width: 780px;
}

.ek-hero .ek-title {
	max-width: 900px;
	font-size: clamp(58px, 7vw, 118px);
	text-shadow: 0 5px 35px rgba(0, 0, 0, .25);
}

.ek-hero .ek-copy {
	max-width: 680px;
	color: rgba(255, 255, 255, .88);
}

.ek-season-badge,
.ek-status {
	display: inline-flex;
	padding: 8px 11px;
	margin-bottom: 20px;
	border-radius: 4px;
	color: var(--ek-white);
	font-size: 12px;
	font-style: normal;
	background: var(--ek-accent);
}

.ek-hero__speedline {
	position: absolute;
	z-index: 2;
	right: -8%;
	bottom: 34px;
	width: 42%;
	height: 7px;
	background: linear-gradient(90deg, transparent, var(--ek-yellow) 45%, var(--ek-accent));
	transform: skewX(-28deg);
}

.ek-hero-montage {
	position: relative;
}

.ek-hero-montage img {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: scale(1.04);
	transition: opacity 1.1s ease, transform 5.2s ease;
}

.ek-hero-montage img.is-active {
	opacity: 1;
	transform: scale(1);
}

/* Credibility */
.ek-credibility {
	padding: 24px;
	border-block: 1px solid var(--ek-line);
}

.ek-credibility__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ek-credibility__item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 66px;
	padding: 8px 20px;
	border-right: 1px solid var(--ek-line);
	text-align: left;
}

.ek-credibility__item:last-child {
	border-right: 0;
}

.ek-credibility__icon {
	flex: 0 0 auto;
	color: var(--ek-accent);
	font-size: 23px;
}

.ek-credibility__text {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}

.ek-counter {
	color: var(--ek-accent);
	font-size: 20px;
}

/* About */
.ek-split {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
	align-items: center;
	gap: clamp(42px, 7vw, 110px);
}

.ek-feature-icons {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1px;
	margin: 34px 0;
	background: var(--ek-line);
}

.ek-feature-icon {
	display: grid;
	gap: 11px;
	min-height: 108px;
	padding: 18px 12px;
	background: var(--ek-white);
	text-align: center;
	place-content: center;
}

.ek-feature-icon span {
	color: var(--ek-accent);
	font-size: 24px;
}

.ek-feature-icon strong {
	font-size: 12px;
}

.ek-media-frame {
	position: relative;
	height: min(42vw, 610px);
	min-height: 430px;
	border-radius: var(--ek-radius);
	overflow: hidden;
}

.ek-media-frame::after {
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(255, 255, 255, .6);
	content: "";
}

.ek-media-frame__number {
	position: absolute;
	right: 32px;
	bottom: 22px;
	color: var(--ek-white);
	font-family: Impact, sans-serif;
	font-size: 72px;
	font-style: italic;
	line-height: 1;
	text-shadow: 0 4px 20px rgba(0, 0, 0, .5);
}

/* Categories */
.ek-categories {
	background: var(--ek-surface);
}

.ek-category-grid,
.ek-news-grid,
.ek-testimonial-grid,
.ek-sponsor-grid,
.ek-benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.ek-category-card .ek-card__media {
	height: 250px;
}

.ek-age-badge,
.ek-card-index {
	position: absolute;
	top: 16px;
	padding: 8px 10px;
	border-radius: 4px;
	font-family: Impact, "Arial Narrow Bold", Arial, sans-serif;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.ek-age-badge {
	right: 16px;
	color: var(--ek-ink);
	background: var(--ek-yellow);
}

.ek-card-index {
	left: 16px;
	color: var(--ek-white);
	background: rgba(12, 13, 15, .72);
	backdrop-filter: blur(7px);
}

.ek-objective {
	display: grid;
	gap: 4px;
	min-height: 75px;
	padding-top: 16px;
	margin-top: 16px;
	border-top: 1px solid var(--ek-line);
	color: var(--ek-muted);
	font-size: 13px;
	line-height: 1.45;
}

.ek-objective strong {
	color: var(--ek-ink);
	font-size: 11px;
	text-transform: uppercase;
}

.ek-card-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	padding-top: 18px;
	margin-top: 18px;
	border-top: 1px solid var(--ek-line);
}

.ek-card-actions a,
.ek-read-more {
	color: var(--ek-ink);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.ek-card-actions a:last-child,
.ek-read-more {
	color: var(--ek-accent);
}

/* Progression */
.ek-progression::before {
	position: absolute;
	top: -55%;
	left: 48%;
	width: 700px;
	height: 700px;
	border: 140px solid rgba(255, 209, 0, .025);
	border-radius: 50%;
	content: "";
}

.ek-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 22px;
}

.ek-timeline::before {
	position: absolute;
	top: 31px;
	right: 8%;
	left: 8%;
	height: 2px;
	background: linear-gradient(90deg, var(--ek-yellow), var(--ek-accent));
	content: "";
}

.ek-timeline__step {
	position: relative;
	z-index: 1;
	text-align: center;
}

.ek-timeline__marker {
	display: grid;
	width: 64px;
	height: 64px;
	margin: 0 auto 24px;
	border: 2px solid rgba(255, 255, 255, .35);
	border-radius: 50%;
	background: var(--ek-ink);
	place-items: center;
}

.ek-timeline__marker span {
	color: var(--ek-yellow);
	font-family: Impact, sans-serif;
	font-size: 27px;
	font-style: italic;
}

.ek-timeline__icon {
	margin-bottom: 15px;
	color: var(--ek-white);
	font-size: 26px;
}

.ek-timeline .ek-card-title {
	font-size: 18px;
}

.ek-timeline .ek-card-copy {
	font-size: 13px;
	line-height: 1.5;
}

/* Equal conditions */
.ek-split--equal {
	grid-template-columns: minmax(470px, 1.05fr) minmax(0, .95fr);
}

.ek-tech-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 250px);
	gap: 8px;
}

.ek-tech-gallery__item {
	border-radius: 7px;
	overflow: hidden;
}

.ek-tech-gallery__item--1 {
	grid-row: 1 / 3;
}

.ek-benefit-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 34px;
}

.ek-benefit-list__item {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 74px;
	padding: 16px;
	border: 1px solid var(--ek-line);
	border-radius: 7px;
}

.ek-benefit-list__item span {
	display: grid;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: var(--ek-accent);
	background: #fff0f0;
	place-items: center;
}

.ek-benefit-list__item strong {
	font-size: 13px;
	line-height: 1.3;
}

/* Championship */
.ek-championship {
	background: var(--ek-surface);
}

.ek-championship__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 600px;
	border-radius: var(--ek-radius);
	background: var(--ek-white);
	box-shadow: var(--ek-shadow);
	overflow: hidden;
}

.ek-championship__intro {
	align-self: center;
	padding: clamp(38px, 6vw, 84px);
}

.ek-championship__count {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 32px;
}

.ek-championship__count strong {
	color: var(--ek-accent);
	font-family: Impact, sans-serif;
	font-size: 70px;
	font-style: italic;
	line-height: .8;
}

.ek-championship__count span {
	max-width: 90px;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;
}

.ek-championship__image {
	min-height: 520px;
}

.ek-race-format {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	width: calc(100% - 80px);
	margin: -68px auto 0;
	border-radius: 8px;
	background: var(--ek-line);
	box-shadow: 0 18px 55px rgba(14, 16, 20, .14);
	overflow: hidden;
}

.ek-race-format__item {
	position: relative;
	min-height: 210px;
	padding: 30px;
	background: var(--ek-white);
}

.ek-race-format__number {
	position: absolute;
	top: 14px;
	right: 16px;
	color: #e8e9eb;
	font-family: Impact, sans-serif;
	font-size: 48px;
	font-style: italic;
}

.ek-race-format__icon {
	margin-bottom: 22px;
	color: var(--ek-accent);
	font-size: 29px;
}

.ek-race-format .ek-card-title {
	font-size: 21px;
}

.ek-race-format .ek-card-copy {
	font-size: 13px;
}

/* Upcoming event */
.ek-upcoming {
	color: var(--ek-white);
	background: var(--ek-ink);
}

.ek-event-card {
	border-color: rgba(255, 255, 255, .12);
	color: var(--ek-white);
	background: linear-gradient(135deg, #7f0d12, #17191d 64%);
	box-shadow: 0 28px 80px rgba(0, 0, 0, .3);
}

.ek-event-card:hover {
	transform: none;
}

.ek-event-card__head,
.ek-event-card__grid,
.ek-event-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 30px 38px;
}

.ek-event-card__head {
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ek-event-card .ek-title {
	font-size: clamp(36px, 4vw, 64px);
}

.ek-event-card .ek-eyebrow {
	color: var(--ek-yellow);
}

.ek-status {
	margin: 0;
	color: #10250d;
	background: #77df61;
}

.ek-event-card__grid {
	align-items: stretch;
}

.ek-event-card__details,
.ek-event-card__requirements {
	display: grid;
	flex: 1 1 50%;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.ek-event-detail,
.ek-event-card__requirements > div {
	display: flex;
	align-items: center;
	gap: 13px;
	min-height: 84px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 7px;
	background: rgba(0, 0, 0, .12);
}

.ek-event-detail > i {
	color: var(--ek-yellow);
	font-size: 19px;
}

.ek-event-detail span {
	display: grid;
	gap: 4px;
}

.ek-event-detail small {
	color: rgba(255, 255, 255, .6);
	font-size: 10px;
	text-transform: uppercase;
}

.ek-event-detail strong,
.ek-event-card__requirements strong {
	font-size: 13px;
}

.ek-event-card__requirements > div {
	display: block;
}

.ek-event-card__requirements p {
	margin: 7px 0 0;
	color: rgba(255, 255, 255, .7);
	font-size: 12px;
	line-height: 1.45;
}

.ek-event-schedule {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 0 38px 25px;
}

.ek-event-schedule strong {
	margin-right: 10px;
	color: var(--ek-yellow);
	font-size: 12px;
	text-transform: uppercase;
}

.ek-event-schedule span {
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 99px;
	font-size: 11px;
}

.ek-countdown {
	display: flex;
	justify-content: center;
	gap: 1px;
	background: rgba(255, 255, 255, .1);
}

.ek-countdown > div {
	display: grid;
	min-width: 150px;
	padding: 22px;
	background: rgba(0, 0, 0, .23);
	text-align: center;
}

.ek-countdown strong {
	font-family: Impact, sans-serif;
	font-size: 48px;
	font-style: italic;
	line-height: 1;
}

.ek-countdown span {
	margin-top: 5px;
	color: rgba(255, 255, 255, .65);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .1em;
}

.ek-event-card__actions {
	justify-content: center;
}

.ek-event-card.is-finished .ek-countdown::after {
	display: grid;
	width: 100%;
	min-height: 110px;
	color: var(--ek-yellow);
	font-family: Impact, sans-serif;
	font-size: 34px;
	font-style: italic;
	letter-spacing: .04em;
	content: attr(data-finished);
	place-items: center;
}

.ek-event-card.is-finished .ek-countdown > div {
	display: none;
}

/* Rankings */
.ek-rankings__header,
.ek-news__header,
.ek-sponsors__intro {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 42px;
}

.ek-rankings__header .ek-title,
.ek-news__header .ek-title,
.ek-sponsors__intro .ek-title {
	font-size: clamp(42px, 5vw, 72px);
}

.ek-ranking-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ek-ranking-filters select {
	min-width: 170px;
	height: 46px;
	padding: 0 38px 0 14px;
	border: 1px solid var(--ek-line);
	border-radius: 5px;
	color: var(--ek-ink);
	background: var(--ek-white);
	font-size: 12px;
	font-weight: 700;
}

.ek-ranking-table-wrap {
	margin-bottom: 24px;
	overflow-x: auto;
}

.ek-ranking-table-wrap:hover {
	transform: none;
}

.ek-ranking-table {
	width: 100%;
	min-width: 940px;
	border-collapse: collapse;
}

.ek-ranking-table th,
.ek-ranking-table td {
	padding: 17px 18px;
	border-bottom: 1px solid var(--ek-line);
	text-align: left;
}

.ek-ranking-table th {
	color: var(--ek-muted);
	font-size: 10px;
	letter-spacing: .08em;
	text-transform: uppercase;
	background: var(--ek-surface);
}

.ek-ranking-table td {
	font-size: 13px;
}

.ek-ranking-table tbody tr {
	transition: background-color .2s ease;
}

.ek-ranking-table tbody tr:hover {
	background: #fff8f8;
}

.ek-position {
	display: grid;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	color: var(--ek-white);
	background: var(--ek-ink);
	place-items: center;
}

.ek-ranking-table tbody tr:first-child .ek-position {
	color: var(--ek-ink);
	background: var(--ek-yellow);
}

.ek-driver-avatar {
	display: inline-grid;
	width: 32px;
	height: 32px;
	margin-right: 10px;
	border-radius: 50%;
	color: var(--ek-white);
	background: var(--ek-accent);
	place-items: center;
}

.ek-category-pill {
	display: inline-flex;
	padding: 6px 9px;
	border-radius: 99px;
	color: #722;
	background: #fff0f0;
	font-size: 10px;
	font-weight: 800;
	white-space: nowrap;
}

.ek-ranking-empty {
	padding: 30px;
	margin: 0;
	color: var(--ek-muted);
	text-align: center;
}

/* International */
.ek-international,
.ek-final-cta {
	color: var(--ek-white);
	background-position: center;
	background-size: cover;
}

.ek-international::before,
.ek-final-cta::before {
	position: absolute;
	inset: 0;
	background: rgba(8, 10, 13, .76);
	content: "";
}

.ek-international .ek-copy,
.ek-final-cta .ek-copy {
	color: rgba(255, 255, 255, .78);
}

.ek-international__content {
	max-width: 800px;
}

.ek-international__highlights {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 34px;
}

.ek-international__highlights > div {
	display: flex;
	align-items: center;
	gap: 11px;
	font-size: 14px;
	font-weight: 700;
}

.ek-international__highlights span {
	display: grid;
	width: 27px;
	height: 27px;
	border: 1px solid var(--ek-yellow);
	border-radius: 50%;
	color: var(--ek-yellow);
	font-size: 11px;
	place-items: center;
}

.ek-international__flag {
	position: absolute;
	right: 0;
	bottom: -112px;
	max-width: 330px;
	opacity: .26;
	transform: rotate(-7deg);
}

.ek-colombia-stripe {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	width: 26px;
	height: 100%;
}

.ek-colombia-stripe span {
	flex: 1;
}

.ek-colombia-stripe span:nth-child(1) { background: #fcd116; }
.ek-colombia-stripe span:nth-child(2) { background: #003893; }
.ek-colombia-stripe span:nth-child(3) { background: #ce1126; }

/* Benefits */
.ek-benefits-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.ek-benefit-card {
	min-height: 220px;
}

.ek-benefit-card__index {
	position: absolute;
	top: 13px;
	right: 15px;
	color: #e9eaec;
	font-family: Impact, sans-serif;
	font-size: 34px;
	font-style: italic;
}

.ek-benefit-card__icon {
	display: grid;
	width: 52px;
	height: 52px;
	margin-bottom: 28px;
	border-radius: 50%;
	color: var(--ek-accent);
	background: #fff0f0;
	font-size: 20px;
	place-items: center;
}

.ek-benefit-card .ek-card-title {
	font-size: 18px;
}

/* Testimonials */
.ek-testimonials {
	background: var(--ek-surface);
}

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

.ek-testimonial-card {
	display: grid;
	grid-template-columns: minmax(145px, .75fr) 1.25fr;
	min-height: 340px;
}

.ek-testimonial-card__photo {
	position: relative;
	min-height: 100%;
	background: #ddd;
	overflow: hidden;
}

.ek-play-button {
	position: absolute;
	right: 16px;
	bottom: 16px;
	display: grid;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	color: var(--ek-white);
	background: var(--ek-accent);
	text-decoration: none;
	place-items: center;
}

.ek-testimonial-card__category {
	margin-top: 7px;
	color: var(--ek-accent);
	font-size: 11px;
	font-weight: 700;
}

.ek-testimonial-card blockquote {
	margin: 20px 0 0;
	font-size: 14px;
}

/* Sponsors */
.ek-sponsor-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ek-sponsor-card {
	display: grid;
	min-height: 150px;
	padding: 24px;
	color: var(--ek-ink);
	text-align: center;
	text-decoration: none;
	place-content: center;
}

.ek-sponsor-card img {
	width: 100%;
	max-width: 180px;
	max-height: 62px;
	margin: 0 auto;
	object-fit: contain;
	filter: grayscale(1);
	transition: filter .25s ease;
}

.ek-sponsor-card:hover img {
	filter: grayscale(0);
}

.ek-sponsor-card strong {
	font-size: 20px;
}

.ek-sponsor-card span {
	margin-top: 9px;
	color: var(--ek-muted);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

/* News */
.ek-news-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ek-news-card .ek-card__media {
	height: 210px;
}

.ek-news-card__meta {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--ek-muted);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.ek-news-card__meta span {
	color: var(--ek-accent);
}

.ek-news-card .ek-card-title {
	font-size: 21px;
}

.ek-news-card .ek-card-title a {
	color: inherit;
	text-decoration: none;
}

.ek-read-more {
	display: inline-flex;
	margin-top: 19px;
}

.ek-empty-state {
	grid-column: 1 / -1;
}

/* Final CTA */
.ek-final-cta__content {
	max-width: 960px;
}

.ek-final-cta .ek-title {
	font-size: clamp(54px, 6vw, 96px);
}

/* Footer */
.ek-footer {
	padding: 70px 32px 24px;
	color: #b9bcc2;
	background: var(--ek-ink);
}

.ek-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr repeat(3, 1fr);
	gap: clamp(30px, 5vw, 80px);
	padding-bottom: 60px;
}

.ek-footer__brand img {
	width: 190px;
	max-height: 70px;
	object-fit: contain;
	object-position: left center;
}

.ek-footer__brand p {
	max-width: 310px;
	font-size: 14px;
	line-height: 1.6;
}

.ek-footer h3 {
	margin: 0 0 20px;
	color: var(--ek-white);
	font-size: 16px;
	font-style: normal;
}

.ek-footer-menu,
.ek-footer__contacts {
	display: grid;
	gap: 11px;
}

.ek-footer a {
	color: inherit;
	font-size: 13px;
	text-decoration: none;
}

.ek-footer a:hover {
	color: var(--ek-white);
}

.ek-footer__contacts li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.ek-footer__contacts i {
	width: 17px;
	color: var(--ek-accent);
	text-align: center;
}

.ek-footer__socials {
	display: flex;
	gap: 8px;
	margin-top: 24px;
}

.ek-footer__socials a {
	display: grid;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 50%;
	place-items: center;
}

.ek-footer__socials a:hover {
	border-color: var(--ek-accent);
	background: var(--ek-accent);
}

.ek-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	font-size: 11px;
}

.ek-footer__bottom nav {
	display: flex;
	gap: 20px;
}

/* Reveal animation */
.ek-section .ek-card,
.ek-section .ek-timeline__step,
.ek-section .ek-feature-icon,
.ek-section .ek-benefit-list__item {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .6s ease, transform .6s ease, border-color .3s ease, box-shadow .3s ease;
}

.elementor-editor-active .ek-section .ek-card,
.elementor-editor-active .ek-section .ek-timeline__step,
.elementor-editor-active .ek-section .ek-feature-icon,
.elementor-editor-active .ek-section .ek-benefit-list__item,
.ek-section.is-visible .ek-card,
.ek-section.is-visible .ek-timeline__step,
.ek-section.is-visible .ek-feature-icon,
.ek-section.is-visible .ek-benefit-list__item {
	opacity: 1;
	transform: translateY(0);
}

.ek-section.is-visible .ek-card:nth-child(2),
.ek-section.is-visible .ek-timeline__step:nth-child(2) { transition-delay: .06s; }
.ek-section.is-visible .ek-card:nth-child(3),
.ek-section.is-visible .ek-timeline__step:nth-child(3) { transition-delay: .12s; }
.ek-section.is-visible .ek-card:nth-child(4),
.ek-section.is-visible .ek-timeline__step:nth-child(4) { transition-delay: .18s; }
.ek-section.is-visible .ek-card:nth-child(5),
.ek-section.is-visible .ek-timeline__step:nth-child(5) { transition-delay: .24s; }
.ek-section.is-visible .ek-card:nth-child(6),
.ek-section.is-visible .ek-timeline__step:nth-child(6) { transition-delay: .3s; }

@media (max-width: 1280px) {
	.ek-header-actions .ek-button--outline {
		display: none;
	}

	.ek-header-nav {
		margin-inline: 20px;
	}

	.ek-header-nav .ek-menu,
	.ek-header-nav .ek-menu--fallback > ul {
		gap: 16px;
	}

	.ek-credibility__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.ek-credibility__item:nth-child(3) {
		border-right: 0;
	}

	.ek-credibility__item:nth-child(-n+3) {
		border-bottom: 1px solid var(--ek-line);
	}

	.ek-testimonial-card {
		grid-template-columns: 1fr;
	}

	.ek-testimonial-card__photo {
		min-height: 230px;
	}
}

@media (max-width: 1024px) {
	.ek-header__inner {
		justify-content: space-between;
	}

	.ek-menu-toggle {
		display: grid;
		grid-template-columns: 24px auto;
	}

	.ek-menu-toggle span {
		grid-column: 1;
	}

	.ek-menu-toggle em {
		grid-column: 2;
		grid-row: 1 / 4;
		align-self: center;
	}

	.ek-header-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		max-height: calc(100vh - 82px);
		padding: 20px 28px 30px;
		margin: 0;
		background: #111214;
		overflow-y: auto;
	}

	.ek-header.is-menu-open .ek-header-nav {
		display: block;
	}

	.ek-header-nav .ek-menu,
	.ek-header-nav .ek-menu--fallback > ul {
		display: grid;
		gap: 0;
	}

	.ek-header-nav a {
		min-height: 52px;
		border-bottom: 1px solid rgba(255, 255, 255, .1);
	}

	.ek-header-nav .sub-menu,
	.ek-header-nav .sub-menu .sub-menu {
		position: static;
		display: none;
		width: 100%;
		padding: 5px 0 5px 15px;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.ek-header-nav li.is-submenu-open > .sub-menu {
		display: grid;
	}

	.ek-header-actions {
		display: none;
	}

	.ek-split,
	.ek-split--equal {
		grid-template-columns: 1fr;
	}

	.ek-split__media {
		order: -1;
	}

	.ek-timeline {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 36px 24px;
	}

	.ek-timeline::before {
		display: none;
	}

	.ek-championship__top {
		grid-template-columns: 1fr;
	}

	.ek-championship__image {
		order: -1;
		min-height: 420px;
	}

	.ek-race-format {
		grid-template-columns: repeat(2, 1fr);
		width: calc(100% - 40px);
	}

	.ek-event-card__grid {
		display: grid;
		grid-template-columns: 1fr;
	}

	.ek-rankings__header,
	.ek-news__header,
	.ek-sponsors__intro {
		align-items: flex-start;
		flex-direction: column;
	}

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

	.ek-news-grid,
	.ek-sponsor-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ek-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.admin-bar .ek-header.is-scrolled,
	.admin-bar .ek-header--sticky {
		top: 46px;
	}

	.ek-section {
		padding: 64px 20px;
	}

	.ek-title {
		font-size: clamp(40px, 13vw, 60px);
	}

	.ek-actions,
	.ek-actions .ek-button {
		width: 100%;
	}

	.ek-header__inner {
		min-height: 70px;
		padding: 9px 18px;
	}

	.ek-header-logo img {
		width: 140px;
	}

	.ek-header-nav {
		max-height: calc(100vh - 70px);
	}

	.ek-hero {
		min-height: 760px;
	}

	.ek-hero__inner {
		align-items: end;
		padding: 130px 20px 70px;
	}

	.ek-hero .ek-title {
		font-size: clamp(56px, 17vw, 78px);
	}

	.ek-hero__overlay {
		background: linear-gradient(0deg, rgba(7, 8, 10, .9), rgba(7, 8, 10, .3) 74%, rgba(7, 8, 10, .45));
	}

	.ek-credibility {
		padding: 12px;
	}

	.ek-credibility__grid {
		grid-template-columns: 1fr;
	}

	.ek-credibility__item {
		justify-content: flex-start;
		border-right: 0;
		border-bottom: 1px solid var(--ek-line);
	}

	.ek-credibility__item:nth-child(-n+5) {
		border-bottom: 1px solid var(--ek-line);
	}

	.ek-feature-icons {
		grid-template-columns: repeat(2, 1fr);
	}

	.ek-feature-icon:last-child {
		grid-column: 1 / -1;
	}

	.ek-media-frame {
		height: 420px;
		min-height: 0;
	}

	.ek-category-grid,
	.ek-testimonial-grid,
	.ek-news-grid,
	.ek-sponsor-grid,
	.ek-benefits-grid {
		grid-template-columns: 1fr;
	}

	.ek-timeline {
		grid-template-columns: 1fr;
	}

	.ek-timeline__step {
		display: grid;
		grid-template-columns: 56px 1fr;
		column-gap: 16px;
		text-align: left;
	}

	.ek-timeline__marker {
		grid-row: 1 / 4;
		width: 56px;
		height: 56px;
		margin: 0;
	}

	.ek-timeline__icon {
		display: none;
	}

	.ek-tech-gallery {
		grid-template-rows: repeat(2, 180px);
	}

	.ek-benefit-list {
		grid-template-columns: 1fr;
	}

	.ek-championship__image {
		min-height: 310px;
	}

	.ek-championship__intro {
		padding: 34px 24px 100px;
	}

	.ek-race-format {
		grid-template-columns: 1fr;
		margin-top: -62px;
	}

	.ek-race-format__item {
		min-height: 170px;
	}

	.ek-event-card__head,
	.ek-event-card__grid,
	.ek-event-card__actions {
		align-items: flex-start;
		flex-direction: column;
		padding: 24px 20px;
	}

	.ek-event-card__details,
	.ek-event-card__requirements {
		grid-template-columns: 1fr;
		width: 100%;
	}

	.ek-event-schedule {
		padding-inline: 20px;
	}

	.ek-countdown > div {
		min-width: 0;
		width: 33.333%;
		padding: 17px 7px;
	}

	.ek-countdown strong {
		font-size: 36px;
	}

	.ek-event-card__actions .ek-button {
		width: 100%;
	}

	.ek-ranking-filters,
	.ek-ranking-filters label,
	.ek-ranking-filters select {
		width: 100%;
	}

	.ek-international__highlights {
		grid-template-columns: 1fr;
	}

	.ek-testimonial-card {
		grid-template-columns: 1fr;
	}

	.ek-sponsors__intro .ek-actions {
		width: 100%;
	}

	.ek-final-cta .ek-title {
		font-size: clamp(50px, 15vw, 74px);
	}

	.ek-footer {
		padding: 56px 22px 24px;
	}

	.ek-footer__grid {
		grid-template-columns: 1fr;
	}

	.ek-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ek-section *,
	.ek-header * {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
}
