:root {
	--edition-shell-max: 1440px;
	--edition-shell-edge: clamp(10px, 1.4vw, 24px);
	--edition-shell-radius: 12px;
	--edition-shell-card-shadow: 0 10px 30px rgba(10, 20, 45, 0.12);
	--edition-shell-header-h: 72px;
	--edition-shell-ticker-h: 52px;
}

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

html,
body {
	margin: 0;
	overflow-x: hidden;
}

body.edition-shell-active {
	background: var(--surface);
	color: var(--ink);
	padding-bottom: calc(var(--edition-shell-ticker-h) + 20px) !important;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.edition-shell-active .site-header {
	position: sticky;
	top: 0;
	z-index: 1300;
	background: #fff;
	border-bottom: 1px solid var(--line);
	box-shadow: 0 8px 26px rgba(10, 20, 45, 0.08);
}

/* Keep the accessibility shortcut available to keyboard users without affecting header layout. */
body.edition-shell-active .skip-link {
	position: fixed !important;
	top: 0 !important;
	left: 0.75rem !important;
	transform: translateY(-150%) !important;
	z-index: 9999 !important;
	transition: transform 160ms ease !important;
}

body.edition-shell-active .skip-link:focus-visible {
	transform: translateY(0) !important;
}

body.edition-shell-active .homepage-newsletter-section .newsletter-wrap {
	width: min(1440px, calc(100vw - 20px));
	margin-inline: auto;
}

body.edition-shell-active .homepage-newsletter-section .homepage-newsletter {
	width: 100%;
	padding: clamp(1.5rem, 3vw, 2.5rem);
}

body.edition-shell-active .site-header__top,
body.edition-shell-active .site-header__nav-inner,
body.edition-shell-active .site-main .container,
body.edition-shell-active .site-footer .container,
body.edition-shell-active .copyright .container {
	width: min(var(--edition-shell-max), calc(100vw - (2 * var(--edition-shell-edge))));
	margin-inline: auto;
	padding-inline: 0;
}

body.edition-shell-active .site-header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--edition-shell-header-h);
	gap: 12px;
}

body.edition-shell-active .brand {
	display: inline-flex;
	align-items: center;
}

body.edition-shell-active .brand__logo,
body.edition-shell-active .brand__logo {
	height: 44px;
	width: auto;
	max-width: 290px;
}

body.edition-shell-active .brand-row__actions {
	display: inline-flex;
	gap: 8px;
	flex-shrink: 0;
}

body.edition-shell-active .site-header .search-form {
	display: none;
}

body.edition-shell-active .site-header .search-form.is-open {
	display: flex;
	align-items: center;
	gap: 10px;
}

body.edition-shell-active .site-header__nav {
	border-top: 1px solid var(--line);
}

body.edition-shell-active .site-header__nav-inner {
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	scrollbar-width: none;
}

body.edition-shell-active .site-header__nav-inner::-webkit-scrollbar {
	display: none;
}

body.edition-shell-active .primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	gap: 8px;
	align-items: center;
	min-width: 100%;
}

body.edition-shell-active .primary-menu > li {
	margin: 0;
}

body.edition-shell-active .primary-menu > li > a,
body.edition-shell-active .primary-menu > li > span {
	display: inline-flex;
	height: 32px;
	align-items: center;
	padding: 0 12px;
	border-radius: 999px;
	text-decoration: none;
	white-space: nowrap;
	font-size: 0.9rem;
	border: 1px solid transparent;
	transition: border-color 150ms ease, color 150ms ease;
}

body.edition-shell-active .primary-menu > li > a:hover,
body.edition-shell-active .primary-menu > li.current-menu-item > a,
body.edition-shell-active .primary-menu > li.current_page_item > a {
	border-color: var(--line);
}

body.edition-shell-active .site-main {
	padding-top: 26px;
	padding-bottom: 36px;
}

body.edition-shell-active .news-section + .news-section {
	margin-top: 30px;
}

body.edition-shell-active .section-heading {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 12px;
	margin-bottom: 14px;
}

body.edition-shell-active .section-heading h2 {
	margin: 0;
	font-size: clamp(1.45rem, 2.7vw, 2rem);
	letter-spacing: -0.01em;
}

body.edition-shell-active .section-heading a {
	font-size: 0.92rem;
	text-decoration: none;
}

body.edition-shell-active .news-card-grid,
body.edition-shell-active .news-card-grid--compact {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 16px;
}

body.edition-shell-active .news-card {
	height: 100%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--edition-shell-radius);
	box-shadow: var(--edition-shell-card-shadow);
	overflow: hidden;
	transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

body.edition-shell-active .news-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(10, 20, 45, 0.15);
	border-color: color-mix(in srgb, var(--blue) 32%, var(--line));
}

body.edition-shell-active .news-card::before {
	content: '';
	display: block;
	height: 4px;
	background: linear-gradient(90deg, var(--blue), transparent);
}

body.edition-shell-active .news-card__image-wrap {
	margin: 0;
	line-height: 0;
}

body.edition-shell-active .news-card__image-wrap img,
body.edition-shell-active .news-card__fallback {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

body.edition-shell-active .news-card__body {
	padding: 12px 14px 15px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

body.edition-shell-active .news-card__kicker {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

body.edition-shell-active .news-card__title {
	margin: 0;
	font-size: 1.07rem;
	line-height: 1.25;
}

body.edition-shell-active .news-card__title a {
	text-decoration: none;
}

body.edition-shell-active .news-card__meta {
	margin: 0;
	font-size: 0.84rem;
	color: var(--ink-soft);
}

body.edition-shell-active .news-card__excerpt {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.95rem;
	line-height: 1.45;
}

body.edition-shell-active .news-card--lead {
	grid-column: span 8;
}

body.edition-shell-active .news-card--lead .news-card__title {
	font-size: clamp(1.52rem, 2.8vw, 2.08rem);
	line-height: 1.16;
}

body.edition-shell-active .news-card--secondary {
	grid-column: span 6;
}

body.edition-shell-active .news-card--compact {
	grid-column: span 4;
}

body.edition-shell-active .news-card--featured .news-card__title {
	font-size: 1.04rem;
}

body.edition-shell-active .myecomnews-home-hero {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
	gap: 15px;
	align-items: start;
}

body.edition-shell-active .myecomnews-home-hero__main {
	min-width: 0;
}

body.edition-shell-active .myecomnews-home-hero__rail {
	display: grid;
	gap: 10px;
	min-width: 0;
}

body.edition-shell-active .news-card--hero-rail {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 10px;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

body.edition-shell-active .news-card--hero-rail .news-card__image-wrap img,
body.edition-shell-active .news-card--hero-rail .news-card__fallback {
	aspect-ratio: 3 / 2;
}

body.edition-shell-active .news-card--hero-rail .news-card__body {
	padding: 0;
}

body.edition-shell-active .news-card--hero-rail .news-card__title {
	font-size: 0.98rem;
	line-height: 1.3;
}

body.edition-shell-active .news-card--hero-rail .news-card__excerpt,
body.edition-shell-active .news-card--hero-rail .news-card__meta {
	display: none;
}

body.edition-shell-active .two-col-layout {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
	gap: 16px;
}

body.edition-shell-active .site-news-ticker {
	position: fixed !important;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1400 !important;
	height: var(--edition-shell-ticker-h);
	background: var(--red) !important;
	color: #fff !important;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.32);
	box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.14);
}

body.edition-shell-active .site-news-ticker--global .news-strip,
body.edition-shell-active .site-news-ticker--global .news-strip__inner,
body.edition-shell-active .site-news-ticker--global .news-strip__track {
	height: 100%;
	margin: 0;
	overflow: hidden;
}

body.edition-shell-active .site-news-ticker--global .news-strip {
	border-top: 0 !important;
	border-bottom: 0 !important;
}

body.edition-shell-active .site-news-ticker--global .news-strip__inner {
	display: flex !important;
	align-items: center;
	width: max-content !important;
	gap: 14px;
	white-space: nowrap;
	will-change: transform;
	animation: edition-news-strip-loop var(--news-ticker-duration, 24s) linear infinite !important;
	animation-play-state: running;
	padding: 0 10px;
}

body.edition-shell-active .site-news-ticker--global .news-strip::before,
body.edition-shell-active .site-news-ticker--global .news-strip::after {
	display: none !important;
}

body.edition-shell-active .site-news-ticker--global .news-strip__inner:hover,
body.edition-shell-active .site-news-ticker--global .news-strip__inner:focus-within {
	animation-play-state: running;
}

body.edition-shell-active .site-news-ticker--global .news-strip__item {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	color: #fff !important;
	text-decoration: none;
	font-size: 0.93rem;
	line-height: 1.15;
	white-space: nowrap;
}

body.edition-shell-active .site-news-ticker--global .news-strip__item:visited,
body.edition-shell-active .site-news-ticker--global .news-strip__item:active {
	color: #fff !important;
}

body.edition-shell-active .site-news-ticker--global .news-strip__label {
	padding: 0 7px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

body.edition-shell-active .site-news-ticker--global .news-strip__label--breaking {
	background: rgba(255, 255, 255, 0.18);
}

body.edition-shell-active .site-news-ticker--global .news-strip__label--latest {
	background: rgba(255, 255, 255, 0.14);
}

body.edition-shell-active .site-footer {
	background: #fff !important;
	color: #000 !important;
	border-top: 1px solid var(--line);
	margin-top: 28px;
}

body.edition-shell-active .site-footer h3,
body.edition-shell-active .site-footer a,
body.edition-shell-active .site-footer p,
body.edition-shell-active .site-footer__tagline,
body.edition-shell-active .copyright {
	color: #000 !important;
}

body.edition-shell-active .site-footer a {
	text-decoration-color: rgba(0, 0, 0, 0.45);
}

body.edition-shell-active .site-footer__inner {
	padding-top: 28px;
	padding-bottom: 26px;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 20px;
}

body.edition-shell-active .copyright {
	border-top: 1px solid var(--line);
	padding: 12px 0;
}

.myecomnews-intent-widget {
	position: fixed;
	right: clamp(14px, 2vw, 28px);
	bottom: calc(var(--edition-shell-ticker-h) + 16px);
	z-index: 1450;
}

.myecomnews-intent-widget__launcher {
	width: 54px;
	height: 54px;
	margin-left: auto;
	display: grid;
	place-items: center;
	padding: 0;
	border: 2px solid #fff;
	border-radius: 50%;
	background: var(--red);
	box-shadow: 0 10px 24px rgba(10, 20, 45, 0.24);
	cursor: pointer;
}

.myecomnews-intent-widget__launcher img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

.myecomnews-intent-widget__panel {
	position: absolute;
	right: 0;
	bottom: 66px;
	width: min(360px, calc(100vw - 28px));
	padding: 22px;
	background: #fff;
	border: 1px solid var(--line);
	border-top: 4px solid var(--red);
	box-shadow: 0 20px 52px rgba(10, 20, 45, 0.23);
}

.myecomnews-intent-widget__close {
	position: absolute;
	top: 10px;
	right: 12px;
	border: 0;
	background: transparent;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.myecomnews-intent-widget__eyebrow {
	margin: 0 28px 7px 0;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: var(--red);
}

.myecomnews-intent-widget h2 {
	margin: 0;
	font-size: 1.42rem;
	line-height: 1.1;
}

.myecomnews-intent-widget__intro,
.myecomnews-intent-widget__form p,
.myecomnews-intent-widget__status {
	margin: 8px 0 0;
	color: var(--ink-soft);
	font-size: 0.9rem;
	line-height: 1.4;
}

.myecomnews-intent-widget__choices {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: 16px;
}

.myecomnews-intent-widget__choices button,
.myecomnews-intent-widget__form button[type='submit'] {
	min-height: 40px;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--ink);
	font: inherit;
	font-size: 0.84rem;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}

.myecomnews-intent-widget__choices button {
	padding: 8px 10px;
}

.myecomnews-intent-widget__choices button:hover,
.myecomnews-intent-widget__choices button:focus-visible {
	border-color: var(--red);
	color: var(--red);
}

.myecomnews-intent-widget__form {
	margin-top: 16px;
}

.myecomnews-intent-widget__form label {
	display: block;
	margin-top: 12px;
	font-size: 0.85rem;
	line-height: 1.4;
}

.myecomnews-intent-widget__form button[type='submit'] {
	width: 100%;
	margin-top: 14px;
	padding: 10px 12px;
	border-color: var(--red);
	background: var(--red);
	color: #fff;
	text-align: center;
}

.myecomnews-intent-widget__form button[disabled] {
	opacity: 0.65;
	cursor: wait;
}

@keyframes edition-news-strip-loop {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-1 * var(--news-ticker-distance, 1000px)));
	}
}

@media (max-width: 1200px) {
	body.edition-shell-active .news-card-grid,
	body.edition-shell-active .news-card-grid--compact {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	body.edition-shell-active .news-card--lead,
	body.edition-shell-active .news-card--secondary,
	body.edition-shell-active .news-card--compact {
		grid-column: span 6;
	}

	body.edition-shell-active .myecomnews-home-hero {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	body.edition-shell-active .news-card-grid,
	body.edition-shell-active .news-card-grid--compact,
	body.edition-shell-active .two-col-layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.edition-shell-active .news-card--lead,
	body.edition-shell-active .news-card--secondary,
	body.edition-shell-active .news-card--compact,
	body.edition-shell-active .news-card-grid--compact .news-card--compact {
		grid-column: span 1;
	}

	body.edition-shell-active .site-footer__inner {
		grid-template-columns: 1fr;
	}

	body.edition-shell-active .section-heading {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	:root {
		--edition-shell-ticker-h: 48px;
	}

	body.edition-shell-active {
		padding-bottom: 60px !important;
	}

	body.edition-shell-active .news-card-grid,
	body.edition-shell-active .news-card-grid--compact,
	body.edition-shell-active .two-col-layout {
		grid-template-columns: 1fr;
	}

	body.edition-shell-active .news-card--lead .news-card__title,
	body.edition-shell-active .news-card--secondary .news-card__title {
		font-size: 1.35rem;
	}

	body.edition-shell-active .myecomnews-home-hero__rail {
		display: none;
	}

	.myecomnews-intent-widget__panel {
		bottom: 62px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.myecomnews-intent-widget,
	.myecomnews-intent-widget * {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}
