/*
 * XPORTAL professional editorial layer.
 *
 * This file deliberately loads after the long-lived theme stylesheet. It gives
 * the public site one coherent visual system without coupling the redesign to
 * legacy theme-settings selectors.
 */

:root {
	--shell: 1240px;
	--surface: #ffffff;
	--surface-muted: #eef1f3;
	--surface-soft: #f7f7f5;
	--text: #171a1d;
	--text-muted: #5f6b73;
	--border: #d9dee2;
	--border-strong: #bec7ce;
	--accent: #12384f;
	--red: #d71920;
	--navy: #102f40;
	--navy-dark: #081f2b;
	--shadow-soft: 0 18px 42px rgba(8, 31, 43, 0.09);
	--shadow-card: 0 10px 28px rgba(8, 31, 43, 0.08);
	--font-ui: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font-display: "Roboto Slab", Georgia, serif;
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 20px;
	--space-6: 24px;
	--space-8: 32px;
	--space-10: 40px;
	--space-12: 48px;
	--space-16: 64px;
	--radius-sm: 3px;
	--radius-md: 5px;
}

html {
	scroll-padding-top: 126px;
}

body {
	background: var(--surface);
	color: var(--text);
	font-family: var(--font-ui);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Accessible desk accents for labels and controls on white surfaces. */
.root-section--sport,
body.category-sport .site-header,
body.category-sport .archive-shell,
body.category-sport .single-page {
	--section-accent: #4d7c0f !important;
}

.root-section--magazine,
body.category-magazin .site-header,
body.category-magazin .archive-shell,
body.category-magazin .single-page {
	--section-accent: #be185d !important;
}

.root-section--auto,
body.category-auto .site-header,
body.category-auto .archive-shell,
body.category-auto .single-page {
	--section-accent: #c2410c !important;
}

a,
button,
input {
	-webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 2px solid var(--red);
	outline-offset: 2px;
}

.layout-shell {
	width: min(var(--shell), calc(100% - 48px));
}

.site-main {
	min-height: 60vh;
	overflow: clip;
}

.media-block {
	background: #e8ecef;
	border-radius: var(--radius-sm);
	overflow: hidden;
}

.media-block__image {
	transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

a:hover .media-block__image,
a:focus-visible .media-block__image {
	transform: scale(1.025);
}

/* Masthead and primary navigation. */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border: 0;
	background: #fff;
	box-shadow: 0 1px 0 rgba(9, 36, 51, 0.12);
}

.site-header__masthead {
	background: #fff;
}

.site-header__main,
.site-header__masthead-inner {
	display: grid;
	grid-template-columns: minmax(220px, 0.8fr) minmax(270px, 1.2fr) minmax(300px, 0.9fr);
	align-items: center;
	gap: clamp(24px, 3vw, 46px);
	min-height: 82px;
	padding: 0;
}

.site-logo,
.site-logo--header {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	align-self: center;
	width: fit-content;
	height: auto;
	min-width: 0;
	padding: 0;
	background: transparent;
	color: var(--navy);
	text-transform: uppercase;
}

.site-logo--header .site-logo__brand,
.site-logo__brand {
	font-size: clamp(1.8rem, 2.8vw, 2.25rem);
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: -0.065em;
}

.site-logo__brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 0.84em;
	height: 0.84em;
	margin-right: 0.07em;
	background: var(--red);
	color: #fff;
	font-size: 0.82em;
	letter-spacing: 0;
}

.site-logo__image-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box;
	background: #fff;
}

.site-logo__image {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: none;
}

.site-logo--header .site-logo__image-wrap {
	width: clamp(210px, 19vw, 260px);
	max-width: 100%;
	padding: 2px 0;
}

.site-header__identity {
	min-width: 0;
	padding-left: clamp(20px, 2.6vw, 38px);
	border-left: 1px solid var(--border);
}

.site-header__identity p,
.site-header__identity span {
	margin: 0;
}

.site-header__identity p {
	color: var(--navy);
	font-size: 0.82rem;
	font-weight: 750;
	letter-spacing: 0.075em;
	text-transform: uppercase;
}

.site-header__identity span {
	display: block;
	margin-top: 3px;
	color: var(--text-muted);
	font-size: 0.78rem;
}

.site-header__masthead-side {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
}

.site-header__masthead-side time {
	color: var(--text-muted);
	font-size: 0.72rem;
	font-weight: 600;
	white-space: nowrap;
	text-transform: capitalize;
}

.site-header__search {
	display: flex;
	align-items: center;
	width: min(100%, 210px);
	height: 40px;
	border: 1px solid var(--border-strong);
	border-radius: 999px;
	background: var(--surface-soft);
	overflow: hidden;
}

.site-header__search input {
	width: 100%;
	padding: 0 4px 0 15px;
	color: var(--text);
	font-size: 0.78rem;
}

.site-header__search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--navy);
}

.site-header__search button svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.site-header__nav-bar {
	background: var(--navy);
}

.site-header__nav-inner {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	min-height: 48px;
}

.site-nav {
	display: flex;
	align-items: stretch;
	gap: clamp(14px, 1.75vw, 25px);
	min-width: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.055em;
	overflow-x: auto;
}

.site-nav > a,
.site-nav__utility > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	color: rgba(255, 255, 255, 0.92);
}

.site-nav > a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	background: var(--nav-item-accent, var(--red));
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a.is-current {
	color: #fff;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-current::after {
	transform: scaleX(1);
}

.site-nav__utility {
	display: inline-flex;
	align-items: stretch;
	gap: 0;
	padding: 0 18px 0 0;
	margin: 0 2px 0 0;
	border-right-color: rgba(255, 255, 255, 0.17);
}

.site-nav__utility > a {
	padding: 0 12px;
}

.site-header .site-nav__utility a.site-nav__latest {
	gap: 7px;
	background: var(--red);
	color: #fff;
}

.site-nav__latest span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16);
}

.site-nav__utility .site-nav__local {
	color: #fff;
}

.site-header__controls {
	display: none;
}

/* Homepage lead package. */

.homepage-shell {
	padding-bottom: 0;
}

.homepage-shell .editorial-block--top {
	padding: 34px 0 44px;
	border-bottom: 1px solid var(--border);
	background: #fff;
}

.editorial-block--top .section-nav {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 26px;
	padding: 0 0 18px;
	border-bottom: 1px solid var(--border);
}

.section-nav__title-group {
	min-width: 190px;
}

.section-nav__eyebrow {
	margin-bottom: 5px;
	color: var(--red);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.homepage-shell .section-nav__title {
	display: block;
	min-height: 0;
	padding: 0;
	background: transparent;
	color: var(--navy);
	font-size: clamp(2.15rem, 4vw, 3.35rem);
	font-weight: 800;
	line-height: 0.94;
	letter-spacing: -0.065em;
	text-transform: none;
}

.homepage-shell .section-nav__title::after {
	display: none;
}

.editorial-block--top .section-tabs,
.root-section__tabs {
	display: flex;
	align-items: center;
	gap: 5px 20px;
	min-width: 0;
	padding: 0;
	overflow-x: auto;
}

.editorial-block--top .section-tabs a,
.root-section__tabs a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--text-muted);
	font-size: 0.76rem;
	font-weight: 650;
	white-space: nowrap;
}

.editorial-block--top .section-tabs a::after,
.root-section__tabs a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: var(--section-accent, var(--red));
	transform: scaleX(0);
	transition: transform 0.18s ease;
}

.editorial-block--top .section-tabs a:hover,
.editorial-block--top .section-tabs a:focus-visible,
.root-section__tabs a:hover,
.root-section__tabs a:focus-visible,
.root-section__tabs a.is-current {
	background: transparent;
	color: var(--section-accent, var(--red));
}

.editorial-block--top .section-tabs a:hover::after,
.editorial-block--top .section-tabs a:focus-visible::after,
.root-section__tabs a:hover::after,
.root-section__tabs a:focus-visible::after,
.root-section__tabs a.is-current::after {
	transform: scaleX(1);
}

.editorial-block__grid--top {
	display: grid !important;
	grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.78fr) minmax(275px, 0.72fr) !important;
	gap: clamp(20px, 2.25vw, 30px) !important;
	align-items: start;
}

.lead-story__media-link,
.side-feature__media-link,
.story-card__media-link,
.root-section__lead-media-link,
.root-section-card__media-link,
.archive-list__media-link {
	display: block;
	min-width: 0;
}

.lead-story--hero .media-block {
	aspect-ratio: 16 / 9;
	border-radius: 7px;
	box-shadow: none;
}

.homepage-shell .lead-story__headline {
	margin: 10px 0 9px;
	font-size: clamp(1.9rem, 2.65vw, 2.6rem);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.047em;
	text-wrap: balance;
}

.homepage-shell .lead-story__headline a:hover,
.homepage-shell .lead-story__headline a:focus-visible {
	color: var(--red);
}

.story-meta-line {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 11px;
	color: var(--text-muted);
	font-size: 0.69rem;
	font-weight: 650;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.story-meta-line span {
	color: var(--section-accent, var(--red));
	font-weight: 800;
}

.story-meta-line time::before {
	content: "•";
	margin-right: 8px;
	color: var(--border-strong);
}

.lead-story__excerpt {
	max-width: 62ch;
	margin-top: 0;
	color: var(--text-muted);
	font-size: 0.96rem;
	line-height: 1.6;
}

.side-column {
	display: grid;
	gap: 0;
}

.side-feature {
	display: grid;
	gap: 8px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--text);
}

.side-feature__media {
	aspect-ratio: 16 / 9;
	border-radius: 6px;
}

.side-feature__title {
	margin: 5px 0 0;
	font-size: 1.17rem;
	font-weight: 780;
	line-height: 1.18;
	letter-spacing: -0.025em;
}

.story-stack {
	display: grid;
	gap: 0;
}

.story-card {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 13px 0;
	border-bottom: 1px solid var(--border);
}

.story-card__media {
	aspect-ratio: 4 / 3;
	border-radius: 4px;
}

.story-card .story-meta-line {
	margin-top: 0;
}

.story-card__title {
	margin: 4px 0 0;
	font-size: 0.9rem;
	font-weight: 720;
	line-height: 1.25;
	letter-spacing: -0.016em;
}

.panel-more,
.root-section__all,
.archive-load-more__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 15px;
	border: 1px solid var(--border-strong);
	border-radius: 3px;
	background: #fff;
	color: var(--navy);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.panel-more:hover,
.panel-more:focus-visible,
.root-section__all:hover,
.root-section__all:focus-visible,
.archive-load-more__button:hover,
.archive-load-more__button:focus-visible {
	border-color: var(--section-accent, var(--red));
	background: var(--section-accent, var(--red));
	color: #fff;
	transform: none;
}

.panel-more--inline {
	width: fit-content;
	margin-top: 13px;
}

.editorial-block--top .latest-panel {
	padding: 20px 20px 18px;
	border: 0;
	border-radius: 7px;
	background: var(--navy);
	color: #fff;
	box-shadow: var(--shadow-card);
}

.editorial-block--top .latest-panel__tabs {
	margin-bottom: 4px;
	border-bottom-color: rgba(255, 255, 255, 0.15);
}

.editorial-block--top .latest-panel__tab {
	color: rgba(255, 255, 255, 0.58);
}

.editorial-block--top .latest-panel__tab.is-active {
	color: #fff;
}

.editorial-block--top .latest-panel__tab.is-active::after {
	background: var(--red);
}

.editorial-block--top .latest-panel__row {
	gap: 12px;
	padding: 14px 0;
	border-bottom-color: rgba(255, 255, 255, 0.13);
}

.editorial-block--top .latest-panel__time {
	color: #ff6e73;
}

.editorial-block--top .latest-panel__headline {
	color: #fff;
	font-size: 0.89rem;
	font-weight: 650;
	line-height: 1.34;
}

.editorial-block--top .latest-panel .panel-more {
	width: 100%;
	margin-top: 14px;
	border-color: rgba(255, 255, 255, 0.25);
	background: transparent;
	color: #fff;
}

.editorial-block--top .latest-panel .panel-more:hover,
.editorial-block--top .latest-panel .panel-more:focus-visible {
	border-color: var(--red);
	background: var(--red);
}

/* Homepage category desks. */

.root-section {
	padding: 52px 0 56px;
	border-top: 0;
	border-bottom: 1px solid var(--border);
	background: #fff;
}

.root-section:nth-child(odd) {
	background: var(--surface-soft);
}

.root-section__header {
	display: grid;
	gap: 10px;
	margin-bottom: 24px;
}

.root-section__eyebrow {
	margin: 0;
	color: var(--section-accent, var(--red));
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.root-section__heading-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 13px;
	border-bottom: 2px solid var(--text);
}

.root-section__heading-row h2 {
	margin: 0;
	font-size: clamp(2rem, 3.1vw, 2.75rem);
	font-weight: 820;
	line-height: 0.98;
	letter-spacing: -0.055em;
}

.root-section__heading-row h2::after {
	display: none;
}

.root-section__all {
	min-height: 34px;
	padding: 0 12px;
}

.root-section__all::after {
	content: "→";
	margin-left: 8px;
	font-size: 0.95rem;
}

.root-section__grid {
	display: grid !important;
	grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.9fr) !important;
	gap: clamp(34px, 4.5vw, 64px) !important;
	align-items: start;
}

.root-section__lead-media {
	aspect-ratio: 16 / 9;
	border-radius: 7px;
}

.root-section__lead .story-meta-line {
	margin-top: 12px;
}

.root-section__lead h3 {
	margin: 8px 0 10px;
	font-size: clamp(1.65rem, 2.35vw, 2.22rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.04em;
	text-wrap: balance;
}

.root-section__lead h3 a:hover,
.root-section__lead h3 a:focus-visible,
.root-section-card h3 a:hover,
.root-section-card h3 a:focus-visible {
	color: var(--section-accent, var(--red));
}

.root-section__lead-excerpt {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.93rem;
	line-height: 1.58;
}

.root-section__list {
	display: grid;
	border-top: 2px solid var(--text);
}

.root-section-card {
	display: grid;
	grid-template-columns: 142px minmax(0, 1fr);
	gap: 15px;
	align-items: start;
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
}

.root-section-card:first-child {
	padding-top: 14px;
}

.root-section-card__media {
	aspect-ratio: 3 / 2;
	border-radius: 4px;
}

.root-section-card .story-meta-line {
	margin: 0 0 5px;
}

.root-section-card h3 {
	margin: 0;
	font-size: 0.98rem;
	font-weight: 740;
	line-height: 1.26;
	letter-spacing: -0.018em;
}

/* Archive and latest views. */

.archive-intro {
	padding: 38px 0 48px;
	border-bottom: 1px solid var(--border);
	background: linear-gradient(180deg, var(--surface-soft) 0%, #fff 100%);
}

.archive-intro__nav {
	margin-bottom: 26px;
}

.archive-intro__tabs {
	display: flex;
	gap: 8px 18px;
	overflow-x: auto;
}

.archive-intro__tabs a {
	min-height: 34px;
	padding: 0;
	border: 0;
	border-bottom: 2px solid transparent;
	border-radius: 0;
	background: transparent;
	font-size: 0.76rem;
	font-weight: 650;
}

.archive-intro__tabs a.is-current,
.archive-intro__tabs a:hover,
.archive-intro__tabs a:focus-visible {
	border-bottom-color: var(--section-accent, var(--red));
	color: var(--section-accent, var(--red));
}

.archive-intro__header {
	max-width: 800px;
	margin-bottom: 30px;
}

.archive-intro__eyebrow {
	margin-bottom: 5px;
	color: var(--section-accent, var(--red));
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.archive-intro__title {
	margin: 0;
	font-size: clamp(2.65rem, 5.5vw, 4.7rem);
	font-weight: 830;
	line-height: 0.94;
	letter-spacing: -0.07em;
}

.archive-intro__description {
	max-width: 680px;
	margin-top: 16px;
	color: var(--text-muted);
	font-size: 1.03rem;
	line-height: 1.62;
}

.archive-hero__grid {
	display: grid !important;
	grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.75fr) !important;
	gap: clamp(24px, 3.8vw, 50px) !important;
}

.archive-hero .lead-story--hero .media-block,
.archive-hero__grid .lead-story--hero .media-block {
	aspect-ratio: 16 / 9;
}

.archive-hero__stack {
	border-top: 2px solid var(--text);
}

.archive-main {
	margin: 0;
	padding: 46px 0 64px;
	background: #fff;
}

.archive-main__grid {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 330px !important;
	gap: clamp(38px, 5vw, 70px) !important;
	align-items: start;
}

.archive-main__grid--no-rail {
	grid-template-columns: minmax(0, 860px) !important;
}

.archive-list {
	border-top: 3px solid var(--text);
}

.archive-list__item {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
	padding: 24px 0;
	border-bottom: 1px solid var(--border);
}

.archive-list__media {
	aspect-ratio: 3 / 2;
	border-radius: 5px;
}

.archive-list__label {
	margin: 0 0 6px;
	color: var(--section-accent, var(--red));
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.archive-list__title {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 780;
	line-height: 1.18;
	letter-spacing: -0.026em;
}

.archive-list__title a:hover,
.archive-list__title a:focus-visible {
	color: var(--section-accent, var(--red));
}

.archive-list__excerpt {
	margin: 9px 0 0;
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.55;
}

.archive-list__meta {
	display: block;
	margin-top: 10px;
	color: #89939b;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
}

.archive-rail,
.single-rail {
	position: sticky;
	top: 150px;
}

.archive-rail .latest-panel,
.single-rail .latest-panel {
	padding: 20px;
	border: 1px solid var(--border);
	border-top: 4px solid var(--section-accent, var(--red));
	border-radius: 5px;
	background: var(--surface-soft);
}

.latest-panel__heading {
	font-size: 1rem;
	font-weight: 780;
	line-height: 1.25;
}

.archive-load-more {
	padding-top: 30px;
}

.archive-load-more__button {
	min-height: 46px;
	padding: 0 24px;
}

/* Article view. */

.single-page {
	padding: 38px 0 70px;
	background: #fff;
}

.single-context {
	margin-bottom: 24px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--border);
}

.single-context__tabs {
	display: flex;
	gap: 8px 18px;
	overflow-x: auto;
}

.single-context__tabs a {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	font-size: 0.75rem;
	font-weight: 650;
}

.single-hero__inner {
	max-width: 960px;
	margin: 0;
}

.single-page--with-rail .single-hero__inner {
	max-width: 900px;
}

.single-hero__label {
	margin-bottom: 8px;
	color: var(--section-accent, var(--red));
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.single-hero__title,
.single-page .single-hero__title {
	max-width: 920px;
	margin: 0;
	font-size: clamp(2.6rem, 5vw, 4.65rem);
	font-weight: 830;
	line-height: 0.99;
	letter-spacing: -0.067em;
	text-wrap: balance;
}

.single-hero__dek {
	max-width: 790px;
	margin: 20px 0 0;
	color: #46545e;
	font-size: clamp(1.05rem, 1.6vw, 1.23rem);
	line-height: 1.58;
}

.single-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 18px;
	margin-top: 22px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
	color: var(--text-muted);
	font-size: 0.74rem;
}

.single-hero__meta span + span {
	margin: 0;
	padding: 0;
}

.single-hero__meta span + span::before {
	display: none;
}

.single-hero__utility {
	margin-top: 16px;
}

.single-hero__utility-link {
	width: 40px;
	height: 40px;
	border-color: var(--border-strong);
	border-radius: 50%;
	background: #fff;
	color: var(--navy);
}

.single-hero__utility-link:hover,
.single-hero__utility-link:focus-visible {
	border-color: var(--section-accent, var(--red));
	background: var(--section-accent, var(--red));
	color: #fff;
}

.single-shell__grid {
	display: grid !important;
	grid-template-columns: minmax(0, 820px) 330px !important;
	gap: clamp(42px, 6vw, 80px) !important;
	align-items: start;
	margin-top: 34px;
}

.single-shell__grid--no-rail {
	grid-template-columns: minmax(0, 820px) !important;
}

.single-entry__media {
	aspect-ratio: 16 / 9;
	border-radius: 7px;
}

.single-entry__body,
.single-page .single-entry__body {
	max-width: 740px;
	margin: 32px auto 0;
	font-size: 1.08rem;
	line-height: 1.78;
}

.single-entry__body > p:first-child {
	font-size: 1.15em;
	font-weight: 500;
	line-height: 1.7;
}

.single-entry__body h2,
.single-entry__body h3,
.single-entry__body h4 {
	font-family: var(--font-display);
	font-weight: 780;
	letter-spacing: -0.035em;
}

.single-entry__body h2 {
	margin-top: 2.15em;
	font-size: 1.8rem;
	line-height: 1.17;
}

.single-entry__body blockquote {
	margin: 2em 0;
	padding: 6px 0 6px 24px;
	border-left: 5px solid var(--section-accent, var(--red));
	color: var(--navy);
	font-size: 1.25rem;
	font-weight: 650;
	line-height: 1.5;
}

.single-tags--after-content {
	max-width: 740px;
	margin-right: auto;
	margin-left: auto;
}

.single-related {
	margin-top: 58px;
	padding-top: 30px;
	border-top: 3px solid var(--text);
}

.single-related__grid {
	gap: 24px;
}

/* Footer. */

.site-footer {
	padding: 48px 0 28px;
	border: 0;
	background: var(--navy-dark);
	color: #fff;
}

.site-footer__brand {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer .site-logo {
	background: transparent;
	color: #fff;
}

.site-footer .site-logo__image-wrap {
	width: min(230px, 100%);
	padding: 7px 10px;
	border-radius: 3px;
}

.site-footer .site-logo__brand-mark {
	background: var(--red);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 26px;
	padding: 32px 0;
}

.site-footer .footer-group h2,
.site-footer .footer-group__title-link {
	color: #fff;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer .footer-group h2::after {
	background: var(--footer-group-accent, var(--red));
}

.site-footer .footer-group ul a {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.78rem;
}

.site-footer__search,
.site-footer__bottom {
	border-color: rgba(255, 255, 255, 0.14);
}

.site-footer__search-input {
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.site-footer__search-button {
	background: var(--red);
}

.site-footer__bottom p,
.site-footer__utility-links a {
	color: rgba(255, 255, 255, 0.62);
}

/*
 * 0.1.57 editorial refinement.
 *
 * The hierarchy is based on recurring patterns measured across established
 * Croatian news sites: a restrained sans-serif interface, a distinct
 * editorial face for headlines, compact rules instead of floating cards and
 * one predictable spacing/control scale. No publisher-specific trade dress is
 * reproduced here.
 */

html {
	scroll-padding-top: 136px;
}

.site-header {
	box-shadow: 0 1px 0 rgba(8, 31, 43, 0.1);
}

.site-header__main,
.site-header__masthead-inner {
	min-height: 84px;
}

.site-logo--header .site-logo__brand,
.site-logo__brand {
	font-size: clamp(1.9rem, 2.8vw, 2.28rem);
	font-weight: 800;
	letter-spacing: -0.058em;
}

.site-logo__brand-mark {
	border-radius: 1px;
}

.site-header__identity p {
	font-size: 0.79rem;
	font-weight: 700;
	letter-spacing: 0.085em;
}

.site-header__identity span,
.site-header__masthead-side time {
	font-size: 0.78rem;
}

.site-header__search {
	width: min(100%, 224px);
	height: 42px;
	border-color: var(--border-strong);
	border-radius: var(--radius-md);
	background: #fff;
}

.site-header__search:focus-within {
	border-color: var(--navy);
	box-shadow: 0 0 0 3px rgba(16, 47, 64, 0.09);
}

.site-header__search input {
	padding-left: 14px;
	font-size: 0.82rem;
}

.site-header__search button {
	min-width: 42px;
	height: 42px;
	border-radius: 0;
}

.site-header__nav-inner,
.site-nav > a,
.site-nav__utility > a {
	min-height: 52px;
}

.site-nav {
	gap: clamp(18px, 1.8vw, 28px);
	font-size: 0.81rem;
	font-weight: 700;
	letter-spacing: 0.045em;
}

.site-nav__utility {
	padding-right: 20px;
	margin-right: 3px;
}

.site-nav__utility > a {
	padding: 0 14px;
}

.site-nav > a::after {
	height: 4px;
}

.site-header .site-nav__utility a.site-nav__latest {
	padding-right: 16px;
	padding-left: 16px;
}

.homepage-shell .editorial-block--top {
	padding: var(--space-10) 0 var(--space-12);
}

.editorial-block--top .section-nav {
	gap: var(--space-8);
	margin-bottom: var(--space-8);
	padding-bottom: var(--space-5);
}

.section-nav__eyebrow,
.archive-intro__eyebrow,
.single-hero__label,
.archive-list__label,
.story-meta-line {
	font-family: var(--font-ui);
}

.homepage-shell .section-nav__title,
.archive-intro__title,
.homepage-shell .lead-story__headline,
.archive-hero .lead-story__headline,
.side-feature__title,
.root-section__heading-row h2,
.root-section__lead h3,
.archive-list__title,
.single-hero__title,
.single-related-card__title {
	font-family: var(--font-display);
}

.homepage-shell .section-nav__title {
	font-size: clamp(2.55rem, 4vw, 3.55rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
}

.editorial-block--top .section-tabs,
.root-section__tabs {
	gap: 6px 24px;
}

.editorial-block--top .section-tabs a,
.root-section__tabs a,
.archive-intro__tabs a,
.single-context__tabs a {
	min-height: 40px;
	font-size: 0.82rem;
	font-weight: 600;
}

.editorial-block__grid--top {
	gap: var(--space-8) !important;
}

.lead-story--hero .media-block,
.side-feature__media,
.root-section__lead-media,
.archive-list__media,
.single-entry__media,
.single-related-card__media {
	border-radius: var(--radius-sm);
}

.homepage-shell .lead-story__headline,
.archive-hero .lead-story__headline {
	margin: var(--space-3) 0 var(--space-2);
	font-size: clamp(2.05rem, 2.75vw, 2.55rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.lead-story__excerpt {
	max-width: 60ch;
	font-size: 1rem;
	line-height: 1.6;
}

.story-meta-line {
	margin-top: var(--space-3);
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.055em;
}

.side-feature {
	gap: var(--space-3);
	padding-bottom: var(--space-4);
	border-bottom-width: 1px;
}

.side-feature__title {
	margin-top: var(--space-2);
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.27;
	letter-spacing: -0.02em;
}

.story-card {
	gap: var(--space-3);
	padding: var(--space-4) 0;
}

.story-card__title {
	font-size: 0.92rem;
	font-weight: 650;
	line-height: 1.34;
	letter-spacing: -0.01em;
}

.panel-more,
.root-section__all,
.archive-load-more__button {
	min-height: 44px;
	padding: 0 18px;
	border-color: var(--border-strong);
	border-radius: var(--radius-sm);
	font-family: var(--font-ui);
	font-size: 0.74rem;
	font-weight: 750;
	letter-spacing: 0.065em;
}

.editorial-block--top .latest-panel {
	padding: var(--space-6) var(--space-5) var(--space-5);
	border-radius: var(--radius-md);
	box-shadow: 0 16px 34px rgba(8, 31, 43, 0.13);
}

.latest-panel__tabs {
	min-height: 36px;
}

.latest-panel__tab,
.editorial-block--top .latest-panel__tab {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.07em;
}

.editorial-block--top .latest-panel__row {
	padding: var(--space-4) 0;
}

.editorial-block--top .latest-panel__headline {
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.38;
}

.editorial-block--top .latest-panel .panel-more {
	margin-top: var(--space-4);
}

.root-section {
	padding: var(--space-16) 0;
}

.root-section__header {
	gap: var(--space-3);
	margin-bottom: var(--space-8);
}

.root-section__heading-row {
	padding-bottom: var(--space-4);
	border-bottom: 1px solid var(--border-strong);
}

.root-section__heading-row h2 {
	position: relative;
	padding-left: 17px;
	font-size: clamp(2.2rem, 3.1vw, 2.85rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.035em;
}

.root-section__heading-row h2::before {
	content: "";
	position: absolute;
	top: 0.13em;
	bottom: 0.09em;
	left: 0;
	width: 5px;
	background: var(--section-accent, var(--red));
}

.root-section__all {
	min-height: 44px;
	padding: 0 15px;
}

.root-section__grid {
	gap: clamp(36px, 4vw, 52px) !important;
}

.root-section__lead h3 {
	margin: var(--space-3) 0 var(--space-3);
	font-size: clamp(1.8rem, 2.35vw, 2.25rem);
	font-weight: 700;
	line-height: 1.16;
	letter-spacing: -0.027em;
}

.root-section__lead-excerpt {
	font-size: 0.96rem;
	line-height: 1.62;
}

.root-section__list {
	border-top: 1px solid var(--text);
}

.root-section-card,
.root-section-card:first-child {
	gap: var(--space-4);
	padding: var(--space-4) 0;
}

.root-section-card h3 {
	font-family: var(--font-display);
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.36;
	letter-spacing: -0.012em;
}

.archive-intro {
	padding: var(--space-12) 0 var(--space-16);
	background: linear-gradient(180deg, #f5f6f6 0%, #fff 100%);
}

.archive-intro__nav {
	margin-bottom: var(--space-8);
}

.archive-intro__header {
	margin-bottom: var(--space-8);
}

.archive-intro__title {
	font-size: clamp(3rem, 5.2vw, 4.35rem);
	font-weight: 700;
	line-height: 1.03;
	letter-spacing: -0.042em;
}

.archive-intro__description {
	margin-top: var(--space-4);
	font-size: 1.05rem;
	line-height: 1.65;
}

.archive-hero__grid {
	gap: clamp(30px, 3.5vw, 46px) !important;
}

.archive-main {
	padding: var(--space-12) 0 var(--space-16);
}

.archive-list {
	border-top-width: 2px;
}

.archive-list__item {
	gap: var(--space-6);
	padding: var(--space-6) 0;
}

.archive-list__title {
	font-size: 1.28rem;
	font-weight: 650;
	line-height: 1.28;
	letter-spacing: -0.018em;
}

.archive-list__excerpt {
	margin-top: var(--space-2);
	font-size: 0.94rem;
	line-height: 1.58;
}

.archive-rail .latest-panel,
.single-rail .latest-panel {
	padding: var(--space-6);
	border: 1px solid var(--border-strong);
	border-top: 5px solid var(--section-accent, var(--red));
	border-radius: var(--radius-sm);
	background: #fff;
	box-shadow: var(--shadow-card);
}

.archive-rail .latest-panel__row,
.single-rail .latest-panel__row {
	padding: var(--space-4) 0;
}

.archive-rail .panel-more,
.single-rail .panel-more {
	min-height: 44px;
	font-size: 0.72rem;
}

.single-page {
	padding: var(--space-10) 0 72px;
}

.single-context {
	margin-bottom: var(--space-8);
	padding-bottom: var(--space-4);
}

.single-hero__inner,
.single-page--with-rail .single-hero__inner {
	max-width: 900px;
}

.single-hero__title,
.single-page .single-hero__title {
	max-width: 880px;
	font-size: clamp(2.9rem, 4.45vw, 4rem);
	font-weight: 600;
	line-height: 1.045;
	letter-spacing: -0.038em;
}

.single-hero__dek {
	max-width: 780px;
	margin-top: var(--space-6);
	font-size: clamp(1.08rem, 1.55vw, 1.25rem);
	line-height: 1.62;
}

.single-hero__meta {
	margin-top: var(--space-6);
	padding-top: var(--space-4);
	font-size: 0.76rem;
	line-height: 1.5;
}

.single-hero__utility {
	margin-top: var(--space-5);
}

.single-hero__utility-link {
	width: 44px;
	height: 44px;
}

.single-shell__grid {
	grid-template-columns: minmax(0, 820px) 320px !important;
	gap: clamp(48px, 6vw, 80px) !important;
	margin-top: var(--space-10);
}

.single-entry,
.single-page .single-entry {
	max-width: 820px;
}

.single-entry__media-wrap {
	margin-bottom: var(--space-6);
}

.single-entry__body,
.single-page .single-entry__body {
	max-width: 740px;
	margin-top: var(--space-8);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.76;
}

.single-entry__body > p {
	margin-bottom: 1.2em;
	font-weight: 400;
}

.single-entry__body > p:first-child {
	font-size: 1.06em;
	font-weight: 500;
	line-height: 1.72;
}

.single-entry__body h2,
.single-entry__body h3,
.single-entry__body h4 {
	font-weight: 700;
	letter-spacing: -0.025em;
}

.single-entry__body h2 {
	margin-top: 2em;
	font-size: 1.9rem;
	line-height: 1.22;
}

.single-entry__body blockquote {
	padding: var(--space-2) 0 var(--space-2) var(--space-6);
	border-left-width: 4px;
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.55;
}

.single-related {
	margin-top: var(--space-16);
	padding-top: var(--space-8);
	border-top-width: 2px;
}

.single-related__grid {
	gap: var(--space-6);
}

.single-related-card__title {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.36;
}

.site-footer {
	padding-top: 56px;
}

.site-footer .footer-group h2,
.site-footer .footer-group__title-link {
	font-size: 0.78rem;
	letter-spacing: 0.075em;
}

.site-footer .footer-group ul a {
	font-size: 0.82rem;
	line-height: 1.55;
}

@media (max-width: 1160px) {
	.site-header__main,
	.site-header__masthead-inner {
		grid-template-columns: minmax(200px, 0.72fr) minmax(230px, 1fr) minmax(260px, 0.88fr);
		gap: 22px;
	}

	.site-header__identity {
		padding-left: 22px;
	}

	.site-nav {
		gap: 15px;
	}

	.editorial-block__grid--top {
		grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.8fr) !important;
	}

	.editorial-block__grid--top > .latest-panel--desktop {
		grid-column: 1 / -1;
	}

	.editorial-block--top .latest-panel--desktop .latest-panel__panel.is-active {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 24px;
	}

	.root-section__grid {
		grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr) !important;
		gap: 38px !important;
	}

	.footer-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	html {
		scroll-padding-top: 64px;
	}

	.site-header__main,
	.site-header__masthead-inner {
		display: flex;
		align-items: center;
		min-height: 64px;
	}

	.site-header__identity,
	.site-header__masthead-side {
		display: none;
	}

	.site-header__nav-bar {
		position: absolute;
		inset: 0 0 auto;
		background: transparent;
		pointer-events: none;
	}

	.site-header__nav-inner {
		align-items: center;
		justify-content: flex-end;
		min-height: 64px;
	}

	.site-header__nav-inner .site-nav {
		display: none;
	}

	.site-header__controls {
		display: flex;
		pointer-events: auto;
	}

	.nav-toggle {
		display: inline-flex;
		width: 44px;
		height: 44px;
		border-color: transparent;
		border-radius: var(--radius-sm);
		background: transparent;
	}

	.site-header__mobile-panel {
		inset: 64px 0 auto;
		min-height: calc(100dvh - 64px);
		max-height: calc(100dvh - 64px);
		padding-bottom: 28px;
		border-top: 1px solid var(--border);
		box-shadow: 0 20px 45px rgba(9, 36, 51, 0.15);
		overflow-y: auto;
		overscroll-behavior: contain;
	}

	.site-header__mobile-links a.is-current {
		color: var(--nav-item-accent, var(--red));
	}

	.archive-main__grid,
	.single-shell__grid {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.archive-rail,
	.single-rail {
		position: static;
	}
}

@media (max-width: 880px) {
	.editorial-block--top .section-nav {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.editorial-block__grid--top,
	.root-section__grid,
	.archive-hero__grid {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.editorial-block__grid--top .side-column {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 24px;
	}

	.editorial-block__grid--top .side-feature {
		align-self: start;
	}

	.editorial-block--top .latest-panel--desktop {
		display: none;
	}

	.editorial-block--top .latest-panel--mobile-end {
		display: block;
		margin-top: 24px;
	}

	.root-section__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 24px;
	}

	.root-section-card:nth-child(n + 3),
	.latest-panel--mobile-end .latest-panel__row:nth-child(n + 4) {
		display: none;
	}

	.archive-list__item {
		grid-template-columns: 220px minmax(0, 1fr);
	}
}

@media (max-width: 640px) {
	.layout-shell {
		width: min(100% - 24px, var(--shell));
	}

	.site-logo--header .site-logo__brand,
	.site-logo__brand {
		font-size: 1.72rem;
	}

	.site-logo--header .site-logo__image-wrap {
		width: 196px;
	}

	.homepage-shell .editorial-block--top {
		padding: 24px 0 30px;
	}

	.editorial-block--top .section-nav {
		margin-bottom: 20px;
		padding-bottom: 13px;
	}

	.homepage-shell .section-nav__title {
		font-size: 2.3rem;
	}

	.editorial-block--top .section-tabs {
		width: calc(100vw - 12px);
		gap: 8px;
		padding-right: 24px;
		-webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 30px), transparent 100%);
		mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 30px), transparent 100%);
	}

	.editorial-block--top .section-tabs a {
		min-height: 44px;
		padding: 0 15px;
		border: 1px solid var(--border);
		border-radius: 999px;
		background: #fff;
	}

	.editorial-block--top .section-tabs a::after {
		display: none;
	}

	.editorial-block__grid--top {
		gap: 20px !important;
	}

	.homepage-shell .lead-story__headline {
		font-size: clamp(1.8rem, 7.7vw, 2.1rem);
		line-height: 1.12;
		letter-spacing: -0.028em;
	}

	.lead-story__excerpt {
		display: none;
	}

	.editorial-block__grid--top .side-column {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
	}

	.side-feature {
		display: grid;
		grid-template-columns: 128px minmax(0, 1fr);
		gap: 13px;
		align-items: start;
		padding: 14px 0;
	}

	.side-feature__media {
		aspect-ratio: 4 / 3;
	}

	.side-feature .story-meta-line {
		margin-top: 0;
	}

	.side-feature__title {
		font-size: 1rem;
	}

	.story-card {
		grid-template-columns: 104px minmax(0, 1fr);
		padding: 13px 0;
	}

	.editorial-block--top .latest-panel {
		padding: 18px 16px;
	}

	.root-section {
		padding: 36px 0 40px;
	}

	.root-section__header {
		margin-bottom: 20px;
	}

	.root-section__heading-row h2 {
		font-size: 2rem;
	}

	.root-section__all {
		min-height: 44px;
		font-size: 0.7rem;
	}

	.root-section__tabs {
		width: calc(100vw - 12px);
		gap: 14px;
		padding-right: 24px;
		overflow-x: auto;
	}

	.root-section__tabs a {
		min-height: 44px;
	}

	.root-section__grid {
		gap: 24px !important;
	}

	.root-section__lead h3 {
		font-size: 1.65rem;
		line-height: 1.2;
	}

	.root-section__lead-excerpt {
		display: none;
	}

	.root-section__list {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
	}

	.root-section-card {
		grid-template-columns: 110px minmax(0, 1fr);
		gap: 13px;
		padding: 13px 0;
	}

	.root-section-card h3 {
		font-size: 0.94rem;
	}

	.root-section-card:nth-child(n + 3) {
		display: none;
	}

	.archive-intro {
		padding: 26px 0 34px;
	}

	.archive-intro__title {
		font-size: 2.75rem;
	}

	.archive-intro__description {
		font-size: 0.94rem;
	}

	.archive-main {
		padding: 30px 0 46px;
	}

	.archive-list__item {
		grid-template-columns: 118px minmax(0, 1fr);
		gap: 14px;
		padding: 16px 0;
	}

	.archive-list__title {
		font-size: 1rem;
		line-height: 1.22;
	}

	.archive-list__excerpt {
		display: none;
	}

	.archive-list__meta {
		margin-top: 7px;
	}

	.single-page {
		padding: 24px 0 48px;
	}

	.single-hero__title,
	.single-page .single-hero__title {
		font-size: clamp(2.15rem, 9.2vw, 2.7rem);
		line-height: 1.07;
		letter-spacing: -0.034em;
	}

	.single-hero__dek {
		margin-top: 14px;
		font-size: 1rem;
		line-height: 1.55;
	}

	.single-hero__meta {
		flex-direction: column;
		gap: 5px;
	}

	.single-shell__grid {
		margin-top: 24px;
	}

	.single-entry__body,
	.single-page .single-entry__body {
		margin-top: 24px;
		font-size: 1.05rem;
		line-height: 1.78;
	}

	.single-entry__body h2 {
		font-size: 1.55rem;
	}

	.single-related__grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 20px;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@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,
	.single-context,
	.single-rail,
	.single-hero__utility {
		display: none !important;
	}
}
