:root {
	--color-primary: #0b72b9;
	--color-primary-dark: #084b86;
	--color-primary-soft: #eef8ff;
	--color-cta: #c72032;
	--color-success: #367f21;
	--color-text: #172033;
	--color-muted: #677489;
	--color-border: #dfe8f1;
	--color-bg: #ffffff;
	--color-bg-soft: #f6f9fd;
	--color-footer: #5a88b3;
	--shadow-header: 0 4px 18px rgba(20, 33, 61, 0.08);
	--shadow-card: 0 14px 34px rgba(19, 41, 75, 0.08);
	--radius: 8px;
	--container: 1180px;
	--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

a:hover,
a:focus {
	color: var(--color-primary-dark);
}

:where(a, button, input, textarea, select):focus-visible {
	outline: 3px solid rgba(8, 75, 134, 0.44);
	outline-offset: 3px;
}

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

button,
input,
textarea,
select {
	font: inherit;
}

button {
	cursor: pointer;
}

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

.narrow-container {
	width: min(100% - 40px, 760px);
}

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

.screen-reader-text:focus {
	top: 12px;
	left: 12px;
	z-index: 10000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: #ffffff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	color: var(--color-primary-dark);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--shadow-header);
	backdrop-filter: blur(10px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 74px;
	gap: 26px;
}

.site-branding {
	display: flex;
	align-items: center;
	min-width: 0;
}

.custom-logo-link,
.site-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	width: auto;
	max-height: 44px;
}

.site-logo-link {
	color: var(--color-text);
	font-size: 1.28rem;
	font-weight: 800;
	line-height: 1.1;
}

.site-navigation-panel {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	margin-left: auto;
}

.main-navigation,
.header-actions {
	display: flex;
	align-items: center;
}

.primary-menu,
.primary-menu ul,
.header-actions-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu,
.header-actions-menu {
	display: flex;
	align-items: center;
	gap: 8px;
}

.primary-menu li {
	position: relative;
}

.primary-menu a {
	display: flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 13px;
	border-radius: 999px;
	color: #223149;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.2;
}

.primary-menu a:hover,
.primary-menu a:focus,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu .current-menu-ancestor > a {
	background: var(--color-primary-soft);
	color: var(--color-primary-dark);
}

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	z-index: 10;
	min-width: 220px;
	padding: 10px;
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.primary-menu .sub-menu .sub-menu {
	top: -10px;
	left: calc(100% + 8px);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-menu .sub-menu a {
	justify-content: flex-start;
	width: 100%;
	border-radius: var(--radius);
	white-space: nowrap;
}

.header-actions-menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border-radius: 999px;
	background: linear-gradient(135deg, #4dbdeb, #3eaedc);
	box-shadow: 0 10px 22px rgba(77, 189, 235, 0.20);
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 800;
	white-space: nowrap;
}

.header-actions-menu li:nth-child(2) a {
	background: linear-gradient(135deg, #ff7a59, #ff5f6d);
	box-shadow: 0 10px 22px rgba(255, 95, 109, 0.18);
}

.header-actions-menu a:hover,
.header-actions-menu a:focus {
	color: #ffffff;
	transform: translateY(-1px);
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: var(--color-primary);
	border: 0;
	border-radius: var(--radius);
	color: #ffffff;
}

.menu-toggle-icon {
	display: grid;
	gap: 5px;
	width: 20px;
}

.menu-toggle-icon span {
	display: block;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active .menu-toggle-icon span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle-icon span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.is-active .menu-toggle-icon span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.content-section {
	padding: 58px 0 78px;
	background: var(--color-bg-soft);
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 28px;
	align-items: start;
}

.content-layout.no-sidebar {
	grid-template-columns: minmax(0, 1fr);
}

.content-main {
	min-width: 0;
}

.home-newsroom {
	padding: 42px 0 78px;
	background: #ffffff;
}

.home-hero-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.42fr) minmax(340px, 0.92fr);
	gap: 70px;
	align-items: start;
}

.home-featured-card {
	min-width: 0;
}

.home-featured-media,
.home-latest-media {
	position: relative;
	display: block;
	overflow: hidden;
	background: #dbe7f2;
}

.home-featured-media {
	aspect-ratio: 1.92 / 1;
	background: #d9e6ee;
}

.home-featured-media img,
.home-latest-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.home-featured-card:hover .home-featured-media img,
.home-latest-card:hover .home-latest-media img {
	transform: scale(1.03);
}

.home-media-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: inherit;
	background: var(--color-primary-soft);
	color: var(--color-primary-dark);
	font-size: 1.7rem;
	font-weight: 900;
}

.home-featured-body {
	display: grid;
	justify-items: center;
	gap: 12px;
	padding: 22px 10px 0;
	text-align: center;
}

.home-card-category,
.home-headline-category {
	width: max-content;
	max-width: 100%;
	color: var(--color-success);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.home-featured-title {
	max-width: 760px;
	margin: 0;
	color: #030712;
	font-size: 2.85rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.04;
}

.home-featured-title a,
.home-headline-card h3 a,
.home-latest-body h3 a {
	color: inherit;
}

.home-featured-title a:hover,
.home-featured-title a:focus,
.home-headline-card h3 a:hover,
.home-headline-card h3 a:focus,
.home-latest-body h3 a:hover,
.home-latest-body h3 a:focus {
	color: var(--color-primary-dark);
}

.home-featured-byline {
	margin: 0;
	color: var(--color-success);
	font-size: 0.94rem;
	font-weight: 800;
	line-height: 1.35;
}

.home-featured-byline a {
	color: inherit;
}

.home-featured-byline a:hover,
.home-featured-byline a:focus {
	color: var(--color-primary-dark);
}

.home-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
	color: #334155;
	font-size: 0.86rem;
	font-weight: 500;
}

.home-featured-excerpt {
	max-width: 710px;
	color: #1f2937;
	font-size: 1rem;
	line-height: 1.65;
}

.home-featured-excerpt,
.home-featured-excerpt p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.home-featured-excerpt p {
	margin: 0;
}

.home-story-rail {
	min-width: 0;
}

.home-tab-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 40px;
}

.home-tab {
	min-height: 60px;
	padding: 0 16px;
	background: #eef7eb;
	border: 0;
	border-bottom: 4px solid transparent;
	color: #020617;
	font-weight: 500;
	line-height: 1.2;
}

.home-tab.is-active {
	background: #ffffff;
	border-bottom-color: var(--color-success);
}

.home-tab:hover,
.home-tab:focus {
	color: var(--color-primary-dark);
	outline: none;
}

.home-tab:focus-visible {
	box-shadow: 0 0 0 3px rgba(54, 127, 33, 0.22);
}

.home-rail-panel[hidden] {
	display: none;
}

.home-rail-list {
	display: grid;
}

.home-headline-card {
	padding: 0 0 36px;
}

.home-headline-card h3 {
	max-width: 470px;
	margin: 8px 0 8px;
	color: #111827;
	font-size: 1.27rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.18;
}

.home-latest {
	margin-top: 74px;
}

.home-latest-heading {
	margin-bottom: 30px;
}

.home-latest-heading h2 {
	margin: 0 0 20px;
	color: #111827;
	font-size: 2.25rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.05;
}

.home-category-nav {
	display: flex;
	align-items: center;
	gap: 38px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: thin;
}

.home-category-filter {
	position: relative;
	flex: 0 0 auto;
	padding: 0 0 10px;
	background: transparent;
	border: 0;
	color: #111827;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
}

.home-category-filter::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	background: transparent;
}

.home-category-filter.is-active::after {
	background: var(--color-success);
}

.home-category-filter:hover,
.home-category-filter:focus {
	color: var(--color-primary-dark);
	outline: none;
}

.home-category-filter:focus-visible {
	box-shadow: 0 3px 0 rgba(54, 127, 33, 0.28);
}

.home-latest-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
	gap: 64px;
	align-items: start;
}

.home-latest-main {
	min-width: 0;
}

.home-filter-panels {
	display: grid;
	gap: 24px;
}

.home-latest-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
}

.home-latest-card {
	min-width: 0;
	background: transparent;
}

.home-latest-card.is-hidden {
	display: none;
}

.home-latest-media {
	aspect-ratio: 1.88 / 1;
	background: #d9e6ee;
}

.home-latest-author-avatar {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin: -32px 0 0 22px;
	overflow: hidden;
	background: #ffffff;
	border: 4px solid #ffffff;
	border-radius: 50%;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
	color: #111827;
	font-size: 1.1rem;
	font-weight: 900;
	line-height: 1;
}

.home-latest-author-avatar .avatar {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.ssa-avatar-initials {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background: var(--color-primary-soft);
	border-radius: 50%;
	color: var(--color-primary-dark);
	font-weight: 900;
	line-height: 1;
}

.home-latest-body {
	display: grid;
	gap: 10px;
	padding-top: 15px;
}

.home-latest-category-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0 8px;
	align-items: center;
	color: var(--color-success);
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1.3;
	text-transform: uppercase;
}

.home-latest-category-list a {
	color: inherit;
}

.home-latest-category-list a:hover,
.home-latest-category-list a:focus {
	color: var(--color-primary-dark);
}

.home-latest-body h3 {
	margin: 0;
	color: #25344a;
	font-size: 1.28rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.28;
}

.home-latest-byline {
	margin: -2px 0 0;
	color: var(--color-success);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.35;
}

.home-latest-byline a {
	color: inherit;
}

.home-latest-byline a:hover,
.home-latest-byline a:focus {
	color: var(--color-primary-dark);
}

.home-latest-excerpt {
	margin: 0;
	color: #1f2937;
	line-height: 1.55;
}

.home-latest-excerpt,
.home-latest-excerpt p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.home-latest-excerpt p {
	margin: 0;
}

.home-latest-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin-top: 8px;
	color: #334155;
	font-size: 0.86rem;
	line-height: 1.35;
}

.home-latest-empty {
	margin: 24px 0 0;
	padding: 18px 20px;
	background: var(--color-bg-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-muted);
	font-weight: 700;
}

.home-latest-more {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

.home-latest-more a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 24px;
	background: #000000;
	border-radius: 999px;
	color: #ffffff;
	font-weight: 900;
	line-height: 1.2;
}

.home-latest-more a:hover,
.home-latest-more a:focus {
	background: #1f2937;
	color: #ffffff;
}

.home-latest-sidebar {
	display: grid;
	gap: 32px;
	min-width: 0;
}

.home-subscribe-card {
	padding: 34px 36px;
	background: #eef8e9;
	color: #050505;
}

.home-subscribe-icon {
	position: relative;
	display: block;
	width: 48px;
	height: 42px;
	margin-bottom: 20px;
	border: 2px solid currentColor;
	border-radius: 12px;
}

.home-subscribe-icon::before,
.home-subscribe-icon::after {
	content: "";
	position: absolute;
	display: block;
}

.home-subscribe-icon::before {
	right: 8px;
	bottom: -8px;
	width: 14px;
	height: 14px;
	background: #eef8e9;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}

.home-subscribe-icon::after {
	top: 13px;
	left: 11px;
	width: 24px;
	height: 2px;
	background: currentColor;
	box-shadow: 0 9px 0 currentColor;
}

.home-subscribe-card h2 {
	margin: 0;
	color: #050505;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.25;
}

.home-subscribe-card p {
	margin: 18px 0 18px;
	color: #050505;
	font-size: 0.94rem;
	line-height: 1.45;
}

.home-subscribe-card .newsletter-form {
	display: grid;
	gap: 14px;
}

.home-subscribe-card .newsletter-form input {
	width: 100%;
	min-height: 42px;
	padding: 0 15px;
	background: #ffffff;
	border: 1px solid #d2d9cf;
	border-radius: 3px;
	color: #111827;
	outline: none;
}

.home-subscribe-card .newsletter-form input::placeholder {
	color: #a3a9b5;
}

.home-subscribe-card .newsletter-form input:focus {
	border-color: var(--color-success);
	box-shadow: 0 0 0 3px rgba(54, 127, 33, 0.18);
}

.home-subscribe-card .newsletter-form button {
	justify-self: center;
	min-height: 42px;
	min-width: 202px;
	padding: 0 24px;
	background: #000000;
	border: 0;
	border-radius: 999px;
	color: #ffffff;
	font-weight: 900;
}

.home-subscribe-card .newsletter-form button:hover,
.home-subscribe-card .newsletter-form button:focus {
	background: #1f2937;
	color: #ffffff;
}

.home-subscribe-card .newsletter-status {
	min-height: 1.35em;
	color: #276d18;
	font-size: 0.86rem;
	font-weight: 800;
	text-align: center;
}

.archive-header {
	margin-bottom: 26px;
}

.archive-header h1,
.entry-title,
.error-card h1 {
	margin: 0;
	color: #121b2f;
	font-size: 2.25rem;
	line-height: 1.12;
}

.archive-header p,
.archive-description {
	max-width: 680px;
	margin: 10px 0 0;
	color: var(--color-muted);
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.archive-posts-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.no-sidebar .posts-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card,
.entry-card,
.widget {
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.post-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.post-card-media {
	display: block;
	overflow: hidden;
	background: #dbe7f2;
	aspect-ratio: 16 / 10;
}

.post-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.post-card:hover .post-card-media img {
	transform: scale(1.03);
}

.post-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	padding: 22px;
}

.post-card-category {
	width: max-content;
	max-width: 100%;
	padding: 4px 10px;
	background: var(--color-primary-soft);
	border-radius: 999px;
	color: var(--color-primary-dark);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.35;
}

.entry-title {
	color: #25344a;
	font-size: 1.26rem;
	font-weight: 800;
	line-height: 1.28;
}

.single-entry .entry-title,
.error-card h1 {
	font-size: 2.25rem;
}

.entry-title a {
	color: #25344a;
}

.entry-title a:hover,
.entry-title a:focus {
	color: var(--color-primary-dark);
}

.post-card .entry-title {
	font-size: 1.18rem;
	font-weight: 800;
	line-height: 1.32;
}

.entry-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 16px;
	margin-top: 8px;
	color: var(--color-muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.entry-meta-author {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: inherit;
}

.entry-meta-author .avatar,
.entry-meta-author .ssa-avatar-initials {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
	font-size: 0.72rem;
}

.entry-summary,
.entry-content {
	color: #334155;
}

.entry-summary {
	margin: 0;
}

.post-card .entry-summary,
.post-card .entry-summary p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.entry-summary p {
	margin: 0;
}

.entry-content {
	margin-top: 20px;
}

.entry-content a {
	color: var(--color-primary-dark);
	font-weight: 700;
}

.read-more-link {
	width: max-content;
	margin-top: auto;
	color: var(--color-primary-dark);
	font-weight: 800;
}

.entry-card {
	margin-bottom: 24px;
	padding: 30px;
}

.single-entry {
	margin-bottom: 0;
}

.entry-media {
	margin: 24px 0;
	overflow: hidden;
	border-radius: var(--radius);
}

.page-links {
	margin-top: 24px;
	font-weight: 800;
}

.author-card {
	display: flex;
	gap: 18px;
	margin-top: 34px;
	padding: 24px;
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.author-card-avatar {
	flex: 0 0 auto;
}

.author-card-avatar .avatar {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	object-fit: cover;
}

.author-card-avatar .ssa-avatar-initials {
	width: 88px;
	height: 88px;
	font-size: 1.35rem;
}

.author-card-content {
	min-width: 0;
}

.author-card-label {
	margin: 0 0 4px;
	color: var(--color-primary-dark);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.author-card h2 {
	margin: 0;
	color: var(--color-text);
	font-size: 1.25rem;
	line-height: 1.25;
}

.author-card h2 a {
	color: inherit;
}

.author-card p:not(.author-card-label) {
	margin: 8px 0 12px;
	color: var(--color-muted);
}

.author-card-link {
	color: var(--color-primary-dark);
	font-weight: 900;
}

.author-card-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 16px;
}

.author-card-socials {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.author-card-social {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	color: #ffffff;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.author-card-social:hover,
.author-card-social:focus {
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(20, 33, 61, 0.16);
}

.author-card-social svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.author-card-social-facebook {
	background: #1877f2;
}

.author-card-social-linkedin {
	background: #0a66c2;
}

.post-tags,
.related-posts {
	margin-top: 28px;
}

.post-tags {
	padding: 22px;
	background: #f8fbff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.post-tags h2 {
	margin: 0 0 12px;
	color: #25344a;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.25;
}

.post-tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags-list a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 13px;
	background: #ffffff;
	border: 1px solid #d7e8f6;
	border-radius: 999px;
	color: var(--color-primary-dark);
	font-size: 0.88rem;
	font-weight: 800;
}

.post-tags-list a::before {
	content: "#";
	margin-right: 2px;
	color: var(--color-muted);
}

.post-tags-list a:hover,
.post-tags-list a:focus {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #ffffff;
}

.post-tags-list a:hover::before,
.post-tags-list a:focus::before {
	color: rgba(255, 255, 255, 0.78);
}

.related-posts {
	padding: 26px;
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.related-posts-header {
	margin-bottom: 18px;
}

.related-posts-header p {
	margin: 0 0 4px;
	color: var(--color-primary-dark);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.related-posts-header h2 {
	margin: 0;
	color: var(--color-text);
	font-size: 1.35rem;
	line-height: 1.25;
}

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

.related-post-card {
	min-width: 0;
	overflow: hidden;
	background: var(--color-bg-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.related-post-media {
	display: block;
	overflow: hidden;
	background: #dbe7f2;
	aspect-ratio: 16 / 10;
}

.related-post-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.related-post-card:hover .related-post-media img {
	transform: scale(1.03);
}

.related-post-body {
	padding: 14px;
}

.related-post-body h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.35;
}

.related-post-body h3 a {
	color: #25344a;
}

.related-post-body h3 a:hover,
.related-post-body h3 a:focus {
	color: var(--color-primary-dark);
}

.related-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
	margin-top: 10px;
	color: var(--color-muted);
	font-size: 0.8rem;
	font-weight: 700;
}

.post-navigation {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 24px;
}

.post-navigation a,
.nav-links a,
.nav-links span {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 14px;
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-text);
	font-weight: 800;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
}

.nav-links .current {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #ffffff;
}

.content-sidebar {
	display: grid;
	gap: 18px;
}

.widget {
	padding: 22px;
}

.widget-title {
	margin: 0 0 12px;
	color: var(--color-text);
	font-size: 1.05rem;
	line-height: 1.25;
}

.widget ul {
	margin: 0;
	padding-left: 20px;
}

.widget a {
	color: var(--color-primary-dark);
	font-weight: 700;
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--color-primary-dark);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.error-section {
	min-height: 640px;
	background:
		linear-gradient(135deg, rgba(77, 189, 235, 0.14), rgba(255, 122, 89, 0.12)),
		#f7fbff;
}

.error-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 28px;
	align-items: stretch;
}

.error-card,
.error-links {
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.error-card {
	padding: clamp(30px, 5vw, 56px);
}

.error-card h1 {
	max-width: 640px;
	margin-bottom: 14px;
	font-size: clamp(2.25rem, 5vw, 4.5rem);
	line-height: 0.98;
}

.error-card p:not(.eyebrow) {
	max-width: 610px;
	color: var(--color-muted);
	font-size: 1.08rem;
}

.error-card .search-form {
	display: flex;
	max-width: 680px;
	gap: 10px;
	margin: 30px 0 22px;
}

.error-card .search-field {
	flex: 1;
	min-width: 0;
	padding: 13px 14px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.error-card .search-submit,
.button-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	background: var(--color-primary);
	border: 0;
	border-radius: var(--radius);
	color: #ffffff;
	font-weight: 800;
}

.error-card .search-submit:hover,
.error-card .search-submit:focus,
.button-link:hover,
.button-link:focus {
	background: var(--color-primary-dark);
	color: #ffffff;
}

.error-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.button-link-secondary {
	background: #ffffff;
	border: 1px solid var(--color-border);
	color: var(--color-primary-dark);
}

.button-link-secondary:hover,
.button-link-secondary:focus {
	background: var(--color-primary-soft);
	color: var(--color-primary-dark);
}

.error-links {
	padding: 28px;
}

.error-links h2 {
	margin: 0 0 16px;
	font-size: 1.25rem;
}

.error-links ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.error-links a {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 10px 12px;
	background: #f7fbff;
	border: 1px solid transparent;
	border-radius: var(--radius);
	color: var(--color-text);
	font-weight: 800;
}

.error-links a:hover,
.error-links a:focus {
	background: #ffffff;
	border-color: var(--color-primary);
	color: var(--color-primary-dark);
}

.article-section {
	padding: 48px 0 78px;
	background: #ffffff;
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 760px) 340px;
	gap: 54px;
	align-items: start;
}

.article-main {
	min-width: 0;
}

.article-entry {
	min-width: 0;
}

.article-header {
	padding-bottom: 26px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--color-border);
}

.article-category {
	display: inline-flex;
	width: max-content;
	max-width: 100%;
	margin-bottom: 16px;
	padding: 6px 12px;
	background: var(--color-primary-soft);
	border-radius: 999px;
	color: var(--color-primary-dark);
	font-size: 0.8rem;
	font-weight: 900;
	line-height: 1.35;
	text-transform: uppercase;
}

.article-title {
	margin: 0;
	color: #111827;
	font-size: 3.1rem;
	line-height: 1.08;
}

.article-dek {
	margin: 18px 0 0;
	color: #475569;
	font-size: 1.18rem;
	line-height: 1.65;
}

.article-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 24px;
	color: var(--color-muted);
}

.article-author {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.article-author .avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.article-author .ssa-avatar-initials {
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	font-size: 0.95rem;
}

.article-author a,
.article-date span:first-child {
	color: var(--color-text);
	font-weight: 800;
}

.meta-label {
	display: block;
	color: var(--color-muted);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.article-date {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px 14px;
	font-size: 0.92rem;
	font-weight: 700;
}

.article-date span + span::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 14px;
	background: var(--color-border);
	border-radius: 50%;
	vertical-align: middle;
}

.article-featured-image {
	margin: 0 0 34px;
}

.article-featured-image img {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.article-featured-image figcaption {
	margin-top: 10px;
	color: var(--color-muted);
	font-size: 0.9rem;
}

.article-body {
	color: #243041;
	font-size: 1.06rem;
	line-height: 1.82;
}

.article-body > *:first-child {
	margin-top: 0;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote,
.article-body table,
.article-body figure {
	margin-top: 0;
	margin-bottom: 1.45em;
}

.article-body ul,
.article-body ol {
	padding-left: 1.35em;
}

.article-body li {
	margin-bottom: 0.72em;
	padding-left: 0.16em;
}

.article-body li::marker {
	color: var(--color-primary);
	font-weight: 900;
}

.article-body li > ul,
.article-body li > ol {
	margin-top: 0.7em;
	margin-bottom: 0;
}

.article-body h2,
.article-body h3 {
	color: #111827;
	line-height: 1.22;
	scroll-margin-top: 104px;
}

.article-body h2 {
	margin: 2.1em 0 0.7em;
	font-size: 1.9rem;
}

.article-body h3 {
	margin: 1.8em 0 0.65em;
	font-size: 1.42rem;
}

.article-body a {
	color: var(--color-primary-dark);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: rgba(77, 189, 235, 0.55);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.article-body a:hover,
.article-body a:focus {
	color: #0f5f93;
	text-decoration-color: currentColor;
}

.article-body img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius);
}

.article-body figure,
.article-body .wp-caption {
	max-width: 100%;
	margin-right: 0;
	margin-left: 0;
}

.article-body figure img,
.article-body .wp-caption img {
	display: block;
	width: 100%;
	box-shadow: var(--shadow-card);
}

.article-body figcaption,
.article-body .wp-caption-text {
	margin-top: 10px;
	color: var(--color-muted);
	font-size: 0.9rem;
	line-height: 1.55;
	text-align: center;
}

.article-body .aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.article-body .alignleft {
	float: left;
	max-width: 46%;
	margin: 0.35em 1.4em 1em 0;
}

.article-body .alignright {
	float: right;
	max-width: 46%;
	margin: 0.35em 0 1em 1.4em;
}

.article-body::after {
	content: "";
	display: block;
	clear: both;
}

.article-body blockquote {
	padding: 22px 24px;
	background: #f8fbff;
	border: 1px solid #d7e8f6;
	border-left: 5px solid var(--color-primary);
	border-radius: var(--radius);
	color: #334155;
	font-size: 1.04rem;
}

.article-body blockquote p:last-child {
	margin-bottom: 0;
}

.article-body table {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: #ffffff;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.article-body th,
.article-body td {
	padding: 13px 15px;
	border: 1px solid var(--color-border);
	text-align: left;
	vertical-align: top;
}

.article-body th {
	background: #eef8ff;
	color: #172235;
	font-weight: 900;
}

.article-body tr:nth-child(even) td {
	background: #fbfdff;
}

.article-sidebar {
	min-width: 0;
}

.article-sidebar-sticky {
	position: sticky;
	top: 96px;
	display: grid;
	gap: 20px;
	align-self: start;
}

.article-toc {
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.article-toc {
	padding: 22px;
	background: #ffffff;
	border: 1px solid var(--color-border);
}

.article-toc h2 {
	margin: 0;
	line-height: 1.25;
}

.article-toc h2 {
	padding-bottom: 12px;
	border-bottom: 1px solid var(--color-border);
	color: var(--color-text);
	font-size: 1rem;
	font-weight: 900;
}

.article-toc ol {
	display: grid;
	gap: 2px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.article-toc a {
	display: block;
	padding: 8px 0 8px 12px;
	border-left: 3px solid transparent;
	color: var(--color-muted);
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.35;
}

.article-toc .toc-level-3 a {
	padding-left: 24px;
	font-size: 0.86rem;
	font-weight: 700;
}

.article-toc a:hover,
.article-toc a:focus,
.article-toc a.is-active {
	border-left-color: var(--color-primary);
	color: var(--color-primary-dark);
}

.article-mobile-toc {
	display: none;
	margin: -8px 0 34px;
}

.newsletter-form {
	display: grid;
	gap: 10px;
}

.newsletter-form input {
	width: 100%;
	min-height: 44px;
	padding: 0 13px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	outline: none;
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.66);
}

.newsletter-form input:focus {
	border-color: #8ed7ff;
	box-shadow: 0 0 0 3px rgba(142, 215, 255, 0.18);
}

.newsletter-form button {
	min-height: 44px;
	border: 0;
	border-radius: var(--radius);
	background: var(--color-primary);
	color: #ffffff;
	font-weight: 900;
}

.newsletter-form button:hover,
.newsletter-form button:focus {
	background: #36b7ff;
}

.newsletter-status {
	min-height: 1.35em;
	color: #8ed7ff;
	font-size: 0.86rem;
	font-weight: 800;
}

.site-footer {
	background: var(--color-footer);
	color: #ffffff;
	font-family: "Inter", var(--font-sans);
}

.footer-inner {
	box-sizing: border-box;
	width: 100%;
	max-width: 1400px;
	margin-inline: auto;
	padding: 34px 62px 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.12fr 0.9fr 0.78fr 0.86fr;
	gap: 36px;
	max-width: 100%;
	margin-inline: 0;
}

.footer-column {
	display: grid;
	align-content: start;
	gap: 5px;
}

.footer-brand-title {
	margin: 0 0 14px;
	color: #ffffff;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
}

.footer-brand-column {
	padding-top: 5px;
}

.footer-column p,
.footer-column address,
.footer-menu a,
.footer-widget a {
	color: #ffffff;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.42;
}

.footer-column p,
.footer-column address {
	margin: 0;
}

.footer-column address {
	display: grid;
	gap: 1px;
	font-style: normal;
}

.footer-label,
.footer-email-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
}

.footer-email-icon {
	display: inline-grid;
	place-items: center;
	width: 26px;
	height: 16px;
	background: #d8d6e6;
	border-radius: 2px;
	color: #637fb0;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.footer-title {
	margin: 0 0 12px;
	color: #ffffff;
	font-family: "Space Grotesk", sans-serif;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.25;
}

.footer-menu {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-widget {
	margin: 0;
}

.footer-widget ul,
.footer-widget ol,
.footer-widget .menu {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu a,
.footer-email,
.footer-widget a {
	color: #ffffffe6;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	font-weight: 300;
	line-height: 20px;
}

.footer-email {
	color: #ffffff;
	overflow-wrap: anywhere;
	font-size: 17px;
}

.footer-menu a:hover,
.footer-menu a:focus,
.footer-email:hover,
.footer-email:focus,
.footer-widget a:hover,
.footer-widget a:focus {
	color: #16304a;
	text-decoration: none;
}

.footer-action-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	max-width: 100%;
	margin: 28px 0 0;
}

.footer-action-panel {
	min-height: 168px;
	padding: 22px 38px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.footer-action-panel h2 {
	margin: 0 0 14px;
	color: #ffffff;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
}

.footer-tool-icons,
.footer-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.footer-tool-icons a,
.footer-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #ffffff;
	border-radius: 50%;
	color: #06101f;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.footer-tool-icons svg {
	width: 21px;
	height: 21px;
}

.footer-tool-icons a:hover,
.footer-tool-icons a:focus,
.footer-social-links a:hover,
.footer-social-links a:focus {
	background: #eaf3ff;
	color: var(--color-primary-dark);
}

.footer-account-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 16px;
}

.footer-account-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 6px;
	color: #ffffff;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.footer-account-button svg {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
}

.footer-account-primary {
	background: #2f74bd;
}

.footer-account-dark {
	background: #121d33;
}

.footer-account-button:hover,
.footer-account-button:focus {
	color: #ffffff;
	transform: translateY(-1px);
}

.footer-social-links svg {
	width: 19px;
	height: 19px;
	flex: 0 0 auto;
}

.footer-bottom {
	text-align: center;
	padding: 0 0 3px;
}

.footer-bottom p {
	margin: 0;
	padding: 1px 0 2px;
	color: #ffffff;
	font-size: 1.18rem;
	font-weight: 400;
}

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

	html {
		scroll-behavior: auto;
	}
}

@media (max-width: 1080px) {
	.site-navigation-panel {
		gap: 12px;
	}

	.primary-menu a {
		padding-inline: 10px;
		font-size: 0.88rem;
	}

	.header-actions-menu a {
		padding-inline: 14px;
	}

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

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

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 26px 36px;
	}

	.footer-action-grid {
		grid-template-columns: 1fr;
	}

	.article-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.article-sidebar-sticky {
		position: static;
	}

	.article-mobile-toc {
		display: block;
	}

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

	.article-sidebar .article-toc {
		display: none;
	}

	.home-hero-layout {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.home-story-rail {
		width: min(100%, 620px);
		margin-inline: auto;
	}

	.home-featured-title {
		font-size: 2.45rem;
	}

	.home-latest-layout {
		grid-template-columns: 1fr;
		gap: 42px;
	}

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

	.home-latest-sidebar {
		width: min(100%, 420px);
	}
}

@media (max-width: 900px) {
	.container,
	.narrow-container {
		width: min(100% - 28px, var(--container));
	}

	.header-inner {
		flex-wrap: wrap;
		gap: 12px;
		min-height: 68px;
		padding: 10px 0;
	}

	.site-branding {
		flex: 1;
	}

	.custom-logo {
		max-height: 42px;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.site-navigation-panel {
		flex-basis: 100%;
		width: 100%;
		align-items: start;
		justify-content: start;
		justify-items: start;
		max-height: 0;
		overflow: hidden;
		display: grid;
		gap: 10px;
		margin-left: 0;
		transition: max-height 260ms ease;
	}

	.site-navigation-panel.is-open {
		max-height: 820px;
	}

	.main-navigation,
	.header-actions {
		display: block;
		width: 100%;
	}

	.primary-menu,
	.header-actions-menu {
		display: grid;
		width: 100%;
		justify-content: start;
		justify-items: start;
		gap: 7px;
		padding: 8px 0 0;
	}

	.primary-menu a,
	.header-actions-menu a {
		justify-content: flex-start;
		width: auto;
		min-width: 138px;
		border-radius: var(--radius);
		text-align: left;
	}

	.primary-menu .sub-menu,
	.primary-menu .sub-menu .sub-menu {
		position: static;
		min-width: 0;
		margin: 2px 0 4px 14px;
		padding: 4px 0 4px 12px;
		background: transparent;
		border: 0;
		border-left: 1px solid var(--color-border);
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.primary-menu .sub-menu a {
		white-space: normal;
	}

	.content-section {
		padding: 44px 0 62px;
	}

	.home-newsroom {
		padding: 34px 0 62px;
	}

	.footer-inner {
		padding: 28px 28px 10px;
	}

	.footer-grid {
		gap: 22px;
	}

	.footer-action-panel {
		min-height: 0;
		padding: 20px;
	}

	.footer-account-actions {
		grid-template-columns: 1fr;
	}

	.home-featured-title {
		font-size: 2.2rem;
	}

	.home-featured-body {
		padding-inline: 0;
	}

	.home-tab-list {
		margin-bottom: 30px;
	}

	.home-latest {
		margin-top: 58px;
	}

	.home-latest-heading h2 {
		font-size: 2rem;
	}

	.home-category-nav {
		gap: 26px;
	}

	.home-latest-sidebar {
		width: 100%;
	}

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

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

	.article-section {
		padding: 38px 0 62px;
	}

	.article-title {
		font-size: 2.35rem;
	}

	.article-meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.article-date {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.archive-header h1,
	.single-entry .entry-title,
	.error-card h1 {
		font-size: 1.85rem;
	}

	.posts-grid,
	.no-sidebar .posts-grid,
	.home-latest-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-inner {
		padding: 24px 18px 10px;
	}

	.footer-brand-title {
		margin-bottom: 10px;
	}

	.footer-action-grid {
		margin-top: 22px;
	}

	.footer-action-panel {
		padding: 18px;
	}

	.footer-account-button {
		padding-inline: 14px;
		min-height: 46px;
	}

	.home-featured-media {
		aspect-ratio: 16 / 10;
	}

	.home-featured-title {
		font-size: 1.82rem;
		line-height: 1.1;
	}

	.home-featured-excerpt {
		font-size: 0.95rem;
	}

	.home-tab {
		min-height: 54px;
	}

	.home-headline-card {
		padding-bottom: 28px;
	}

	.home-headline-card h3 {
		font-size: 1.12rem;
	}

	.home-latest-heading h2 {
		font-size: 1.8rem;
	}

	.home-category-nav {
		gap: 22px;
	}

	.home-latest-media {
		aspect-ratio: 16 / 10;
	}

	.home-latest-body h3 {
		font-size: 1.22rem;
	}

	.home-latest-meta {
		gap: 8px 14px;
	}

	.home-subscribe-card {
		padding: 28px 24px;
	}

	.home-subscribe-card h2 {
		font-size: 1.68rem;
	}

	.home-subscribe-card .newsletter-form button {
		width: 100%;
		min-width: 0;
	}

	.entry-card,
	.widget {
		padding: 22px;
	}

	.author-card {
		flex-direction: column;
	}

	.related-posts {
		padding: 22px;
	}

	.related-posts-grid {
		grid-template-columns: 1fr;
	}

	.article-title {
		font-size: 1.95rem;
	}

	.article-dek,
	.article-body {
		font-size: 1rem;
	}

	.article-body h2 {
		font-size: 1.55rem;
	}

	.article-body h3 {
		font-size: 1.24rem;
	}

	.article-body .alignleft,
	.article-body .alignright {
		float: none;
		max-width: 100%;
		margin-right: 0;
		margin-left: 0;
	}

	.post-navigation,
	.error-card .search-form {
		align-items: stretch;
		flex-direction: column;
	}
}
