:root {
	--eb-navy: #081a31;
	--eb-navy-soft: #102a4c;
	--eb-blue: #1459d9;
	--eb-blue-dark: #0f46ad;
	--eb-red: #d92d3a;
	--eb-gold: #f0b53a;
	--eb-ink: #172033;
	--eb-muted: #667085;
	--eb-subtle: #f5f7fb;
	--eb-line: #e3e8ef;
	--eb-white: #ffffff;
	--eb-on-dark: #ffffff;
	--eb-radius-sm: 8px;
	--eb-radius: 14px;
	--eb-radius-lg: 22px;
	--eb-shadow-sm: 0 6px 20px rgba(8, 26, 49, 0.06);
	--eb-shadow: 0 18px 45px rgba(8, 26, 49, 0.11);
	--eb-width: 1220px;
	--eb-serif: Georgia, "Times New Roman", serif;
	--eb-sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body.ebams-home {
	margin: 0;
	color: var(--eb-ink);
	background: var(--eb-white);
	font-family: var(--eb-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

body.ebams-home a {
	color: inherit;
	text-decoration: none;
}

body.ebams-home img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.ebams-home button,
body.ebams-home input {
	font: inherit;
}

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

.eb-skip {
	position: fixed;
	top: -100px;
	left: 16px;
	z-index: 999;
	padding: 11px 15px;
	border-radius: var(--eb-radius-sm);
	background: var(--eb-white);
	box-shadow: var(--eb-shadow);
}

.eb-skip:focus {
	top: 16px;
}

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

.eb-utility {
	color: #c9d5e4;
	background: var(--eb-navy);
	font-size: 12px;
}

.eb-utility .eb-container,
.eb-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.eb-utility .eb-container {
	min-height: 34px;
}

.eb-utility nav {
	display: flex;
	gap: 24px;
}

.eb-utility a:hover,
.eb-utility a:focus-visible {
	color: var(--eb-on-dark);
}

.eb-header {
	position: sticky;
	top: 0;
	z-index: 40;
	border-bottom: 1px solid rgba(227, 232, 239, 0.9);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(14px);
}

.eb-header__inner {
	min-height: 70px;
	gap: 20px;
}

.eb-brand {
	flex: 0 0 auto;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: -0.045em;
	white-space: nowrap;
}

.eb-brand strong {
	color: var(--eb-red);
	font-weight: 850;
}

.eb-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(14px, 1.7vw, 24px);
	margin-left: auto;
	font-size: 13px;
	font-weight: 720;
}

.eb-nav a {
	padding-block: 8px;
	white-space: nowrap;
}

.eb-nav a:hover,
.eb-nav a:focus-visible {
	color: var(--eb-blue);
}

.eb-menu-button {
	display: none;
	min-height: 40px;
	padding: 8px 13px;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius-sm);
	color: var(--eb-ink);
	background: var(--eb-white);
	font-weight: 750;
}

.eb-header-search {
	display: flex;
	flex: 0 1 125px;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius-sm);
	overflow: hidden;
	background: var(--eb-white);
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.eb-header-search:focus-within {
	border-color: var(--eb-blue);
	box-shadow: 0 0 0 3px rgba(20, 89, 217, 0.12);
}

.eb-header-search input {
	width: 80px;
	min-width: 0;
	padding: 8px 4px 8px 10px;
	border: 0;
	outline: 0;
	background: transparent;
	font-size: 13px;
}

.eb-header-search button {
	padding: 6px 10px;
	border: 0;
	color: var(--eb-blue);
	background: transparent;
	cursor: pointer;
	font-size: 18px;
}

.eb-header-search .eb-icon {
	width: 16px;
	height: 16px;
}

.eb-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 20px;
	border: 0;
	border-radius: var(--eb-radius-sm);
	color: var(--eb-on-dark) !important;
	-webkit-text-fill-color: var(--eb-on-dark) !important;
	background: var(--eb-blue);
	box-shadow: 0 5px 15px rgba(20, 89, 217, 0.2);
	font-weight: 780;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.18s ease;
}

.eb-button:hover,
.eb-button:focus-visible {
	background: var(--eb-blue-dark);
	transform: translateY(-1px);
}

.eb-button--small {
	min-height: 38px;
	padding: 8px 14px;
	font-size: 13px;
}

.eb-ticker {
	border-bottom: 1px solid #f5d7da;
	background: #fff8f8;
}

.eb-ticker .eb-container {
	display: flex;
	align-items: center;
	min-height: 42px;
	gap: 18px;
	overflow: hidden;
}

.eb-ticker strong {
	flex: 0 0 auto;
	color: var(--eb-red);
	font-size: 11px;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.eb-ticker__items {
	display: flex;
	gap: 30px;
	overflow: hidden;
	font-size: 13px;
	white-space: nowrap;
}

.eb-ticker__items a:hover {
	color: var(--eb-blue);
}

.eb-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(230px, 0.72fr) minmax(220px, 0.58fr);
	gap: 22px;
	padding-block: 32px 38px;
}

.eb-image {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #e9eef5;
}

.eb-image img {
	transition: transform 0.35s ease;
}

.eb-card:hover .eb-image img,
.eb-lead:hover .eb-image img {
	transform: scale(1.025);
}

.eb-lead,
.eb-card {
	overflow: hidden;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius);
	background: var(--eb-white);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.eb-lead {
	box-shadow: var(--eb-shadow-sm);
}

.eb-card:hover {
	border-color: #cbd5e1;
	box-shadow: var(--eb-shadow-sm);
	transform: translateY(-2px);
}

.eb-lead__content {
	padding: 24px;
}

.eb-lead h1 {
	max-width: 760px;
	margin: 8px 0 12px;
	font-family: var(--eb-serif);
	font-size: clamp(30px, 3.2vw, 46px);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.06;
}

.eb-lead p {
	margin: 0 0 14px;
	color: var(--eb-muted);
}

.eb-lead time,
.eb-card time {
	color: var(--eb-muted);
	font-size: 12px;
}

.eb-kicker,
.eb-eyebrow {
	color: var(--eb-blue);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.eb-secondary {
	display: grid;
	align-content: start;
	gap: 16px;
}

.eb-card > div {
	padding: 17px;
}

.eb-card h2,
.eb-card h3 {
	margin: 7px 0;
	font-family: var(--eb-serif);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.22;
}

.eb-card p {
	margin: 8px 0 0;
	color: var(--eb-muted);
	font-size: 14px;
}

.eb-live {
	padding-left: 22px;
	border-left: 1px solid var(--eb-line);
}

.eb-live h2 {
	margin: 0 0 5px;
	font-size: 17px;
}

.eb-live > a {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 10px;
	padding: 14px 0;
	border-top: 1px solid var(--eb-line);
	font-size: 13px;
	line-height: 1.45;
}

.eb-live > a:hover span {
	color: var(--eb-blue);
}

.eb-live time {
	color: var(--eb-red);
	font-weight: 800;
}

.eb-actions {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
	padding-bottom: 40px;
}

.eb-actions a {
	display: grid;
	grid-template-columns: 34px 1fr;
	align-items: center;
	column-gap: 11px;
	min-height: 84px;
	padding: 15px;
	border: 1px solid var(--eb-line);
	border-radius: 11px;
	background: var(--eb-subtle);
	font-size: 13px;
	font-weight: 780;
	transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.eb-actions a:hover {
	border-color: #b7c8e5;
	background: #eef4ff;
	transform: translateY(-2px);
}

.eb-actions .eb-action-icon {
	grid-row: span 2;
	width: 30px;
	height: 30px;
	padding: 5px;
	border-radius: 8px;
	color: var(--eb-blue);
	background: #e6efff;
}

.eb-actions span {
	color: var(--eb-ink);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
}

.eb-actions small {
	color: var(--eb-muted);
	font-size: 11px;
	font-weight: 600;
}

.eb-trending {
	display: grid;
	grid-template-columns: minmax(240px, 0.8fr) minmax(0, 2fr);
	gap: 48px;
	padding-block: 34px 46px;
	border-top: 1px solid var(--eb-line);
}

.eb-trending header h2 {
	margin: 5px 0 8px;
	font-family: var(--eb-serif);
	font-size: clamp(25px, 3vw, 34px);
	line-height: 1.12;
}

.eb-trending header p {
	margin: 0;
	color: var(--eb-muted);
	font-size: 13px;
}

.eb-trending ol {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eb-trending li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	padding: 5px 16px;
	border-left: 1px solid var(--eb-line);
}

.eb-trending li > span {
	color: var(--eb-blue);
	font-family: var(--eb-serif);
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}

.eb-trending li small {
	color: var(--eb-muted);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.eb-trending li h3 {
	margin: 5px 0 0;
	font-size: 13px;
	line-height: 1.35;
}

.eb-trending li a:hover,
.eb-trending li a:focus-visible {
	color: var(--eb-blue);
}

.eb-briefing {
	color: var(--eb-on-dark);
	background: linear-gradient(135deg, var(--eb-navy), var(--eb-navy-soft));
}

.eb-briefing .eb-container,
.eb-newsletter .eb-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
	padding-block: 42px;
}

.eb-briefing h2,
.eb-newsletter h2 {
	margin: 5px 0;
	font-family: var(--eb-serif);
	font-size: clamp(28px, 3vw, 36px);
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.eb-briefing p {
	margin: 0;
	color: #b9c7d8;
}

body.ebams-home .eb-briefing h2,
body.ebams-home .eb-tools h2,
body.ebams-home .eb-tools-grid h3 {
	color: var(--eb-on-dark) !important;
	-webkit-text-fill-color: var(--eb-on-dark);
	opacity: 1;
}

body.ebams-home .eb-briefing .eb-eyebrow,
body.ebams-home .eb-tools .eb-eyebrow {
	color: #69a4ff !important;
	-webkit-text-fill-color: #69a4ff;
}

.eb-section {
	padding-block: 58px;
	border-bottom: 1px solid var(--eb-line);
}

.eb-section__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 25px;
}

.eb-section__head h2 {
	margin: 5px 0 0;
	font-family: var(--eb-serif);
	font-size: clamp(27px, 3vw, 34px);
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.eb-section__head > a {
	flex: 0 0 auto;
	color: var(--eb-blue);
	font-size: 13px;
	font-weight: 780;
}

.eb-section__note {
	color: var(--eb-muted);
	font-size: 12px;
}

.eb-grid {
	display: grid;
	grid-template-columns: 2fr repeat(3, 1fr);
	gap: 18px;
}

.eb-card--featured .eb-image {
	aspect-ratio: 16 / 8.5;
}

.eb-image__placeholder {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	align-items: flex-end;
	padding: 17px;
	overflow: hidden;
	color: var(--eb-on-dark);
	background: linear-gradient(145deg, #0c284b, #1767d3 62%, #75adf0);
}

.eb-image__placeholder::before,
.eb-image__placeholder::after {
	position: absolute;
	content: "";
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
}

.eb-image__placeholder::before {
	top: -75px;
	right: -45px;
	width: 190px;
	height: 190px;
}

.eb-image__placeholder::after {
	top: -42px;
	right: 15px;
	width: 125px;
	height: 125px;
}

.eb-image__placeholder i {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 38px;
	height: 25px;
	border-top: 3px solid var(--eb-gold);
	border-bottom: 3px solid var(--eb-gold);
}

.eb-image__placeholder b {
	position: relative;
	z-index: 1;
	font-size: 11px;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.eb-countries {
	width: 100%;
	max-width: none;
	background: var(--eb-subtle);
}

.eb-countries > .eb-container {
	width: min(var(--eb-width), calc(100% - 48px));
	margin-inline: auto;
}

.eb-country-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.eb-country-grid a {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 2px 12px;
	padding: 18px;
	border: 1px solid var(--eb-line);
	border-radius: 11px;
	background: var(--eb-white);
	box-shadow: var(--eb-shadow-sm);
	transition: border-color 0.18s ease, transform 0.18s ease;
}

.eb-country-grid a:hover {
	border-color: #b6c8e7;
	transform: translateY(-2px);
}

.eb-country-grid .eb-flag {
	display: block;
	grid-row: span 2;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(7, 26, 51, 0.12);
}

.eb-country-grid strong {
	font-size: 15px;
}

.eb-country-grid small {
	color: var(--eb-muted);
}

.eb-business-grid,
.eb-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.eb-tools {
	padding-block: 58px;
	color: var(--eb-on-dark);
	background: var(--eb-navy);
}

.eb-tools .eb-section__note {
	color: #aebdd0;
}

.eb-tools-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.eb-tools-grid article {
	position: relative;
	padding: 23px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.045);
	transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.eb-tool-icon {
	display: grid;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	place-items: center;
	border: 1px solid rgba(105, 164, 255, 0.28);
	border-radius: 10px;
	color: #8bb8ff;
	background: rgba(20, 89, 217, 0.13);
}

.eb-tool-icon .eb-icon {
	width: 23px;
	height: 23px;
}

.eb-tools-grid article:hover {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.075);
	transform: translateY(-2px);
}

.eb-tools-grid article.is-available {
	position: relative;
	border-color: rgba(105, 164, 255, 0.42);
}

.eb-tools-grid article.is-available h3 a::after {
	position: absolute;
	inset: 0;
	content: "";
}

.eb-tools-grid article > span {
	color: var(--eb-gold);
	font-size: 11px;
	font-weight: 850;
}

.eb-tools-grid h3 {
	margin: 16px 0 8px;
	font-family: var(--eb-serif);
	font-size: 21px;
	line-height: 1.2;
}

.eb-tools-grid p {
	color: #aebdd0;
	font-size: 13px;
}

.eb-tools-grid small {
	color: var(--eb-on-dark);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

body.ebams-home .eb-tools-grid p {
	color: #c2cede !important;
	-webkit-text-fill-color: #c2cede;
}

body.ebams-home .eb-tools-grid small {
	color: var(--eb-on-dark) !important;
	-webkit-text-fill-color: var(--eb-on-dark);
}

.eb-newsletter {
	background: #eaf1ff;
}

.eb-newsletter form {
	width: min(460px, 100%);
}

.eb-newsletter-form__row {
	display: flex;
	gap: 8px;
}

.eb-newsletter-form fieldset {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 14px;
	margin: 13px 0;
	padding: 0;
	border: 0;
}

.eb-newsletter-form legend {
	width: 100%;
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: 780;
}

.eb-newsletter-form fieldset label,
.eb-newsletter-form .eb-newsletter-consent {
	display: inline-flex;
	align-items: flex-start;
	gap: 5px;
	margin: 0;
	color: var(--eb-muted);
	font-size: 11px;
	font-weight: 600;
}

.eb-newsletter-form fieldset input,
.eb-newsletter-form .eb-newsletter-consent input {
	flex: 0 0 auto;
	width: 15px;
	height: 15px;
	margin: 1px 0 0;
	padding: 0;
}

.eb-newsletter-form > small a {
	color: var(--eb-blue);
	text-decoration: underline;
}

.eb-newsletter-pending {
	display: grid;
	gap: 4px;
	width: min(460px, 100%);
	padding: 16px;
	border: 1px dashed #aebdd0;
	border-radius: var(--eb-radius-sm);
	color: var(--eb-muted);
	background: rgba(255, 255, 255, 0.35);
	font-size: 12px;
}

.eb-newsletter-pending strong {
	color: var(--eb-ink);
	font-size: 13px;
}

.eb-newsletter label,
.eb-not-found form label {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 780;
}

.eb-newsletter form > div,
.eb-not-found form > div {
	display: flex;
	gap: 8px;
}

.eb-newsletter input,
.eb-not-found input {
	flex: 1;
	min-width: 0;
	padding: 12px 13px;
	border: 1px solid #b9c8dc;
	border-radius: var(--eb-radius-sm);
	background: var(--eb-white);
	outline: 0;
}

.eb-newsletter input:focus,
.eb-not-found input:focus {
	border-color: var(--eb-blue);
	box-shadow: 0 0 0 3px rgba(20, 89, 217, 0.12);
}

.eb-newsletter small {
	display: block;
	margin-top: 8px;
	color: var(--eb-muted);
}

.eb-footer {
	padding-top: 44px;
	color: #d9e4f2;
	background: var(--eb-navy);
}

.eb-footer > .eb-container {
	display: flex;
	justify-content: space-between;
	gap: 34px;
}

.eb-footer__brand {
	max-width: 360px;
}

.eb-brand--footer {
	color: var(--eb-on-dark);
}

.eb-footer p {
	max-width: 400px;
	color: #9fb0c5;
	font-size: 13px;
}

.eb-footer__links {
	display: grid;
	grid-template-columns: repeat(4, minmax(115px, 1fr));
	gap: 34px;
}

.eb-footer__links nav {
	display: grid;
	align-content: start;
	gap: 8px;
	font-size: 13px;
}

.eb-footer__links h2 {
	margin: 0 0 5px;
	color: var(--eb-on-dark) !important;
	font-family: var(--eb-sans);
	font-size: 12px;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.eb-footer nav a:hover {
	color: var(--eb-on-dark);
}

.eb-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-top: 34px;
	padding-block: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #9fb0c5;
	font-size: 12px;
}

.eb-empty {
	grid-column: 1 / -1;
	padding: 60px 28px;
	border-radius: var(--eb-radius);
	background: var(--eb-subtle);
	text-align: center;
}

.eb-archive {
	padding-block: 48px 72px;
}

.eb-archive__head {
	max-width: 820px;
	margin-bottom: 30px;
}

.eb-country-head {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 18px;
}

.eb-country-head__flag .eb-flag {
	display: block;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	box-shadow: var(--eb-shadow-sm);
}

.eb-country-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: -10px 0 30px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--eb-line);
}

.eb-country-filters a {
	padding: 8px 13px;
	border: 1px solid var(--eb-line);
	border-radius: 20px;
	color: var(--eb-blue);
	background: var(--eb-white);
	font-size: 12px;
	font-weight: 750;
}

.eb-country-filters a:hover,
.eb-country-filters a:focus-visible {
	border-color: var(--eb-blue);
	background: var(--eb-subtle);
}

.eb-archive__head h1,
.eb-page__header h1,
.eb-not-found h1 {
	margin: 8px 0;
	font-family: var(--eb-serif);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.06;
}

.eb-archive__head h1 {
	font-size: clamp(36px, 5vw, 56px);
}

.eb-archive__description {
	color: var(--eb-muted);
}

.eb-archive__grid .eb-card h2 {
	font-size: 23px;
}

.eb-pagination {
	margin-top: 36px;
}

.eb-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 7px;
}

.eb-pagination .page-numbers {
	padding: 8px 12px;
	border: 1px solid var(--eb-line);
	border-radius: 7px;
}

.eb-pagination .current {
	color: var(--eb-on-dark);
	background: var(--eb-blue);
}

.eb-article {
	width: 100%;
	max-width: none;
	margin: 0;
	padding-bottom: 74px;
}

.eb-reading-progress {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100;
	height: 3px;
	pointer-events: none;
}

.eb-reading-progress span {
	display: block;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, var(--eb-blue), #58a0ff);
}

body.ebams-home .eb-article > article,
body.ebams-home .eb-page > article {
	display: block !important;
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.eb-article__header {
	max-width: 1000px;
	padding-block: 44px 30px;
}

.eb-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
	color: var(--eb-muted);
	font-size: 12px;
}

.eb-breadcrumb a:hover {
	color: var(--eb-blue);
}

.eb-article__header h1 {
	margin: 10px 0 18px;
	font-family: var(--eb-serif);
	font-size: clamp(40px, 5.4vw, 60px);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.02;
}

.eb-article__excerpt {
	max-width: 810px;
	color: var(--eb-muted);
	font-size: 21px;
	line-height: 1.55;
}

.eb-byline {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	padding-top: 18px;
	border-top: 1px solid var(--eb-line);
	color: var(--eb-muted);
	font-size: 12px;
}

.eb-byline a {
	color: var(--eb-blue);
	font-weight: 780;
}

.eb-article-countries {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	margin-top: 14px;
	color: var(--eb-muted);
	font-size: 12px;
}

.eb-article-countries a {
	padding: 5px 10px;
	border: 1px solid var(--eb-line);
	border-radius: 16px;
	color: var(--eb-blue);
	background: var(--eb-subtle);
	font-weight: 750;
}

.eb-article__hero {
	max-width: 1120px;
	aspect-ratio: 16 / 8;
	overflow: hidden;
	border-radius: var(--eb-radius-lg);
	background: var(--eb-subtle);
	box-shadow: var(--eb-shadow-sm);
}

.eb-article__layout {
	display: grid;
	grid-template-columns: minmax(0, 740px) 280px;
	justify-content: center;
	gap: 72px;
	padding-top: 44px;
}

.eb-article__content {
	font-family: var(--eb-serif);
	font-size: 19px;
	line-height: 1.82;
}

.eb-share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--eb-line);
	font-family: var(--eb-sans);
	font-size: 12px;
	font-weight: 750;
}

.eb-share > .eb-share__label {
	margin-right: 4px;
	color: var(--eb-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.eb-share .eb-share__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 34px;
	padding: 6px 10px;
	border: 1px solid var(--eb-line);
	border-radius: 18px;
	color: var(--eb-blue);
	text-decoration: none;
	background: var(--eb-white);
	cursor: pointer;
	font: inherit;
}

.eb-share .eb-share__item:hover,
.eb-share .eb-share__item:focus-visible {
	border-color: var(--eb-blue);
	background: var(--eb-subtle);
}

.eb-share .eb-icon {
	width: 16px;
	height: 16px;
}

.eb-reader-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.eb-article__content > p:first-child {
	font-size: 21px;
}

.eb-article__content h2,
.eb-article__content h3 {
	margin-top: 1.8em;
	font-family: var(--eb-sans);
	line-height: 1.22;
}

.eb-article__content h2 {
	font-size: 29px;
}

.eb-article__content a,
.eb-page__content a {
	color: var(--eb-blue);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.eb-article__content img {
	height: auto;
	border-radius: var(--eb-radius);
}

.eb-article__aside {
	align-self: start;
	position: sticky;
	top: 100px;
}

.eb-article__aside > div,
.eb-page__aside {
	padding: 20px;
	border-top: 3px solid var(--eb-blue);
	background: var(--eb-subtle);
}

.eb-article__aside > div a {
	color: var(--eb-blue);
	font-size: 12px;
	font-weight: 780;
}

.eb-article__aside .eb-article-newsletter {
	margin-top: 18px;
	border-top-color: var(--eb-gold);
}

.eb-article-newsletter .eb-newsletter-form {
	width: 100%;
}

.eb-article-newsletter .eb-newsletter-form__row {
	flex-direction: column;
}

.eb-article-newsletter .eb-newsletter-form fieldset {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.eb-article-newsletter .eb-newsletter-form .eb-button {
	width: 100%;
}

.eb-toc {
	margin-bottom: 18px;
	padding: 18px;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius-sm);
	background: var(--eb-white);
}

.eb-toc strong {
	font-size: 13px;
}

.eb-toc ol {
	margin: 12px 0 0;
	padding-left: 18px;
}

.eb-toc li {
	margin-bottom: 8px;
	color: var(--eb-muted);
	font-size: 12px;
	line-height: 1.4;
}

.eb-toc a:hover {
	color: var(--eb-blue);
}

.eb-source-box {
	margin-top: 42px;
	padding: 22px;
	border: 1px solid #cddbef;
	border-radius: var(--eb-radius);
	background: #f4f8ff;
	font-family: var(--eb-sans);
}

.eb-source-box h2 {
	margin: 0 0 6px;
	font-size: 21px;
}

.eb-source-box p,
.eb-source-box li {
	font-size: 13px;
}

.eb-source-box ul {
	margin-bottom: 0;
}

.eb-author-box {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 18px;
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid var(--eb-line);
	font-family: var(--eb-sans);
}

.eb-author-box img {
	width: 72px !important;
	height: 72px !important;
	border-radius: 50%;
}

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

.eb-author-box p {
	margin: 0;
	color: var(--eb-muted);
	font-size: 13px;
}

.eb-related {
	padding-top: 58px;
}

.eb-related > header {
	margin-bottom: 22px;
}

.eb-related > header h2 {
	margin: 5px 0 0;
	font-family: var(--eb-serif);
	font-size: 32px;
}

.eb-policy-note {
	margin-bottom: 28px;
	padding: 14px 16px;
	border-left: 4px solid var(--eb-gold);
	color: #654b14;
	background: #fff9e8;
	font-size: 13px;
}

.eb-author-directory {
	display: grid;
	gap: 18px;
	margin-top: 28px;
}

.eb-author-directory article {
	display: grid !important;
	grid-template-columns: 72px 1fr;
	gap: 18px;
	width: 100% !important;
	max-width: none !important;
	padding: 20px !important;
	border: 1px solid var(--eb-line) !important;
	border-radius: var(--eb-radius) !important;
	background: var(--eb-white) !important;
}

.eb-author-directory img {
	border-radius: 50%;
}

.eb-author-directory h2 {
	margin: 0 0 5px;
	font-size: 20px;
}

.eb-author-directory p {
	margin: 0;
	color: var(--eb-muted);
	font-size: 14px;
}

.eb-reader-tools {
	display: flex;
	align-items: center;
	gap: 6px;
}

.eb-reader-tools button,
.eb-reader-panel__head button {
	position: relative;
	display: grid;
	width: 38px;
	height: 38px;
	padding: 0;
	place-items: center;
	border: 1px solid var(--eb-line);
	border-radius: 50%;
	color: var(--eb-ink);
	background: var(--eb-white);
	cursor: pointer;
}

.eb-reader-tools .eb-icon,
.eb-reader-panel__head .eb-icon,
.eb-listen-article .eb-icon,
.eb-save-article .eb-icon,
.eb-follow-topic .eb-icon {
	width: 17px;
	height: 17px;
}

.eb-reader-tools [data-eb-saved-count] {
	position: absolute;
	top: -5px;
	right: -4px;
	display: grid;
	min-width: 17px;
	height: 17px;
	padding-inline: 4px;
	place-items: center;
	border-radius: 9px;
	color: #fff;
	background: var(--eb-red);
	font-size: 9px;
	font-weight: 800;
}

.eb-reader-panel {
	position: fixed;
	top: 84px;
	right: max(18px, calc((100vw - var(--eb-width)) / 2));
	z-index: 80;
	width: min(390px, calc(100vw - 28px));
	max-height: calc(100vh - 105px);
	padding: 22px;
	overflow: auto;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius);
	color: var(--eb-ink);
	background: var(--eb-white);
	box-shadow: var(--eb-shadow);
}

.eb-reader-panel[hidden] {
	display: none !important;
}

.eb-reader-panel__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--eb-line);
}

.eb-reader-panel__head h2 {
	margin: 2px 0 0;
	font-family: var(--eb-serif);
	font-size: 25px;
}

.eb-reader-panel section {
	padding-top: 16px;
}

.eb-reader-panel section + section {
	margin-top: 16px;
	border-top: 1px solid var(--eb-line);
}

.eb-reader-panel h3 {
	margin: 0 0 8px;
	font-size: 14px;
}

.eb-reader-panel p,
.eb-reader-panel li {
	color: var(--eb-muted);
	font-size: 12px;
}

.eb-reader-panel ul {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.eb-reader-panel li {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 12px;
	padding: 9px 0;
	border-bottom: 1px solid var(--eb-line);
}

.eb-reader-panel li a {
	color: var(--eb-ink);
	font-weight: 700;
}

.eb-reader-panel li button {
	padding: 4px 7px;
	border: 0;
	color: var(--eb-red);
	background: transparent;
	cursor: pointer;
	font-size: 10px;
}

.eb-reader-panel__note {
	margin: 18px 0 0;
	padding-top: 12px;
	border-top: 1px solid var(--eb-line);
}

.eb-listen-article,
.eb-save-article {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 34px;
	padding: 6px 11px;
	border: 1px solid var(--eb-line);
	border-radius: 18px;
	color: var(--eb-blue);
	background: var(--eb-white);
	cursor: pointer;
}

.eb-save-article.is-active,
.eb-follow-topic.is-active {
	color: #fff;
	border-color: var(--eb-blue);
	background: var(--eb-blue);
}

.eb-key-points {
	margin-bottom: 34px;
	padding: 24px;
	border: 1px solid #cddbef;
	border-left: 5px solid var(--eb-blue);
	border-radius: var(--eb-radius);
	background: #f4f8ff;
}

.eb-key-points h2 {
	margin: 3px 0 12px;
	font-family: var(--eb-serif);
	font-size: 27px;
}

.eb-key-points ul {
	display: grid;
	gap: 8px;
	padding-left: 20px;
	margin: 0;
}

.eb-key-points li {
	font-size: 14px;
}

.eb-update-note {
	margin-top: 34px;
	padding: 18px 20px;
	border-left: 4px solid var(--eb-gold);
	color: var(--eb-ink);
	background: #fff9e8;
	font-family: var(--eb-sans);
}

.eb-update-note p {
	margin: 5px 0;
	font-size: 13px;
}

.eb-update-note time {
	color: var(--eb-muted);
	font-size: 11px;
}

.eb-follow-topic {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	padding: 9px 13px;
	border: 1px solid var(--eb-blue);
	border-radius: 20px;
	color: var(--eb-blue);
	background: var(--eb-white);
	cursor: pointer;
	font-weight: 750;
}

html[data-eb-theme="dark"] {
	color-scheme: dark;
	--eb-ink: #eef4fb;
	--eb-muted: #aab7c7;
	--eb-subtle: #0d213b;
	--eb-line: #2a405c;
	--eb-white: #071526;
	--eb-shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.22);
	--eb-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

html[data-eb-theme="dark"] body.ebams-home {
	background: #071526;
}

html[data-eb-theme="dark"] .eb-header {
	border-color: #263b55;
	background: rgba(7, 21, 38, 0.96);
}

html[data-eb-theme="dark"] .eb-ticker {
	border-color: #5b2b35;
	background: #231723;
}

html[data-eb-theme="dark"] .eb-source-box,
html[data-eb-theme="dark"] .eb-key-points {
	border-color: #294b75;
	background: #0c2746;
}

html[data-eb-theme="dark"] .eb-update-note,
html[data-eb-theme="dark"] .eb-policy-note {
	color: #f5dfaa;
	background: #302713;
}

html[data-eb-theme="dark"] .eb-newsletter {
	color: var(--eb-ink);
}

html[data-eb-theme="dark"] .eb-newsletter-pending {
	background: rgba(7, 21, 38, 0.35);
}

/*
 * Some themes apply heading colours or -webkit-text-fill-color with high
 * specificity. Keep editorial headings readable in both suite colour modes.
 */
body.ebams-home .eb-lead h1,
body.ebams-home .eb-lead h1 a,
body.ebams-home .eb-card h2,
body.ebams-home .eb-card h2 a,
body.ebams-home .eb-card h3,
body.ebams-home .eb-card h3 a,
body.ebams-home .eb-live h2,
body.ebams-home .eb-trending h2,
body.ebams-home .eb-trending h3,
body.ebams-home .eb-trending h3 a,
body.ebams-home .eb-section:not(.eb-tools) .eb-section__head h2,
body.ebams-home .eb-archive__header h1,
body.ebams-home .eb-article__header h1,
body.ebams-home .eb-article__content h2,
body.ebams-home .eb-article__content h3,
body.ebams-home .eb-page__header h1,
body.ebams-home .eb-related h2,
body.ebams-home .eb-author-box h2,
body.ebams-home .eb-reader-panel h2,
body.ebams-home .eb-reader-panel h3 {
	color: var(--eb-ink) !important;
	-webkit-text-fill-color: var(--eb-ink) !important;
	opacity: 1 !important;
}

html[data-eb-theme="dark"] body.ebams-home .eb-lead,
html[data-eb-theme="dark"] body.ebams-home .eb-card {
	border-color: #29415f;
	background: #0a1d33;
}

html[data-eb-theme="dark"] body.ebams-home .eb-lead p,
html[data-eb-theme="dark"] body.ebams-home .eb-card p,
html[data-eb-theme="dark"] body.ebams-home .eb-lead time {
	color: #c1cddd !important;
	-webkit-text-fill-color: #c1cddd !important;
}

html[data-eb-theme="dark"] body.ebams-home .eb-actions a:hover,
html[data-eb-theme="dark"] body.ebams-home .eb-actions a:focus-visible {
	border-color: #4d6f99;
	background: #142c49;
}

html[data-eb-theme="dark"] body.ebams-home .eb-actions a:hover span,
html[data-eb-theme="dark"] body.ebams-home .eb-actions a:focus-visible span,
html[data-eb-theme="dark"] body.ebams-home .eb-actions a:hover small,
html[data-eb-theme="dark"] body.ebams-home .eb-actions a:focus-visible small {
	color: #eef4fb !important;
	-webkit-text-fill-color: #eef4fb !important;
}

.eb-article__aside p,
.eb-page__aside p {
	color: var(--eb-muted);
	font-size: 13px;
}

.eb-page {
	max-width: 1060px;
	padding-block: 48px 74px;
}

.eb-page__header {
	max-width: 820px;
	margin-bottom: 32px;
}

.eb-page__header h1 {
	font-size: clamp(42px, 6vw, 66px);
}

.eb-page__header > p {
	color: var(--eb-muted);
	font-size: 20px;
}

.eb-page__layout {
	display: grid;
	grid-template-columns: minmax(0, 720px) 260px;
	gap: 72px;
}

.eb-page__content {
	font-size: 17px;
	line-height: 1.8;
}

.eb-tool-app {
	margin: 30px 0;
	padding: clamp(22px, 4vw, 38px);
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius-lg);
	background: var(--eb-subtle);
	font-family: var(--eb-sans);
	box-shadow: var(--eb-shadow-sm);
}

.eb-tools-directory {
	margin: 28px 0;
	font-family: var(--eb-sans);
}

.eb-tools-directory > header {
	max-width: 720px;
	margin-bottom: 24px;
}

.eb-tools-directory > header h2 {
	margin: 5px 0 8px;
	font-family: var(--eb-serif);
	font-size: clamp(30px, 4vw, 42px);
	line-height: 1.1;
}

.eb-tools-directory > header p {
	color: var(--eb-muted);
}

.eb-tools-directory > div {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.eb-tools-directory article {
	position: relative;
	padding: 22px;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius);
	background: var(--eb-subtle);
}

.eb-tools-directory article > span {
	display: grid;
	width: 42px;
	height: 42px;
	margin-bottom: 14px;
	place-items: center;
	border-radius: 10px;
	color: var(--eb-blue);
	background: #e6efff;
}

.eb-tools-directory .eb-icon {
	width: 22px;
	height: 22px;
}

.eb-tools-directory h3 {
	margin: 0 0 7px;
	font-size: 19px;
}

.eb-tools-directory h3 a::after {
	position: absolute;
	inset: 0;
	content: "";
}

.eb-tools-directory p {
	margin: 0 0 10px;
	color: var(--eb-muted);
	font-size: 13px;
}

.eb-tools-directory small {
	color: var(--eb-blue);
	font-weight: 800;
}

.eb-tool-app > header {
	max-width: 720px;
	margin-bottom: 26px;
}

.eb-tool-app > header h2 {
	margin: 5px 0 8px;
	font-family: var(--eb-serif);
	font-size: clamp(27px, 4vw, 38px);
	line-height: 1.1;
}

.eb-tool-app > header p {
	margin: 0;
	color: var(--eb-muted);
}

.eb-tool-app fieldset {
	min-width: 0;
	margin: 0 0 20px;
	padding: 20px;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius);
	background: var(--eb-white);
}

.eb-tool-app legend {
	padding-inline: 7px;
	color: var(--eb-ink);
	font-size: 14px;
	font-weight: 800;
}

.eb-tool-app label {
	display: grid;
	gap: 6px;
	color: var(--eb-muted);
	font-size: 12px;
	font-weight: 700;
}

.eb-tool-app input {
	width: 100%;
	min-height: 44px;
	padding: 9px 11px;
	border: 1px solid #b9c8dc;
	border-radius: var(--eb-radius-sm);
	color: var(--eb-ink);
	background: var(--eb-white);
	outline: 0;
}

.eb-tool-app input:focus {
	border-color: var(--eb-blue);
	box-shadow: 0 0 0 3px rgba(20, 89, 217, 0.12);
}

.eb-date-ranges {
	display: grid;
	gap: 10px;
}

.eb-date-range {
	display: grid;
	grid-template-columns: 70px repeat(2, 1fr);
	align-items: end;
	gap: 12px;
}

.eb-date-range > span {
	align-self: center;
	color: var(--eb-ink);
	font-size: 12px;
	font-weight: 800;
}

.eb-date-range--planned {
	grid-template-columns: repeat(2, 1fr);
}

.eb-tool-fields {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 20px;
}

.eb-compare-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.eb-compare-grid fieldset {
	display: grid;
	gap: 12px;
}

.eb-tool-checks {
	display: grid;
	gap: 10px;
	margin-bottom: 20px;
}

.eb-tool-checks label {
	grid-template-columns: 20px 1fr;
	align-items: start;
	padding: 13px;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius-sm);
	color: var(--eb-ink);
	background: var(--eb-white);
	font-size: 13px;
}

.eb-tool-checks input {
	width: 17px;
	height: 17px;
	min-height: 0;
	margin-top: 2px;
}

.eb-tool-result {
	margin-top: 24px;
	padding: 20px;
	border: 1px solid #91c9ae;
	border-left: 4px solid #168052;
	border-radius: var(--eb-radius);
	background: #effbf5;
}

.eb-tool-result[data-state="warn"] {
	border-color: #e5c272;
	border-left-color: #b7791f;
	background: #fff9e8;
}

.eb-tool-result[data-state="info"] {
	border-color: #9ab8e4;
	border-left-color: var(--eb-blue);
	background: #eef5ff;
}

.eb-tool-result > strong {
	display: block;
	margin-bottom: 8px;
	color: #0f5132;
	font-size: 18px;
}

.eb-tool-result[data-state="warn"] > strong {
	color: #744b0c;
}

.eb-tool-result[data-state="info"] > strong {
	color: #164f9f;
}

.eb-tool-result p {
	margin: 0;
	color: var(--eb-muted);
}

.eb-tool-result dl {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
	margin: 14px 0 0;
}

.eb-tool-result dl > div {
	padding: 12px;
	border-radius: var(--eb-radius-sm);
	background: rgba(255, 255, 255, 0.65);
}

.eb-tool-result dt {
	color: var(--eb-muted);
	font-size: 11px;
	font-weight: 700;
}

.eb-tool-result dd {
	margin: 5px 0 0;
	color: var(--eb-ink);
	font-size: 16px;
	font-weight: 800;
}

.eb-tool-disclaimer {
	margin: 20px 0 0;
	padding-top: 16px;
	border-top: 1px solid var(--eb-line);
	color: var(--eb-muted);
	font-size: 12px;
}

.eb-tool-progress {
	margin-bottom: 18px;
}

.eb-tool-progress span {
	display: block;
	margin-bottom: 7px;
	color: var(--eb-ink);
	font-size: 13px;
	font-weight: 800;
}

.eb-tool-progress i {
	display: block;
	height: 8px;
	overflow: hidden;
	border-radius: 8px;
	background: var(--eb-line);
}

.eb-tool-progress b {
	display: block;
	width: 0;
	height: 100%;
	background: var(--eb-blue);
	transition: width 0.2s ease;
}

.eb-button--secondary {
	color: var(--eb-blue) !important;
	-webkit-text-fill-color: var(--eb-blue) !important;
	border: 1px solid var(--eb-blue);
	background: var(--eb-white);
	box-shadow: none;
}

.eb-button--secondary:hover {
	color: var(--eb-on-dark) !important;
	-webkit-text-fill-color: var(--eb-on-dark) !important;
}

html[data-eb-theme="dark"] .eb-tool-result {
	color: #d9f4e6;
	background: #0b3327;
}

html[data-eb-theme="dark"] .eb-tool-result[data-state="warn"] {
	color: #f6e5b9;
	background: #372c10;
}

html[data-eb-theme="dark"] .eb-tool-result[data-state="info"] {
	color: #dceaff;
	background: #102e53;
}

html[data-eb-theme="dark"] .eb-tool-result > strong,
html[data-eb-theme="dark"] .eb-tool-result[data-state="warn"] > strong,
html[data-eb-theme="dark"] .eb-tool-result[data-state="info"] > strong {
	color: inherit;
}

html[data-eb-theme="dark"] .eb-tool-result dl > div {
	background: rgba(7, 21, 38, 0.42);
}

.eb-page__content h2,
.eb-page__content h3 {
	margin-top: 1.8em;
	font-family: var(--eb-serif);
	line-height: 1.22;
}

.eb-page__aside {
	align-self: start;
}

.eb-page__aside nav {
	display: grid;
	gap: 9px;
	font-size: 13px;
	font-weight: 720;
}

.eb-not-found {
	display: grid;
	min-height: 65vh;
	padding-block: 60px;
	place-items: center;
	text-align: center;
}

.eb-not-found > div {
	max-width: 680px;
}

.eb-not-found__number {
	display: block;
	color: #dce6f5;
	font-size: 100px;
	font-weight: 900;
	line-height: 0.9;
}

.eb-not-found h1 {
	font-size: clamp(36px, 5vw, 54px);
}

.eb-not-found p {
	color: var(--eb-muted);
	font-size: 18px;
}

.eb-not-found form {
	max-width: 520px;
	margin: 28px auto;
	text-align: left;
}

.eb-text-link {
	color: var(--eb-blue) !important;
	font-weight: 780;
}

:where(.eb-button, .eb-menu-button, .eb-nav a, .eb-header-search button, .eb-actions a, .eb-country-grid a, .eb-card a, .eb-reader-tools button, .eb-reader-panel button, .eb-share__item, .eb-listen-article, .eb-save-article, .eb-follow-topic):focus-visible {
	outline: 3px solid rgba(20, 89, 217, 0.3);
	outline-offset: 3px;
}

@media (max-width: 1120px) {
	.eb-header-search {
		display: none;
	}

	.eb-nav {
		display: none;
		position: absolute;
		top: 70px;
		right: 0;
		left: 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
		padding: 18px 24px 22px;
		border-bottom: 1px solid var(--eb-line);
		background: var(--eb-white);
		box-shadow: var(--eb-shadow-sm);
	}

	.eb-nav.is-open {
		display: flex;
	}

	.eb-menu-button {
		display: block;
		margin-left: auto;
	}

	.eb-hero {
		grid-template-columns: 1.5fr 1fr;
	}

	.eb-live {
		grid-column: 1 / -1;
		padding: 18px 0 0;
		border-top: 1px solid var(--eb-line);
		border-left: 0;
	}

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

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

	.eb-card--featured {
		grid-column: span 2;
	}
}

@media (max-width: 900px) {
	.eb-trending {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.eb-trending ol {
		grid-template-columns: repeat(2, 1fr);
	}

	.eb-country-grid,
	.eb-tools-grid,
	.eb-archive__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.eb-article__layout,
	.eb-page__layout {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.eb-article__aside {
		position: static;
		max-width: 500px;
	}

	.eb-page__aside {
		max-width: 440px;
	}

	.eb-footer > .eb-container {
		flex-direction: column;
	}

	.eb-footer__links {
		width: 100%;
	}
}

@media (max-width: 700px) {
	.eb-container,
	.eb-countries > .eb-container {
		width: min(var(--eb-width), calc(100% - 28px));
	}

	.eb-utility nav,
	.eb-header .eb-button--small {
		display: none;
	}

	.eb-reader-panel {
		top: 72px;
		right: 14px;
	}

	.eb-share {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.eb-header__inner {
		min-height: 62px;
	}

	.eb-nav {
		top: 62px;
	}

	.eb-hero {
		grid-template-columns: 1fr;
		padding-block: 18px 24px;
	}

	.eb-lead h1 {
		font-size: 31px;
	}

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

	.eb-card--compact > div {
		padding: 12px;
	}

	.eb-card--compact h2 {
		font-size: 16px;
	}

	.eb-actions {
		grid-template-columns: repeat(2, 1fr);
		padding-bottom: 26px;
	}

	.eb-tool-fields,
	.eb-compare-grid,
	.eb-date-range,
	.eb-date-range--planned,
	.eb-tools-directory > div {
		grid-template-columns: 1fr;
	}

	.eb-trending ol {
		grid-template-columns: 1fr;
	}

	.eb-trending li {
		padding: 12px 4px;
		border-top: 1px solid var(--eb-line);
		border-left: 0;
	}

	.eb-briefing .eb-container,
	.eb-newsletter .eb-container {
		flex-direction: column;
		align-items: flex-start;
	}

	.eb-section,
	.eb-tools {
		padding-block: 40px;
	}

	.eb-section__head {
		align-items: flex-start;
	}

	.eb-grid,
	.eb-country-grid,
	.eb-business-grid,
	.eb-tools-grid,
	.eb-archive__grid {
		grid-template-columns: 1fr;
	}

	.eb-card--featured {
		grid-column: auto;
	}

	.eb-newsletter form > div,
	.eb-newsletter-form__row,
	.eb-not-found form > div {
		flex-direction: column;
	}

	.eb-footer > .eb-container {
		flex-direction: column;
	}

	.eb-footer__links {
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
	}

	.eb-footer__bottom {
		flex-direction: column;
	}

	.eb-archive,
	.eb-page {
		padding-block: 32px 52px;
	}

	.eb-article__header {
		padding-block: 30px 22px;
	}

	.eb-article__header h1,
	.eb-page__header h1 {
		font-size: 39px;
	}

	.eb-article__excerpt {
		font-size: 18px;
	}

	.eb-article__hero {
		width: 100%;
		border-radius: 0;
	}

	.eb-article__layout {
		padding-top: 30px;
	}

	.eb-article__content {
		font-size: 17px;
	}

	.eb-author-box,
	.eb-author-directory article {
		grid-template-columns: 54px 1fr;
	}

	.eb-author-box img,
	.eb-author-directory img {
		width: 54px !important;
		height: 54px !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	* {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}
}
