:root {
	--stepso-ink: #152032;
	--stepso-muted: #627086;
	--stepso-soft: #f6f8fc;
	--stepso-paper: rgba(255, 255, 255, 0.78);
	--stepso-paper-strong: rgba(255, 255, 255, 0.92);
	--stepso-line: rgba(30, 42, 63, 0.12);
	--stepso-coral: #f16f62;
	--stepso-mint: #2cc7a4;
	--stepso-blue: #3867ff;
	--stepso-violet: #8b5cf6;
	--stepso-yellow: #f7c95c;
	--stepso-shadow: 0 24px 80px rgba(39, 54, 82, 0.16);
	--stepso-radius: 8px;
	--stepso-radius-lg: 22px;
	--stepso-shell: min(1180px, calc(100vw - 36px));
	--stepso-serif: Georgia, "Times New Roman", serif;
	--stepso-display: Unbounded, Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
	--stepso-calm: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--stepso-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="dark"] {
	--stepso-ink: #eef4ff;
	--stepso-muted: #a9b5c8;
	--stepso-soft: #111827;
	--stepso-paper: rgba(20, 29, 46, 0.78);
	--stepso-paper-strong: rgba(24, 34, 54, 0.94);
	--stepso-line: rgba(220, 230, 245, 0.14);
	--stepso-coral: #ff8a7c;
	--stepso-mint: #4bd6bd;
	--stepso-blue: #86a6ff;
	--stepso-violet: #b69bff;
	--stepso-yellow: #ffd36f;
	--stepso-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

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

html {
	scroll-behavior: smooth;
	color-scheme: light;
}

html[data-theme="dark"] {
	color-scheme: dark;
}

body {
	margin: 0;
	color: var(--stepso-ink);
	font-family: var(--stepso-sans);
	font-size: 17px;
	line-height: 1.72;
	background: linear-gradient(135deg, #fbfcff 0%, #fff8f4 48%, #f6fbf7 100%);
	min-height: 100vh;
	letter-spacing: 0;
}

html[data-theme="dark"] body {
	background: linear-gradient(135deg, #08111f 0%, #121826 48%, #0c1f22 100%);
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
	z-index: -2;
}

html[data-theme="dark"] body::before {
	background:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 38px 38px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 70%);
}

a {
	color: #2457d6;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.2em;
}

a:hover {
	color: #d95147;
}

html[data-theme="dark"] a {
	color: #9bb7ff;
}

html[data-theme="dark"] a:hover {
	color: #ffb0a7;
}

html[data-theme="dark"] .screen-reader-text:focus,
html[data-theme="dark"] .skip-link:focus {
	background: #111827;
	color: var(--stepso-ink);
	box-shadow: var(--stepso-shadow);
}

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

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

.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,
.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: #fff;
	color: var(--stepso-ink);
	z-index: 10000;
	border-radius: var(--stepso-radius);
	box-shadow: var(--stepso-shadow);
	clip: auto;
}

.site-shell {
	width: var(--stepso-shell);
	margin-inline: auto;
}

.glass-panel {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.56));
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: var(--stepso-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(22px) saturate(145%);
	-webkit-backdrop-filter: blur(22px) saturate(145%);
}

html[data-theme="dark"] .glass-panel {
	background: linear-gradient(145deg, rgba(22, 32, 51, 0.9), rgba(14, 21, 35, 0.68));
	border-color: rgba(220, 230, 245, 0.12);
	box-shadow: var(--stepso-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	padding: 14px 0;
}

.nav-shell {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
	padding: 12px 14px 12px 12px;
	border-radius: 18px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	color: inherit;
	text-decoration: none;
	margin-right: auto;
}

.brand-mark {
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	object-fit: contain;
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(39, 54, 82, 0.14);
}

.brand-copy {
	display: grid;
	line-height: 1.18;
	min-width: 0;
}

.site-title {
	font-weight: 820;
	font-size: clamp(0.94rem, 2vw, 1.08rem);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 46vw;
}

.primary-navigation .menu,
.footer-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.primary-navigation a,
.footer-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 7px 13px;
	color: var(--stepso-ink);
	font-size: 0.92rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.38);
	box-shadow: 0 4px 14px rgba(39, 54, 82, 0);
	transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.theme-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 7px 12px;
	color: var(--stepso-ink);
	font-size: 0.88rem;
	font-weight: 500;
	border: 1px solid #dddde1;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.38);
	box-shadow: 0 4px 14px rgba(39, 54, 82, 0);
	cursor: pointer;
	transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.theme-toggle:hover {
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 10px 24px rgba(39, 54, 82, 0.12);
	transform: translateY(-1px);
}

.theme-toggle-icon {
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	font-size: 1rem;
	line-height: 1;
}

.theme-toggle-icon::before {
	content: "☀";
}

html[data-theme="dark"] .theme-toggle-icon::before {
	content: "☾";
}

html[data-theme="dark"] .primary-navigation a,
html[data-theme="dark"] .theme-toggle {
	color: var(--stepso-ink);
	border-color: rgba(220, 230, 245, 0.18);
	background: rgba(255, 255, 255, 0.06);
}

.primary-navigation a {
	border: 1px solid #dddde1;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
	color: #14326e;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 10px 24px rgba(39, 54, 82, 0.12), inset 0 0 0 1px rgba(56, 103, 255, 0.1);
	transform: translateY(-1px);
}

html[data-theme="dark"] .primary-navigation a:hover,
html[data-theme="dark"] .primary-navigation .current-menu-item > a,
html[data-theme="dark"] .primary-navigation .current_page_item > a,
html[data-theme="dark"] .theme-toggle:hover {
	color: #eef4ff;
	background: rgba(255, 255, 255, 0.11);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(134, 166, 255, 0.18);
}

.site-hero {
	position: relative;
	overflow: clip;
	min-height: min(720px, calc(100vh - 90px));
	padding: clamp(44px, 7vw, 90px) 0 clamp(36px, 5vw, 72px);
}

.hero-backdrop {
	position: absolute;
	inset: -86px 0 auto;
	height: calc(100% + 86px);
	background:
		linear-gradient(90deg, rgba(248, 251, 255, 0.96), rgba(248, 251, 255, 0.72) 42%, rgba(248, 251, 255, 0.2)),
		var(--stepso-hero-image) center right / cover no-repeat;
	z-index: -1;
}

html[data-theme="dark"] .hero-backdrop {
	background:
		linear-gradient(90deg, rgba(8, 17, 31, 0.98), rgba(8, 17, 31, 0.8) 48%, rgba(8, 17, 31, 0.38)),
		var(--stepso-hero-image) center right / cover no-repeat;
}

.hero-backdrop::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 68%, rgba(248, 251, 255, 0.94));
}

html[data-theme="dark"] .hero-backdrop::after {
	background: linear-gradient(to bottom, transparent 62%, rgba(8, 17, 31, 0.96));
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: end;
}

.hero-copy {
	width: min(760px, 100%);
	padding: clamp(26px, 5vw, 54px);
	border-radius: 28px;
}

.hero-kicker,
.section-kicker,
.entry-kicker {
	margin: 0 0 10px;
	color: #3867ff;
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero-copy h1 {
	margin: 0;
	font-family: var(--stepso-display);
	font-size: clamp(24px, 36px, 48px);
	line-height: 1.05;
	font-weight: 400;
	color: #111d30;
}

.single-header h1,
.archive-header h1 {
	margin: 0;
	font-family: var(--stepso-calm);
	font-size: clamp(1.45rem, 3vw, 2.35rem);
	line-height: 1.16;
	font-weight: 500;
	color: #111d30;
}

.hero-copy p:not(.hero-kicker) {
	max-width: 640px;
	margin: 22px 0 0;
	color: #354258;
	font-size: clamp(1.05rem, 1.9vw, 1.28rem);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.button,
.wp-block-button__link,
button:not(.theme-toggle),
input[type="submit"],
.search-submit,
.comment-reply-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 16px;
	color: #fff;
	font-weight: 500;
	text-decoration: none;
	border: 0;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--stepso-blue), var(--stepso-coral));
	box-shadow: 0 8px 18px rgba(56, 103, 255, 0.12);
	cursor: pointer;
	transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover,
.wp-block-button__link:hover,
button:not(.theme-toggle):hover,
input[type="submit"]:hover,
.search-submit:hover,
.comment-reply-link:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(56, 103, 255, 0.22);
}

.button-ghost {
	color: var(--stepso-ink);
	background: rgba(255, 255, 255, 0.76);
	box-shadow: inset 0 0 0 1px rgba(21, 32, 50, 0.1), 0 8px 18px rgba(39, 54, 82, 0.06);
}

.button-ghost:hover {
	color: var(--stepso-ink);
}

.site-main {
	padding: clamp(30px, 5vw, 70px) 0;
}

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

.posts-section {
	min-width: 0;
}

.archive-header,
.empty-state,
.single-article,
.post-navigation,
.comments-title,
.comment-form {
	border-radius: var(--stepso-radius-lg);
	padding: clamp(22px, 4vw, 38px);
}

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

.archive-description {
	max-width: 720px;
	color: var(--stepso-muted);
}

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

.post-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--stepso-radius-lg);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 90px rgba(39, 54, 82, 0.2);
}

.post-card-link {
	display: grid;
	min-height: 100%;
	color: inherit;
	text-decoration: none;
}

.post-card-media {
	margin: 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(56, 103, 255, 0.18), rgba(241, 111, 98, 0.2));
}

.post-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.placeholder-media {
	display: grid;
	place-items: center;
}

.placeholder-media span {
	display: grid;
	place-items: center;
	width: 78px;
	height: 78px;
	color: #fff;
	font-family: var(--stepso-serif);
	font-size: 2.8rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--stepso-mint), var(--stepso-blue));
	box-shadow: 0 18px 38px rgba(44, 199, 164, 0.22);
}

.post-card-body {
	padding: 22px;
}

.post-card h2 {
	margin: 0;
	font-size: clamp(1.25rem, 2vw, 1.62rem);
	line-height: 1.18;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin-top: 12px;
	color: var(--stepso-muted);
	font-size: 0.88rem;
}

.entry-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.entry-meta span::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--stepso-mint);
}

.post-excerpt {
	margin-top: 14px;
	color: #46546b;
}

.post-excerpt p {
	margin: 0;
}

.site-sidebar {
	display: grid;
	gap: 16px;
	position: sticky;
	top: 98px;
}

.widget {
	border-radius: var(--stepso-radius-lg);
	padding: 22px;
}

.widget-title,
.widget h2 {
	margin: 0 0 12px;
	font-size: 1.06rem;
	line-height: 1.25;
}

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

.widget li a {
	display: block;
	padding: 8px 10px;
	color: var(--stepso-ink);
	text-decoration: none;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.42);
}

.widget li a:hover {
	color: #14326e;
	background: rgba(255, 255, 255, 0.72);
}

.widget .wp-block-latest-posts li {
	overflow: hidden;
	border: 1px solid rgba(221, 221, 225, 0.95);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.5);
	transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.widget .wp-block-latest-posts li:hover {
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 10px 24px rgba(39, 54, 82, 0.1);
	transform: translateY(-1px);
}

.widget .wp-block-latest-posts__post-title {
	display: grid;
	gap: 7px;
	padding: 10px 12px;
	background: transparent;
	font-size: 0.86rem;
	line-height: 1.42;
}

.widget .wp-block-latest-posts__post-title:hover {
	background: transparent;
}

.latest-post-date {
	justify-self: start;
	padding: 3px 8px;
	color: #14326e;
	font-size: 0.72rem;
	font-weight: 500;
	line-height: 1.25;
	border: 1px solid rgba(56, 103, 255, 0.16);
	border-radius: 999px;
	background: rgba(56, 103, 255, 0.08);
}

.latest-post-title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	line-clamp: 5;
}

.search-form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.search-form label {
	flex: 1 1 auto;
	min-width: 0;
}

.search-field,
input[type="text"],
input[type="email"],
input[type="url"],
textarea {
	width: 100%;
	min-height: 44px;
	padding: 10px 14px;
	color: var(--stepso-ink);
	border: 1px solid rgba(21, 32, 50, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
	outline: 0;
}

textarea {
	min-height: 150px;
	border-radius: 18px;
	resize: vertical;
}

.search-field:focus,
input:focus,
textarea:focus {
	border-color: rgba(56, 103, 255, 0.48);
	box-shadow: 0 0 0 4px rgba(56, 103, 255, 0.1);
}

.singular-layout {
	width: var(--stepso-shell);
}

.single-article {
	overflow: hidden;
}

.single-header {
	margin-bottom: 24px;
}

.single-header h1 {
	font-size: clamp(2.1rem, 5vw, 4.35rem);
}

.featured-media {
	margin: 0 -18px 30px;
	overflow: hidden;
	border-radius: 24px;
}

.featured-media img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

.entry-content {
	font-size: clamp(1.02rem, 1.4vw, 1.12rem);
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 1.7em;
	margin-bottom: 0.55em;
	line-height: 1.16;
}

.entry-content h2 {
	font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.entry-content h3 {
	font-size: clamp(1.28rem, 2.4vw, 1.65rem);
}

.entry-content p,
.entry-content ul,
.entry-content ol {
	color: #334056;
}

.entry-content a {
	font-weight: 680;
}

.entry-content blockquote {
	margin: 28px 0;
	padding: 24px;
	color: #22304a;
	border-left: 5px solid var(--stepso-coral);
	border-radius: 0 18px 18px 0;
	background: rgba(255, 255, 255, 0.62);
}

.entry-content pre,
.entry-content code {
	font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
}

.entry-content pre {
	overflow: auto;
	padding: 18px;
	color: #e8f1ff;
	border-radius: 18px;
	background: #142033;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	overflow: hidden;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.64);
}

.entry-content th,
.entry-content td {
	padding: 12px;
	border-bottom: 1px solid rgba(21, 32, 50, 0.1);
	text-align: left;
}

.wp-block-image img,
.wp-block-gallery img,
.wp-block-cover,
.wp-block-media-text {
	border-radius: 22px;
}

.wp-block-separator {
	height: 1px;
	border: 0;
	background: linear-gradient(90deg, transparent, rgba(56, 103, 255, 0.34), rgba(241, 111, 98, 0.42), transparent);
}

.wp-block-button__link {
	border-radius: 20px !important;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 22px;
}

.tag-list a {
	padding: 7px 10px;
	color: var(--stepso-ink);
	font-size: 0.86rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.68);
	box-shadow: 0 4px 12px rgba(39, 54, 82, 0);
	transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.tag-list a:hover {
	box-shadow: 0 10px 24px rgba(39, 54, 82, 0.12);
	transform: translateY(-1px);
}

.post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
	align-items: stretch;
}

.post-navigation a {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 100%;
	padding: 12px 14px;
	color: var(--stepso-ink);
	font-weight: 500;
	text-decoration: none;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.48);
	box-shadow: 0 4px 14px rgba(39, 54, 82, 0);
	transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.post-navigation a:hover {
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 12px 28px rgba(39, 54, 82, 0.12);
	transform: translateY(-1px);
}

.post-navigation-next a {
	justify-content: flex-end;
	text-align: right;
}

.post-navigation-previous a {
	justify-content: flex-start;
}

.nav-arrow {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	color: #14326e;
	border-radius: 50%;
	background: rgba(56, 103, 255, 0.1);
}

.nav-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	color: var(--stepso-ink);
	font-weight: 500;
	text-decoration: none;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.68);
	transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.page-numbers:hover {
	box-shadow: 0 10px 24px rgba(39, 54, 82, 0.12);
	transform: translateY(-1px);
}

.page-numbers.current {
	color: #fff;
	background: linear-gradient(135deg, var(--stepso-blue), var(--stepso-coral));
}

.comments-area {
	margin-top: 20px;
}

.comment-list {
	display: grid;
	gap: 14px;
	margin: 18px 0;
	padding: 0;
	list-style: none;
}

.comment-card {
	padding: 18px;
	border-radius: 20px;
}

.comment-meta {
	display: flex;
	gap: 12px;
	align-items: center;
}

.comment-meta img {
	border-radius: 50%;
}

.comment-date {
	display: block;
	color: var(--stepso-muted);
	font-size: 0.86rem;
}

.comment-form {
	display: grid;
	gap: 12px;
}

.comment-form p {
	margin: 0;
}

.site-footer {
	padding: 34px 0 44px;
	color: #4d5b70;
}

.footer-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding-top: 24px;
	border-top: 1px solid rgba(21, 32, 50, 0.1);
}

.footer-title {
	margin: 0 0 4px;
	color: var(--stepso-ink);
	font-weight: 840;
}

.footer-grid p {
	margin: 0;
}

.footer-menu a {
	color: #4d5b70;
}

.not-found {
	text-align: center;
}

html[data-theme="dark"] .brand-mark {
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .hero-kicker,
html[data-theme="dark"] .section-kicker,
html[data-theme="dark"] .entry-kicker {
	color: #9bb7ff;
}

html[data-theme="dark"] .hero-copy h1,
html[data-theme="dark"] .single-header h1,
html[data-theme="dark"] .archive-header h1,
html[data-theme="dark"] .footer-title,
html[data-theme="dark"] .post-card h2,
html[data-theme="dark"] .widget-title,
html[data-theme="dark"] .widget h2 {
	color: #f4f7ff;
}

html[data-theme="dark"] .hero-copy p:not(.hero-kicker),
html[data-theme="dark"] .archive-description,
html[data-theme="dark"] .post-excerpt,
html[data-theme="dark"] .post-excerpt p,
html[data-theme="dark"] .entry-content,
html[data-theme="dark"] .entry-content p,
html[data-theme="dark"] .entry-content ul,
html[data-theme="dark"] .entry-content ol,
html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .footer-grid p,
html[data-theme="dark"] .entry-meta,
html[data-theme="dark"] .comment-date {
	color: var(--stepso-muted);
}

html[data-theme="dark"] .button,
html[data-theme="dark"] .wp-block-button__link,
html[data-theme="dark"] button:not(.theme-toggle),
html[data-theme="dark"] input[type="submit"],
html[data-theme="dark"] .search-submit,
html[data-theme="dark"] .comment-reply-link {
	color: #08111f;
	background: linear-gradient(135deg, #9bb7ff, #ff9f94);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] .button:hover,
html[data-theme="dark"] .wp-block-button__link:hover,
html[data-theme="dark"] button:not(.theme-toggle):hover,
html[data-theme="dark"] input[type="submit"]:hover,
html[data-theme="dark"] .search-submit:hover,
html[data-theme="dark"] .comment-reply-link:hover {
	color: #08111f;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .button-ghost {
	color: #eef4ff;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 0 0 1px rgba(220, 230, 245, 0.14), 0 8px 18px rgba(0, 0, 0, 0.18);
}

html[data-theme="dark"] .button-ghost:hover {
	color: #fff;
}

html[data-theme="dark"] .post-card-media {
	background: linear-gradient(135deg, rgba(134, 166, 255, 0.18), rgba(255, 138, 124, 0.16));
}

html[data-theme="dark"] .placeholder-media span {
	color: #08111f;
	background: linear-gradient(135deg, var(--stepso-mint), var(--stepso-blue));
}

html[data-theme="dark"] .entry-meta span::before {
	background: var(--stepso-mint);
}

html[data-theme="dark"] .widget li a,
html[data-theme="dark"] .widget .wp-block-latest-posts li,
html[data-theme="dark"] .tag-list a,
html[data-theme="dark"] .page-numbers,
html[data-theme="dark"] .post-navigation a {
	color: var(--stepso-ink);
	border-color: rgba(220, 230, 245, 0.14);
	background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .widget li a:hover,
html[data-theme="dark"] .widget .wp-block-latest-posts li:hover,
html[data-theme="dark"] .tag-list a:hover,
html[data-theme="dark"] .page-numbers:hover,
html[data-theme="dark"] .post-navigation a:hover {
	color: #f4f7ff;
	background: rgba(255, 255, 255, 0.11);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .latest-post-date,
html[data-theme="dark"] .nav-arrow {
	color: #dce7ff;
	border-color: rgba(134, 166, 255, 0.22);
	background: rgba(134, 166, 255, 0.12);
}

html[data-theme="dark"] .search-field,
html[data-theme="dark"] input[type="text"],
html[data-theme="dark"] input[type="email"],
html[data-theme="dark"] input[type="url"],
html[data-theme="dark"] input[type="search"],
html[data-theme="dark"] textarea {
	color: var(--stepso-ink);
	border-color: rgba(220, 230, 245, 0.16);
	background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .search-field::placeholder,
html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
	color: rgba(220, 230, 245, 0.58);
}

html[data-theme="dark"] .search-field:focus,
html[data-theme="dark"] input:focus,
html[data-theme="dark"] textarea:focus {
	border-color: rgba(134, 166, 255, 0.56);
	box-shadow: 0 0 0 4px rgba(134, 166, 255, 0.14);
}

html[data-theme="dark"] .entry-content blockquote {
	color: #dce7ff;
	background: rgba(255, 255, 255, 0.07);
	border-left-color: var(--stepso-coral);
}

html[data-theme="dark"] .entry-content pre {
	color: #eef4ff;
	background: #050a12;
}

html[data-theme="dark"] .entry-content table {
	background: rgba(255, 255, 255, 0.07);
}

html[data-theme="dark"] .entry-content th,
html[data-theme="dark"] .entry-content td {
	border-bottom-color: rgba(220, 230, 245, 0.12);
}

html[data-theme="dark"] .page-numbers.current {
	color: #08111f;
	background: linear-gradient(135deg, #9bb7ff, #ff9f94);
}

html[data-theme="dark"] .comment-meta img {
	box-shadow: 0 0 0 2px rgba(220, 230, 245, 0.12);
}

html[data-theme="dark"] .footer-grid {
	border-top-color: rgba(220, 230, 245, 0.12);
}

html[data-theme="dark"] .footer-menu a {
	color: var(--stepso-muted);
}

html[data-theme="dark"] .wp-block-separator {
	background: linear-gradient(90deg, transparent, rgba(134, 166, 255, 0.38), rgba(255, 138, 124, 0.38), transparent);
}

@media (max-width: 980px) {
	.nav-shell,
	.content-layout,
	.hero-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.nav-shell,
	.footer-grid {
		display: grid;
	}

	.primary-navigation .menu {
		justify-content: flex-start;
	}

	.content-layout {
		display: grid;
	}

	.site-sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

@media (max-width: 720px) {
	body {
		font-size: 16px;
	}

	.site-shell,
	.singular-layout {
		width: min(100% - 24px, 1180px);
	}

	.site-header {
		position: relative;
	}

	.nav-shell {
		border-radius: 16px;
	}

	.site-title {
		max-width: calc(100vw - 110px);
		white-space: normal;
	}

	.primary-navigation a {
		min-height: 34px;
		padding: 7px 10px;
		font-size: 0.86rem;
	}

	.site-hero {
		min-height: auto;
		padding-top: 22px;
	}

	.hero-backdrop {
		background:
			linear-gradient(to bottom, rgba(248, 251, 255, 0.8), rgba(248, 251, 255, 0.98)),
			var(--stepso-hero-image) center top / cover no-repeat;
	}

	html[data-theme="dark"] .hero-backdrop {
		background:
			linear-gradient(to bottom, rgba(8, 17, 31, 0.86), rgba(8, 17, 31, 0.98)),
			var(--stepso-hero-image) center top / cover no-repeat;
	}

	.hero-copy,
	.archive-header,
	.empty-state,
	.single-article,
	.post-navigation,
	.comments-title,
	.comment-form {
		padding: 20px;
		border-radius: 20px;
	}

	.post-grid,
	.site-sidebar,
	.post-navigation {
		grid-template-columns: 1fr;
	}

	.search-form {
		display: grid;
	}

	.search-submit {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.glass-panel {
		background: rgba(255, 255, 255, 0.94);
	}

	html[data-theme="dark"] .glass-panel {
		background: rgba(18, 27, 44, 0.96);
	}
}
