:root {
	--screenus-ink: #10202c;
	--screenus-ink-2: #243744;
	--screenus-night: #09141e;
	--screenus-night-2: #142635;
	--screenus-lime: #9dc800;
	--screenus-lime-dark: #739500;
	--screenus-blue: #338bb5;
	--screenus-cloud: #f2f5f6;
	--screenus-line: #dce4e7;
	--screenus-white: #ffffff;
	--screenus-muted: #61737f;
	--screenus-radius: 20px;
	--screenus-shadow: 0 22px 60px rgba( 11, 28, 39, 0.12 );
}

/* Menu page finishing: career and legal information */
.screenus-career-page .screenus-hero {
	background:
		radial-gradient( circle at 78% 25%, rgba( 132, 204, 22, 0.2 ), transparent 34% ),
		linear-gradient( 135deg, #071019 0%, #101d28 100% );
}

.screenus-section--accent {
	background: linear-gradient( 135deg, #e9f7d9 0%, #f7fbf2 100% );
}

.screenus-career-profile {
	display: grid;
	grid-template-columns: minmax( 0, 0.9fr ) minmax( 0, 1.1fr );
	gap: clamp( 2rem, 6vw, 5.5rem );
	align-items: start;
}

.screenus-career-profile > div:first-child > p {
	font-size: 1.08rem;
	line-height: 1.8;
}

.screenus-check-panel {
	padding: clamp( 1.6rem, 4vw, 2.5rem );
	border: 1px solid #d9e2e8;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 18px 50px rgba( 7, 16, 25, 0.08 );
}

.screenus-check-panel h3 {
	margin-top: 0;
}

.screenus-check-list {
	display: grid;
	gap: 0.9rem;
	margin: 1.35rem 0 0;
	padding: 0;
	list-style: none;
}

.screenus-check-list li {
	position: relative;
	padding-left: 1.8rem;
	line-height: 1.55;
}

.screenus-check-list li::before {
	position: absolute;
	top: 0.08rem;
	left: 0;
	color: #65a30d;
	font-size: 1.1rem;
	font-weight: 800;
	content: "✓";
}

.screenus-privacy-note {
	margin-top: 1.5rem;
	font-size: 0.96rem;
	line-height: 1.7;
}

.screenus-legal-hero {
	padding: clamp( 4.5rem, 9vw, 7rem ) 0 clamp( 3.2rem, 6vw, 5rem );
	color: #fff;
	background:
		radial-gradient( circle at 82% 20%, rgba( 132, 204, 22, 0.16 ), transparent 28% ),
		linear-gradient( 135deg, #071019 0%, #13222e 100% );
}

.screenus-legal-hero h1 {
	max-width: 880px;
	margin: 0.55rem 0 1rem;
	color: #fff;
	font-size: clamp( 2.6rem, 6vw, 5rem );
	hyphens: auto;
	letter-spacing: -0.045em;
	overflow-wrap: anywhere;
}

.screenus-legal-hero p {
	max-width: 760px;
	margin: 0;
	color: #c9d4dc;
	font-size: clamp( 1.05rem, 2vw, 1.28rem );
	line-height: 1.7;
}

.screenus-legal-layout {
	display: grid;
	grid-template-columns: minmax( 230px, 0.32fr ) minmax( 0, 1fr );
	gap: clamp( 2.5rem, 7vw, 6.5rem );
	align-items: start;
}

.screenus-legal-nav {
	position: sticky;
	top: 150px;
	max-height: calc( 100vh - 180px );
	padding: 1.5rem;
	overflow: auto;
	border: 1px solid #dbe3e8;
	border-radius: 18px;
	background: #f6f8f9;
}

.screenus-legal-nav h2 {
	margin: 0.45rem 0 1rem;
	font-size: clamp( 1.35rem, 2vw, 1.7rem ) !important;
	line-height: 1.2 !important;
	overflow-wrap: anywhere;
}

.screenus-legal-nav ol {
	display: grid;
	gap: 0.65rem;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: legal-nav;
}

.screenus-legal-nav li {
	position: relative;
	padding-left: 1.65rem;
	counter-increment: legal-nav;
}

.screenus-legal-nav li::before {
	position: absolute;
	left: 0;
	color: #65a30d;
	font-size: 0.78rem;
	font-weight: 800;
	content: counter( legal-nav, decimal-leading-zero );
}

.screenus-legal-nav a {
	display: block;
	color: #33424c;
	font-size: 0.88rem;
	line-height: 1.45;
	text-decoration: none;
}

.screenus-legal-nav a:hover,
.screenus-legal-nav a:focus-visible {
	color: #4d7c0f;
}

.screenus-legal-content {
	min-width: 0;
	color: #33424c;
	font-size: 1rem;
	line-height: 1.8;
	hyphens: auto;
	overflow-wrap: anywhere;
}

.screenus-legal-content h2 {
	margin: 3.2rem 0 1rem;
	padding-top: 1rem;
	color: #0d1b25;
	font-size: clamp( 1.45rem, 3vw, 2rem );
	line-height: 1.25;
	scroll-margin-top: 160px;
}

.screenus-legal-content h2:first-child {
	margin-top: 0;
}

.screenus-legal-content p {
	margin: 0 0 1.25rem;
}

.screenus-legal-content a {
	color: #4d7c0f;
	font-weight: 650;
	overflow-wrap: anywhere;
}

@media ( max-width: 900px ) {
	.screenus-career-profile,
	.screenus-legal-layout {
		grid-template-columns: 1fr;
	}

	.screenus-legal-nav {
		position: static;
		max-height: 360px;
	}
}

@media ( max-width: 640px ) {
	.screenus-legal-hero {
		padding-top: 3.5rem;
	}

	.screenus-legal-nav {
		padding: 1.2rem;
		border-radius: 14px;
	}

	.screenus-legal-content {
		font-size: 0.96rem;
	}

	.screenus-legal-content h2 {
		font-size: 1.45rem;
	}
}

body.screenus-site-shell {
	overflow-x: hidden;
}

.screenus-site-shell .fusion-header-wrapper,
.screenus-site-shell .fusion-footer {
	display: none !important;
}

.screenus-skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 100001;
	padding: 10px 15px;
	border-radius: 8px;
	color: var(--screenus-ink) !important;
	font-weight: 700;
	background: var(--screenus-lime);
	transform: translateY( -150% );
}

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

.screenus-site-header {
	position: sticky;
	top: 0;
	z-index: 10000;
	border-bottom: 1px solid var(--screenus-line);
	color: var(--screenus-ink);
	font-family: inherit;
	background: #fff;
	box-shadow: 0 10px 35px rgba( 11, 28, 39, 0.06 );
}

.admin-bar .screenus-site-header {
	top: 32px;
}

.screenus-header-shell,
.screenus-footer-shell {
	width: min( calc( 100% - 48px ), 1200px );
	margin-inline: auto;
}

.screenus-site-topbar {
	color: rgba( 255, 255, 255, 0.72 );
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.045em;
	background: var(--screenus-night);
}

.screenus-site-topbar .screenus-header-shell {
	display: flex;
	min-height: 34px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.screenus-utility-nav {
	display: flex;
	align-self: stretch;
	align-items: center;
	gap: 22px;
}

.screenus-utility-nav a {
	color: #fff;
	text-decoration: none;
}

.screenus-utility-nav > a:first-child {
	color: var(--screenus-lime);
}

.screenus-utility-dropdown {
	position: relative;
	display: flex;
	align-self: stretch;
	align-items: center;
}

.screenus-utility-dropdown__toggle {
	display: inline-flex;
	padding: 0;
	border: 0;
	align-items: center;
	gap: 7px;
	color: #fff;
	font: inherit;
	letter-spacing: inherit;
	background: transparent;
	cursor: pointer;
}

.screenus-utility-dropdown__toggle > span {
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY( -2px ) rotate( 45deg );
	transition: transform 150ms ease;
}

.screenus-utility-dropdown--open .screenus-utility-dropdown__toggle > span {
	transform: translateY( 2px ) rotate( 225deg );
}

.screenus-utility-dropdown__menu {
	position: absolute;
	top: calc( 100% - 1px );
	right: 0;
	z-index: 10;
	display: grid;
	width: 180px;
	margin: 0;
	padding: 8px;
	border: 1px solid var(--screenus-line);
	border-radius: 0 0 12px 12px;
	list-style: none;
	background: #fff;
	box-shadow: 0 18px 32px rgba( 11, 28, 39, 0.18 );
	opacity: 0;
	visibility: hidden;
	transform: translateY( 7px );
	pointer-events: none;
	transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.screenus-utility-dropdown--open .screenus-utility-dropdown__menu,
.screenus-utility-dropdown:hover .screenus-utility-dropdown__menu,
.screenus-utility-dropdown:focus-within .screenus-utility-dropdown__menu {
	opacity: 1;
	visibility: visible;
	transform: translateY( 0 );
	pointer-events: auto;
}

.screenus-utility-nav .screenus-utility-dropdown__menu a {
	display: block;
	padding: 9px 11px;
	border-radius: 7px;
	color: var(--screenus-ink-2);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
}

.screenus-utility-nav .screenus-utility-dropdown__menu a:hover,
.screenus-utility-nav .screenus-utility-dropdown__menu a:focus-visible {
	color: var(--screenus-ink);
	background: rgba( 157, 200, 0, 0.13 );
}

.screenus-header-main .screenus-header-shell {
	display: flex;
	min-height: 76px;
	align-items: center;
	gap: clamp( 22px, 3vw, 48px );
}

.screenus-brand {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 11px;
	color: var(--screenus-ink) !important;
	text-decoration: none !important;
}

.screenus-brand img {
	display: block;
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.screenus-brand span {
	display: grid;
	line-height: 1;
}

.screenus-brand strong {
	font-size: 24px;
	font-weight: 820;
	letter-spacing: -0.035em;
}

.screenus-brand small {
	margin-top: 4px;
	color: var(--screenus-lime-dark);
	font-size: 10px;
	font-weight: 820;
	letter-spacing: 0.22em;
}

.screenus-primary-nav {
	flex: 1 1 auto;
}

.screenus-primary-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.screenus-primary-nav > ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp( 16px, 2vw, 30px );
}

.screenus-primary-nav > ul > li {
	position: relative;
	display: flex;
	align-items: center;
}

.screenus-primary-nav > ul > li > a {
	position: relative;
	display: flex;
	min-height: 76px;
	align-items: center;
	gap: 8px;
	color: var(--screenus-ink) !important;
	font-size: 14px;
	font-weight: 720;
	text-decoration: none !important;
	white-space: nowrap;
}

.screenus-submenu-indicator {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid var(--screenus-ink);
	border-bottom: 1.5px solid var(--screenus-ink);
	transform: translateY( -2px ) rotate( 45deg );
	transition: transform 150ms ease;
}

.screenus-primary-nav > ul > li:hover > a .screenus-submenu-indicator,
.screenus-primary-nav > ul > li:focus-within > a .screenus-submenu-indicator {
	transform: translateY( 2px ) rotate( 225deg );
}

.screenus-primary-nav > ul > li > a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	content: '';
	background: var(--screenus-lime);
	transform: scaleX( 0 );
	transform-origin: left;
	transition: transform 160ms ease;
}

.screenus-primary-nav > ul > li:hover > a::after,
.screenus-primary-nav > ul > li:focus-within > a::after,
.screenus-primary-nav > ul > li.screenus-current-menu-item > a::after {
	transform: scaleX( 1 );
}

.screenus-primary-nav .screenus-nav-contact {
	min-height: 42px;
	padding: 0 17px;
	border-radius: 10px;
	background: var(--screenus-lime);
}

.screenus-primary-nav .screenus-nav-contact::after {
	display: none;
}

.screenus-primary-nav li > ul {
	position: absolute;
	top: calc( 100% - 1px );
	left: -22px;
	display: grid;
	width: 270px;
	padding: 14px;
	border: 1px solid var(--screenus-line);
	border-radius: 14px;
	background: #fff;
	box-shadow: var(--screenus-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY( 8px );
	transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.screenus-primary-nav li > .screenus-mega-menu {
	position: absolute;
	top: calc( 100% - 1px );
	left: 50%;
	z-index: 2;
	display: grid;
	width: min( 760px, calc( 100vw - 32px ) );
	padding: 20px;
	border: 1px solid var(--screenus-line);
	border-radius: 16px;
	grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
	gap: 16px;
	background: #fff;
	box-shadow: var(--screenus-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translate( -50%, 8px );
	transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.screenus-primary-nav li > .screenus-mega-menu--security {
	width: min( 620px, calc( 100vw - 32px ) );
	grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
}

.screenus-mega-menu section {
	min-width: 0;
	padding: 4px;
}

.screenus-mega-menu__title {
	display: block;
	margin: 0 10px 7px;
	color: var(--screenus-lime-dark);
	font-size: 11px;
	font-weight: 820;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.screenus-primary-nav > ul > li:nth-last-child( -n + 2 ) > ul {
	right: 0;
	left: auto;
}

.screenus-primary-nav li:hover > ul,
.screenus-primary-nav li:focus-within > ul,
.screenus-primary-nav li:hover > .screenus-mega-menu,
.screenus-primary-nav li:focus-within > .screenus-mega-menu {
	opacity: 1;
	visibility: visible;
}

.screenus-primary-nav li:hover > ul,
.screenus-primary-nav li:focus-within > ul {
	transform: translateY( 0 );
}

.screenus-primary-nav li:hover > .screenus-mega-menu,
.screenus-primary-nav li:focus-within > .screenus-mega-menu {
	transform: translate( -50%, 0 );
}

.screenus-primary-nav li > ul a,
.screenus-primary-nav .screenus-mega-menu a {
	display: block;
	padding: 10px 11px;
	border-radius: 8px;
	color: var(--screenus-ink-2) !important;
	font-size: 14px;
	font-weight: 620;
	line-height: 1.35;
	text-decoration: none !important;
}

.screenus-primary-nav li > ul a:hover,
.screenus-primary-nav li > ul a:focus-visible,
.screenus-primary-nav .screenus-mega-menu a:hover,
.screenus-primary-nav .screenus-mega-menu a:focus-visible {
	color: var(--screenus-ink) !important;
	background: rgba( 157, 200, 0, 0.13 );
}

.screenus-submenu-toggle,
.screenus-menu-toggle {
	display: none;
}

.screenus-site-footer {
	position: relative;
	z-index: 2;
	color: rgba( 255, 255, 255, 0.72 );
	background: var(--screenus-night);
}

.screenus-footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.85fr 0.95fr 1.05fr;
	gap: clamp( 32px, 5vw, 72px );
	padding-top: 72px;
	padding-bottom: 64px;
}

.screenus-brand--footer {
	color: #fff !important;
}

.screenus-brand--footer small {
	color: var(--screenus-lime);
}

.screenus-footer-brand p {
	max-width: 340px;
	margin: 24px 0 20px;
	font-size: 15px;
	line-height: 1.7;
}

.screenus-footer-brand address {
	font-size: 14px;
	font-style: normal;
	line-height: 1.65;
}

.screenus-site-footer h2 {
	margin: 3px 0 20px;
	color: #fff;
	font-size: 16px;
	font-weight: 760;
	letter-spacing: -0.01em;
}

.screenus-site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.screenus-site-footer li + li {
	margin-top: 10px;
}

.screenus-site-footer a {
	color: rgba( 255, 255, 255, 0.74 );
	text-decoration: none;
}

.screenus-site-footer a:hover,
.screenus-site-footer a:focus-visible {
	color: var(--screenus-lime);
}

.screenus-footer-contact {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.screenus-footer-kicker {
	margin-bottom: 10px;
	color: var(--screenus-lime);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.screenus-footer-contact .screenus-footer-phone {
	margin-bottom: 4px;
	color: #fff;
	font-size: 20px;
	font-weight: 760;
}

.screenus-footer-button {
	display: inline-flex;
	margin-top: 24px;
	padding: 12px 17px;
	border-radius: 10px;
	color: var(--screenus-ink) !important;
	font-weight: 760;
	background: var(--screenus-lime);
}

.screenus-footer-button:hover,
.screenus-footer-button:focus-visible {
	color: var(--screenus-ink) !important;
	background: #b4de19;
}

.screenus-footer-bottom {
	border-top: 1px solid rgba( 255, 255, 255, 0.1 );
	color: rgba( 255, 255, 255, 0.52 );
	font-size: 13px;
	background: #061018;
}

.screenus-footer-bottom .screenus-footer-shell {
	display: flex;
	min-height: 64px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.screenus-footer-bottom nav {
	display: flex;
	gap: 22px;
}

.screenus-modern-page #main {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	background: var(--screenus-white);
}

.screenus-modern-page .fusion-is-sticky .fusion-header,
.screenus-modern-page .fusion-is-sticky .fusion-secondary-main-menu {
	background-color: #fff !important;
}

.screenus-modern-page #main > .fusion-row {
	max-width: none !important;
	width: 100% !important;
}

.screenus-modern-page #content {
	float: none !important;
	width: 100% !important;
	min-height: 0 !important;
}

.screenus-modern-page #sidebar,
.screenus-modern-page .fusion-page-title-bar {
	display: none !important;
}

.screenus-modern-page .post-content {
	color: var(--screenus-ink-2);
	font-size: 17px;
	line-height: 1.72;
}

.screenus-modern-page .post-content h1,
.screenus-modern-page .post-content h2,
.screenus-modern-page .post-content h3,
.screenus-modern-page .post-content h4 {
	margin-top: 0;
	color: var(--screenus-ink);
	font-weight: 720;
	letter-spacing: -0.025em;
	line-height: 1.13;
}

.screenus-modern-page .post-content h1 {
	font-size: clamp( 40px, 6vw, 76px );
}

.screenus-modern-page .post-content h2 {
	margin-bottom: 20px;
	font-size: clamp( 30px, 4vw, 48px );
}

.screenus-modern-page .post-content h3 {
	margin-bottom: 12px;
	font-size: clamp( 21px, 2.3vw, 28px );
}

.screenus-modern-page .post-content p {
	margin: 0 0 1.2em;
}

.screenus-modern-page .post-content a:not(.screenus-button):not(.screenus-card) {
	color: var(--screenus-lime-dark);
	text-decoration-color: rgba( 115, 149, 0, 0.35 );
	text-underline-offset: 3px;
}

.screenus-page {
	overflow: clip;
	background: var(--screenus-white);
}

.screenus-shell {
	width: min( 1180px, calc( 100% - 40px ) );
	margin-inline: auto;
}

.screenus-section {
	padding: clamp( 68px, 8vw, 112px ) 0;
}

.screenus-section--soft {
	background: var(--screenus-cloud);
}

.screenus-section--dark {
	color: rgba( 255, 255, 255, 0.82 );
	background:
		radial-gradient( circle at 92% 10%, rgba( 157, 200, 0, 0.18 ), transparent 34% ),
		linear-gradient( 135deg, var(--screenus-night), var(--screenus-night-2) );
}

.screenus-section--dark h2,
.screenus-section--dark h3,
.screenus-section--dark .screenus-intro__lead,
.screenus-section--dark a:not(.screenus-button) {
	color: var(--screenus-white) !important;
}

.screenus-hero {
	position: relative;
	isolation: isolate;
	display: grid;
	min-height: 570px;
	align-items: center;
	color: var(--screenus-white);
	background:
		linear-gradient( 90deg, rgba( 6, 16, 24, 0.97 ) 0%, rgba( 7, 18, 27, 0.88 ) 43%, rgba( 7, 18, 27, 0.24 ) 75%, rgba( 7, 18, 27, 0.12 ) 100% ),
		url('/wp-content/uploads/2026/08/screenus-secure-infrastructure-hero.webp') center / cover no-repeat;
}

.screenus-hero::after {
	position: absolute;
	z-index: -1;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 92px;
	content: '';
	background: linear-gradient( to bottom, transparent, rgba( 6, 16, 24, 0.38 ) );
	pointer-events: none;
}

.screenus-hero--home {
	min-height: min( 720px, 78vh );
}

.screenus-hero__content {
	max-width: 780px;
	padding: 82px 0 96px;
}

.screenus-hero h1 {
	max-width: 820px;
	margin-bottom: 26px;
	color: var(--screenus-white) !important;
	hyphens: none;
	overflow-wrap: normal;
	word-break: normal;
	text-wrap: balance;
}

.screenus-hero__lead {
	max-width: 720px;
	margin-bottom: 30px !important;
	color: rgba( 255, 255, 255, 0.84 );
	font-size: clamp( 20px, 2.3vw, 27px );
	line-height: 1.46;
}

.screenus-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
	color: var(--screenus-lime);
	font-size: 13px;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.screenus-eyebrow::before {
	width: 32px;
	height: 3px;
	content: '';
	border-radius: 99px;
	background: currentColor;
}

.screenus-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.screenus-button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	padding: 13px 23px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 720;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.screenus-button:hover,
.screenus-button:focus-visible {
	transform: translateY( -2px );
}

.screenus-button--primary {
	color: #111b08 !important;
	background: var(--screenus-lime);
	box-shadow: 0 12px 32px rgba( 157, 200, 0, 0.24 );
}

.screenus-button--primary:hover,
.screenus-button--primary:focus-visible {
	background: #b2dd0c;
	box-shadow: 0 16px 38px rgba( 157, 200, 0, 0.34 );
}

.screenus-button--ghost {
	border-color: rgba( 255, 255, 255, 0.36 );
	color: var(--screenus-white) !important;
	background: rgba( 255, 255, 255, 0.06 );
	backdrop-filter: blur( 10px );
}

.screenus-button--ink {
	color: var(--screenus-white) !important;
	background: var(--screenus-ink);
}

.screenus-quickfacts {
	display: grid;
	grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
	gap: 1px;
	border-block: 1px solid rgba( 255, 255, 255, 0.14 );
	background: var(--screenus-night);
}

.screenus-quickfact {
	padding: 24px 28px;
	color: rgba( 255, 255, 255, 0.74 );
	text-align: center;
}

.screenus-quickfact strong {
	display: block;
	margin-bottom: 4px;
	color: var(--screenus-white);
	font-size: 18px;
}

.screenus-intro {
	display: grid;
	grid-template-columns: minmax( 0, 0.8fr ) minmax( 0, 1.2fr );
	gap: clamp( 36px, 7vw, 90px );
	align-items: start;
}

.screenus-intro__lead {
	color: var(--screenus-ink);
	font-size: clamp( 22px, 2.5vw, 31px );
	font-weight: 650;
	line-height: 1.42;
}

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

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

@media ( min-width: 981px ) {
	.screenus-grid:not( .screenus-grid--2 ):has( > :nth-child( 4 ):last-child ) {
		grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	}
}

.screenus-card {
	position: relative;
	display: block;
	padding: clamp( 26px, 3vw, 38px );
	border: 1px solid var(--screenus-line);
	border-radius: var(--screenus-radius);
	color: var(--screenus-ink-2) !important;
	background: var(--screenus-white);
	box-shadow: 0 8px 26px rgba( 20, 43, 57, 0.06 );
	text-decoration: none !important;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.screenus-card:hover,
.screenus-card:focus-visible {
	transform: translateY( -5px );
	border-color: rgba( 157, 200, 0, 0.72 );
	box-shadow: var(--screenus-shadow);
}

.screenus-card__number {
	display: inline-grid;
	width: 44px;
	height: 44px;
	place-items: center;
	margin-bottom: 26px;
	border-radius: 12px;
	color: var(--screenus-ink);
	font-size: 13px;
	font-weight: 800;
	background: rgba( 157, 200, 0, 0.18 );
}

.screenus-card h3 {
	margin-bottom: 13px !important;
}

.screenus-card p:last-child {
	margin-bottom: 0;
}

.screenus-card__link {
	display: inline-block;
	margin-top: 18px;
	color: var(--screenus-lime-dark);
	font-weight: 720;
}

.screenus-card__link::after {
	content: '  →';
}

.screenus-checklist {
	display: grid;
	grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	gap: 12px 34px;
	margin: 28px 0 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.screenus-checklist li {
	position: relative;
	padding: 10px 0 10px 32px;
}

.screenus-checklist li::before {
	position: absolute;
	top: 13px;
	left: 0;
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	content: '✓';
	border-radius: 50%;
	color: var(--screenus-ink);
	font-size: 12px;
	font-weight: 900;
	background: var(--screenus-lime);
}

.screenus-steps {
	display: grid;
	grid-template-columns: repeat( 4, minmax( 0, 1fr ) );
	gap: 16px;
	counter-reset: screenus-step;
}

.screenus-step {
	position: relative;
	padding: 30px 24px;
	border-radius: 16px;
	background: rgba( 255, 255, 255, 0.07 );
	counter-increment: screenus-step;
}

.screenus-step::before {
	display: block;
	margin-bottom: 18px;
	content: '0' counter( screenus-step );
	color: var(--screenus-lime);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.screenus-step h3 {
	font-size: 21px !important;
}

.screenus-note {
	padding: clamp( 24px, 4vw, 40px );
	border-left: 5px solid var(--screenus-lime);
	border-radius: 0 16px 16px 0;
	background: #f5f8eb;
}

.screenus-note > :last-child {
	margin-bottom: 0 !important;
}

.screenus-note p {
	max-width: 76ch;
}

.screenus-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	margin-bottom: 28px;
	color: rgba( 255, 255, 255, 0.72 );
	font-size: 15px;
}

.screenus-prose {
	width: min( 800px, calc( 100% - 40px ) );
	margin-inline: auto;
}

.screenus-prose h2 {
	margin-top: 62px !important;
}

.screenus-prose h3 {
	margin-top: 34px !important;
}

.screenus-prose ul,
.screenus-prose ol {
	margin: 0 0 1.5em 1.25em;
}

.screenus-prose li {
	margin-bottom: 0.65em;
}

.screenus-faq {
	margin-top: 32px;
	border-top: 1px solid var(--screenus-line);
}

.screenus-faq details {
	border-bottom: 1px solid var(--screenus-line);
}

.screenus-faq summary {
	position: relative;
	cursor: pointer;
	padding: 24px 48px 24px 0;
	color: var(--screenus-ink);
	font-size: 19px;
	font-weight: 720;
	list-style: none;
}

.screenus-faq summary::-webkit-details-marker {
	display: none;
}

.screenus-faq summary::after {
	position: absolute;
	top: 50%;
	right: 4px;
	content: '+';
	color: var(--screenus-lime-dark);
	font-size: 30px;
	font-weight: 400;
	transform: translateY( -50% );
}

.screenus-faq details[open] summary::after {
	content: '−';
}

.screenus-faq__answer {
	max-width: 760px;
	padding: 0 0 24px;
}

.screenus-sources {
	margin-top: 54px;
	padding: 26px 30px;
	border: 1px solid var(--screenus-line);
	border-radius: 16px;
	background: var(--screenus-cloud);
}

.screenus-sources h2 {
	margin-bottom: 12px !important;
	font-size: 22px !important;
}

.screenus-sources ul {
	margin-bottom: 0;
}

.screenus-cta {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 34px;
	align-items: center;
	padding: clamp( 34px, 6vw, 64px );
	border-radius: 24px;
	color: rgba( 255, 255, 255, 0.78 );
	background:
		radial-gradient( circle at 90% 20%, rgba( 157, 200, 0, 0.24 ), transparent 34% ),
		var(--screenus-night);
	box-shadow: var(--screenus-shadow);
}

.screenus-cta h2 {
	margin-bottom: 12px !important;
	color: var(--screenus-white) !important;
}

.screenus-cta p:last-child {
	margin-bottom: 0;
}

.screenus-taglist {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 26px 0 0;
}

.screenus-tag {
	padding: 8px 12px;
	border: 1px solid var(--screenus-line);
	border-radius: 999px;
	color: var(--screenus-muted);
	font-size: 14px;
	background: var(--screenus-white);
}

.screenus-contact-methods {
	display: grid;
	grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
	gap: 22px;
}

.screenus-contact-layout {
	display: grid;
	grid-template-columns: minmax( 0, 0.82fr ) minmax( 0, 1.18fr );
	gap: clamp( 40px, 7vw, 90px );
	align-items: start;
}

.screenus-contact-panel address {
	margin: 22px 0;
	font-size: 18px;
	font-style: normal;
	line-height: 1.7;
}

.screenus-contact-panel dl {
	margin: 0 0 30px;
}

.screenus-contact-panel dl > div {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--screenus-line);
}

.screenus-contact-panel dt {
	color: var(--screenus-muted);
	font-size: 14px;
	font-weight: 700;
}

.screenus-contact-panel dd {
	margin: 0;
	font-weight: 720;
}

.screenus-contact-form {
	padding: clamp( 26px, 4vw, 46px );
	border: 1px solid var(--screenus-line);
	border-radius: var(--screenus-radius);
	background: var(--screenus-cloud);
	box-shadow: var(--screenus-shadow);
}

.screenus-contact-form .wpcf7-form {
	display: grid;
	gap: 14px;
}

.screenus-contact-form .wpcf7-form p {
	margin: 0;
}

.screenus-contact-form .wpcf7-form-control-wrap,
.screenus-contact-form input:not( [type='submit'] ),
.screenus-contact-form select,
.screenus-contact-form textarea {
	display: block;
	width: 100%;
}

.screenus-contact-form input:not( [type='submit'] ),
.screenus-contact-form select,
.screenus-contact-form textarea {
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid #cbd6da;
	border-radius: 9px;
	color: var(--screenus-ink);
	font: inherit;
	background: #fff;
}

.screenus-contact-form textarea {
	min-height: 150px;
	resize: vertical;
}

.screenus-contact-form input:focus,
.screenus-contact-form select:focus,
.screenus-contact-form textarea:focus {
	border-color: var(--screenus-lime-dark);
	outline: 3px solid rgba( 157, 200, 0, 0.2 );
}

.screenus-contact-form input[type='submit'] {
	min-height: 48px;
	padding: 0 22px;
	border: 0;
	border-radius: 10px;
	color: var(--screenus-ink);
	font-weight: 780;
	background: var(--screenus-lime);
	cursor: pointer;
}

.screenus-contact-form .wpcf7-not-valid-tip {
	margin-top: 5px;
	color: #a33030;
	font-size: 13px;
}

.screenus-contact-form .wpcf7-response-output {
	margin: 8px 0 0 !important;
	padding: 12px 14px !important;
	border-radius: 8px;
}

@media ( max-width: 1100px ) {
	.screenus-hero h1 {
		hyphens: auto;
		overflow-wrap: anywhere;
	}

	.admin-bar .screenus-site-header {
		top: 46px;
	}

	.screenus-header-shell,
	.screenus-footer-shell {
		width: min( calc( 100% - 32px ), 1200px );
	}

	.screenus-topbar-location {
		display: none;
	}

	.screenus-site-topbar .screenus-header-shell {
		justify-content: flex-end;
	}

	.screenus-utility-nav {
		width: 100%;
		justify-content: space-between;
		gap: 12px;
	}

	.screenus-header-main .screenus-header-shell {
		min-height: 68px;
		justify-content: space-between;
	}

	.screenus-brand img {
		width: 39px;
		height: 39px;
	}

	.screenus-brand strong {
		font-size: 21px;
	}

	.screenus-menu-toggle {
		display: grid;
		width: 44px;
		height: 44px;
		padding: 11px 9px;
		border: 1px solid var(--screenus-line);
		border-radius: 10px;
		place-content: center;
		gap: 4px;
		background: #fff;
		cursor: pointer;
	}

	.screenus-menu-toggle > span:not(.screen-reader-text) {
		display: block;
		width: 21px;
		height: 2px;
		border-radius: 2px;
		background: var(--screenus-ink);
		transition: transform 160ms ease, opacity 160ms ease;
	}

	.screenus-menu-open .screenus-menu-toggle > span:nth-child( 1 ) {
		transform: translateY( 6px ) rotate( 45deg );
	}

	.screenus-menu-open .screenus-menu-toggle > span:nth-child( 2 ) {
		opacity: 0;
	}

	.screenus-menu-open .screenus-menu-toggle > span:nth-child( 3 ) {
		transform: translateY( -6px ) rotate( -45deg );
	}

	.screenus-primary-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		max-height: 0;
		border-top: 1px solid transparent;
		background: #fff;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		transition: max-height 240ms ease, opacity 160ms ease, visibility 160ms ease;
	}

	.screenus-menu-open .screenus-primary-nav {
		max-height: calc( 100vh - 103px );
		border-top-color: var(--screenus-line);
		overflow-y: auto;
		opacity: 1;
		visibility: visible;
		box-shadow: 0 24px 40px rgba( 11, 28, 39, 0.12 );
	}

	.screenus-primary-nav > ul {
		display: block;
		width: min( calc( 100% - 32px ), 1200px );
		margin: 0 auto;
		padding: 10px 0 18px;
	}

	.screenus-primary-nav > ul > li {
		display: grid;
		grid-template-columns: 1fr auto;
		border-bottom: 1px solid var(--screenus-line);
	}

	.screenus-primary-nav > ul > li > a,
	.screenus-primary-nav .screenus-nav-contact {
		min-height: 50px;
		padding: 0 4px;
		border-radius: 0;
		font-size: 16px;
		background: transparent;
	}

	.screenus-primary-nav > ul > li > a::after {
		display: none;
	}

	.screenus-submenu-indicator {
		display: none;
	}

	.screenus-submenu-toggle {
		display: grid;
		width: 44px;
		min-height: 50px;
		padding: 0;
		border: 0;
		color: var(--screenus-ink);
		font-size: 21px;
		background: transparent;
		place-items: center;
		cursor: pointer;
		transition: transform 160ms ease;
	}

	.screenus-submenu-open > .screenus-submenu-toggle {
		font-size: 0;
	}

	.screenus-submenu-open > .screenus-submenu-toggle::after {
		content: '−';
		font-size: 21px;
	}

	.screenus-primary-nav li > ul {
		position: static;
		grid-column: 1 / -1;
		display: none;
		width: auto;
		padding: 0 0 12px 12px;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.screenus-primary-nav li > .screenus-mega-menu {
		position: static;
		grid-column: 1 / -1;
		display: none;
		width: auto;
		padding: 4px 0 12px 12px;
		border: 0;
		border-radius: 0;
		grid-template-columns: 1fr;
		gap: 6px;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.screenus-mega-menu section {
		padding: 0;
	}

	.screenus-mega-menu__title {
		margin: 12px 12px 3px;
	}

	.screenus-primary-nav .screenus-submenu-open > ul {
		display: grid;
	}

	.screenus-primary-nav li.screenus-submenu-open > .screenus-mega-menu {
		display: grid;
		transform: none;
	}

	.screenus-primary-nav li > ul a,
	.screenus-primary-nav .screenus-mega-menu a {
		padding: 9px 12px;
	}

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

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

	.screenus-contact-layout {
		grid-template-columns: 1fr;
	}

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

	.screenus-intro {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.screenus-hero {
		min-height: 540px;
		background-position: 62% center;
	}
}

@media ( max-width: 700px ) {
	.screenus-utility-nav {
		font-size: 11px;
		letter-spacing: 0;
	}

	.screenus-footer-grid {
		grid-template-columns: 1fr;
		gap: 38px;
		padding-top: 54px;
		padding-bottom: 48px;
	}

	.screenus-footer-bottom .screenus-footer-shell {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		gap: 8px;
		padding-top: 16px;
		padding-bottom: 16px;
	}

	.screenus-contact-methods {
		grid-template-columns: 1fr;
	}

	.screenus-modern-page .fusion-secondary-header .fusion-alignleft,
	.screenus-modern-page .fusion-secondary-menu > ul > li:nth-child( n + 4 ),
	.screenus-modern-page .fusion-secondary-menu .fusion-mobile-menu-sep {
		display: none !important;
	}

	.screenus-modern-page .fusion-mobile-logo {
		width: 180px !important;
		height: auto !important;
		max-height: 36px !important;
		content: url('/wp-content/uploads/2017/01/SCREENUS_Logo_256x51.png');
	}

	.screenus-modern-page .fusion-header {
		padding-top: 13px !important;
		padding-bottom: 13px !important;
		background-color: #fff !important;
	}

	.screenus-modern-page .post-content {
		font-size: 16px;
	}

	.screenus-shell,
	.screenus-prose {
		width: min( 100% - 28px, 1180px );
	}

	.screenus-section {
		padding: 58px 0;
	}

	.screenus-hero,
	.screenus-hero--home {
		min-height: 560px;
		background:
			linear-gradient( 90deg, rgba( 6, 16, 24, 0.97 ), rgba( 7, 18, 27, 0.78 ) ),
			url('/wp-content/uploads/2026/08/screenus-secure-infrastructure-hero.webp') 64% center / cover no-repeat;
	}

	.screenus-hero__content {
		padding: 64px 0 78px;
	}

	.screenus-hero__lead {
		font-size: 20px;
	}

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

	.screenus-quickfacts,
	.screenus-grid,
	.screenus-grid--2,
	.screenus-checklist,
	.screenus-steps,
	.screenus-cta {
		grid-template-columns: 1fr;
	}

	.screenus-quickfact {
		border-bottom: 1px solid rgba( 255, 255, 255, 0.12 );
	}

	.screenus-cta .screenus-actions {
		margin-top: 0;
	}
}

/* Blog index and editorial articles */
.screenus-blog-intro {
	padding: clamp( 68px, 9vw, 118px ) 0 clamp( 54px, 7vw, 88px );
	background:
		radial-gradient( circle at 82% 18%, rgba( 157, 200, 0, 0.2 ), transparent 28% ),
		linear-gradient( 135deg, #071019 0%, #102432 68%, #15313c 100% );
	color: #fff;
}

.screenus-blog-intro .screenus-shell {
	display: grid;
	grid-template-columns: minmax( 0, 1.15fr ) minmax( 280px, 0.65fr );
	gap: clamp( 32px, 7vw, 90px );
	align-items: end;
}

.screenus-blog-intro h1 {
	max-width: 820px;
	margin: 0.22em 0 0.32em;
	color: #fff;
	font-size: clamp( 2.65rem, 6vw, 5.25rem );
	line-height: 0.98;
}

/* Keep the editorial hero light on the dark background. The broader modern-page
 * heading rule intentionally has higher specificity, so this override must match it. */
.screenus-modern-page .post-content .screenus-blog-intro h1 {
	color: #fff;
}

.screenus-blog-intro__copy {
	max-width: 760px;
	margin: 0;
	color: #d5dee3;
	font-size: clamp( 1.08rem, 2vw, 1.35rem );
	line-height: 1.65;
}

.screenus-blog-principles {
	padding: 26px;
	border: 1px solid rgba( 255, 255, 255, 0.15 );
	border-radius: 18px;
	background: rgba( 255, 255, 255, 0.06 );
	box-shadow: 0 24px 50px rgba( 0, 0, 0, 0.2 );
	backdrop-filter: blur( 12px );
}

.screenus-blog-principles strong {
	display: block;
	margin-bottom: 0.75rem;
	color: var(--screenus-lime);
	font-size: 0.8rem;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.screenus-article-review {
	margin: -10px 0 30px;
	padding: 13px 16px;
	border-left: 3px solid var(--screenus-lime);
	color: #445b66;
	font-size: 0.96rem;
	line-height: 1.55;
	background: #f4f7f5;
}

.screenus-article-review strong {
	color: var(--screenus-ink);
}

.screenus-blog-principles p {
	margin: 0;
	color: #eef3f5;
	font-size: 0.98rem;
	line-height: 1.65;
}

.screenus-blog-listing {
	padding: clamp( 64px, 8vw, 108px ) 0;
	background: #f4f7f5;
}

.screenus-blog-listing__heading {
	display: flex;
	justify-content: space-between;
	gap: 32px;
	align-items: end;
	margin-bottom: clamp( 32px, 5vw, 58px );
}

.screenus-blog-listing__heading h2 {
	max-width: 650px;
	margin: 0.2em 0 0;
}

.screenus-blog-listing__heading p {
	max-width: 520px;
	margin: 0;
	color: #526873;
}

.screenus-blog-grid {
	display: grid;
	grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
	gap: 28px;
}

.screenus-blog-grid:has( > .screenus-blog-card:only-child ) {
	grid-template-columns: minmax( 0, 620px );
}

.screenus-blog-card {
	overflow: hidden;
	border: 1px solid #dce4e1;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 18px 44px rgba( 15, 35, 46, 0.08 );
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.screenus-blog-card:hover {
	transform: translateY( -5px );
	box-shadow: 0 26px 58px rgba( 15, 35, 46, 0.14 );
}

.screenus-blog-card__visual {
	position: relative;
	display: grid;
	min-height: 220px;
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient( circle at 72% 26%, rgba( 157, 200, 0, 0.48 ), transparent 22% ),
		linear-gradient( 142deg, #09141e, #174052 );
	color: #fff;
	text-decoration: none;
}

.screenus-blog-card__visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.screenus-blog-card__monogram {
	color: rgba( 255, 255, 255, 0.13 );
	font-size: 8.5rem;
	font-weight: 800;
	line-height: 1;
}

.screenus-blog-card__visual-label {
	position: absolute;
	right: 22px;
	bottom: 18px;
	left: 22px;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.screenus-blog-card__body {
	display: flex;
	min-height: 330px;
	flex-direction: column;
	padding: 28px;
}

.screenus-blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-bottom: 18px;
	color: #657983;
	font-size: 0.8rem;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.screenus-blog-card__meta span:first-child {
	color: #668900;
}

.screenus-blog-card h3 {
	margin: 0 0 14px;
	font-size: clamp( 1.35rem, 2.2vw, 1.7rem );
	line-height: 1.25;
}

.screenus-blog-card h3 a {
	color: #10202c;
	text-decoration: none;
}

.screenus-blog-card__body > p {
	margin: 0 0 24px;
	color: #526873;
	line-height: 1.65;
}

.screenus-blog-card__link {
	margin-top: auto;
	color: #526f00;
	font-weight: 800;
	text-decoration: none;
}

.screenus-blog-empty {
	padding: 42px;
	border: 1px dashed #b8c8c2;
	border-radius: 18px;
	background: #fff;
}

.screenus-blog-pagination {
	margin-top: 48px;
}

.screenus-blog-pagination .page-numbers {
	display: flex;
	gap: 8px;
	justify-content: center;
	padding: 0;
	list-style: none;
}

.screenus-blog-pagination a,
.screenus-blog-pagination span {
	display: grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 10px;
	background: #fff;
	text-decoration: none;
}

.screenus-blog-post .fusion-page-title-bar {
	min-height: clamp( 250px, 34vw, 420px );
}

.screenus-blog-post .fusion-page-title-bar h1,
.screenus-blog-post .entry-title {
	max-width: 980px;
	font-size: clamp( 2.4rem, 5vw, 4.7rem );
	line-height: 1.04;
}

.screenus-blog-post #main {
	padding-top: clamp( 48px, 7vw, 86px );
	padding-bottom: clamp( 70px, 9vw, 120px );
}

.screenus-blog-post .post-content,
.screenus-blog-post .fusion-post-content {
	font-size: 1.08rem;
	line-height: 1.78;
}

.screenus-article-shell {
	max-width: 920px;
	margin: 0 auto;
}

.screenus-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin-bottom: 24px;
	color: #60747d;
	font-size: 0.82rem;
	font-weight: 750;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.screenus-article-lead {
	margin: 0 0 42px;
	color: #29404d;
	font-size: clamp( 1.28rem, 2.5vw, 1.62rem );
	font-weight: 500;
	line-height: 1.55;
}

.screenus-article-keyfacts {
	display: grid;
	grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
	gap: 14px;
	margin: 40px 0 54px;
}

.screenus-article-keyfacts > div {
	padding: 22px;
	border: 1px solid #dbe4df;
	border-radius: 15px;
	background: #f4f7f5;
}

.screenus-article-keyfacts strong {
	display: block;
	margin-bottom: 5px;
	color: #5e7e00;
	font-size: 1.45rem;
}

.screenus-article-shell h2 {
	margin-top: 1.75em;
	scroll-margin-top: 120px;
}

.screenus-article-shell h3 {
	margin-top: 1.5em;
}

.screenus-article-callout {
	margin: 42px 0;
	padding: clamp( 24px, 4vw, 34px );
	border-left: 5px solid var(--screenus-lime);
	border-radius: 0 15px 15px 0;
	background: #eef4df;
}

.screenus-article-callout h3 {
	margin-top: 0;
}

.screenus-article-steps {
	display: grid;
	gap: 14px;
	margin: 32px 0 46px;
	padding: 0;
	list-style: none;
	counter-reset: screenus-steps;
}

.screenus-article-steps li {
	position: relative;
	min-height: 64px;
	padding: 18px 20px 18px 72px;
	border: 1px solid #dce4e1;
	border-radius: 14px;
	background: #fff;
	counter-increment: screenus-steps;
}

.screenus-article-steps li::before {
	position: absolute;
	top: 14px;
	left: 16px;
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 10px;
	background: #10202c;
	color: #fff;
	font-weight: 800;
	content: counter( screenus-steps );
}

.screenus-article-sources {
	margin-top: 58px;
	padding: 28px;
	border-radius: 16px;
	background: #0c1b26;
	color: #dbe5e9;
}

.screenus-site-shell.single-post article .post-content .screenus-article-sources h2 {
	margin: 0 0 12px;
	color: #fff !important;
	font-size: 1.35rem;
}

.screenus-site-shell.single-post article .post-content .screenus-article-sources p,
.screenus-site-shell.single-post article .post-content .screenus-article-sources li {
	color: #dbe5e9 !important;
}

.screenus-site-shell.single-post article .post-content .screenus-article-sources li::marker {
	color: #dbe5e9;
}

.screenus-site-shell.single-post article .post-content .screenus-article-sources a,
.screenus-site-shell.single-post article .post-content .screenus-article-sources a:visited {
	color: #c9ef52 !important;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.screenus-site-shell.single-post article .post-content .screenus-article-sources a:hover,
.screenus-site-shell.single-post article .post-content .screenus-article-sources a:focus-visible {
	color: #fff !important;
}

.screenus-article-note {
	margin-top: 24px;
	color: #687b84;
	font-size: 0.96rem;
	line-height: 1.65;
}

@media ( max-width: 980px ) {
	.screenus-blog-intro .screenus-shell,
	.screenus-blog-grid {
		grid-template-columns: 1fr 1fr;
	}

	.screenus-blog-intro__main {
		grid-column: 1 / -1;
	}
}

@media ( max-width: 700px ) {
	.screenus-blog-intro .screenus-shell,
	.screenus-blog-grid,
	.screenus-article-keyfacts {
		grid-template-columns: 1fr;
	}

	.screenus-blog-listing__heading {
		display: block;
	}

	.screenus-blog-listing__heading p {
		margin-top: 16px;
	}

	.screenus-blog-card__body {
		min-height: 0;
	}
}

/* Avada 7.16 foundation refresh: legacy posts, archives, search and 404. */
body.screenus-site-shell:not(.screenus-modern-page) {
	color: var(--screenus-ink-2);
	background: var(--screenus-cloud);
}

body.screenus-site-shell:not(.screenus-modern-page) .fusion-page-title-bar {
	position: relative;
	height: auto !important;
	min-height: 170px;
	padding: 0 !important;
	overflow: hidden;
	border: 0 !important;
	background:
		radial-gradient( circle at 80% 12%, rgba( 157, 200, 0, 0.2 ), transparent 28% ),
		linear-gradient( 135deg, #071019 0%, #132532 100% ) !important;
}

body.screenus-site-shell:not(.screenus-modern-page) .fusion-page-title-bar::after {
	position: absolute;
	right: -80px;
	bottom: -145px;
	width: 360px;
	height: 360px;
	border: 1px solid rgba( 255, 255, 255, 0.08 );
	border-radius: 50%;
	box-shadow:
		0 0 0 54px rgba( 255, 255, 255, 0.025 ),
		0 0 0 108px rgba( 255, 255, 255, 0.018 );
	content: "";
}

body.screenus-site-shell:not(.screenus-modern-page) .fusion-page-title-row {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: 170px;
	align-items: center;
	padding-top: 34px;
	padding-bottom: 34px;
}

body.screenus-site-shell:not(.screenus-modern-page) .fusion-page-title-wrapper {
	width: 100%;
	gap: 28px;
}

body.screenus-site-shell:not(.screenus-modern-page) .fusion-page-title-captions {
	max-width: 830px;
}

body.screenus-site-shell:not(.screenus-modern-page) .fusion-page-title-captions h1,
body.screenus-site-shell:not(.screenus-modern-page) .fusion-page-title-captions h2 {
	margin: 0 !important;
	color: #fff !important;
	font-size: clamp( 2rem, 3.4vw, 3.2rem ) !important;
	font-weight: 700 !important;
	letter-spacing: -0.035em;
	line-height: 1.12 !important;
}

body.screenus-site-shell:not(.screenus-modern-page) .fusion-page-title-secondary {
	max-width: 34%;
}

body.screenus-site-shell:not(.screenus-modern-page) .fusion-breadcrumbs,
body.screenus-site-shell:not(.screenus-modern-page) .fusion-breadcrumbs a,
body.screenus-site-shell:not(.screenus-modern-page) .fusion-breadcrumbs span {
	color: #c7d1d8 !important;
	font-size: 0.76rem !important;
	font-weight: 600;
	line-height: 1.5;
}

body.screenus-site-shell:not(.screenus-modern-page) .fusion-breadcrumbs a:hover,
body.screenus-site-shell:not(.screenus-modern-page) .fusion-breadcrumbs a:focus-visible {
	color: var(--screenus-lime) !important;
}

body.screenus-site-shell:not(.screenus-modern-page) #main {
	padding-top: clamp( 58px, 7vw, 92px );
	padding-bottom: clamp( 68px, 8vw, 108px );
	background: var(--screenus-cloud);
}

body.screenus-site-shell:not(.screenus-modern-page) #main > .fusion-row {
	width: min( calc( 100% - 48px ), 1200px );
	max-width: none;
}

/* Search and archive cards */
.screenus-site-shell.search #content,
.screenus-site-shell.archive #content,
.screenus-site-shell.blog #content {
	width: 100% !important;
}

.screenus-site-shell.search .fusion-posts-container,
.screenus-site-shell.archive .fusion-posts-container,
.screenus-site-shell.blog .fusion-posts-container {
	display: grid !important;
	grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	gap: 30px;
	height: auto !important;
}

.screenus-site-shell.search .fusion-post-grid,
.screenus-site-shell.archive .fusion-post-grid,
.screenus-site-shell.blog .fusion-post-grid {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	width: auto !important;
	margin: 0 !important;
	transform: none !important;
}

.screenus-site-shell.search .fusion-post-wrapper,
.screenus-site-shell.archive .fusion-post-wrapper,
.screenus-site-shell.blog .fusion-post-wrapper {
	display: flex;
	height: 100%;
	min-height: 320px;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--screenus-line) !important;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 48px rgba( 11, 28, 39, 0.09 );
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.screenus-site-shell.search .fusion-post-wrapper:hover,
.screenus-site-shell.archive .fusion-post-wrapper:hover,
.screenus-site-shell.blog .fusion-post-wrapper:hover {
	box-shadow: 0 24px 56px rgba( 11, 28, 39, 0.14 );
	transform: translateY( -4px );
}

.screenus-site-shell.search .fusion-image-wrapper,
.screenus-site-shell.archive .fusion-image-wrapper,
.screenus-site-shell.blog .fusion-image-wrapper {
	aspect-ratio: 16 / 8.5;
	overflow: hidden;
}

.screenus-site-shell.search .fusion-image-wrapper img,
.screenus-site-shell.archive .fusion-image-wrapper img,
.screenus-site-shell.blog .fusion-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.screenus-site-shell.search .fusion-post-content-wrapper,
.screenus-site-shell.archive .fusion-post-content-wrapper,
.screenus-site-shell.blog .fusion-post-content-wrapper {
	display: flex;
	height: 100%;
	flex: 1 1 auto;
	flex-direction: column;
	padding: clamp( 25px, 4vw, 38px ) !important;
}

.screenus-site-shell.search .fusion-post-content,
.screenus-site-shell.archive .fusion-post-content,
.screenus-site-shell.blog .fusion-post-content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.screenus-site-shell.search .fusion-post-title,
.screenus-site-shell.archive .fusion-post-title,
.screenus-site-shell.blog .fusion-post-title {
	margin: 0 0 12px !important;
	font-size: clamp( 1.35rem, 2.2vw, 1.8rem ) !important;
	font-weight: 700 !important;
	letter-spacing: -0.025em;
	line-height: 1.25 !important;
}

.screenus-site-shell.search .fusion-post-title a,
.screenus-site-shell.archive .fusion-post-title a,
.screenus-site-shell.blog .fusion-post-title a {
	color: var(--screenus-ink) !important;
}

.screenus-site-shell.search .fusion-post-title a:hover,
.screenus-site-shell.search .fusion-post-title a:focus-visible,
.screenus-site-shell.archive .fusion-post-title a:hover,
.screenus-site-shell.archive .fusion-post-title a:focus-visible,
.screenus-site-shell.blog .fusion-post-title a:hover,
.screenus-site-shell.blog .fusion-post-title a:focus-visible {
	color: var(--screenus-lime-dark) !important;
}

.screenus-site-shell.search .fusion-single-line-meta,
.screenus-site-shell.archive .fusion-single-line-meta,
.screenus-site-shell.blog .fusion-single-line-meta {
	order: -1;
	margin: 0 0 13px !important;
	color: var(--screenus-lime-dark);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.screenus-site-shell.search .fusion-content-sep,
.screenus-site-shell.archive .fusion-content-sep,
.screenus-site-shell.blog .fusion-content-sep {
	display: none;
}

.screenus-site-shell.search .fusion-post-content-container,
.screenus-site-shell.archive .fusion-post-content-container,
.screenus-site-shell.blog .fusion-post-content-container {
	color: #52636e;
	font-size: 1rem;
	line-height: 1.7;
}

.screenus-site-shell.search .fusion-meta-info,
.screenus-site-shell.archive .fusion-meta-info,
.screenus-site-shell.blog .fusion-meta-info {
	margin-top: auto;
	padding: 18px 0 0;
	border: 0;
}

.screenus-site-shell.search .fusion-read-more,
.screenus-site-shell.archive .fusion-read-more,
.screenus-site-shell.blog .fusion-read-more {
	color: var(--screenus-lime-dark) !important;
	font-size: 0.9rem;
	font-weight: 800;
}

.screenus-site-shell.search .fusion-search-form,
.screenus-site-shell.error404 .fusion-search-form {
	overflow: hidden;
	border: 1px solid #cbd6dc;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 28px rgba( 11, 28, 39, 0.07 );
}

.screenus-site-shell.search .fusion-search-form input[type="search"],
.screenus-site-shell.error404 .fusion-search-form input[type="search"] {
	height: 50px;
	padding-inline: 17px;
	border: 0 !important;
	color: var(--screenus-ink);
	font-size: 1rem;
}

.screenus-site-shell.search .fusion-search-submit,
.screenus-site-shell.error404 .fusion-search-submit {
	width: 54px;
	height: 50px;
	border: 0;
	color: var(--screenus-ink) !important;
	background: var(--screenus-lime) !important;
}

.screenus-site-shell.search .fusion-blog-pagination,
.screenus-site-shell.archive .fusion-blog-pagination,
.screenus-site-shell.blog .fusion-blog-pagination {
	margin-top: 42px;
}

/* Single-post reading experience */
.screenus-site-shell.single-post #content {
	width: min( 100%, 880px ) !important;
	margin: 0 auto !important;
	float: none !important;
}

.screenus-site-shell.single-post #sidebar {
	display: none !important;
}

.screenus-site-shell.single-post .single-navigation {
	margin: 0 0 34px;
	padding: 0 0 18px;
	border-bottom: 1px solid var(--screenus-line);
	color: var(--screenus-muted);
	font-size: 0.9rem;
}

.screenus-site-shell.single-post article .post-content {
	color: #334751;
	font-size: 1.1rem;
	line-height: 1.85;
}

.screenus-site-shell.single-post article .post-content > p {
	margin: 0 0 1.55em;
}

.screenus-site-shell.single-post article .post-content h2,
.screenus-site-shell.single-post article .post-content h3,
.screenus-site-shell.single-post article .post-content h4 {
	margin-top: 2.2em;
	color: var(--screenus-ink) !important;
	font-weight: 700 !important;
	letter-spacing: -0.025em;
}

.screenus-site-shell.single-post .fusion-meta-info {
	margin-top: 42px;
	padding: 20px 0;
	border-color: var(--screenus-line);
	color: var(--screenus-muted);
}

.screenus-site-shell.single-post .fusion-sharing-box {
	margin-top: 44px;
	padding: 28px;
	border-radius: 16px;
	background: var(--screenus-night);
}

.screenus-site-shell.single-post .fusion-sharing-box h4 {
	color: #fff !important;
	font-size: 1.05rem !important;
	font-weight: 700 !important;
}

.screenus-site-shell.single-post .related-posts {
	margin-top: 60px;
}

.screenus-site-shell.single-post .related-posts > .fusion-title h3 {
	color: var(--screenus-ink) !important;
	font-size: 1.7rem !important;
	font-weight: 700 !important;
}

/* Purposeful error page rather than a theme default. */
.screenus-site-shell.error404 #post-404page > .post-content > .fusion-title {
	display: none;
}

.screenus-site-shell.error404 .error-page .fusion-columns {
	display: grid;
	grid-template-columns: 0.8fr 1fr 1.35fr;
	gap: 26px;
}

.screenus-site-shell.error404 .error-page .fusion-column {
	width: auto !important;
	margin: 0 !important;
	padding: clamp( 26px, 4vw, 40px );
	border: 1px solid var(--screenus-line);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 48px rgba( 11, 28, 39, 0.08 );
}

.screenus-site-shell.error404 .error-page .fusion-error-page-404 {
	display: grid;
	place-items: center;
	border-color: var(--screenus-night);
	background:
		radial-gradient( circle at 70% 25%, rgba( 157, 200, 0, 0.2 ), transparent 34% ),
		var(--screenus-night);
}

.screenus-site-shell.error404 .error-message {
	color: var(--screenus-lime);
	font-size: clamp( 5rem, 10vw, 8rem );
	font-weight: 800;
	letter-spacing: -0.07em;
	line-height: 1;
}

.screenus-site-shell.error404 .error-page h3 {
	margin: 0 0 20px;
	color: var(--screenus-ink) !important;
	font-size: 1.35rem !important;
	font-weight: 700 !important;
}

.screenus-site-shell.error404 .fusion-404-checklist li {
	padding-block: 6px;
}

.screenus-site-shell.error404 .fusion-404-checklist a {
	color: var(--screenus-ink-2) !important;
	font-weight: 650;
}

@media ( max-width: 900px ) {
	body.screenus-site-shell:not(.screenus-modern-page) .fusion-page-title-wrapper {
		display: block;
	}

	body.screenus-site-shell:not(.screenus-modern-page) .fusion-page-title-secondary {
		display: none;
	}

	.screenus-site-shell.error404 .error-page .fusion-columns {
		grid-template-columns: 1fr 1fr;
	}

	.screenus-site-shell.error404 .error-page .fusion-error-page-404 {
		grid-column: 1 / -1;
	}
}

@media ( max-width: 700px ) {
	body.screenus-site-shell:not(.screenus-modern-page) .fusion-page-title-bar,
	body.screenus-site-shell:not(.screenus-modern-page) .fusion-page-title-row {
		min-height: 144px;
	}

	body.screenus-site-shell:not(.screenus-modern-page) .fusion-page-title-row {
		width: min( calc( 100% - 28px ), 1200px ) !important;
	}

	body.screenus-site-shell:not(.screenus-modern-page) .fusion-page-title-captions h1,
	body.screenus-site-shell:not(.screenus-modern-page) .fusion-page-title-captions h2 {
		font-size: clamp( 1.75rem, 8vw, 2.45rem ) !important;
	}

	body.screenus-site-shell:not(.screenus-modern-page) #main > .fusion-row {
		width: min( calc( 100% - 28px ), 1200px );
	}

	.screenus-site-shell.search .fusion-posts-container,
	.screenus-site-shell.archive .fusion-posts-container,
	.screenus-site-shell.blog .fusion-posts-container,
	.screenus-site-shell.error404 .error-page .fusion-columns {
		grid-template-columns: 1fr;
	}

	.screenus-site-shell.single-post article .post-content {
		font-size: 1rem;
		line-height: 1.78;
	}

	.screenus-site-shell.single-post .fusion-sharing-box {
		padding: 22px;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	.screenus-button,
	.screenus-card {
		transition: none;
	}
}

/* Keep legal hero headings readable against the dark global shell. */
.screenus-modern-page .post-content .screenus-legal-hero h1 {
	color: #fff;
}

/* Editorial visuals on substantive menu pages */
.screenus-visual-story {
	position: relative;
	z-index: 3;
	margin-top: -52px;
	padding: 0 0 clamp( 64px, 8vw, 104px );
}

.screenus-editorial-image {
	position: relative;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba( 255, 255, 255, 0.14 );
	border-radius: 24px;
	background: var(--screenus-night);
	box-shadow: 0 28px 70px rgba( 6, 18, 27, 0.2 );
}

.screenus-editorial-image__media {
	display: block;
	width: 100%;
	height: clamp( 390px, 52vw, 620px );
	object-fit: cover;
}

.screenus-visual-story--it .screenus-editorial-image__media {
	object-position: 38% center;
}

.screenus-visual-story--farm .screenus-editorial-image__media {
	object-position: 64% center;
}

.screenus-editorial-image::after {
	position: absolute;
	inset: 35% 0 0;
	pointer-events: none;
	background: linear-gradient( to bottom, transparent, rgba( 5, 15, 23, 0.9 ) );
	content: "";
}

.screenus-editorial-image figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax( 180px, 0.32fr ) minmax( 0, 1fr );
	gap: clamp( 1rem, 4vw, 3rem );
	align-items: end;
	padding: clamp( 24px, 4vw, 42px );
	color: #fff;
}

.screenus-editorial-image__label {
	color: var(--screenus-lime);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.screenus-editorial-image__caption {
	max-width: 720px;
	font-size: clamp( 1rem, 2vw, 1.22rem );
	font-weight: 620;
	line-height: 1.55;
}

@media ( max-width: 700px ) {
	.screenus-visual-story {
		margin-top: -24px;
		padding-bottom: 58px;
	}

	.screenus-editorial-image {
		border-radius: 18px;
	}

	.screenus-editorial-image__media {
		height: 270px;
	}

	.screenus-editorial-image::after {
		display: none;
	}

	.screenus-editorial-image figcaption {
		position: static;
		grid-template-columns: 1fr;
		gap: 0.7rem;
		padding: 20px;
		background: linear-gradient( 135deg, #071019, #13222e );
	}
}
