/**
 * Redesign foundation.
 *
 * Shared production components load after the established template and
 * Bootstrap grid styles so both markup generations follow one cascade.
 */

:root {
	--sa-font-section-heading: 'Space Grotesk', sans-serif;
	--sa-font-post-heading: 'Poppins', sans-serif;
	--sa-font-body: 'DM Sans', sans-serif;
	--sa-font-button: 'Space Grotesk', sans-serif;
	/* Backwards-compatible aliases for existing foundation components. */
	--sa-font-heading: var(--sa-font-section-heading);
	--sa-color-ink: #171719;
	--sa-color-muted: #626269;
	--sa-color-brand: #9c0013;
	--sa-color-surface: #f5f5f6;
	--sa-content-width: 1320px;
}

html body,
button,
input,
select,
textarea {
	font-family: var(--sa-font-body);
}

html body {
	/*
	 * A failed late WordPress/plugin request can leak the core wp_die() error
	 * page rule into an otherwise complete front-end response. That rule sets
	 * body to max-width:700px with margins, padding, a border and a shadow,
	 * collapsing every Bootstrap grid on the page. Keep the document canvas
	 * deterministic even when that legacy error CSS is printed after wp_head.
	 */
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
}

html body#error-page p,
html body#error-page .wp-die-message {
	font-size: 16px !important;
}

html body#error-page .sa-legacy-post-main .single-post-content p,
html body#error-page .sa-legacy-post-main .single-post-content li {
	font-size: 18px !important;
	line-height: 1.6 !important;
}

html body#error-page #single-post-meta .post-author-name {
	margin: 0 !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
}

/*
 * Taxonomy templates render a floated featured card immediately before Ajax
 * Load More. Establish separate block formatting contexts so the ALM wrapper
 * cannot cover the card and intercept its links/click handler.
 */
#category-page > .featured-report-post-div {
	position: relative;
	z-index: 2;
	float: none;
	width: 100%;
	isolation: isolate;
}

#category-page > .featured-report-post-div::before,
#category-page > .featured-report-post-div::after,
#category-page > .ajax-load-more-wrap::before,
#category-page > .ajax-load-more-wrap::after {
	display: table;
	content: '';
}

#category-page > .featured-report-post-div::after,
#category-page > .ajax-load-more-wrap::after {
	clear: both;
}

#category-page > .ajax-load-more-wrap {
	position: relative;
	z-index: 1;
	display: block;
	float: none;
	clear: both;
	width: 100%;
	height: auto !important;
	min-height: 0 !important;
}

#category-page > .ajax-load-more-wrap .alm-listing,
#category-page > .ajax-load-more-wrap .alm-reveal {
	position: relative;
	z-index: auto;
	height: auto !important;
	min-height: 0 !important;
}

/*
 * The banner carousel normally becomes visible when Owl initializes. Display
 * its first campaign as a no-JavaScript/error fallback so article pages never
 * lose the production banner when another legacy script fails earlier.
 */
#top-banners-carousel:not(.owl-loaded) {
	display: block;
}

#top-banners-carousel:not(.owl-loaded) .item {
	display: none;
}

#top-banners-carousel:not(.owl-loaded) .item:first-child {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
.sa-section-heading {
	font-family: var(--sa-font-heading) !important;
	font-weight: 700;
}

.text-poppins {
	font-family: var(--sa-font-post-heading) !important;
}

.text-dm-sans {
	font-family: var(--sa-font-body) !important;
}

.screen-reader-text,
.sa-page-anchor {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sa-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 10000;
	padding: 10px 14px;
	background: #fff;
	color: #111;
	font-weight: 700;
	transform: translateY(-150%);
}

.sa-skip-link:focus {
	color: #111;
	transform: translateY(0);
}

:where(a, button, input, select, textarea, summary):focus-visible {
	outline: 3px solid #ff6678 !important;
	outline-offset: 3px;
}

/* Shared accessible information disclosure. */
.sa-popover {
	position: relative;
	display: inline-flex;
	font-family: var(--sa-font-body);
}

.sa-popover__trigger {
	display: inline-grid;
	place-items: center;
	min-width: 2.75rem;
	min-height: 2.75rem;
	padding: 15px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.sa-popover__content {
	position: absolute;
	bottom: calc(100% + 0.5rem);
	left: 50%;
	z-index: 50;
	width: min(20rem, calc(100vw - 2rem));
	padding: 0.875rem 1rem;
	border: 1px solid #d7d7da;
	border-radius: 0.375rem;
	background: #fff;
	box-shadow: 0 0.75rem 2rem rgb(0 0 0 / 18%);
	color: var(--sa-color-ink);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
	text-transform: none;
	transform: translateX(-50%);
}

.sa-popover__content[hidden] {
	display: none;
}

.sa-popover__title,
.sa-popover__content > span {
	display: block;
}

.sa-popover__title:not(:empty) {
	margin-bottom: 0.35rem;
	font-family: var(--sa-font-heading);
}

.sa-form-help {
	display: block;
	margin-top: 0.375rem;
	color: var(--sa-color-muted);
	font-size: 0.8125rem;
	line-height: 1.4;
}

/* Phase 3 editorial archives and story river. */
.sa-archive {
	width: 100%;
	color: var(--sa-color-ink);
}

.sa-archive__header {
	padding: clamp(42px, 7vw, 92px) 16px;
	background: #111113;
	color: #fff;
}

.sa-archive__header-inner,
.sa-archive__layout,
.sa-archive__notice {
	width: min(100%, var(--sa-content-width));
	margin-inline: auto;
}

.sa-archive__header-inner {
	display: flex;
	align-items: center;
	gap: clamp(20px, 4vw, 52px);
}

.sa-archive__header h1 {
	max-width: 960px;
	margin: 0;
	color: inherit;
	font-size: clamp(34px, 5vw, 68px);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.04;
}

.sa-archive__eyebrow,
.sa-story-card__kicker {
	margin: 0 0 8px;
	color: #df3045;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.sa-archive__description {
	max-width: 760px;
	margin-top: 18px;
	color: #d5d5d8;
	font-size: 17px;
	line-height: 1.65;
}

.sa-archive__description p:last-child {
	margin-bottom: 0;
}

.sa-archive__author-avatar {
	flex: 0 0 auto;
	width: clamp(96px, 12vw, 160px);
	height: clamp(96px, 12vw, 160px);
	border-radius: 50%;
	object-fit: cover;
}

.sa-archive__sponsor {
	display: grid;
	flex: 0 0 auto;
	gap: 8px;
	margin-left: auto;
	color: #bdbdc2;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sa-archive__sponsor img {
	max-width: 180px;
	max-height: 72px;
	object-fit: contain;
}

.sa-archive__notice {
	margin-top: 28px;
	padding: 18px 22px;
	border-left: 4px solid var(--sa-color-brand);
	background: var(--sa-color-surface);
	font-size: 15px;
}

.sa-archive__layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
	gap: clamp(32px, 5vw, 72px);
	padding: clamp(38px, 6vw, 78px) 16px;
}

.sa-story-river {
	display: grid;
	gap: 0;
}

.sa-story-card {
	display: grid;
	grid-template-columns: minmax(210px, 36%) minmax(0, 1fr);
	gap: clamp(20px, 3vw, 36px);
	padding: 30px 0;
	border-bottom: 1px solid #dedee1;
}

.sa-story-card:first-child {
	padding-top: 0;
}

.sa-story-card__media {
	position: relative;
	display: block;
	min-height: 190px;
	overflow: hidden;
	background: #e8e8ea;
	aspect-ratio: 4 / 3;
}

.sa-story-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.sa-story-card__media:hover .sa-story-card__image {
	transform: scale(1.025);
}

.sa-story-card__video-label {
	position: absolute;
	right: 12px;
	bottom: 12px;
	padding: 6px 9px;
	background: rgba(0, 0, 0, 0.78);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sa-story-card__body {
	align-self: center;
}

.sa-story-card__title {
	margin: 0 0 13px;
	font-size: clamp(21px, 2vw, 30px);
	font-weight: 650;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.sa-story-card__title a {
	color: inherit;
}

.sa-story-card__title a:hover {
	color: var(--sa-color-brand);
}

.sa-story-card__byline {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 14px;
	color: var(--sa-color-muted);
	font-size: 12px;
}

.sa-story-card__byline time {
	margin-left: auto;
}

.sa-story-card__avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
}

.sa-story-card__excerpt {
	color: #4e4e54;
	font-size: 15px;
	line-height: 1.6;
}

.sa-archive .navigation.pagination {
	margin-top: 40px;
}

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

.sa-archive .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 12px;
	border: 1px solid #d5d5d8;
	color: var(--sa-color-ink);
}

.sa-archive .page-numbers.current {
	border-color: var(--sa-color-brand);
	background: var(--sa-color-brand);
	color: #fff;
}

.sa-empty-state {
	padding: 52px;
	background: var(--sa-color-surface);
	text-align: center;
}

.sa-special-sidebar h2 {
	font-size: 22px;
}

.sa-archive__sidebar .widget,
.sa-article__sidebar .widget {
	margin: 0 0 30px;
	padding: 22px;
	border-top: 3px solid var(--sa-color-ink);
	background: var(--sa-color-surface);
}

.sa-archive__sidebar .widget-title,
.sa-article__sidebar .widget-title {
	margin: 0 0 18px;
	font-size: 20px;
}

.sa-archive__sidebar :where(ul, ol),
.sa-article__sidebar :where(ul, ol) {
	padding-left: 20px;
}

@media (max-width: 900px) {
	.sa-archive__layout {
		grid-template-columns: 1fr;
	}

	.sa-archive__sidebar {
		border-top: 1px solid #dedee1;
		padding-top: 32px;
	}
}

@media (max-width: 620px) {
	.sa-archive__header-inner,
	.sa-story-card {
		grid-template-columns: 1fr;
	}

	.sa-archive__header-inner {
		display: grid;
	}

	.sa-archive__sponsor {
		margin-left: 0;
	}

	.sa-story-card__byline {
		flex-wrap: wrap;
	}

	.sa-story-card__byline time {
		width: 100%;
		margin-left: 37px;
	}
}

/* Phase 4 article system. */
.sa-article {
	width: 100%;
	padding: clamp(36px, 6vw, 82px) 16px;
	color: var(--sa-color-ink);
}

.sa-article__layout,
.sa-article__notice,
.sa-article__sponsor {
	width: min(100%, var(--sa-content-width));
	margin-inline: auto;
}

.sa-article__layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(270px, 1fr);
	gap: clamp(36px, 6vw, 84px);
}

.sa-article__header {
	margin-bottom: 32px;
}

.sa-article__kicker {
	margin: 0 0 12px;
	color: var(--sa-color-brand);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.sa-article__header h1 {
	margin: 0 0 24px;
	font-size: clamp(36px, 5vw, 66px);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1.06;
}

.sa-article-byline {
	display: flex;
	align-items: center;
	gap: 13px;
	padding-bottom: 24px;
	border-bottom: 1px solid #dcdce0;
}

.sa-article-byline__avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
}

.sa-article-byline p {
	margin: 0;
}

.sa-article-byline__author {
	font-weight: 600;
}

.sa-article-byline__meta {
	display: flex;
	gap: 7px;
	margin-top: 3px !important;
	color: var(--sa-color-muted);
	font-size: 12px;
}

.sa-article-media {
	margin: 0 0 clamp(28px, 4vw, 48px);
}

.sa-article-media__image {
	display: block;
	width: 100%;
	height: auto;
}

.sa-responsive-embed {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #000;
	aspect-ratio: 16 / 9;
}

.sa-responsive-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.sa-article__content {
	font-size: clamp(17px, 1.5vw, 19px);
	line-height: 1.78;
}

.sa-article__content :where(h2, h3, h4) {
	margin-top: 1.8em;
	line-height: 1.25;
}

.sa-article__content :where(img, video, iframe) {
	max-width: 100%;
}

.sa-article__content iframe {
	width: 100%;
}

.sa-article__content blockquote {
	margin: 2em 0;
	padding: 6px 0 6px 28px;
	border-left: 4px solid var(--sa-color-brand);
	font-family: var(--sa-font-heading);
	font-size: 1.2em;
}

.sa-article__notice {
	margin-bottom: 34px;
	padding: 16px 20px;
	border-left: 4px solid #1e75bb;
	background: #eef7fd;
}

.sa-article__sponsor {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-bottom: 24px;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sa-article__sponsor img {
	max-width: 160px;
	max-height: 60px;
}

.sa-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid var(--sa-color-brand);
	background: var(--sa-color-brand);
	color: #fff;
	font-weight: 700;
}

.sa-button:hover,
.sa-button:focus {
	background: #72000e;
	color: #fff;
}

/*
 * Production article grid compatibility.
 *
 * Legacy SiliconANGLE, theCUBE and stored post content use Bootstrap column
 * markup. Keep the production 10-column shell and 8/4 article/sidebar split
 * deterministic even when later plugin CSS changes Bootstrap's float cascade.
 */
.sa-legacy-post-shell {
	float: left;
	width: 83.33333333%;
	margin-left: 0;
	padding-right: 0;
	padding-left: 0;
}

.sa-legacy-post-grid {
	display: flex;
	align-items: flex-start;
	width: 100%;
	max-width: 1120px;
	margin-right: auto;
	margin-left: auto;
}

.sa-legacy-post-main {
	flex: 0 0 66.66666667%;
	float: none;
	width: 66.66666667%;
	min-width: 0;
	padding-right: 15px;
	padding-left: 0;
}

.sa-legacy-post-main::after {
	display: table;
	clear: both;
	content: '';
}

.sa-legacy-post-main > .sa-post-content,
.sa-legacy-post-main > .col-xs-12 {
	width: 100%;
}

.sa-legacy-post-sidebar {
	flex: 0 0 33.33333333%;
	float: none;
	width: 33.33333333%;
	min-width: 0;
	padding-right: 6px;
	padding-left: 15px;
}

.sa-post-byline {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 48px;
	padding-bottom: 12px;
	border-bottom: 1px solid #d8d8d8;
}

.sa-post-byline .post-meta {
	display: flex;
	align-items: center;
	float: none;
	width: 100%;
	margin: 0;
}

.sa-post-byline__author {
	min-width: 0;
}

#single-post-meta .sa-post-byline .post-author-image {
	flex: 0 0 32px;
	float: none;
	margin: 0 15px 0 0;
}

#single-post-meta .sa-post-byline .post-author-name {
	position: static;
	margin: 0;
	line-height: 1.45;
}

.sa-legacy-post-main .single-post-content p,
.sa-legacy-post-main .single-post-content li {
	font-size: 18px;
	line-height: 1.6;
}

@media (max-width: 991px) {
	.sa-legacy-post-shell {
		float: none;
		width: 100%;
	}

	.sa-legacy-post-grid {
		display: block;
	}

	.sa-legacy-post-main,
	.sa-legacy-post-sidebar {
		width: 100%;
		padding-right: 0;
		padding-left: 0;
	}

	.sa-legacy-post-main .single-post-content p,
	.sa-legacy-post-main .single-post-content li {
		font-size: 16px;
		line-height: 1.55;
	}
}

.sa-button--secondary {
	background: transparent;
	color: var(--sa-color-brand);
}

.sa-product-card {
	margin-bottom: 28px;
	padding: 24px;
	border: 1px solid #dcdce0;
	background: var(--sa-color-surface);
}

.sa-product-card h2 {
	margin-top: 0;
	font-size: 22px;
}

.sa-product-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sa-event-banner,
.sa-event-banner picture,
.sa-event-banner img {
	display: block;
	width: 100%;
}

.sa-page,
.sa-empty-page {
	width: min(100% - 32px, 960px);
	margin-inline: auto;
	padding: clamp(44px, 8vw, 100px) 0;
}

.sa-page__header h1,
.sa-empty-page h1 {
	margin: 0 0 30px;
	font-size: clamp(36px, 6vw, 64px);
	letter-spacing: -0.04em;
}

.sa-page__content {
	font-size: 18px;
	line-height: 1.75;
}

.sa-home__hero {
	padding: clamp(56px, 9vw, 120px) 16px;
	background: linear-gradient(120deg, #0c0c0e 0%, #242429 100%);
	color: #fff;
}

.sa-home__hero-inner,
.sa-home__layout,
.sa-home__intro {
	width: min(100%, var(--sa-content-width));
	margin-inline: auto;
}

.sa-home__hero h1 {
	max-width: 920px;
	margin: 0 0 18px;
	font-size: clamp(42px, 7vw, 84px);
	letter-spacing: -0.05em;
	line-height: 1.02;
}

.sa-home__hero p:last-child {
	max-width: 650px;
	color: #cacacf;
	font-size: 18px;
}

.sa-home__intro {
	padding: 34px 16px 0;
	font-size: 17px;
	line-height: 1.7;
}

.sa-home__layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
	gap: clamp(32px, 5vw, 72px);
	padding: clamp(44px, 7vw, 84px) 16px;
}

.sa-home__section-title {
	margin: 0 0 20px;
	padding-bottom: 14px;
	border-bottom: 3px solid var(--sa-color-ink);
	font-size: 28px;
}

@media (max-width: 900px) {
	.sa-home__layout {
		grid-template-columns: 1fr;
	}
}

.sa-dialog {
	width: min(92vw, 720px);
	max-height: 88vh;
	padding: clamp(24px, 4vw, 44px);
	border: 0;
	border-radius: 4px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
	color: var(--sa-color-ink);
}

.sa-dialog::backdrop {
	background: rgba(0, 0, 0, 0.72);
}

.sa-dialog__close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 30px;
	line-height: 1;
}

.sa-dialog--media {
	padding: 0;
}

.sa-dialog--media img {
	display: block;
	width: 100%;
}

.sa-dialog__actions,
.sa-related-stories__grid {
	display: grid;
	gap: 16px;
}

.sa-related-stories {
	margin-top: clamp(42px, 7vw, 80px);
	padding-top: 28px;
	border-top: 3px solid var(--sa-color-ink);
}

.sa-related-stories > h2,
.sa-article-highlights > h2 {
	font-size: 24px;
}

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

.sa-story-card--compact {
	display: block;
	padding: 0;
	border: 0;
}

.sa-story-card--compact .sa-story-card__media {
	min-height: 0;
	margin-bottom: 14px;
}

.sa-story-card--compact .sa-story-card__title {
	font-size: 17px;
}

.sa-story-card--compact :where(.sa-story-card__byline, .sa-story-card__excerpt) {
	display: none;
}

.sa-article-highlights {
	margin: 26px 0;
	padding: 22px 26px;
	background: var(--sa-color-surface);
}

.sa-article-highlights li + li {
	margin-top: 10px;
}

@media (max-width: 900px) {
	.sa-article__layout {
		grid-template-columns: 1fr;
	}

	.sa-article__sidebar {
		padding-top: 30px;
		border-top: 1px solid #dcdce0;
	}
}

@media (max-width: 620px) {
	.sa-related-stories__grid {
		grid-template-columns: 1fr;
	}
}

/* Phase 2 global header. */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	margin: 0;
	background: #0b0b0c;
	color: #fff;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

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

.site-header__inner {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2vw, 32px);
	width: min(100% - 32px, 1440px);
	min-height: 76px;
	margin-inline: auto;
}

.site-header__brand {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
}

.site-header__brand img {
	display: block;
	width: clamp(210px, 18vw, 300px);
	height: auto;
}

.site-header__tagline {
	flex: 0 0 auto;
	max-width: 210px;
	margin: 0;
	color: #d7d7d9;
	font-size: 12px;
	line-height: 1.4;
}

.site-header__navigation {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: space-between;
	gap: clamp(14px, 1.5vw, 28px);
	min-width: 0;
}

.site-header__primary {
	min-width: 0;
}

.site-header__menu,
.site-header__menu .sub-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-header__menu {
	display: flex;
	align-items: center;
	gap: clamp(4px, 0.5vw, 10px);
}

.site-header__menu > li {
	position: relative;
	display: flex;
	align-items: center;
}

.site-header__menu > .sa-header-logo {
	display: none;
}

.site-header__menu > .nav-more-1440,
.site-header__menu > .nav-more-1320,
.site-header__menu > .nav-more-1220 {
	display: flex !important;
}

.site-header__menu a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 8px 7px;
	color: #f7f7f8;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
}

.site-header__menu a:hover,
.site-header__menu a:focus,
.site-header__menu .current-menu-item > a,
.site-header__menu .current-menu-ancestor > a {
	color: #ff6678;
}

.site-header__submenu-toggle {
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
}

.site-header__submenu-toggle > span[aria-hidden='true'] {
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
}

.site-header__submenu-toggle[aria-expanded='true'] > span[aria-hidden='true'] {
	transform: translateY(2px) rotate(225deg);
}

.site-header__menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	min-width: 230px;
	padding: 8px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.site-header__menu .sub-menu .sub-menu {
	top: -8px;
	left: 100%;
}

.site-header__menu li:hover > .sub-menu,
.site-header__menu li:focus-within > .sub-menu,
.site-header__menu li.is-submenu-open > .sub-menu {
	display: block;
}

.site-header__menu .sub-menu li {
	position: relative;
	display: flex;
	align-items: center;
}

.site-header__menu .sub-menu a {
	flex: 1 1 auto;
	min-height: 40px;
	color: #242426;
	font-size: 13px;
	text-transform: none;
}

.site-header__menu .sub-menu .site-header__submenu-toggle {
	color: #242426;
	transform: rotate(-90deg);
}

.site-header__utilities {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 14px;
}

.site-header__search .search-form {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0;
}

.site-header__search .search-field {
	width: 150px;
	height: 38px;
	padding: 7px 40px 7px 12px;
	border: 1px solid #4a4a4f;
	border-radius: 999px;
	background: #19191c;
	color: #fff;
	font-size: 14px;
}

.site-header__search .search-field::placeholder {
	color: #b9b9bd;
}

.site-header__search .search-submit {
	position: absolute;
	right: 3px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #fff;
}

.site-header__network {
	display: none;
}

.site-header__network-label {
	color: #a8a8ad;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-header__sign-in,
.site-header__market-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 7px 14px;
	border: 1px solid #9c0013;
	border-radius: 999px;
	background: #9c0013;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.site-header__sign-in:hover,
.site-header__sign-in:focus,
.site-header__market-link:hover,
.site-header__market-link:focus {
	border-color: #c7192d;
	background: #c7192d;
	color: #fff;
}

.site-header__market-data {
	display: none;
}

.sa-account-menu {
	position: relative;
}

.sa-account-menu__summary {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid #48484d;
	border-radius: 50%;
	cursor: pointer;
	list-style: none;
}

.sa-account-menu__summary::-webkit-details-marker {
	display: none;
}

.sa-account-menu__avatar {
	display: block;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
}

.sa-account-menu__panel {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 10;
	display: grid;
	min-width: 190px;
	padding: 8px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.sa-account-menu__name,
.sa-account-menu__panel a {
	margin: 0;
	padding: 10px 12px;
	color: #242426;
	font-size: 14px;
}

.sa-account-menu__name {
	border-bottom: 1px solid #e5e5e7;
	font-weight: 700;
}

.sa-account-menu__panel a:hover,
.sa-account-menu__panel a:focus {
	background: #f4f4f5;
	color: #9c0013;
}

@media (max-width: 85rem) {
	.site-header__tagline {
		display: none;
	}

	.site-header__inner {
		gap: 18px;
	}
}

@media (max-width: 72rem) {
	.site-header__search .search-field {
		width: 120px;
	}

	.site-header__menu a {
		padding-inline: 4px;
		font-size: 12px;
	}
}

@media (min-width: 86rem) {
	.site-header__network,
	.site-header__market-data {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.site-header__network a,
	.site-header__market-provider {
		color: #d7d7da;
		font-size: 11px;
	}

	.site-header__market-link {
		padding-inline: 10px;
		font-size: 11px;
	}
}

@media (max-width: 74.999rem) {
	.admin-bar .site-header {
		top: 46px;
	}

	.site-header__inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		min-height: 68px;
		padding-block: 8px;
	}

	.site-header__brand img {
		width: min(250px, 68vw);
	}

	.site-header__navigation-toggle {
		display: grid;
		place-items: center;
		width: 44px;
		height: 44px;
		padding: 10px;
		border: 1px solid #45454a;
		border-radius: 6px;
		background: transparent;
		color: #fff;
	}

	.site-header__navigation-icon,
	.site-header__navigation-icon::before,
	.site-header__navigation-icon::after {
		display: block;
		width: 22px;
		height: 2px;
		background: currentColor;
		content: '';
		transition: transform 160ms ease, opacity 160ms ease;
	}

	.site-header__navigation-icon::before {
		transform: translateY(-7px);
	}

	.site-header__navigation-icon::after {
		transform: translateY(5px);
	}

	.is-navigation-open .site-header__navigation-icon {
		background: transparent;
	}

	.is-navigation-open .site-header__navigation-icon::before {
		transform: translateY(1px) rotate(45deg);
	}

	.is-navigation-open .site-header__navigation-icon::after {
		transform: translateY(-1px) rotate(-45deg);
	}

	.site-header__navigation {
		grid-column: 1 / -1;
		display: none;
		max-height: calc(100vh - 90px);
		padding: 10px 0 16px;
		overflow-y: auto;
		border-top: 1px solid #333338;
	}

	.is-navigation-open .site-header__navigation {
		display: block;
	}

	.site-header__menu,
	.site-header__menu > li,
	.site-header__menu .sub-menu li {
		display: block;
	}

	.site-header__menu > li {
		position: relative;
		border-bottom: 1px solid #303035;
	}

	.site-header__menu a {
		display: flex;
		min-height: 48px;
		padding: 10px 44px 10px 4px;
		font-size: 14px;
	}

	.site-header__submenu-toggle {
		position: absolute;
		top: 6px;
		right: 0;
	}

	.site-header__menu .sub-menu,
	.site-header__menu .sub-menu .sub-menu {
		position: static;
		display: none;
		min-width: 0;
		padding: 0 0 8px 18px;
		background: transparent;
		box-shadow: none;
	}

	.site-header__menu li:hover > .sub-menu,
	.site-header__menu li:focus-within > .sub-menu {
		display: none;
	}

	.site-header__menu li.is-submenu-open > .sub-menu {
		display: block;
	}

	.site-header__menu .sub-menu a {
		color: #dedee1;
	}

	.site-header__menu .sub-menu .site-header__submenu-toggle {
		color: #fff;
		transform: none;
	}

	.site-header__utilities {
		display: grid;
		grid-template-columns: 1fr auto;
		gap: 14px;
		padding-top: 16px;
	}

	.site-header__search {
		grid-column: 1 / -1;
	}

	.site-header__search .search-field {
		width: 100%;
	}

	.site-header__network {
		display: flex;
		grid-column: 1 / -1;
		flex-wrap: wrap;
		align-items: center;
		gap: 8px 16px;
	}

	.site-header__network a {
		color: #fff;
		font-size: 13px;
	}

	.site-header__market-data {
		display: flex;
		grid-column: 1 / -1;
		align-items: center;
		gap: 12px;
	}

	.site-header__market-provider {
		color: #c8c8cc;
		font-size: 11px;
	}

	.sa-account-menu__panel {
		right: auto;
		left: 0;
	}
}

@media (min-width: 75rem) {
	.site-header__navigation-toggle {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-header__navigation-icon,
	.site-header__navigation-icon::before,
	.site-header__navigation-icon::after {
		transition: none;
	}
}

/* Phase 2 global footer. */
footer#sa-footer.site-footer {
	position: static;
	bottom: auto;
	width: 100%;
	height: auto;
	margin: 64px 0 0;
	padding: 64px 0 60px;
	background: #000;
	color: #d7d7da;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) max-content;
	grid-template-rows: auto auto;
	align-items: start;
	gap: 8px 20px;
	width: min(100% - 32px, 1680px);
	margin-inline: auto;
}

.site-footer__brand {
	grid-column: 1;
	grid-row: 1 / 3;
	min-height: 60px;
	padding-right: 20px;
	border-right: 2px solid #f7f7f8;
}

.site-footer__brand img {
	display: block;
	width: 48px;
	height: 48px;
}

.site-footer__menu,
.site-footer__community ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__navigation {
	grid-column: 2;
	grid-row: 1;
}

footer#sa-footer.site-footer #menu-footer-menu > li {
	float: none;
}

footer#sa-footer.site-footer #menu-footer-menu a {
	display: inline-block;
	padding: 0;
}

.site-footer a {
	color: #f7f7f8;
}

.site-footer a:hover,
.site-footer a:focus {
	color: #ff6678;
}

.site-footer__menu a {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.site-footer__community {
	grid-column: 3;
	grid-row: 1 / 3;
}

.site-footer__community h2 {
	margin: 0 0 10px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-transform: uppercase;
}

.site-footer__community a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 700;
}

.site-footer__community img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.site-footer__copyright,
.site-footer__market-data {
	grid-column: 2;
	margin: 0;
	padding: 0;
	border: 0;
	color: #d7d7da;
	font-size: 13px;
}

.site-footer__market-data {
	grid-column: 2 / -1;
}

@media (max-width: 56rem) {
	.site-footer__inner {
		grid-template-columns: 72px 1fr;
	}

	.site-footer__community {
		grid-column: 2;
		grid-row: 3;
		margin-top: 20px;
	}

	.site-footer__copyright {
		grid-column: 2;
	}

	.site-footer__market-data {
		grid-column: 2;
	}
}

@media (max-width: 38rem) {
	footer#sa-footer.site-footer {
		padding: 40px 0;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.site-footer__brand {
		grid-column: 1;
		grid-row: 1;
		min-height: 0;
		padding: 0 0 20px;
		border-right: 0;
		border-bottom: 1px solid #303035;
	}

	.site-footer__navigation,
	.site-footer__community {
		grid-column: 1;
	}

	.site-footer__navigation {
		grid-row: 2;
	}

	.site-footer__community {
		grid-row: 3;
		margin-top: 0;
	}

	.site-footer__copyright {
		grid-column: 1;
		grid-row: 4;
	}

	.site-footer__market-data {
		grid-column: 1;
		grid-row: 5;
	}
}

/* Production header details. */
.voice-of-enterprise {
	margin-top: 2.6rem;
	color: #fff;
	font-family: var(--sa-font-body);
	font-size: 1.6rem;
}

.header-account-trigger {
	display: inline-grid;
	place-items: center;
	width: 4rem;
	height: 4rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 2.6rem;
}

#searchbox-mobile .search-form {
	position: relative;
	margin: 0;
}

#searchbox-mobile .search-field {
	width: 100%;
}

/*
 * Typography roles.
 *
 * This layer is intentionally last: style.css and mobile.css still contain
 * legacy selectors for stored content and older templates. These role rules
 * give every page the same family/weight contract without changing the
 * established type scale, spacing, or responsive layout.
 */

/* Section titles use Space Grotesk throughout archives, landing pages, cards,
 * navigation headings, widgets, and the footer. Post-specific rules below
 * override this role inside article content. */
h1,
h2,
h3,
h4,
h5,
h6,
.sa-section-heading {
	font-family: var(--sa-font-section-heading) !important;
	font-weight: 700;
	font-synthesis: none;
}

/* Post titles are medium Poppins, including legacy and Ajax-rendered cards. */
body .post-title,
body .sa-post-title,
body .sa-story-card__title,
body .aws-mp-post-title {
	font-family: var(--sa-font-post-heading) !important;
	font-weight: 500 !important;
	font-synthesis: none;
}

/* Article subheadings are semibold Poppins. Scope this to post content so
 * global section headings retain Space Grotesk. */
:where(
	.sa-article__content,
	.single-post-content,
	.aws-mp-post-content
)
	:where(h2, h3, h4) {
	font-family: var(--sa-font-post-heading) !important;
	font-weight: 600 !important;
	font-synthesis: none;
}

/* Article prose is regular DM Sans. */
:where(
	.sa-article__content,
	.single-post-content,
	.aws-mp-post-content
) {
	font-family: var(--sa-font-body);
	font-weight: 400;
}

:where(
	.sa-article__content p,
	.sa-article__content li,
	.single-post-content p,
	.single-post-content li,
	.aws-mp-post-content p,
	.aws-mp-post-content li
) {
	font-family: var(--sa-font-body);
	font-weight: 400;
}

/* The article title is a post title, not a global section title. */
:where(
	.sa-article__header h1,
	#single-post-mast h1,
	#single-post-meta .sa-post-title,
	.aws-mp-post-title
) {
	font-family: var(--sa-font-post-heading) !important;
	font-weight: 500 !important;
	font-synthesis: none;
}

/* Keep every native button and button-like link on the Space Grotesk role.
 * Existing component declarations continue to select the hierarchy weight
 * (400, 500, or 700); this rule changes only the family. */
:where(
	button,
	input[type='button'],
	input[type='submit'],
	input[type='reset'],
	.btn,
	.sa-button,
	a[class*='button'],
	a[class*='btn']
) {
	font-family: var(--sa-font-button) !important;
}

/* Structural utility surfaces use Poppins, while their dense text remains DM
 * Sans through the component/body rules above. */
:where(
	.site-header__menu a,
	.site-footer__menu a,
	.site-footer__community a,
	.site-footer__community h2,
	.sa-account-menu__name,
	.sa-account-menu__panel a,
	.text-poppins
) {
	font-family: var(--sa-font-post-heading) !important;
}

:where(
	.site-header__menu a,
	.site-footer__menu a,
	.site-footer__community a,
	.site-footer__community h2
) {
	font-weight: 500;
}

/* Keep form values, placeholders, and data-heavy utility text in DM Sans. */
:where(
	input:not([type='button']):not([type='submit']):not([type='reset']),
	select,
	textarea,
	.search-field,
	.post-meta,
	.sa-article-byline__meta,
	.sa-story-card__byline,
	.sa-story-card__excerpt
) {
	font-family: var(--sa-font-body);
}

/* Search results retain the compact, scan-friendly production layout rather
 * than using the editorial archive hero and card grid. */
.sa-search-page {
	padding: 28px 16px 72px;
	background: #fff;
}

.sa-search-page__inner {
	max-width: 1260px;
	margin: 0 auto;
}

.sa-search-page__tools {
	min-height: 68px;
	border-bottom: 2px solid #8c8c8c;
}

.sa-search-page__form {
	width: min(100%, 264px);
	margin-left: auto;
	padding-bottom: 20px;
}

.sa-search-page__form .search-form {
	display: flex;
	width: 100%;
}

.sa-search-page__form .search-field {
	width: 100%;
	height: 46px;
	padding: 0 12px;
	border: 1px solid #d2d2d2;
	border-right: 0;
	border-radius: 0;
	color: #3e3e3e;
	font-size: 17px;
	line-height: 1;
}

.sa-search-page__form .search-submit {
	display: grid;
	flex: 0 0 48px;
	width: 48px;
	height: 46px;
	padding: 0;
	border: 1px solid #909090;
	border-radius: 3px;
	background: #fff;
	color: #171717;
	place-items: center;
}

.sa-search-page__form .search-submit .material-icons {
	font-size: 28px;
}

.sa-search-page__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-height: 82px;
	border-bottom: 1px solid #909090;
}

.sa-search-page__header h4 {
	margin: 0;
	color: #3d3d3d;
	font-family: var(--sa-font-section-heading) !important;
	font-weight: 700 !important;
	letter-spacing: -0.02em;
	line-height: 1.15;
	text-transform: uppercase;
}

.sa-search-page__header h4 span {
	color: #b5121b;
}

.sa-search-page__filters {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 12px;
}

.sa-search-filter {
	position: relative;
	font-family: var(--sa-font-button);
	font-size: 14px;
	font-weight: 500;
}

.sa-search-filter summary {
	position: relative;
	min-width: 94px;
	padding: 9px 32px 9px 16px;
	border: 1px solid #dedede;
	border-radius: 999px;
	background: #fff;
	color: #898989;
	cursor: pointer;
	line-height: 1;
	list-style: none;
	text-align: center;
}

.sa-search-filter summary::-webkit-details-marker {
	display: none;
}

.sa-search-filter summary::after {
	position: absolute;
	top: 50%;
	right: 14px;
	width: 0;
	height: 0;
	border-top: 5px solid #929292;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	content: '';
	transform: translateY(-35%);
}

.sa-search-filter[open] summary,
.sa-search-filter summary:hover,
.sa-search-filter summary:focus-visible {
	border-color: #b5121b;
	color: #b5121b;
}

.sa-search-filter__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 40;
	min-width: 180px;
	padding: 7px;
	border: 1px solid #dedede;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.sa-search-filter__menu a {
	display: block;
	padding: 9px 11px;
	border-radius: 3px;
	color: #4a4a4a;
	line-height: 1.25;
	text-decoration: none;
	white-space: nowrap;
}

.sa-search-filter__menu a:hover,
.sa-search-filter__menu a:focus-visible,
.sa-search-filter__menu a[aria-current='true'] {
	background: #f4f4f4;
	color: #b5121b;
}

.sa-search-page__results {
	max-width: 980px;
}

.sa-search-result {
	padding: 38px 0 36px;
}

.sa-search-result + .sa-search-result {
	border-top: 1px solid #e4e4e4;
}

.sa-search-result__title {
	margin: 0 0 5px;
	font-family: var(--sa-font-post-heading) !important;
	font-size: clamp(21px, 1.7vw, 25px);
	font-weight: 500 !important;
	letter-spacing: -0.03em;
	line-height: 1.22;
}

.sa-search-result__title a {
	color: #161616;
	text-decoration: none;
}

.sa-search-result__title a:hover,
.sa-search-result__title a:focus-visible {
	color: #b5121b;
}

.sa-search-result__byline {
	margin: 0 0 14px;
	color: #868686;
	font-family: var(--sa-font-body);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.sa-search-result__body {
	display: grid;
	grid-template-columns: minmax(220px, 286px) minmax(0, 1fr);
	gap: 38px;
	align-items: start;
}

.sa-search-result__image {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f1f1f1;
}

.sa-search-result__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sa-search-result__excerpt {
	color: #464646;
	font-family: var(--sa-font-body);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
}

.sa-search-page__empty {
	margin: 42px 0;
	color: #535353;
	font-family: var(--sa-font-body);
	font-size: 18px;
}

.sa-search-page .sa-search-pagination {
	display: block;
	max-width: 980px;
	margin: 16px 0 0;
	padding: 0;
}

.sa-search-pagination .nav-links {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sa-search-pagination .page-numbers {
	display: grid;
	width: 56px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 0;
	background: #ededed;
	color: #171717;
	font-family: var(--sa-font-button);
	font-size: 17px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	place-items: center;
}

.sa-search-pagination a.page-numbers:hover,
.sa-search-pagination a.page-numbers:focus-visible {
	background: #dcdcdc;
	color: #b5121b;
}

.sa-search-pagination .page-numbers.current {
	background: #b5121b;
	color: #fff;
}

.sa-search-pagination .page-numbers.dots {
	width: 28px;
	background: transparent;
}

.sa-search-pagination .page-numbers.is-disabled {
	background: transparent;
	color: #999;
}

@media (max-width: 767px) {
	.sa-search-page {
		padding: 16px 20px 48px;
	}

	.sa-search-page__tools {
		min-height: 0;
	}

	.sa-search-page__form {
		width: 100%;
		margin-left: 0;
		padding: 12px 0 16px;
	}

	.sa-search-page__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
		min-height: 70px;
		padding: 18px 0;
	}

	.sa-search-page__header h4 {
		font-size: 20px;
	}

	.sa-search-page__filters {
		flex-wrap: wrap;
		gap: 8px;
	}

	.sa-search-filter summary {
		min-width: 88px;
	}

	.sa-search-filter__menu {
		right: auto;
		left: 0;
	}

	.sa-search-result {
		padding: 28px 0;
	}

	.sa-search-result__body {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.sa-search-result__image {
		max-width: 360px;
	}

	.sa-search-result__excerpt {
		font-size: 16px;
	}

	.sa-search-pagination .nav-links {
		flex-wrap: wrap;
		gap: 6px;
	}

	.sa-search-pagination .page-numbers {
		width: 42px;
		height: 40px;
		font-size: 15px;
	}
}
