:root {
	--soa-brand: #ff4a1f;
	--soa-brand-hover: #e03a12;
	--soa-dark: #111111;
	--soa-surface: #f4f5f7;
	--soa-text: #111827;
	--soa-muted: #6b7280;
	--soa-line: #eef0f3;
	--soa-ease: cubic-bezier(0.25, 1, 0.5, 1);
}

body.soa-body {
	margin: 0;
	background: var(--soa-surface);
	color: var(--soa-text);
	font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.soa-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 0;
}

.soa-home .soa-page {
	padding: 5rem 1rem 2rem;
}

.soa-shell,
.soa-footer {
	width: min(100%, 1200px);
	margin-inline: auto;
	background: #fff;
}

.soa-shell {
	position: relative;
	overflow: hidden;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.14);
}

.soa-home .soa-shell {
	border-radius: 40px 40px 0 0;
}

.soa-single .soa-shell,
.soa-page-template .soa-shell,
.soa-index .soa-shell {
	margin-block: 2rem 0;
	border-radius: 40px 40px 0 0;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input {
	font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid rgba(255, 74, 31, 0.42);
	outline-offset: 4px;
}

.soa-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 850ms var(--soa-ease) var(--soa-reveal-delay, 0ms),
		transform 850ms var(--soa-ease) var(--soa-reveal-delay, 0ms);
}

.soa-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes soa-float-cursor {
	0% { transform: translate3d(0, 0, 0) rotate(-12deg); }
	45% { transform: translate3d(-14px, 18px, 0) rotate(-4deg); }
	100% { transform: translate3d(0, 0, 0) rotate(-12deg); }
}

@keyframes soa-signal-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(255, 204, 77, 0.38), 0 22px 60px rgba(255, 74, 31, 0.22); }
	50% { box-shadow: 0 0 0 16px rgba(255, 204, 77, 0), 0 22px 70px rgba(255, 74, 31, 0.34); }
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.soa-floating-header {
	position: fixed;
	top: 1rem;
	left: 1rem;
	right: 1rem;
	z-index: 50;
	max-width: 1150px;
	margin-inline: auto;
	transform: translateY(0.5rem);
	transition: transform 700ms var(--soa-ease);
}

.soa-floating-header.is-scrolled {
	transform: translateY(0);
}

.soa-floating-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 0.875rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 2rem;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(18px);
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
	transition: all 400ms ease;
}

.soa-floating-header.is-scrolled .soa-floating-nav {
	border-color: rgba(255, 255, 255, 0.62);
	background: rgba(255, 255, 255, 0.84);
	backdrop-filter: blur(28px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.soa-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.15rem;
	font-weight: 900;
	letter-spacing: -0.05em;
	text-transform: uppercase;
	white-space: nowrap;
}

.soa-brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 14px;
	background: #000;
	color: #fff;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
	transition: all 500ms var(--soa-ease);
}

.soa-brand:hover .soa-brand__mark {
	background: var(--soa-brand);
	transform: rotate(3deg) scale(1.05);
}

.soa-brand__mark svg {
	width: 1.2rem;
	height: 1.2rem;
}

.soa-brand__logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: inherit;
}

.soa-lead-card a,
.soa-side-card a,
.soa-news-card a,
.soa-popular-grid a,
.soa-highlight-card a {
	color: inherit;
	text-decoration: none;
}

.soa-nav__list {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.soa-nav__list a {
	display: block;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	color: #4b5563;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: all 250ms ease;
}

.soa-nav__list a:hover {
	background: rgba(243, 244, 246, 0.9);
	color: #000;
}

.soa-header-actions {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.soa-search-button,
.soa-menu-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #374151;
	font-weight: 900;
	cursor: pointer;
}

.soa-menu-button {
	display: none;
	width: auto;
	padding-inline: 1rem;
	background: #000;
	color: #fff;
	font-size: 0.8rem;
	text-transform: uppercase;
}

.soa-search-button:hover {
	background: #f3f4f6;
}

.soa-subscribe-button,
.soa-search-form button,
.soa-newsletter-form button,
.soa-sidebar-card button,
.soa-mission-grid a,
.soa-section-head a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background: var(--soa-brand);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
	transition: all 300ms ease;
}

.soa-subscribe-button:hover,
.soa-search-form button:hover,
.soa-newsletter-form button:hover,
.soa-sidebar-card button:hover,
.soa-mission-grid a:hover,
.soa-section-head a:hover {
	background: var(--soa-brand-hover);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 0 20px rgba(255, 74, 31, 0.35);
}

.soa-subscribe-button {
	padding: 0.72rem 1.5rem;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.soa-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(28px);
}

.soa-mobile-menu[hidden] {
	display: none;
}

.soa-mobile-menu .soa-nav__list {
	flex-direction: column;
}

.soa-mobile-menu .soa-nav__list a {
	font-size: clamp(2.5rem, 10vw, 4rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #000;
}

.soa-mobile-menu__close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 3rem;
	height: 3rem;
	border: 0;
	border-radius: 999px;
	background: #f3f4f6;
	font-size: 1.8rem;
	cursor: pointer;
}

.soa-hero-section {
	position: relative;
	z-index: 1;
	padding: 7rem 1.5rem 5rem;
	overflow: hidden;
	text-align: center;
	background-image:
		linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
	background-size: 40px 40px;
}

.soa-hero-signal {
	position: absolute;
	top: clamp(5.6rem, 10vw, 7.5rem);
	right: clamp(1.25rem, 7vw, 6rem);
	z-index: 0;
	width: clamp(3.2rem, 6vw, 4.8rem);
	height: clamp(3.2rem, 6vw, 4.8rem);
	border: 1px solid rgba(255, 190, 77, 0.5);
	border-radius: 1.4rem;
	background: linear-gradient(135deg, #ffd85f, var(--soa-brand));
	animation: soa-float-cursor 5s ease-in-out infinite, soa-signal-pulse 2.4s ease-in-out infinite;
}

.soa-hero-signal::before {
	content: "";
	position: absolute;
	inset: 0.9rem 1rem auto auto;
	width: 1.45rem;
	height: 1.45rem;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	transform: rotate(0deg);
}

.soa-hero-signal::after {
	content: "";
	position: absolute;
	right: 1rem;
	top: 1.05rem;
	width: 2.15rem;
	height: 4px;
	border-radius: 999px;
	background: #fff;
	transform: rotate(-45deg);
	transform-origin: right center;
}

.soa-hero-signal span {
	position: absolute;
	right: -0.42rem;
	top: -0.42rem;
	width: 0.9rem;
	height: 0.9rem;
	border: 2px solid #fff;
	border-radius: 999px;
	background: #111;
}

.soa-eyebrow {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 0 0 2rem;
	padding: 0.38rem 1rem;
	border: 1px solid rgba(255, 74, 31, 0.2);
	border-radius: 999px;
	background: rgba(255, 74, 31, 0.05);
	color: var(--soa-brand);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.soa-hero-section h1 {
	position: relative;
	z-index: 1;
	max-width: 870px;
	margin: 0 auto 2.5rem;
	color: #111827;
	font-size: clamp(3rem, 6vw, 4.5rem);
	font-weight: 900;
	letter-spacing: -0.06em;
	line-height: 1.05;
}

.soa-search-form {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	width: min(100%, 42rem);
	margin-inline: auto;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	transition: all 400ms ease;
}

.soa-search-form:focus-within {
	border-color: #d1d5db;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
	transform: scale(1.02);
}

.soa-search-form input {
	width: 100%;
	border: 0;
	background: transparent;
	padding: 1.25rem 10rem 1.25rem 1.5rem;
	color: #111827;
	font-size: 1.05rem;
	font-weight: 700;
	outline: none;
}

.soa-search-form button {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	bottom: 0.5rem;
	padding-inline: 2rem;
}

.soa-feature-grid,
.soa-section,
.soa-ticker,
.soa-article-layout,
.soa-mission-grid,
.soa-team-section,
.soa-page-content {
	width: min(calc(100% - 3rem), 1100px);
	margin-inline: auto;
}

.soa-page-content {
	padding: 5rem 0 6rem;
}

.soa-feature-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(340px, 1fr);
	gap: 1.5rem;
	padding-bottom: 4rem;
}

.soa-lead-card,
.soa-highlight-card,
.soa-popular-image {
	position: relative;
	overflow: hidden;
	border-radius: 32px;
	background: #000;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.soa-side-card > a,
.soa-news-card > a {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 24px;
	transform: translateZ(0);
}

.soa-media-link {
	position: relative;
	display: block;
	overflow: hidden;
	isolation: isolate;
}

.soa-media-link::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent 45%);
	opacity: 0;
	transition: opacity 350ms ease;
	z-index: 1;
}

.soa-media-link:hover::after {
	opacity: 1;
}

.soa-mini-arrow {
	position: absolute;
	right: 0.85rem;
	bottom: 0.85rem;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 2.45rem;
	height: 2.45rem;
	border-radius: 0.8rem;
	background: rgba(17, 17, 17, 0.86);
	color: #fff !important;
	font-size: 1rem !important;
	font-weight: 900;
	letter-spacing: 0 !important;
	opacity: 1;
	transform: translateY(0) rotate(0deg);
	transition: opacity 300ms ease, transform 300ms var(--soa-ease), background 240ms ease;
	backdrop-filter: blur(16px);
}

.soa-media-link:hover .soa-mini-arrow,
.soa-side-card:hover .soa-mini-arrow,
.soa-news-card:hover .soa-mini-arrow {
	opacity: 1;
	transform: translateY(-2px) rotate(0deg);
	background: var(--soa-brand);
}

.soa-mini-arrow:hover {
	background: var(--soa-brand);
}

.soa-card-topic {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: #111827 !important;
	font-size: 0.62rem !important;
	font-weight: 900;
	letter-spacing: 0.1em !important;
	text-transform: uppercase;
	backdrop-filter: blur(14px);
}

.soa-lead-card {
	min-height: 600px;
}

.soa-lead-card img,
.soa-highlight-card img,
.soa-popular-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--soa-ease);
}

.soa-lead-card:hover img,
.soa-highlight-card:hover img,
.soa-popular-image:hover img {
	transform: scale(1.06);
}

.soa-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.38), transparent);
}

.soa-lead-card__copy,
.soa-highlight-card__copy {
	position: absolute;
	left: clamp(2rem, 4vw, 3.5rem);
	right: clamp(2rem, 12vw, 8rem);
	bottom: clamp(2rem, 4vw, 3.5rem);
	color: #fff;
	z-index: 2;
}

.soa-lead-card__copy span,
.soa-highlight-card span,
.soa-popular-grid span,
.soa-news-card span,
.soa-side-card span {
	color: var(--soa-brand);
	font-size: 0.65rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.soa-lead-card__copy h2,
.soa-highlight-card h2 {
	margin: 1rem 0;
	font-size: clamp(2rem, 4vw, 3.6rem);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.08;
}

.soa-lead-card__copy p,
.soa-highlight-card p {
	max-width: 44rem;
	color: #d1d5db;
	font-weight: 600;
	line-height: 1.65;
}

.soa-arrow-link {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 4rem;
	height: 4rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 1.6rem;
	font-weight: 900;
	backdrop-filter: blur(18px);
	transition: transform 300ms var(--soa-ease), background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.soa-arrow-link:hover {
	background: var(--soa-brand);
	color: #fff;
	box-shadow: 0 16px 36px rgba(255, 74, 31, 0.32);
}

.soa-arrow-link--dark {
	top: auto;
	right: 2rem;
	bottom: 2rem;
	background: rgba(17, 17, 17, 0.88);
}

.soa-side-stack {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.soa-side-card {
	display: grid;
	grid-template-columns: 9rem minmax(0, 1fr);
	gap: 1.25rem;
	padding: 0.75rem;
	border: 1px solid #f3f4f6;
	border-radius: 28px;
	background: #fff;
	transition: all 400ms var(--soa-ease);
	transform: translateZ(0);
}

.soa-side-card:hover {
	border-color: #e5e7eb;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
	transform: translateY(-3px);
}

.soa-side-card > .soa-media-link img {
	display: block;
	width: 100%;
	height: 9rem;
	border-radius: 22px;
	object-fit: cover;
	transition: transform 600ms var(--soa-ease), filter 350ms ease;
}

.soa-side-card:hover > .soa-media-link img {
	transform: scale(1.06);
	filter: saturate(1.06) contrast(1.03);
}

.soa-side-card h3,
.soa-news-card h3 {
	margin: 0.5rem 0 0.8rem;
	color: #111827;
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.2;
}

.soa-side-card p,
.soa-news-card p,
.soa-author-line {
	color: var(--soa-muted);
	font-size: 0.75rem;
	font-weight: 800;
}

.soa-ticker {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 4rem;
	max-width: 1100px;
	padding: 0.45rem;
	overflow: hidden;
	border: 1px solid #f3f4f6;
	border-radius: 999px;
	background: #f9fafb;
	box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
	white-space: nowrap;
}

.soa-ticker strong {
	flex: 0 0 auto;
	padding: 0.65rem 1.25rem;
	border-radius: 999px;
	background: #1c1c1c;
	color: #fff;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.soa-ticker div {
	display: flex;
	gap: 2.5rem;
	min-width: max-content;
	font-weight: 800;
	animation: soa-marquee 32s linear infinite;
	will-change: transform;
}

.soa-ticker:hover div {
	animation-play-state: paused;
}

@keyframes soa-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.soa-ad-slot {
	width: min(calc(100% - 3rem), 1100px);
	margin: 0 auto 4rem;
	padding: 0.65rem;
	border: 1px solid #edf0f4;
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(255, 74, 31, 0.08), transparent 38%),
		#fbfbfc;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.soa-prose .soa-ad-slot,
.soa-article-sidebar .soa-ad-slot {
	width: 100%;
	margin: 2.5rem 0;
}

.soa-ad-slot > span {
	display: block;
	margin: 0.2rem 0 0.6rem;
	color: #9ca3af;
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-align: center;
	text-transform: uppercase;
}

.soa-ad-slot ins {
	min-height: 120px;
	border-radius: 22px;
	overflow: hidden;
}

.soa-ad-placeholder {
	display: grid;
	place-items: center;
	min-height: 118px;
	padding: 1.5rem;
	border: 1px dashed #dfe3ea;
	border-radius: 22px;
	background:
		radial-gradient(circle at top left, rgba(255, 74, 31, 0.12), transparent 32%),
		linear-gradient(135deg, #fff, #f8fafc);
	text-align: center;
}

.soa-ad-placeholder strong {
	display: block;
	margin-bottom: 0.35rem;
	color: #111827;
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 900;
	letter-spacing: -0.03em;
}

.soa-ad-placeholder p {
	max-width: 34rem;
	margin: 0;
	color: #6b7280;
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1.5;
}

.soa-section {
	padding-bottom: 6rem;
}

.soa-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
}

.soa-section-head h2 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 900;
	letter-spacing: -0.04em;
}

.soa-section-head a {
	padding: 0.8rem 1.4rem;
	font-size: 0.85rem;
}

.soa-rail-controls {
	display: flex;
	gap: 0.5rem;
}

.soa-rail-controls button {
	width: 3rem;
	height: 3rem;
	border: 1px solid #f3f4f6;
	border-radius: 999px;
	background: #fff;
	color: #111827;
	font-size: 1.6rem;
	font-weight: 900;
	cursor: pointer;
	transition: all 240ms ease;
}

.soa-rail-controls button:hover:not(:disabled) {
	background: #111827;
	border-color: #111827;
	color: #fff;
	transform: translateY(-1px);
}

.soa-rail-controls button:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.soa-card-rail {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 1.5rem;
}

.soa-card-rail::-webkit-scrollbar {
	display: none;
}

.soa-news-card {
	flex: 0 0 min(340px, 82vw);
	min-width: 0;
	scroll-snap-align: start;
	position: relative;
	isolation: isolate;
}

.soa-support-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2rem;
	align-items: start;
	overflow: hidden;
}

.soa-support-grid .soa-news-card {
	flex: none !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	overflow: hidden;
}

.soa-news-card > .soa-media-link img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 24px;
	margin-bottom: 0;
	transition: transform 600ms var(--soa-ease), box-shadow 350ms ease, filter 350ms ease;
}

.soa-news-card > a {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1.25rem;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	transition: box-shadow 350ms ease, transform 350ms ease;
	contain: paint;
}

.soa-news-card:hover > a {
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.13);
	transform: translateY(-2px);
}

.soa-news-card:hover > .soa-media-link img {
	transform: scale(1.055);
	filter: saturate(1.08) contrast(1.03);
}

.soa-news-card h3 a,
.soa-side-card h3 a,
.soa-popular-grid h2 a,
.soa-highlight-card h2 a {
	transition: color 240ms ease;
}

.soa-news-card:hover h3 a,
.soa-side-card:hover h3 a,
.soa-popular-grid h2 a:hover,
.soa-highlight-card h2 a:hover {
	color: var(--soa-brand);
}

.soa-dark-feature {
	position: relative;
	width: 100%;
	padding: 6rem max(1.5rem, calc((100% - 1100px) / 2));
	margin-bottom: 6rem;
	overflow: hidden;
	background: #111;
	color: #fff;
}

.soa-section-head--dark h2 {
	color: #fff;
}

.soa-popular-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.85fr);
	gap: 3rem;
	align-items: center;
}

.soa-popular-image {
	aspect-ratio: 4 / 3;
}

.soa-popular-image a {
	display: block;
	height: 100%;
	border-radius: inherit;
}

.soa-popular-grid h2 {
	margin: 1rem 0;
	font-size: clamp(2.5rem, 5vw, 3.2rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 1.08;
}

.soa-popular-grid p {
	color: #9ca3af;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.7;
}

.soa-highlight-card {
	min-height: 520px;
	margin-bottom: 3rem;
}

.soa-newsletter-section {
	position: relative;
	padding: 8rem 1.5rem;
	text-align: center;
	background:
		radial-gradient(circle at center, rgba(255, 74, 31, 0.08), transparent 34%),
		#f9fafb;
}

.soa-newsletter-section h2 {
	max-width: 720px;
	margin: 2rem auto;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	letter-spacing: -0.06em;
	line-height: 1.08;
}

.soa-newsletter-form {
	display: flex;
	gap: 1rem;
	width: min(100%, 34rem);
	margin: 0 auto;
}

.soa-newsletter-form input {
	flex: 1;
	min-width: 0;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	padding: 1rem 1.5rem;
	outline: none;
}

.soa-newsletter-form button {
	padding: 1rem 2rem;
}

.soa-article-hero {
	max-width: 900px;
	margin: 0 auto;
	padding: 10rem 1.5rem 3rem;
	text-align: center;
}

.soa-article-hero > a {
	display: inline-block;
	margin-bottom: 2rem;
	color: var(--soa-brand);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.soa-article-hero h1 {
	margin: 0 0 2rem;
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 900;
	letter-spacing: -0.06em;
	line-height: 1.05;
}

.soa-article-hero p {
	max-width: 760px;
	margin: 0 auto 2.5rem;
	color: var(--soa-muted);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.65;
}

.soa-article-meta {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	color: #4b5563;
	font-size: 0.8rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.soa-article-image {
	width: min(calc(100% - 3rem), 1320px);
	margin: 0 auto 4rem;
	text-align: center;
}

.soa-article-image img {
	width: 100%;
	aspect-ratio: 21 / 9;
	object-fit: cover;
	border-radius: 32px;
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.soa-article-image p {
	color: #9ca3af;
	font-size: 0.8rem;
	font-weight: 700;
}

.soa-article-layout {
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr) minmax(280px, 360px);
	gap: 4rem;
	padding-bottom: 6rem;
}

.soa-share-rail {
	position: sticky;
	top: 10rem;
	align-self: start;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	min-width: 70px;
}

.soa-share-rail strong {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	color: #9ca3af;
	font-size: 0.65rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.soa-share-rail a {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	color: #6b7280;
	font-size: 0.75rem;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.soa-prose {
	color: #374151;
	font-size: 1.125rem;
	line-height: 1.8;
}

.soa-prose p,
.soa-prose ul,
.soa-prose figure,
.soa-prose blockquote {
	margin-bottom: 1.5em;
}

.soa-prose h2 {
	margin: 2em 0 0.75em;
	color: #111;
	font-size: 1.875rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.soa-prose blockquote {
	border-left: 4px solid var(--soa-brand);
	padding-left: 1.5rem;
	color: #111;
	font-size: 1.5rem;
	font-style: italic;
	font-weight: 700;
	line-height: 1.45;
}

.soa-prose img {
	width: 100%;
	border-radius: 24px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.drop-cap:first-letter {
	float: left;
	padding: 0.1em 0.18em 0 0;
	color: var(--soa-brand);
	font-size: 4.5rem;
	font-weight: 900;
	line-height: 0.8;
}

.soa-article-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.soa-sidebar-card {
	padding: 2rem;
	border: 1px solid #f3f4f6;
	border-radius: 32px;
	background: #f9fafb;
}

.soa-sidebar-card--dark {
	position: relative;
	overflow: hidden;
	background: #111;
	color: #fff;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.soa-sidebar-card h2 {
	margin: 0 0 1rem;
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.soa-sidebar-card p {
	color: #9ca3af;
	font-weight: 600;
}

.soa-sidebar-card input {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	padding: 1rem 1.25rem;
	color: #fff;
}

.soa-sidebar-card button {
	width: 100%;
	margin-top: 1rem;
	padding: 1rem;
}

.soa-sidebar-card a {
	display: block;
	margin-top: 1.1rem;
	font-weight: 800;
	line-height: 1.35;
}

.soa-page-hero {
	position: relative;
	overflow: hidden;
	padding: 12rem 1.5rem 5rem;
	border-radius: 0 0 80px 80px;
	background: #111;
	color: #fff;
	text-align: center;
}

.soa-page-hero::before {
	content: "";
	position: absolute;
	top: -30%;
	right: -20%;
	width: 700px;
	height: 700px;
	border-radius: 999px;
	background: rgba(255, 74, 31, 0.18);
	filter: blur(120px);
}

.soa-page-hero > div {
	position: relative;
	z-index: 1;
	max-width: 950px;
	margin: 0 auto;
}

.soa-page-hero h1 {
	margin: 0 0 2rem;
	font-size: clamp(3.4rem, 9vw, 6.25rem);
	font-weight: 900;
	letter-spacing: -0.07em;
	line-height: 0.9;
	text-transform: uppercase;
}

.soa-page-hero h1 span {
	color: var(--soa-brand);
}

.soa-page-hero p {
	max-width: 700px;
	margin: 0 auto;
	color: #9ca3af;
	font-size: clamp(1.15rem, 2.5vw, 1.5rem);
	font-weight: 600;
	line-height: 1.7;
}

.soa-mission-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
	gap: 4rem;
	align-items: center;
	padding-block: 6rem;
}

.soa-mission-grid h2 {
	margin: 0 0 1.5rem;
	font-size: clamp(2.5rem, 5vw, 3.2rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 1.1;
}

.soa-mission-grid p {
	color: var(--soa-muted);
	font-size: 1.08rem;
	font-weight: 600;
	line-height: 1.8;
}

.soa-mission-grid a {
	padding: 1rem 1.6rem;
}

.soa-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.soa-stats-grid div {
	padding: 2rem;
	border: 1px solid #f3f4f6;
	border-radius: 32px;
	background: #f9fafb;
	text-align: center;
}

.soa-stats-grid div:nth-child(even) {
	margin-top: 2rem;
}

.soa-stats-grid strong {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--soa-brand);
	font-size: 3rem;
	font-weight: 900;
}

.soa-stats-grid span {
	color: var(--soa-muted);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.soa-team-section {
	padding-bottom: 6rem;
}

.soa-team-section h2 {
	margin: 0 0 3rem;
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.soa-team-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2rem;
}

.soa-team-grid article {
	text-align: center;
}

.soa-team-grid img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 32px;
	margin-bottom: 1.5rem;
	filter: grayscale(1);
	transition: filter 700ms ease;
}

.soa-team-grid article:hover img {
	filter: grayscale(0);
}

.soa-team-grid h3 {
	margin: 0 0 0.25rem;
	font-size: 1.2rem;
	font-weight: 900;
}

.soa-team-grid p {
	margin: 0;
	color: var(--soa-brand);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.soa-footer {
	width: min(100%, 1200px);
	margin-inline: auto;
	border-radius: 0 0 40px 40px;
	background: #111;
	color: #fff;
	overflow: hidden;
}

.soa-footer__grid {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(520px, 2fr);
	gap: 4rem;
	padding: 5rem 3rem 4rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.soa-footer .soa-brand {
	color: #fff;
}

.soa-footer .soa-brand__mark {
	background: #fff;
	color: #111;
}

.soa-footer__brand p {
	max-width: 340px;
	color: #9ca3af;
	font-weight: 600;
	line-height: 1.7;
}

.soa-footer__brand {
	min-width: 0;
}

.soa-socials {
	display: flex;
	gap: 1rem;
}

.soa-socials a {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #9ca3af;
	font-size: 0.7rem;
	font-weight: 900;
}

.soa-socials a:hover {
	background: var(--soa-brand);
	color: #fff;
}

.soa-footer__links {
	display: grid;
	grid-template-columns: repeat(3, minmax(140px, 1fr));
	gap: 2.5rem;
	min-width: 0;
}

.soa-footer__links h2 {
	margin: 0 0 2rem;
	color: #6b7280;
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.soa-footer__links > div {
	min-width: 0;
}

.soa-footer__links a,
.soa-footer__links p,
.soa-footer__links li {
	display: block;
	margin: 0 0 1rem;
	color: #d1d5db;
	font-size: 0.9rem;
	font-weight: 700;
	list-style: none;
	overflow-wrap: normal;
	word-break: normal;
}

.soa-footer__links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.soa-footer__links .menu {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}

.soa-footer__links .menu-item {
	margin: 0;
	padding: 0;
}

.soa-footer__tip {
	color: var(--soa-brand) !important;
	font-weight: 900 !important;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.soa-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 2rem 3rem;
	color: #6b7280;
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.soa-footer__bottom span {
	min-width: 0;
}

.soa-archive {
	padding: 10rem 3rem 5rem;
}

@media (max-width: 1100px) {
	.soa-nav {
		display: none;
	}

	.soa-menu-button {
		display: inline-flex;
	}

	.soa-feature-grid,
	.soa-popular-grid,
	.soa-article-layout,
	.soa-mission-grid,
	.soa-footer__grid {
		grid-template-columns: 1fr;
	}

	.soa-share-rail {
		display: none;
	}

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

@media (max-width: 720px) {
	.soa-home .soa-page,
	.soa-page {
		padding: 0;
	}

	.soa-shell,
	.soa-footer,
	.soa-home .soa-shell,
	.soa-single .soa-shell,
	.soa-page-template .soa-shell {
		margin: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.soa-floating-header {
		left: 0.75rem;
		right: 0.75rem;
	}

	.soa-brand span:last-child {
		display: none;
	}

	.soa-subscribe-button {
		display: none;
	}

	.soa-hero-section,
	.soa-article-hero {
		padding-top: 7rem;
	}

	.soa-search-form,
	.soa-newsletter-form {
		display: grid;
		border-radius: 24px;
	}

	.soa-search-form input {
		padding-right: 1.5rem;
	}

	.soa-search-form button,
	.soa-newsletter-form button {
		position: static;
		margin: 0.5rem;
		padding: 1rem;
	}

	.soa-feature-grid,
	.soa-section,
	.soa-ticker,
	.soa-article-layout,
	.soa-mission-grid,
	.soa-team-section,
	.soa-page-content {
		width: min(calc(100% - 1.5rem), 1100px);
	}

	.soa-lead-card,
	.soa-highlight-card {
		min-height: 460px;
		border-radius: 24px;
	}

	.soa-side-card {
		grid-template-columns: 8rem minmax(0, 1fr);
	}

	.soa-side-card > .soa-media-link img {
		height: 8rem;
	}

	.soa-section-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.soa-dark-feature {
		padding: 4rem 1rem;
	}

	.soa-support-grid,
	.soa-team-grid,
	.soa-footer__links,
	.soa-stats-grid {
		grid-template-columns: 1fr;
	}

	.soa-stats-grid div:nth-child(even) {
		margin-top: 0;
	}

	.soa-page-hero {
		border-radius: 0 0 40px 40px;
		padding-top: 9rem;
	}

	.soa-footer__grid,
	.soa-footer__bottom {
		padding-inline: 1.5rem;
	}

	.soa-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}

	.soa-reveal {
		opacity: 1;
		transform: none;
	}
}

/* ===== State of Android V2 overrides and production components ===== */
:root {
	--soa-brand-hover: color-mix(in srgb, var(--soa-brand) 82%, #000);
}

body.soa-body {
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.soa-font-system {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.soa-icon {
	display: block;
	width: 1.15rem;
	height: 1.15rem;
}

.soa-arrow-link .soa-icon {
	width: 1.75rem;
	height: 1.75rem;
}

.soa-mini-arrow .soa-icon {
	width: 1rem;
	height: 1rem;
}

.soa-section-head a .soa-icon,
.soa-footer__tip .soa-icon,
.soa-author-box a .soa-icon {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	vertical-align: -0.16em;
}

.soa-menu-button .soa-icon {
	width: 1.1rem;
	height: 1.1rem;
}

.soa-search-form__icon {
	position: absolute;
	left: 1.5rem;
	z-index: 2;
	color: #9ca3af;
	pointer-events: none;
}

.soa-search-form input {
	padding-left: 3.6rem;
}

.soa-page-menu ul {
	display: flex;
	align-items: center;
	gap: .25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.soa-page-menu a {
	display: block;
	padding: .55rem 1rem;
	border-radius: 999px;
	color: #4b5563;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.soa-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: grid;
	place-items: center;
	padding: 2rem;
	background: rgba(255,255,255,.93);
	backdrop-filter: blur(28px);
}

.soa-search-overlay[hidden] {
	display: none;
}

.soa-search-overlay__inner {
	width: min(100%, 760px);
	text-align: center;
}

.soa-search-overlay__inner > p {
	margin: 0 0 1.5rem;
	color: #111827;
	font-size: clamp(2rem, 5vw, 4.5rem);
	font-weight: 900;
	letter-spacing: -.06em;
}

.soa-search-overlay__close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border: 0;
	border-radius: 999px;
	background: #f3f4f6;
	cursor: pointer;
}

.soa-mobile-menu__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem;
}

.soa-mobile-menu__socials {
	display: flex;
	gap: 1rem;
}

.soa-mobile-menu__socials a {
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	color: #6b7280;
}

.soa-card-kickers,
.soa-card-category {
	display: inline-flex;
	align-items: center;
	color: var(--soa-brand) !important;
	font-size: .65rem;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.soa-card-category--light {
	padding: .45rem .8rem;
	border-radius: 999px;
	background: rgba(255,255,255,.94);
	color: #111 !important;
}

.soa-author-line--avatar,
.soa-author-line--small {
	display: flex;
	align-items: center;
	gap: .65rem;
}

.soa-author-line--avatar img,
.soa-author-line--small img {
	flex: 0 0 auto;
	width: 2.5rem;
	height: 2.5rem;
	border: 2px solid rgba(255,255,255,.25);
	border-radius: 999px;
	object-fit: cover;
}

.soa-author-line--small img {
	width: 1.6rem;
	height: 1.6rem;
	border: 1px solid #e5e7eb;
}

.soa-side-card .soa-author-line--small {
	margin-top: auto;
}

.soa-card-excerpt {
	margin: -.2rem 0 1rem !important;
	color: #6b7280 !important;
	font-size: .88rem !important;
	font-weight: 500 !important;
	line-height: 1.65;
}

.soa-live-dot {
	display: inline-block;
	width: .5rem;
	height: .5rem;
	margin-right: .55rem;
	border-radius: 999px;
	background: var(--soa-brand);
	box-shadow: 0 0 0 0 rgba(255,74,31,.45);
	animation: soa-live-pulse 1.8s infinite;
}

@keyframes soa-live-pulse {
	70% { box-shadow: 0 0 0 8px rgba(255,74,31,0); }
	100% { box-shadow: 0 0 0 0 rgba(255,74,31,0); }
}

.soa-ticker a:hover {
	color: var(--soa-brand);
}

.soa-placement {
	width: min(calc(100% - 3rem), 1100px);
	margin: 0 auto 4rem;
}

.soa-placement .widget,
.soa-sidebar-widgets .widget {
	margin-bottom: 1.5rem;
}

.soa-editor-note {
	width: min(calc(100% - 3rem), 1100px);
	margin: 1.5rem auto 4rem;
	padding: 1rem 1.25rem;
	border: 1px dashed #f59e0b;
	border-radius: 18px;
	background: #fffbeb;
	color: #92400e;
	font-size: .9rem;
	font-weight: 700;
	text-align: center;
}

.soa-dark-support-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	margin-top: 4rem;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(255,255,255,.1);
}

.soa-dark-support-grid article {
	display: grid;
	grid-template-columns: 7rem minmax(0,1fr);
	gap: 1rem;
	align-items: center;
	padding: .8rem;
	border: 1px solid rgba(255,255,255,.06);
	border-radius: 24px;
	background: rgba(255,255,255,.04);
	transition: background .25s ease, transform .25s ease;
}

.soa-dark-support-grid article:hover {
	background: rgba(255,255,255,.08);
	transform: translateY(-2px);
}

.soa-dark-support-grid img {
	width: 7rem;
	height: 6rem;
	border-radius: 16px;
	object-fit: cover;
}

.soa-dark-support-grid h3 {
	margin: 0 0 .55rem;
	color: #f3f4f6;
	font-size: .95rem;
	line-height: 1.35;
}

.soa-dark-support-grid span {
	color: #9ca3af;
	font-size: .65rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.soa-newsletter-copy {
	max-width: 580px;
	margin: -1rem auto 2rem;
	color: #6b7280;
	font-size: 1.05rem;
	line-height: 1.7;
}

.soa-newsletter-consent {
	max-width: 600px;
	margin: 1rem auto 0;
	color: #9ca3af;
	font-size: .78rem;
}

.soa-article-author,
.soa-article-date {
	display: flex;
	align-items: center;
	gap: .8rem;
	text-align: left;
}

.soa-article-author__avatar {
	width: 3rem;
	height: 3rem;
	border: 2px solid rgba(255,74,31,.2);
	border-radius: 999px;
	object-fit: cover;
	padding: 2px;
}

.soa-article-author strong,
.soa-article-date strong {
	display: block;
	color: #111827;
	font-size: .88rem;
}

.soa-article-author span,
.soa-article-date span {
	display: block;
	margin-top: .18rem;
	color: #6b7280;
	font-size: .67rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.soa-meta-divider {
	width: 1px;
	height: 2rem;
	background: #e5e7eb;
}

.soa-article-image figcaption {
	margin-top: 1rem;
	color: #9ca3af;
	font-size: .8rem;
	font-weight: 600;
}

.soa-share-rule {
	width: 1px;
	height: 3rem;
	background: #e5e7eb;
}

.soa-share-rail button {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	background: #fff;
	color: #6b7280;
	cursor: pointer;
}

.soa-share-rail a:hover,
.soa-share-rail button:hover {
	border-color: var(--soa-brand);
	color: var(--soa-brand);
	box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.soa-share-rail .is-copied {
	border-color: var(--soa-brand);
	background: var(--soa-brand);
	color: #fff;
}

.soa-prose--drop-cap > p:first-of-type:first-letter {
	float: left;
	padding: .1em .18em 0 0;
	color: var(--soa-brand);
	font-size: 4.5rem;
	font-weight: 900;
	line-height: .8;
}

.soa-prose h3 {
	margin: 1.6em 0 .6em;
	color: #111;
	font-size: 1.5rem;
	font-weight: 850;
	letter-spacing: -.025em;
}

.soa-prose a {
	color: var(--soa-brand);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: .2em;
}

.soa-prose ul,
.soa-prose ol {
	padding-left: 1.5rem;
}

.soa-prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
	font-size: .95rem;
}

.soa-prose th,
.soa-prose td {
	padding: .9rem 1rem;
	border: 1px solid #e5e7eb;
	text-align: left;
}

.soa-prose pre {
	overflow-x: auto;
	padding: 1.25rem;
	border-radius: 18px;
	background: #111827;
	color: #f9fafb;
}

.soa-article-sidebar__sticky {
	position: sticky;
	top: 8rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.soa-sidebar-card .soa-newsletter-form {
	display: block;
	width: 100%;
}

.soa-sidebar-card .soa-newsletter-form input,
.soa-sidebar-card .soa-newsletter-form button {
	width: 100%;
}

.soa-sidebar-card .soa-newsletter-form input {
	padding: 1rem 1.2rem;
}

.soa-trending-heading {
	display: flex;
	align-items: center;
	gap: .65rem;
}

.soa-trending-heading > span {
	width: .55rem;
	height: .55rem;
	border-radius: 999px;
	background: var(--soa-brand);
	animation: soa-live-pulse 1.8s infinite;
}

.soa-trending-list {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

.soa-trending-list article + article {
	padding-top: 1.4rem;
	border-top: 1px solid #eceff3;
}

.soa-trending-category {
	margin: 0 !important;
	color: var(--soa-brand) !important;
	font-size: .63rem;
	font-weight: 900 !important;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.soa-trending-list h3 {
	margin: .35rem 0 0;
	font-size: .95rem;
	line-height: 1.4;
}

.soa-article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: .7rem;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #f1f3f5;
}

.soa-article-tags a {
	padding: .55rem .9rem;
	border-radius: 999px;
	background: #f3f4f6;
	color: #4b5563;
	font-size: .75rem;
	font-weight: 800;
	text-decoration: none;
}

.soa-article-tags a:hover {
	background: #e5e7eb;
	color: #111;
}

.soa-author-box {
	display: grid;
	grid-template-columns: 6rem minmax(0,1fr);
	gap: 1.5rem;
	align-items: start;
	margin-top: 3rem;
	padding: 2rem;
	border: 1px solid #eceff3;
	border-radius: 28px;
	background: #fafafa;
}

.soa-author-box > img {
	width: 6rem;
	height: 6rem;
	margin: 0;
	border-radius: 999px;
	object-fit: cover;
	box-shadow: none;
}

.soa-author-box span {
	color: var(--soa-brand);
	font-size: .68rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.soa-author-box h2 {
	margin: .3rem 0 .6rem;
	font-size: 1.5rem;
}

.soa-author-box p {
	margin: 0 0 1rem;
	font-size: .95rem;
}

.soa-author-box a {
	font-size: .8rem;
	font-weight: 850;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.soa-post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0,1fr));
	gap: 1rem;
	width: min(calc(100% - 3rem), 1100px);
	margin: 0 auto 5rem;
}

.soa-post-navigation > div {
	padding: 1.5rem;
	border: 1px solid #eceff3;
	border-radius: 24px;
}

.soa-post-navigation > div:last-child {
	text-align: right;
}

.soa-post-navigation span {
	display: block;
	margin-bottom: .45rem;
	color: #9ca3af;
	font-size: .65rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.soa-post-navigation a {
	font-weight: 850;
	line-height: 1.4;
}

.soa-read-next {
	padding: 6rem 0;
	border-top: 1px solid #e5e7eb;
	background: #f9fafb;
}

.soa-read-next__inner {
	width: min(calc(100% - 3rem), 1100px);
	margin: 0 auto;
}

.soa-read-next__inner > h2 {
	margin: 0 0 2.5rem;
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: -.04em;
}

.soa-read-next__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0,1fr));
	gap: 2rem;
}

.soa-comments-wrap {
	width: min(calc(100% - 3rem), 780px);
	margin: 0 auto 6rem;
}

.soa-comments {
	padding-top: 4rem;
	border-top: 1px solid #eceff3;
}

.soa-comments h2,
.comment-reply-title {
	font-size: 1.6rem;
	font-weight: 900;
}

.comment-list {
	padding: 0;
	list-style: none;
}

.comment-list .comment-body {
	margin-bottom: 1.5rem;
	padding: 1.5rem;
	border: 1px solid #eceff3;
	border-radius: 22px;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
	width: 100%;
	border: 1px solid #dfe3e8;
	border-radius: 16px;
	padding: .9rem 1rem;
}

.comment-form input[type="submit"] {
	border: 0;
	border-radius: 999px;
	background: var(--soa-brand);
	color: #fff;
	padding: .9rem 1.4rem;
	font-weight: 800;
	cursor: pointer;
}

.soa-page-hero--clean {
	border-bottom: 1px solid #eceff3;
	border-radius: 0;
	background: #fff;
	color: #111827;
}

.soa-page-hero--clean::before {
	background: rgba(255,74,31,.1);
}

.soa-page-hero--clean p {
	color: #6b7280;
}

.soa-page-content--wide {
	max-width: 1100px;
}

.soa-page-content > :first-child {
	margin-top: 0;
}

.soa-page-content .alignwide {
	width: min(1100px, calc(100vw - 3rem));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.soa-page-content .alignfull {
	width: min(1200px, 100vw);
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.soa-page-content .soa-mission-grid,
.soa-page-content .soa-team-section {
	width: 100%;
}

.soa-archive {
	min-height: 70vh;
	padding: 10rem 3rem 6rem;
}

.soa-archive-header {
	max-width: 850px;
	margin: 0 auto 4rem;
	text-align: center;
}

.soa-archive-header > span {
	color: var(--soa-brand);
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.soa-archive-header h1 {
	margin: .8rem 0 1rem;
	font-size: clamp(3rem, 7vw, 5.5rem);
	font-weight: 900;
	letter-spacing: -.065em;
	line-height: .98;
}

.soa-archive-header p,
.soa-archive-description {
	color: #6b7280;
	font-size: 1.05rem;
	line-height: 1.7;
}

.soa-archive-header .soa-search-form {
	margin-top: 2rem;
}

.soa-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0,1fr));
	gap: 2rem;
}

.soa-archive-card {
	overflow: hidden;
	border: 1px solid #eceff3;
	border-radius: 28px;
	background: #fff;
	transition: transform .3s var(--soa-ease), box-shadow .3s ease;
}

.soa-archive-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.soa-archive-card > .soa-media-link img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform .5s var(--soa-ease);
}

.soa-archive-card:hover img {
	transform: scale(1.04);
}

.soa-archive-card__copy {
	padding: 1.35rem;
}

.soa-archive-card h2 {
	margin: 0 0 .8rem;
	font-size: 1.25rem;
	line-height: 1.3;
}

.soa-archive-card__copy > p {
	color: #6b7280;
	font-size: .9rem;
	line-height: 1.65;
}

.navigation.pagination {
	margin-top: 4rem;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: .5rem;
}

.nav-links .page-numbers {
	display: grid;
	place-items: center;
	min-width: 2.6rem;
	height: 2.6rem;
	padding: 0 .8rem;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	font-weight: 800;
}

.nav-links .current,
.nav-links a:hover {
	border-color: #111;
	background: #111;
	color: #fff;
}

.soa-nothing-found {
	max-width: 700px;
	margin: 4rem auto;
	text-align: center;
}

.soa-nothing-found h2 {
	font-size: 2.5rem;
	font-weight: 900;
}

.soa-error-page {
	display: grid;
	place-items: center;
	min-height: 780px;
	padding: 10rem 2rem 6rem;
	text-align: center;
}

.soa-error-page > div {
	max-width: 760px;
}

.soa-error-page > div > span {
	color: var(--soa-brand);
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: .18em;
}

.soa-error-page h1 {
	margin: 1rem 0;
	font-size: clamp(3.5rem, 8vw, 6.5rem);
	font-weight: 900;
	letter-spacing: -.07em;
	line-height: .95;
}

.soa-error-page p {
	color: #6b7280;
	font-size: 1.1rem;
}

.soa-error-page .soa-search-form {
	margin: 2rem auto;
}

.soa-primary-button {
	display: inline-flex;
	padding: .95rem 1.4rem;
	border-radius: 999px;
	background: #111;
	color: #fff;
	font-weight: 800;
}

.soa-footer__tip {
	display: inline-flex !important;
	align-items: center;
	gap: .35rem;
}

.soa-footer__bottom .menu {
	display: flex;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.soa-footer__bottom .menu a {
	color: inherit;
}

body.soa-full-bleed .soa-page {
	padding: 0 !important;
}

body.soa-full-bleed .soa-shell,
body.soa-full-bleed .soa-footer {
	width: 100%;
	max-width: none;
	margin: 0;
	border-radius: 0;
	box-shadow: none;
}

@media (max-width: 1100px) {
	.soa-dark-support-grid,
	.soa-read-next__grid,
	.soa-archive-grid {
		grid-template-columns: repeat(2, minmax(0,1fr));
	}

	.soa-article-sidebar__sticky {
		position: static;
	}
}

@media (max-width: 720px) {
	.soa-search-form__icon {
		top: 1.55rem;
	}

	.soa-search-form input {
		padding-left: 3.5rem;
	}

	.soa-dark-support-grid,
	.soa-read-next__grid,
	.soa-archive-grid,
	.soa-post-navigation {
		grid-template-columns: 1fr;
	}

	.soa-dark-support-grid article {
		grid-template-columns: 6rem minmax(0,1fr);
	}

	.soa-dark-support-grid img {
		width: 6rem;
		height: 5rem;
	}

	.soa-author-box {
		grid-template-columns: 1fr;
	}

	.soa-post-navigation > div:last-child {
		text-align: left;
	}

	.soa-archive {
		padding: 8rem 1rem 4rem;
	}

	.soa-archive-header h1 {
		font-size: 3rem;
	}

	.soa-article-meta {
		flex-direction: column;
	}

	.soa-meta-divider {
		display: none;
	}
}
