:root {
	--srn-ink: #0b1720;
	--srn-ink-2: #142833;
	--srn-muted: #60717a;
	--srn-soft: #edf2f3;
	--srn-paper: #f4f7f8;
	--srn-white: #ffffff;
	--srn-line: #d8e0e4;
	--srn-lime: #c7f33d;
	--srn-green: #0e7c66;
	--srn-green-dark: #075e50;
	--srn-coral: #f05a4f;
	--srn-blue: #2d8cff;
	--srn-radius-sm: 10px;
	--srn-radius: 16px;
	--srn-radius-lg: 24px;
	--srn-shadow: 0 14px 45px rgba(11, 23, 32, 0.08);
	--srn-shell: 1280px;
	--srn-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--srn-paper);
	color: var(--srn-ink);
	font-family: var(--srn-sans);
	font-size: 17px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.nav-open,
body.search-open {
	overflow: hidden;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--srn-blue);
	outline-offset: 3px;
}

[hidden] {
	display: none !important;
}

.site-shell {
	width: min(var(--srn-shell), calc(100% - 48px));
	margin-inline: auto;
}

.site-content {
	min-height: 48vh;
}

.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;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 10000;
	padding: 12px 18px;
	background: var(--srn-lime);
	color: var(--srn-ink);
	font-weight: 800;
	transform: translateY(-180%);
	transition: transform 0.2s ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.signal-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 7px;
	border-radius: 50%;
	background: var(--srn-coral);
	box-shadow: 0 0 0 5px rgba(240, 90, 79, 0.15);
}

/* Header ---------------------------------------------------------------- */

.site-header {
	position: relative;
	z-index: 100;
	background: var(--srn-ink);
	color: var(--srn-white);
}

.header-signal {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: #071118;
	color: #b9c7cd;
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.035em;
}

.header-signal__inner,
.header-brand__inner,
.header-nav__inner,
.header-search__inner,
.footer-bottom__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-signal__inner {
	min-height: 34px;
}

.header-signal p {
	margin: 0;
}

.header-signal time {
	font-variant-numeric: tabular-nums;
}

.header-brand__inner {
	min-height: 96px;
	gap: 32px;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 22px;
	min-width: 0;
}

.brand-logo,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	flex: none;
	text-decoration: none;
}

.brand-logo img,
.custom-logo {
	width: 286px;
	max-height: 62px;
	object-fit: contain;
	object-position: left center;
}

.site-tagline {
	max-width: 180px;
	margin: 0;
	padding-left: 22px;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	color: #aebdc3;
	font-size: 13px;
	line-height: 1.45;
}

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

.header-service {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 44px;
	padding: 0 17px;
	border: 1px solid rgba(199, 243, 61, 0.34);
	border-radius: 999px;
	background: rgba(199, 243, 61, 0.08);
	color: var(--srn-lime);
	font-size: 14px;
	font-weight: 760;
	text-decoration: none;
	transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.header-service:hover {
	background: rgba(199, 243, 61, 0.16);
	border-color: rgba(199, 243, 61, 0.62);
	transform: translateY(-1px);
}

.icon-button {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: 50%;
	background: transparent;
	color: var(--srn-white);
	cursor: pointer;
}

.js .search-toggle {
	display: inline-flex;
}

.icon-button:hover {
	background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
	flex-direction: column;
	gap: 5px;
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 3px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.header-nav-wrap {
	background: var(--srn-white);
	color: var(--srn-ink);
	box-shadow: 0 1px 0 var(--srn-line);
}

.header-nav__inner {
	min-height: 54px;
}

.primary-navigation {
	width: 100%;
}

.primary-menu,
.primary-menu ul,
.footer-menu,
.footer-categories ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu {
	display: flex;
	align-items: stretch;
	gap: 34px;
}

.primary-menu > li {
	position: relative;
	display: flex;
	align-items: stretch;
}

.primary-menu a {
	display: flex;
	align-items: center;
	min-height: 54px;
	border-bottom: 3px solid transparent;
	font-size: 14px;
	font-weight: 780;
	text-decoration: none;
	transition: border-color 0.15s ease, color 0.15s ease;
}

.primary-menu > li > a:hover,
.primary-menu > .current-menu-item > a,
.primary-menu > .current-menu-ancestor > a {
	border-bottom-color: var(--srn-lime);
	color: var(--srn-green-dark);
}

.primary-menu .menu-service {
	margin-left: auto;
}

.primary-menu .menu-service > a::before {
	content: "";
	width: 7px;
	height: 7px;
	margin-right: 8px;
	border-radius: 50%;
	background: var(--srn-coral);
}

.primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: -18px;
	z-index: 30;
	min-width: 220px;
	padding: 9px 18px 12px;
	border: 1px solid var(--srn-line);
	border-top: 0;
	background: var(--srn-white);
	box-shadow: var(--srn-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-menu .sub-menu a {
	min-height: 40px;
	border: 0;
	font-weight: 650;
}

.header-search {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 28px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: var(--srn-ink-2);
	box-shadow: 0 22px 50px rgba(4, 12, 17, 0.28);
}

.header-search__inner {
	gap: 18px;
}

.header-search__label {
	flex: none;
	margin: 0;
	color: #b5c3c9;
	font-size: 13px;
	font-weight: 700;
}

.header-search .search-form {
	flex: 1;
}

.search-close {
	border: 0;
	background: transparent;
	color: #bac7cc;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

/* Search and buttons ---------------------------------------------------- */

.search-form {
	display: flex;
	gap: 10px;
	width: 100%;
}

.search-field {
	min-width: 0;
	flex: 1;
	height: 50px;
	padding: 0 16px;
	border: 1px solid var(--srn-line);
	border-radius: var(--srn-radius-sm);
	background: var(--srn-white);
	color: var(--srn-ink);
}

.header-search .search-field {
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.08);
	color: var(--srn-white);
}

.header-search .search-field::placeholder {
	color: #9fb0b7;
}

.search-submit,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 20px;
	border: 0;
	border-radius: var(--srn-radius-sm);
	background: var(--srn-green);
	color: var(--srn-white);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.15;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.search-submit:hover,
.button:hover {
	background: var(--srn-green-dark);
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(14, 124, 102, 0.2);
}

.button--lime {
	background: var(--srn-lime);
	color: var(--srn-ink);
}

.button--lime:hover {
	background: #d6ff57;
	box-shadow: 0 8px 26px rgba(199, 243, 61, 0.2);
}

.button--dark {
	background: var(--srn-ink);
}

/* Shared headings ------------------------------------------------------ */

.eyebrow,
.section-kicker,
.news-card__section,
.story-section,
.story-rail__label,
.author-box__label {
	margin: 0 0 8px;
	color: var(--srn-green);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.105em;
	line-height: 1.4;
	text-transform: uppercase;
}

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 24px;
	padding-top: 4px;
	border-top: 4px solid var(--section-accent, var(--srn-green));
}

.section-heading > div {
	padding-top: 15px;
}

.section-heading h1,
.section-heading h2 {
	margin: 0;
	font-size: clamp(30px, 3.2vw, 46px);
	font-weight: 840;
	letter-spacing: -0.045em;
	line-height: 1.02;
}

.section-heading h2 a {
	text-decoration: none;
}

.section-kicker {
	color: var(--srn-muted);
	letter-spacing: 0.065em;
}

.section-heading__link {
	flex: none;
	padding-bottom: 4px;
	color: var(--srn-ink);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.section-heading__link span,
.footer-tool-link span {
	display: inline-block;
	transition: transform 0.16s ease;
}

.section-heading__link:hover span,
.footer-tool-link:hover span {
	transform: translateX(4px);
}

/* Homepage lead -------------------------------------------------------- */

.lead-news {
	padding-top: 44px;
	padding-bottom: 60px;
}

.section-heading--lead {
	--section-accent: var(--srn-coral);
}

.section-heading--lead .eyebrow {
	color: var(--srn-coral);
}

.lead-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(420px, 0.95fr);
	gap: 18px;
}

.lead-grid--single {
	grid-template-columns: minmax(0, 1fr);
}

.lead-grid__main,
.lead-grid__side {
	min-width: 0;
}

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

/* News cards ----------------------------------------------------------- */

.news-card {
	min-width: 0;
	background: var(--srn-white);
	color: var(--srn-ink);
}

.news-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	background: #dfe8eb;
	text-decoration: none;
}

.news-card__image,
.news-card__fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.news-card__fallback {
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at 18% 25%, rgba(199, 243, 61, 0.35), transparent 31%),
		linear-gradient(135deg, #0b1720, #173d43);
}

.news-card__fallback img {
	width: 74px;
	height: 74px;
	opacity: 0.82;
}

.news-card:hover .news-card__image {
	transform: scale(1.025);
}

.news-card__section {
	display: inline-flex;
	margin-bottom: 8px;
	color: var(--card-accent, var(--srn-green));
	text-decoration: none;
}

.news-card__title {
	margin: 0;
	font-size: 22px;
	font-weight: 790;
	letter-spacing: -0.025em;
	line-height: 1.18;
}

.news-card__title a {
	background-image: linear-gradient(currentColor, currentColor);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 1px;
	text-decoration: none;
	transition: background-size 0.22s ease;
}

.news-card:hover .news-card__title a {
	background-size: 100% 1px;
}

.news-card__excerpt {
	margin: 11px 0 0;
	color: var(--srn-muted);
	font-size: 15px;
	line-height: 1.55;
}

.news-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-top: 14px;
	color: #73828a;
	font-size: 11px;
	font-weight: 650;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.news-card--hero {
	position: relative;
	min-height: 590px;
	overflow: hidden;
	border-radius: var(--srn-radius-lg);
	background: var(--srn-ink);
	color: var(--srn-white);
	box-shadow: var(--srn-shadow);
}

.news-card--hero .news-card__media {
	position: absolute;
	inset: 0;
}

.news-card--hero .news-card__media::after {
	content: "";
	position: absolute;
	inset: 22% 0 0;
	background: linear-gradient(to bottom, transparent, rgba(3, 10, 14, 0.94));
}

.news-card--hero .news-card__body {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	left: 0;
	padding: clamp(26px, 4vw, 46px);
}

.news-card--hero .news-card__section {
	color: var(--srn-lime);
}

.news-card--hero .news-card__title {
	max-width: 820px;
	font-size: clamp(30px, 3.4vw, 50px);
	font-weight: 830;
	letter-spacing: -0.045em;
	line-height: 1.02;
}

.news-card--hero .news-card__excerpt {
	max-width: 720px;
	color: #dae4e7;
	font-size: 16px;
}

.news-card--hero .news-card__meta {
	color: #becbd0;
}

.news-card--compact {
	display: flex;
	min-height: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--srn-line);
	border-radius: var(--srn-radius);
}

.news-card--compact .news-card__media {
	aspect-ratio: 16 / 9;
}

.news-card--compact .news-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 16px;
}

.news-card--compact .news-card__title {
	font-size: 17px;
	line-height: 1.22;
}

.news-card--compact .news-card__meta {
	margin-top: auto;
	padding-top: 12px;
}

.news-card--compact .news-card__meta span:last-child {
	display: none;
}

.news-card--lead {
	overflow: hidden;
	border: 1px solid var(--srn-line);
	border-radius: var(--srn-radius-lg);
}

.news-card--lead .news-card__media {
	aspect-ratio: 16 / 10;
}

.news-card--lead .news-card__body {
	padding: 25px 26px 27px;
}

.news-card--lead .news-card__title {
	font-size: clamp(26px, 2.4vw, 36px);
	line-height: 1.08;
}

.news-card--list {
	display: grid;
	grid-template-columns: 172px minmax(0, 1fr);
	gap: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--srn-line);
}

.news-card--list:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.news-card--list .news-card__media {
	aspect-ratio: 1.42 / 1;
	border-radius: var(--srn-radius-sm);
}

.news-card--list .news-card__body {
	align-self: center;
}

.news-card--list .news-card__title {
	font-size: 19px;
}

.news-card--list .news-card__meta span:last-child {
	display: none;
}

.news-card--grid {
	overflow: hidden;
	border: 1px solid var(--srn-line);
	border-radius: var(--srn-radius);
}

.news-card--grid .news-card__media {
	aspect-ratio: 16 / 10;
}

.news-card--grid .news-card__body {
	padding: 20px 21px 22px;
}

/* Tool promo ----------------------------------------------------------- */

.tools-promo {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 92% 12%, rgba(199, 243, 61, 0.18), transparent 24%),
		linear-gradient(135deg, #071118, #102d32);
	color: var(--srn-white);
}

.tools-promo::after {
	content: "";
	position: absolute;
	right: -130px;
	top: -230px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(199, 243, 61, 0.1);
	border-radius: 50%;
	box-shadow: 0 0 0 65px rgba(199, 243, 61, 0.035), 0 0 0 130px rgba(199, 243, 61, 0.025);
	pointer-events: none;
}

.tools-promo__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) minmax(370px, auto);
	align-items: center;
	gap: 28px;
	min-height: 220px;
	padding-top: 36px;
	padding-bottom: 36px;
}

.tools-promo__mark {
	display: grid;
	place-items: center;
	width: 92px;
	height: 92px;
	border: 1px solid rgba(199, 243, 61, 0.25);
	border-radius: 22px;
	background: rgba(199, 243, 61, 0.08);
	color: var(--srn-lime);
}

.tools-promo .eyebrow {
	color: var(--srn-lime);
}

.tools-promo h2 {
	margin: 0;
	font-size: clamp(29px, 3vw, 42px);
	font-weight: 830;
	letter-spacing: -0.04em;
	line-height: 1.02;
}

.tools-promo__copy > p:last-child {
	max-width: 660px;
	margin: 12px 0 0;
	color: #c6d3d7;
	font-size: 15px;
}

.tools-promo__actions {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 14px;
}

.tool-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.tool-chips a {
	padding: 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: #c8d5d9;
	font-size: 11px;
	font-weight: 700;
	text-decoration: none;
}

.tool-chips a:hover {
	border-color: var(--srn-lime);
	color: var(--srn-white);
}

/* Category modules ----------------------------------------------------- */

.homepage-sections {
	padding-top: 70px;
	padding-bottom: 84px;
}

.category-module + .category-module {
	margin-top: 82px;
}

.category-module__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(450px, 0.92fr);
	gap: 34px;
	align-items: start;
}

.category-module__list {
	display: grid;
	gap: 18px;
}

.category-empty {
	margin: 0;
	padding: 24px;
	border: 1px dashed var(--srn-line);
	border-radius: var(--srn-radius);
	color: var(--srn-muted);
}

/* Archives ------------------------------------------------------------- */

.archive-view,
.page-view,
.single-view,
.not-found {
	padding-top: 38px;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
	color: #75858d;
	font-size: 12px;
	line-height: 1.5;
}

.breadcrumbs a {
	color: var(--srn-green-dark);
	text-decoration: none;
}

.breadcrumbs span[aria-hidden="true"] {
	opacity: 0.55;
}

.archive-header {
	max-width: 880px;
	margin-bottom: 34px;
	padding: 30px 0 32px;
	border-top: 4px solid var(--srn-green);
	border-bottom: 1px solid var(--srn-line);
}

.archive-header--category {
	border-top-color: var(--section-accent);
}

.archive-header h1,
.page-header h1 {
	margin: 0;
	font-size: clamp(40px, 6vw, 70px);
	font-weight: 850;
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.archive-header > p:last-child,
.archive-description,
.page-header > p:last-child {
	max-width: 720px;
	margin: 18px 0 0;
	color: var(--srn-muted);
	font-size: 18px;
}

.archive-description p {
	margin: 0;
}

.archive-header .search-form {
	max-width: 700px;
	margin-top: 24px;
}

.archive-grid,
.related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.archive-grid .news-card__title {
	font-size: 21px;
}

.archive-pagination {
	margin: 48px 0 80px;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--srn-line);
	border-radius: 9px;
	background: var(--srn-white);
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
}

.pagination .current,
.pagination a:hover {
	border-color: var(--srn-ink);
	background: var(--srn-ink);
	color: var(--srn-white);
}

.empty-state {
	padding: 48px;
	border: 1px solid var(--srn-line);
	border-radius: var(--srn-radius-lg);
	background: var(--srn-white);
	text-align: center;
}

.empty-state h2 {
	margin: 0 0 8px;
	font-size: 28px;
}

.empty-state p {
	margin: 0 0 24px;
	color: var(--srn-muted);
}

/* Single article ------------------------------------------------------- */

.story-header-wrap {
	max-width: 1120px;
	margin: 0 auto;
}

.story-header {
	max-width: 1030px;
	padding: 18px 0 34px;
}

.story-section {
	display: inline-flex;
	color: var(--story-accent, var(--srn-green));
	text-decoration: none;
}

.story-header h1 {
	max-width: 1030px;
	margin: 0;
	font-size: clamp(40px, 6.5vw, 72px);
	font-weight: 850;
	letter-spacing: -0.058em;
	line-height: 0.99;
	text-wrap: balance;
}

.story-deck {
	max-width: 880px;
	margin: 22px 0 0;
	color: #435861;
	font-size: clamp(19px, 2.1vw, 24px);
	font-weight: 440;
	line-height: 1.48;
}

.story-byline {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 24px;
	color: #6f8088;
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.story-byline a {
	color: var(--srn-ink);
	font-weight: 800;
	text-decoration: none;
}

.story-cover {
	margin: 0;
	overflow: hidden;
	border-radius: var(--srn-radius-lg);
	background: #dfe8eb;
	box-shadow: var(--srn-shadow);
}

.story-cover img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.story-cover figcaption,
.page-cover figcaption,
.entry-content figcaption {
	padding: 10px 3px 0;
	color: #74848b;
	font-size: 12px;
	line-height: 1.5;
}

.story-body {
	display: grid;
	grid-template-columns: minmax(0, 790px) minmax(230px, 280px);
	justify-content: center;
	gap: clamp(48px, 7vw, 90px);
	padding-top: 54px;
}

.entry-content {
	min-width: 0;
	color: #172a34;
	font-size: 18px;
	line-height: 1.78;
}

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

.entry-content p {
	margin: 0 0 1.35em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: var(--srn-ink);
	font-weight: 820;
	letter-spacing: -0.035em;
	text-wrap: balance;
}

.entry-content h2 {
	margin: 2em 0 0.7em;
	font-size: clamp(28px, 4vw, 39px);
	line-height: 1.12;
}

.entry-content h3 {
	margin: 1.65em 0 0.6em;
	font-size: 24px;
	line-height: 1.2;
}

.entry-content h4 {
	margin: 1.5em 0 0.5em;
	font-size: 20px;
}

.entry-content a {
	color: var(--srn-green-dark);
	font-weight: 640;
	text-decoration-color: rgba(14, 124, 102, 0.42);
}

.entry-content a:hover {
	text-decoration-color: currentColor;
}

.entry-content strong {
	font-weight: 790;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 1.5em;
	padding-left: 1.4em;
}

.entry-content li {
	margin-bottom: 0.48em;
	padding-left: 0.2em;
}

.entry-content blockquote {
	margin: 2em 0;
	padding: 3px 0 3px 24px;
	border-left: 5px solid var(--story-accent, var(--srn-green));
	color: #304751;
	font-size: 21px;
	font-weight: 560;
	line-height: 1.55;
}

.entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.entry-content figure {
	max-width: 100%;
	margin: 2em 0;
}

.entry-content img {
	border-radius: 13px;
}

.entry-content .sportradar-infographic {
	max-width: 100%;
	box-shadow: 0 12px 36px rgba(11, 23, 32, 0.1);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	line-height: 1.55;
}

.entry-content th,
.entry-content td {
	padding: 12px 13px;
	border: 1px solid var(--srn-line);
	text-align: left;
	vertical-align: top;
}

.entry-content th {
	background: #e8eff1;
	color: var(--srn-ink);
	font-weight: 780;
}

.entry-content details {
	margin: 1.5em 0;
	padding: 17px 20px;
	border: 1px solid var(--srn-line);
	border-radius: var(--srn-radius-sm);
	background: var(--srn-white);
}

.entry-content summary {
	font-weight: 780;
	cursor: pointer;
}

.entry-content .alignwide {
	width: min(1040px, calc(100vw - 48px));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.entry-content .alignfull {
	width: 100vw;
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.story-rail {
	min-width: 0;
}

.story-rail__card {
	position: sticky;
	top: 24px;
	padding: 24px;
	border-radius: var(--srn-radius);
	background: var(--srn-ink);
	color: var(--srn-white);
}

.story-rail__label {
	color: var(--srn-lime);
}

.story-rail h2 {
	margin: 0;
	font-size: 24px;
	letter-spacing: -0.035em;
	line-height: 1.12;
}

.story-rail p:not(.story-rail__label) {
	margin: 12px 0 18px;
	color: #bfcdd2;
	font-size: 14px;
	line-height: 1.55;
}

.story-rail a {
	color: var(--srn-lime);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.story-footer {
	max-width: 1120px;
	padding-top: 46px;
	padding-bottom: 68px;
}

.story-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 34px;
}

.story-tags > span {
	margin-right: 5px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.story-tags a {
	padding: 7px 11px;
	border: 1px solid var(--srn-line);
	border-radius: 999px;
	background: var(--srn-white);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.story-tags a:hover {
	border-color: var(--srn-green);
	color: var(--srn-green-dark);
}

.author-box {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 18px;
	max-width: 790px;
	padding: 25px;
	border-top: 4px solid var(--story-accent, var(--srn-green));
	border-radius: 0 0 var(--srn-radius) var(--srn-radius);
	background: var(--srn-white);
}

.author-box__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--srn-soft);
	color: var(--srn-green-dark);
}

.author-box__label {
	margin-bottom: 3px;
	color: var(--srn-muted);
}

.author-box h2 {
	margin: 0;
	font-size: 20px;
}

.author-box h2 a {
	text-decoration: none;
}

.author-box p:last-child {
	margin: 7px 0 0;
	color: var(--srn-muted);
	font-size: 14px;
}

.related-news {
	padding: 58px 0 78px;
	border-top: 1px solid var(--srn-line);
	background: var(--srn-white);
}

.related-news .section-heading {
	--section-accent: var(--story-accent, var(--srn-green));
}

.related-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.related-grid .news-card {
	background: var(--srn-paper);
}

.related-grid .news-card__title {
	font-size: 18px;
}

.related-grid .news-card__excerpt {
	display: none;
}

/* Pages and 404 -------------------------------------------------------- */

.page-shell {
	max-width: 1040px;
	padding-bottom: 78px;
}

.page-header {
	max-width: 860px;
	padding: 18px 0 34px;
}

.page-cover {
	margin: 0 0 48px;
	overflow: hidden;
	border-radius: var(--srn-radius-lg);
}

.page-content {
	max-width: 790px;
}

.not-found {
	padding-bottom: 80px;
}

.not-found__inner {
	max-width: 850px;
	padding: 80px 0;
	text-align: center;
}

.not-found__code {
	margin-bottom: -18px;
	color: #dce6e9;
	font-size: clamp(110px, 22vw, 220px);
	font-weight: 900;
	letter-spacing: -0.08em;
	line-height: 0.8;
}

.not-found h1 {
	margin: 0;
	font-size: clamp(38px, 6vw, 62px);
	letter-spacing: -0.055em;
	line-height: 1;
}

.not-found__inner > p:not(.eyebrow) {
	max-width: 600px;
	margin: 18px auto 30px;
	color: var(--srn-muted);
}

.not-found .search-form {
	max-width: 620px;
	margin: 0 auto;
}

.not-found__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 9px;
	margin-top: 28px;
}

.not-found__links a {
	padding: 7px 11px;
	border: 1px solid var(--srn-line);
	border-radius: 999px;
	background: var(--srn-white);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

/* Footer --------------------------------------------------------------- */

.site-footer {
	background: var(--srn-ink);
	color: var(--srn-white);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(170px, 0.55fr) minmax(220px, 0.75fr);
	gap: clamp(40px, 7vw, 100px);
	padding-top: 66px;
	padding-bottom: 58px;
}

.footer-brand .brand-logo img,
.footer-brand .custom-logo {
	width: 245px;
}

.footer-brand > p {
	max-width: 460px;
	margin: 21px 0;
	color: #aebdc3;
	font-size: 14px;
}

.footer-tool-link {
	color: var(--srn-lime);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.footer-categories h2,
.footer-pages h2 {
	margin: 0 0 16px;
	color: #899da5;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.footer-categories li,
.footer-menu li {
	margin-bottom: 9px;
}

.footer-categories a,
.footer-menu a {
	color: #d3dde0;
	font-size: 14px;
	font-weight: 620;
	text-decoration: none;
}

.footer-categories a:hover,
.footer-menu a:hover {
	color: var(--srn-lime);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #80939b;
	font-size: 11px;
	font-weight: 650;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.footer-bottom__inner {
	min-height: 58px;
}

.footer-bottom p {
	margin: 0;
}

/* WordPress core ------------------------------------------------------- */

.wp-caption,
.wp-caption-text,
.gallery-caption {
	max-width: 100%;
}

.sticky {
	position: relative;
}

.bypostauthor {
	display: block;
}

.alignleft {
	float: left;
	margin: 0.4em 1.5em 1em 0;
}

.alignright {
	float: right;
	margin: 0.4em 0 1em 1.5em;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

/* Responsive ----------------------------------------------------------- */

@media (max-width: 1120px) {
	.site-tagline {
		display: none;
	}

	.lead-grid {
		grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.8fr);
	}

	.lead-grid__side {
		grid-template-columns: 1fr;
	}

	.lead-grid__side .news-card--compact {
		display: grid;
		grid-template-columns: 150px minmax(0, 1fr);
	}

	.lead-grid__side .news-card__media {
		aspect-ratio: auto;
	}

	.lead-grid__side .news-card__section,
	.lead-grid__side .news-card__meta {
		display: none;
	}

	.news-card--hero {
		min-height: 520px;
	}

	.tools-promo__inner {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.tools-promo__actions {
		grid-column: 2;
	}

	.category-module__grid {
		grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
		gap: 26px;
	}

	.news-card--list {
		grid-template-columns: 138px minmax(0, 1fr);
		gap: 15px;
	}

	.news-card--list .news-card__title {
		font-size: 17px;
	}

	.story-body {
		grid-template-columns: minmax(0, 760px) 240px;
		gap: 48px;
	}
}

@media (max-width: 920px) {
	.js .menu-toggle {
		display: inline-flex;
	}

	.header-brand__inner {
		min-height: 82px;
	}

	.brand-logo img,
	.custom-logo {
		width: 240px;
		max-height: 52px;
	}

	.header-service span {
		display: none;
	}

	.header-service {
		width: 44px;
		justify-content: center;
		padding: 0;
	}

	.header-nav-wrap {
		position: relative;
	}

	.js .primary-navigation {
		display: none;
	}

	.js .primary-navigation.is-open {
		display: block;
	}

	.primary-menu {
		flex-direction: column;
		gap: 0;
		padding: 12px 0 18px;
	}

	.primary-menu > li,
	.primary-menu a {
		display: block;
		width: 100%;
	}

	.primary-menu a {
		min-height: 0;
		padding: 12px 0;
		border-bottom: 1px solid var(--srn-line);
	}

	.primary-menu > li > a:hover,
	.primary-menu > .current-menu-item > a,
	.primary-menu > .current-menu-ancestor > a {
		border-bottom-color: var(--srn-line);
	}

	.primary-menu .menu-service {
		margin-left: 0;
	}

	.primary-menu .sub-menu {
		position: static;
		min-width: 0;
		padding: 0 0 0 18px;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.lead-grid {
		grid-template-columns: 1fr;
	}

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

	.lead-grid__side .news-card--compact {
		display: flex;
	}

	.lead-grid__side .news-card__media {
		aspect-ratio: 16 / 9;
	}

	.lead-grid__side .news-card__section,
	.lead-grid__side .news-card__meta {
		display: flex;
	}

	.category-module__grid {
		grid-template-columns: 1fr;
	}

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

	.news-card--list {
		display: flex;
		flex-direction: column;
		gap: 0;
		padding: 0;
		border: 1px solid var(--srn-line);
		border-radius: var(--srn-radius);
		overflow: hidden;
	}

	.news-card--list:last-child {
		border-bottom: 1px solid var(--srn-line);
	}

	.news-card--list .news-card__media {
		aspect-ratio: 16 / 9;
		border-radius: 0;
	}

	.news-card--list .news-card__body {
		padding: 18px;
	}

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

	.story-body {
		grid-template-columns: minmax(0, 790px);
	}

	.story-rail {
		display: none;
	}

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

	.footer-grid {
		grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(150px, 0.7fr));
		gap: 38px;
	}
}

@media (max-width: 680px) {
	body {
		font-size: 16px;
	}

	.site-shell {
		width: min(100% - 28px, var(--srn-shell));
	}

	.header-signal time {
		display: none;
	}

	.header-signal__inner {
		justify-content: center;
	}

	.header-brand__inner {
		min-height: 72px;
		gap: 14px;
	}

	.brand-logo img,
	.custom-logo {
		width: 205px;
		max-height: 46px;
	}

	.header-service {
		display: none;
	}

	.header-actions {
		gap: 7px;
	}

	.icon-button {
		width: 41px;
		height: 41px;
	}

	.header-search {
		padding: 20px 0;
	}

	.header-search__inner {
		align-items: stretch;
		flex-direction: column;
	}

	.header-search__label {
		display: none;
	}

	.search-form {
		gap: 7px;
	}

	.search-submit {
		width: 50px;
		padding: 0;
	}

	.search-submit span {
		display: none;
	}

	.lead-news {
		padding-top: 30px;
		padding-bottom: 42px;
	}

	.section-heading {
		align-items: flex-start;
	}

	.section-heading__link {
		display: none;
	}

	.section-heading h1,
	.section-heading h2 {
		font-size: 34px;
	}

	.news-card--hero {
		min-height: 475px;
	}

	.news-card--hero .news-card__title {
		font-size: 34px;
	}

	.news-card--hero .news-card__excerpt {
		display: none;
	}

	.lead-grid__side,
	.category-module__list,
	.archive-grid,
	.related-grid {
		grid-template-columns: 1fr;
	}

	.news-card--compact {
		display: grid !important;
		grid-template-columns: 132px minmax(0, 1fr);
	}

	.news-card--compact .news-card__media {
		aspect-ratio: auto;
	}

	.news-card--compact .news-card__section,
	.news-card--compact .news-card__meta {
		display: none;
	}

	.tools-promo__inner {
		grid-template-columns: 1fr;
		padding-top: 44px;
		padding-bottom: 44px;
	}

	.tools-promo__mark {
		width: 70px;
		height: 70px;
	}

	.tools-promo__mark svg {
		width: 48px;
		height: 48px;
	}

	.tools-promo__actions {
		grid-column: auto;
	}

	.homepage-sections {
		padding-top: 52px;
		padding-bottom: 60px;
	}

	.category-module + .category-module {
		margin-top: 62px;
	}

	.news-card--lead .news-card__body {
		padding: 21px;
	}

	.news-card--lead .news-card__title {
		font-size: 29px;
	}

	.archive-view,
	.page-view,
	.single-view,
	.not-found {
		padding-top: 24px;
	}

	.archive-header,
	.page-header {
		padding-top: 20px;
	}

	.archive-header h1,
	.page-header h1 {
		font-size: 44px;
	}

	.story-header {
		padding-top: 8px;
		padding-bottom: 26px;
	}

	.story-header h1 {
		font-size: clamp(38px, 12vw, 54px);
		letter-spacing: -0.052em;
	}

	.story-deck {
		font-size: 19px;
	}

	.story-cover {
		border-radius: 15px;
	}

	.story-body {
		padding-top: 34px;
	}

	.entry-content {
		font-size: 17px;
		line-height: 1.74;
	}

	.entry-content h2 {
		font-size: 29px;
	}

	.entry-content h3 {
		font-size: 22px;
	}

	.entry-content .alignwide {
		width: calc(100vw - 28px);
	}

	.story-footer {
		padding-bottom: 50px;
	}

	.author-box {
		grid-template-columns: 1fr;
	}

	.related-news {
		padding: 46px 0 58px;
	}

	.empty-state {
		padding: 36px 20px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 38px 26px;
		padding-top: 50px;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-bottom__inner {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		gap: 3px;
		min-height: 70px;
	}
}

@media (max-width: 390px) {
	.brand-logo img,
	.custom-logo {
		width: 178px;
	}

	.news-card--compact {
		grid-template-columns: 112px minmax(0, 1fr);
	}

	.news-card--compact .news-card__body {
		padding: 13px;
	}

	.news-card--compact .news-card__title {
		font-size: 15px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-brand {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media print {
	.site-header,
	.site-footer,
	.story-rail,
	.related-news,
	.story-tags,
	.tools-promo {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
	}

	.site-content,
	.story-body,
	.entry-content {
		display: block;
		width: 100%;
		max-width: none;
	}

	a {
		color: #000;
	}
}
