/* =========================================================
   Satoshiat — Core styles (RTL, brand #985321)
   Design language inspired by Oranos: Cairo, soft surfaces,
   sticky blur header, mark accents, lift cards, soft dark mode.
   ========================================================= */

:root {
	--st-primary: #985321;
	--st-primary-dark: #7a4219;
	--st-primary-soft: #f5ebe0;
	--st-bg: #ffffff;
	--st-surface: #ffffff;
	--st-surface-2: #f7f7f8;
	--st-surface-3: #fafafa;
	--st-text: #1f2937;
	--st-muted: #6b7280;
	--st-border: #e8eaed;
	--st-link: #985321;
	--st-danger: #dc2626;
	--st-success: #16a34a;
	--st-radius: 16px;
	--st-radius-sm: 12px;
	--st-radius-pill: 999px;
	--st-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
	--st-header-h: 72px;
	--st-font: "Cairo", "Segoe UI", Tahoma, sans-serif;
	--st-max: 1120px;
	--st-header-bg: rgba(255, 255, 255, 0.96);
	--st-primary-rgb: 152, 83, 33;
	color-scheme: light;
}

/* Dark / night mode — soft charcoal */
html.st-dark {
	color-scheme: dark;
	--st-primary: #c4894a;
	--st-primary-dark: #d9a56a;
	--st-primary-soft: rgba(196, 137, 74, 0.16);
	--st-bg: #1b1e24;
	--st-surface: #242830;
	--st-surface-2: #2a2f38;
	--st-surface-3: #2e333d;
	--st-text: #e6e8ec;
	--st-muted: #9aa3b2;
	--st-border: #343a45;
	--st-link: #d9a56a;
	--st-danger: #f07178;
	--st-success: #5ecf8c;
	--st-shadow: 0 6px 24px rgba(0, 0, 0, 0.38);
	--st-header-bg: rgba(31, 35, 43, 0.94);
	--st-primary-rgb: 196, 137, 74;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.st-theme {
	margin: 0;
	font-family: var(--st-font);
	background: var(--st-bg);
	color: var(--st-text);
	line-height: 1.7;
	direction: rtl;
	text-align: right;
	-webkit-font-smoothing: antialiased;
	position: relative;
}

.st-app {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
	isolation: isolate;
}

/* Floating crypto ambience */
.st-float {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.st-float__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.45;
	animation: st-orb-drift 28s ease-in-out infinite alternate;
}

.st-float__orb--1 {
	width: 280px;
	height: 280px;
	top: 8%;
	right: 5%;
	background: rgba(152, 83, 33, 0.16);
}

.st-float__orb--2 {
	width: 340px;
	height: 340px;
	bottom: 12%;
	left: 4%;
	background: rgba(98, 126, 234, 0.12);
	animation-duration: 34s;
	animation-delay: -8s;
}

.st-float__orb--3 {
	width: 220px;
	height: 220px;
	top: 48%;
	left: 40%;
	background: rgba(243, 186, 47, 0.1);
	animation-duration: 30s;
	animation-delay: -14s;
}

@keyframes st-orb-drift {
	from { transform: translate(0, 0) scale(1); }
	to { transform: translate(-30px, 40px) scale(1.08); }
}

.st-float__icon {
	position: absolute;
	display: block;
	width: 44px;
	height: 44px;
	opacity: 0.28;
	filter: drop-shadow(0 6px 14px rgba(15, 23, 42, 0.12));
	animation: st-float-y 18s ease-in-out infinite;
	will-change: transform;
	border-radius: 50%;
}

.st-float__icon img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	border-radius: 50%;
	pointer-events: none;
	user-select: none;
}

html.st-dark .st-float__icon {
	opacity: 0.34;
	filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

html.st-dark .st-float__orb--1 { background: rgba(196, 137, 74, 0.14); }
html.st-dark .st-float__orb--2 { background: rgba(98, 126, 234, 0.1); }
html.st-dark .st-float__orb--3 { background: rgba(243, 186, 47, 0.08); }

.st-float__icon--a { top: 12%; right: 8%; width: 52px; height: 52px; animation-duration: 22s; opacity: 0.32; }
.st-float__icon--b { top: 22%; left: 7%; width: 48px; height: 48px; animation-duration: 26s; animation-delay: -4s; }
.st-float__icon--c { top: 58%; right: 6%; width: 40px; height: 40px; animation-duration: 20s; animation-delay: -9s; }
.st-float__icon--d { top: 68%; left: 12%; width: 44px; height: 44px; animation-duration: 24s; animation-delay: -2s; }
.st-float__icon--e { top: 38%; right: 18%; width: 38px; height: 38px; animation-duration: 28s; animation-delay: -12s; }
.st-float__icon--f { top: 78%; right: 28%; width: 42px; height: 42px; animation-duration: 21s; animation-delay: -6s; }
.st-float__icon--g { top: 16%; left: 28%; width: 36px; height: 36px; animation-duration: 25s; animation-delay: -15s; }
.st-float__icon--h { top: 46%; left: 22%; width: 40px; height: 40px; animation-duration: 23s; animation-delay: -11s; }

@keyframes st-float-y {
	0%, 100% { transform: translateY(0) translateX(0); }
	25% { transform: translateY(-16px) translateX(6px); }
	50% { transform: translateY(-6px) translateX(-8px); }
	75% { transform: translateY(-20px) translateX(3px); }
}

@media (prefers-reduced-motion: reduce) {
	.st-float__icon,
	.st-float__orb {
		animation: none !important;
	}
}

@media (max-width: 767px) {
	.st-float__icon {
		opacity: 0.2;
	}

	.st-float__icon--a { width: 36px; height: 36px; }
	.st-float__icon--b { width: 34px; height: 34px; }
	.st-float__icon--c { width: 30px; height: 30px; }
	.st-float__icon--d { width: 32px; height: 32px; }

	.st-float__icon--e,
	.st-float__icon--g,
	.st-float__icon--h {
		display: none;
	}

	.st-float__orb {
		opacity: 0.3;
	}
}

.st-header {
	position: sticky;
	top: 0;
	z-index: 100;
}

.st-main,
.st-footer {
	position: relative;
	z-index: 1;
}

.st-drawer {
	z-index: 200;
}

.st-search-panel {
	z-index: 210;
}

.st-main {
	background: transparent;
}

.st-section .st-container,
.st-page-head,
.st-archive-grid,
.st-single,
.st-page {
	position: relative;
	z-index: 1;
}

/* Soft translucent panels behind content blocks */
.st-section > .st-container {
	padding: 1.15rem 1.15rem 1.35rem;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(232, 234, 237, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

html.st-dark .st-section > .st-container {
	background: rgba(36, 40, 48, 0.72);
	border-color: rgba(52, 58, 69, 0.9);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

a {
	color: var(--st-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--st-primary-dark);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.st-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.st-container {
	width: min(100% - 2rem, var(--st-max));
	margin-inline: auto;
}

.st-muted {
	color: var(--st-muted);
	font-size: 0.9rem;
}

.st-empty {
	text-align: center;
	color: var(--st-muted);
	padding: 2.5rem 1rem;
	background: var(--st-surface-2);
	border-radius: var(--st-radius);
}

/* Icons */
.st-icon {
	display: inline-flex;
	width: 1.25em;
	height: 1.25em;
	vertical-align: middle;
}

.st-icon svg {
	width: 100%;
	height: 100%;
}

/* Buttons */
.st-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border: 2px solid transparent;
	background: transparent;
	color: var(--st-text);
	font: inherit;
	font-weight: 700;
	padding: 0.7rem 1.25rem;
	border-radius: var(--st-radius-sm);
	cursor: pointer;
	transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.st-btn:active {
	transform: scale(0.98);
}

.st-btn--primary {
	background: var(--st-primary);
	color: #fff;
	box-shadow: 0 8px 20px rgba(var(--st-primary-rgb), 0.28);
}

.st-btn--primary:hover {
	background: var(--st-primary-dark);
	color: #fff;
}

.st-btn--outline {
	border-color: var(--st-border);
	background: var(--st-surface);
	color: var(--st-text);
}

.st-btn--outline:hover {
	border-color: var(--st-primary);
	color: var(--st-primary);
}

.st-btn--ghost {
	color: var(--st-muted);
}

.st-btn--ghost:hover {
	color: var(--st-primary);
	background: var(--st-primary-soft);
}

.st-btn--pill {
	border-radius: var(--st-radius-pill);
}

.st-btn--sm {
	padding: 0.45rem 0.95rem;
	font-size: 0.9rem;
}

.st-btn--lg {
	padding: 0.9rem 1.5rem;
	font-size: 1.05rem;
}

/* ---------- Header ---------- */
.st-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--st-header-bg);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--st-border);
}

.st-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--st-header-h);
	width: min(100% - 2rem, var(--st-max));
	margin-inline: auto;
	padding-block: 0.55rem;
}

.st-header__brand-wrap {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.st-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	text-decoration: none;
	flex-shrink: 0;
}

.st-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.st-logo-img {
	max-height: 44px;
	width: auto;
	display: block;
}

.st-logo-link--footer .st-logo-img {
	max-height: 52px;
}

.st-header .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.st-header .custom-logo {
	max-height: 42px;
	width: auto;
}

.st-header__brand-icon {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--st-primary-soft);
	color: var(--st-primary);
}

.st-header__brand-icon .st-icon {
	width: 1.35rem;
	height: 1.35rem;
}

.st-header__brand-text {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--st-primary);
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.st-header__nav {
	display: none;
	flex: 1;
	justify-content: center;
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: none;
}

.st-header__nav::-webkit-scrollbar {
	display: none;
}

.st-header__menu {
	display: flex;
	align-items: center;
	gap: 0.15rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
}

.st-header__menu > li {
	flex-shrink: 0;
}

.st-header__menu > li > a {
	display: block;
	padding: 0.55rem 0.9rem;
	border-radius: var(--st-radius-pill);
	color: var(--st-text);
	font-weight: 600;
	font-size: 0.95rem;
	transition: background 0.2s ease, color 0.2s ease;
}

.st-header__menu > li > a:hover,
.st-header__menu > li.current-menu-item > a,
.st-header__menu > li.current_page_item > a {
	background: var(--st-primary-soft);
	color: var(--st-primary);
}

.st-header__menu .sub-menu {
	display: none;
}

.st-header__actions {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	flex-shrink: 0;
}

.st-header__icon-btn,
.st-header__menu-btn {
	width: 42px;
	height: 42px;
	border: 0;
	background: transparent;
	color: var(--st-text);
	border-radius: 50%;
	display: grid;
	place-items: center;
	cursor: pointer;
	flex-shrink: 0;
	transition: background 0.2s ease, color 0.2s ease;
}

.st-header__icon-btn:hover,
.st-header__menu-btn:hover {
	background: var(--st-primary-soft);
	color: var(--st-primary);
}

.st-header__icon-btn .st-icon,
.st-header__menu-btn .st-icon {
	width: 1.35rem;
	height: 1.35rem;
}

@media (min-width: 992px) {
	.st-header__nav {
		display: flex;
	}

	.st-header__menu-btn {
		display: none !important;
	}
}

/* Mobile drawer */
.st-drawer {
	position: fixed;
	inset: 0;
	z-index: 200;
	pointer-events: none;
	visibility: hidden;
}

.st-drawer.is-open {
	pointer-events: auto;
	visibility: visible;
}

.st-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.st-drawer.is-open .st-drawer__overlay {
	opacity: 1;
}

.st-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(320px, 88vw);
	height: 100%;
	background: var(--st-surface);
	box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
	padding: 1.25rem;
	transform: translateX(105%);
	transition: transform 0.28s ease;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.st-drawer.is-open .st-drawer__panel {
	transform: translateX(0);
}

.st-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.st-drawer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.st-drawer__menu a {
	display: block;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	color: var(--st-text);
	font-weight: 700;
}

.st-drawer__menu a:hover,
.st-drawer__menu .current-menu-item > a {
	background: var(--st-primary-soft);
	color: var(--st-primary);
}

.st-drawer__menu .sub-menu {
	list-style: none;
	margin: 0.25rem 0 0.5rem;
	padding: 0 0.75rem 0 0;
}

.st-drawer__search {
	margin-top: auto;
}

/* Search overlay */
.st-search-panel {
	position: fixed;
	inset: 0;
	z-index: 210;
	background: rgba(15, 23, 42, 0.5);
	display: grid;
	place-items: start center;
	padding: 4rem 1rem 1rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.st-search-panel.is-open {
	opacity: 1;
	visibility: visible;
}

.st-search-panel__box {
	width: min(100%, 560px);
	background: var(--st-surface);
	border-radius: 20px;
	padding: 1.25rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
	animation: st-fade-up 0.35s ease both;
}

.st-search-panel__form {
	display: flex;
	gap: 0.5rem;
}

.st-search-panel__form input[type="search"] {
	flex: 1;
	border: 1px solid var(--st-border);
	background: var(--st-surface-2);
	color: var(--st-text);
	border-radius: var(--st-radius-sm);
	padding: 0.85rem 1rem;
	font: inherit;
	outline: none;
}

.st-search-panel__form input[type="search"]:focus {
	border-color: var(--st-primary);
	box-shadow: 0 0 0 3px rgba(var(--st-primary-rgb), 0.15);
}

.st-search-panel__close {
	margin-top: 0.75rem;
	width: 100%;
}

/* Main */
.st-main {
	min-height: calc(100vh - 280px);
	padding-bottom: 2rem;
	flex: 1;
}

/* Theme toggle */
.st-theme-toggle {
	width: 42px;
	height: 42px;
	border: 0;
	background: transparent;
	color: var(--st-text);
	border-radius: 50%;
	display: grid;
	place-items: center;
	cursor: pointer;
	flex-shrink: 0;
	transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
}

.st-theme-toggle__sun,
.st-theme-toggle__moon {
	place-items: center;
	line-height: 0;
}

html.st-dark .st-theme-toggle .st-theme-toggle__sun { display: grid; }
html.st-dark .st-theme-toggle .st-theme-toggle__moon { display: none; }
html:not(.st-dark) .st-theme-toggle .st-theme-toggle__sun { display: none; }
html:not(.st-dark) .st-theme-toggle .st-theme-toggle__moon { display: grid; }

.st-theme-toggle:hover {
	background: var(--st-primary-soft);
	color: var(--st-primary);
}

.st-theme-toggle:active {
	transform: scale(0.94);
}

.st-theme-toggle .st-icon {
	width: 1.35rem;
	height: 1.35rem;
}

html.st-theme-animating body.st-theme,
html.st-theme-animating .st-header,
html.st-theme-animating .st-post-card,
html.st-theme-animating .st-footer {
	transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

@keyframes st-fade-up {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ---------- Hero (legacy kept minimal) ---------- */
.st-hero {
	display: none;
}

/* ---------- Slider ---------- */
.st-slider {
	position: relative;
	margin: 0 0 1.35rem;
	border-radius: 0 0 24px 24px;
	overflow: hidden;
	background: #1a1008;
	box-shadow: 0 16px 40px rgba(152, 83, 33, 0.14);
}

@media (min-width: 992px) {
	.st-slider {
		margin: 1.25rem auto 2rem;
		width: min(100% - 2rem, var(--st-max));
		border-radius: 24px;
	}
}

.st-slider__viewport {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	max-height: 480px;
	min-height: 260px;
	overflow: hidden;
}

@media (min-width: 640px) {
	.st-slider__viewport {
		aspect-ratio: 16 / 9;
		min-height: 320px;
	}
}

@media (min-width: 992px) {
	.st-slider__viewport {
		aspect-ratio: 2.35 / 1;
		min-height: 380px;
		max-height: 520px;
	}
}

.st-slider__track {
	height: 100%;
}

.st-slider__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.7s ease, visibility 0.7s ease;
}

.st-slider__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.st-slider__slide[hidden] {
	display: block !important;
}

.st-slider__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.st-slider__img,
.st-slider__fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.06);
	transition: transform 7s ease-out;
}

.st-slider__slide.is-active .st-slider__img,
.st-slider__slide.is-active .st-slider__fallback {
	transform: scale(1);
}

.st-slider__fallback {
	background:
		radial-gradient(ellipse 70% 60% at 30% 20%, rgba(255, 255, 255, 0.16), transparent 55%),
		linear-gradient(135deg, #c4894a 0%, #985321 42%, #5c3214 100%);
}

.st-slider__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(12, 8, 4, 0.15) 0%, rgba(12, 8, 4, 0.2) 35%, rgba(12, 8, 4, 0.78) 100%),
		linear-gradient(90deg, rgba(12, 8, 4, 0.55) 0%, transparent 55%);
	z-index: 1;
}

.st-slider__content {
	position: absolute;
	z-index: 2;
	inset-inline: 0;
	bottom: 0;
	padding: 1rem 1rem 2.75rem;
	color: #fff;
	display: flex;
	align-items: flex-end;
}

@media (min-width: 768px) {
	.st-slider__content {
		padding: 1.75rem 1.75rem 3rem;
	}
}

.st-slider__glass {
	width: min(100%, 560px);
	padding: 1.1rem 1.15rem 1.2rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
	animation: st-fade-up 0.55s ease both;
}

@media (min-width: 768px) {
	.st-slider__glass {
		padding: 1.35rem 1.45rem 1.4rem;
		border-radius: 20px;
	}
}

.st-slider__slide.is-active .st-slider__glass {
	animation: st-fade-up 0.55s ease both;
}

.st-slider__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.7rem;
}

.st-slider__badge {
	display: inline-flex;
	align-items: center;
	padding: 0.3rem 0.8rem;
	border-radius: var(--st-radius-pill);
	background: #985321;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	box-shadow: 0 4px 14px rgba(152, 83, 33, 0.4);
}

.st-slider__count {
	font-size: 0.8rem;
	font-weight: 700;
	opacity: 0.85;
	letter-spacing: 0.04em;
	font-variant-numeric: tabular-nums;
}

.st-slider__title {
	margin: 0 0 0.45rem;
	font-size: clamp(1.2rem, 2.8vw, 1.85rem);
	font-weight: 800;
	line-height: 1.35;
}

.st-slider__title a {
	color: #fff;
	text-decoration: none;
}

.st-slider__title a:hover {
	color: #f5ebe0;
}

.st-slider__text {
	margin: 0 0 0.95rem;
	font-size: 0.92rem;
	opacity: 0.92;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 639px) {
	.st-slider__text {
		display: none;
	}
}

.st-slider__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.st-slider__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	font-size: 0.82rem;
	font-weight: 600;
	opacity: 0.9;
}

.st-slider__meta span {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
}

.st-slider__meta .st-icon {
	width: 0.95rem;
	height: 0.95rem;
}

.st-slider__cta {
	gap: 0.4rem;
}

.st-slider__cta .st-icon {
	width: 1rem;
	height: 1rem;
	transform: scaleX(-1);
}

.st-slider .st-btn--primary {
	background: #fff;
	color: #985321;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
	padding: 0.55rem 1.1rem;
	font-size: 0.9rem;
}

.st-slider .st-btn--primary:hover {
	background: #f8f4ef;
	color: #7a4219;
}

.st-slider__progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
	height: 3px;
	background: rgba(255, 255, 255, 0.15);
}

.st-slider__progress-bar {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #c4894a, #985321);
	transform-origin: right center;
	animation: st-slider-progress linear infinite;
}

.st-slider.is-paused .st-slider__progress-bar {
	animation-play-state: paused;
}

@keyframes st-slider-progress {
	from { width: 0%; }
	to { width: 100%; }
}

.st-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
	opacity: 0;
}

.st-slider:hover .st-slider__nav,
.st-slider:focus-within .st-slider__nav {
	opacity: 1;
}

@media (max-width: 767px) {
	.st-slider__nav {
		opacity: 1;
		width: 40px;
		height: 40px;
		top: auto;
		bottom: 3.4rem;
		transform: none;
	}
}

.st-slider__nav:hover {
	background: #985321;
	border-color: #985321;
	color: #fff;
}

.st-slider__nav:active {
	transform: translateY(-50%) scale(0.94);
}

@media (max-width: 767px) {
	.st-slider__nav:active {
		transform: scale(0.94);
	}
}

.st-slider__nav .st-icon {
	width: 1.15rem;
	height: 1.15rem;
}

.st-slider__nav--prev {
	right: 1rem;
}

.st-slider__nav--next {
	left: 1rem;
}

.st-slider__nav--next .st-icon {
	transform: rotate(180deg);
}

.st-slider__dots {
	position: absolute;
	z-index: 5;
	left: 50%;
	bottom: 0.95rem;
	transform: translateX(-50%);
	display: flex;
	gap: 0.45rem;
	padding: 0.35rem 0.55rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(8px);
}

.st-slider__dot {
	width: 8px;
	height: 8px;
	border: 0;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	padding: 0;
	transition: width 0.25s ease, background 0.25s ease;
}

.st-slider__dot.is-active {
	width: 24px;
	background: #fff;
}

html.st-dark .st-slider {
	background: #12100e;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

html.st-dark .st-slider__glass {
	background: rgba(20, 16, 12, 0.45);
	border-color: rgba(255, 255, 255, 0.12);
}

/* ---------- Sections ---------- */
.st-section {
	padding: 2.25rem 0;
}

.st-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.25rem;
}

.st-section__title-wrap {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.st-section__mark {
	width: 12px;
	height: 12px;
	border-radius: 3px;
	background: var(--st-primary);
	flex-shrink: 0;
	box-shadow: 0 0 0 3px rgba(var(--st-primary-rgb), 0.15);
}

.st-section__head h1,
.st-section__head h2 {
	margin: 0;
	font-size: 1.22rem;
	font-weight: 800;
}

.st-section__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--st-primary);
}

.st-section__link .st-icon {
	width: 1rem;
	height: 1rem;
	transform: scaleX(-1);
}

/* ---------- Post cards ---------- */
.st-posts-grid {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
	.st-posts-grid {
		gap: 1.15rem;
	}

	.st-posts-grid--2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.st-posts-grid--3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.st-posts-grid--4,
	.st-posts-grid:not([class*="st-posts-grid--"]) {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (min-width: 992px) {
	.st-posts-grid--4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.st-post-card {
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1px solid var(--st-border);
	border-radius: var(--st-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--st-shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

html.st-dark .st-post-card {
	background: rgba(36, 40, 48, 0.88);
}

.st-post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
	border-color: rgba(var(--st-primary-rgb), 0.25);
}

.st-post-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: var(--st-surface-2);
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.st-post-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.st-post-card:hover .st-post-card__media img {
	transform: scale(1.05);
}

.st-post-card__placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, var(--st-primary-soft), var(--st-surface-2));
	color: var(--st-primary);
}

.st-post-card__placeholder .st-icon {
	width: 2.2rem;
	height: 2.2rem;
	opacity: 0.7;
}

.st-post-card__cat {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 1;
	padding: 0.28rem 0.7rem;
	border-radius: var(--st-radius-pill);
	background: rgba(255, 255, 255, 0.94);
	color: var(--st-primary);
	font-size: 0.75rem;
	font-weight: 800;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

html.st-dark .st-post-card__cat {
	background: rgba(36, 40, 48, 0.92);
	color: var(--st-primary);
}

.st-post-card__body {
	padding: 0.75rem 0.8rem 0.9rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	flex: 1;
}

@media (min-width: 768px) {
	.st-post-card__body {
		padding: 1rem 1.05rem 1.15rem;
		gap: 0.55rem;
	}
}

.st-post-card__title {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.45;
}

@media (min-width: 768px) {
	.st-post-card__title {
		font-size: 1.02rem;
	}
}

.st-post-card__title a {
	color: var(--st-text);
}

.st-post-card__title a:hover {
	color: var(--st-primary);
}

.st-post-card__excerpt {
	margin: 0;
	color: var(--st-muted);
	font-size: 0.9rem;
	line-height: 1.65;
	display: none;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (min-width: 768px) {
	.st-post-card__excerpt {
		display: -webkit-box;
	}
}

.st-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem;
	margin-top: auto;
	padding-top: 0.35rem;
	color: var(--st-muted);
	font-size: 0.8rem;
	font-weight: 600;
}

.st-post-card__meta span {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
}

.st-post-card__meta .st-icon {
	width: 0.95rem;
	height: 0.95rem;
}

/* Featured lead card */
.st-featured {
	display: grid;
	gap: 1.1rem;
}

@media (min-width: 900px) {
	.st-featured {
		grid-template-columns: 1.35fr 1fr;
		align-items: stretch;
	}
}

.st-post-card--lead {
	min-height: 100%;
}

.st-post-card--lead .st-post-card__media {
	aspect-ratio: 16 / 11;
}

@media (min-width: 900px) {
	.st-post-card--lead .st-post-card__media {
		aspect-ratio: 16 / 12;
		min-height: 280px;
	}
}

.st-post-card--lead .st-post-card__title {
	font-size: 1.35rem;
}

.st-post-card--lead .st-post-card__excerpt {
	-webkit-line-clamp: 3;
}

.st-featured__side {
	display: grid;
	gap: 1rem;
}

.st-post-card--row {
	flex-direction: row;
	min-height: 118px;
}

.st-post-card--row .st-post-card__media {
	width: 42%;
	aspect-ratio: auto;
	min-height: 100%;
	flex-shrink: 0;
}

.st-post-card--row .st-post-card__body {
	padding: 0.85rem 0.95rem;
}

.st-post-card--row .st-post-card__title {
	font-size: 0.95rem;
}

.st-post-card--row .st-post-card__excerpt {
	display: none;
}

/* Category chips */
.st-cats-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-bottom: 1.5rem;
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	padding: 0.65rem;
	border-radius: 16px;
	border: 1px solid rgba(232, 234, 237, 0.8);
}

html.st-dark .st-cats-bar {
	background: rgba(36, 40, 48, 0.55);
	border-color: rgba(52, 58, 69, 0.9);
}

.st-cats-bar a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 0.95rem;
	border-radius: var(--st-radius-pill);
	background: var(--st-surface-2);
	border: 1px solid var(--st-border);
	color: var(--st-text);
	font-weight: 700;
	font-size: 0.88rem;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.st-cats-bar a:hover,
.st-cats-bar a.is-active {
	background: var(--st-primary);
	border-color: var(--st-primary);
	color: #fff;
}

/* ---------- Market rates table ---------- */
.st-rates-section .st-section__head {
	align-items: flex-end;
}

.st-rates__updated {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--st-muted);
	font-size: 0.82rem;
	font-weight: 600;
}

.st-rates__updated .st-icon {
	width: 0.95rem;
	height: 0.95rem;
}

.st-rates {
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid var(--st-border);
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: var(--st-shadow);
}

html.st-dark .st-rates {
	background: rgba(36, 40, 48, 0.75);
}

.st-rates__head,
.st-rates__row {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 0.8fr);
	gap: 0.75rem;
	align-items: center;
	padding: 0.95rem 1.1rem;
}

.st-rates__head {
	background: rgba(152, 83, 33, 0.08);
	color: var(--st-muted);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	border-bottom: 1px solid var(--st-border);
}

html.st-dark .st-rates__head {
	background: rgba(196, 137, 74, 0.12);
}

.st-rates__row + .st-rates__row {
	border-top: 1px solid var(--st-border);
}

.st-rates__row:hover {
	background: rgba(152, 83, 33, 0.04);
}

.st-rates__asset {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
}

.st-rates__icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: var(--st-surface-2);
	flex-shrink: 0;
	overflow: hidden;
}

.st-rates__icon img {
	width: 28px;
	height: 28px;
	display: block;
}

.st-rates__icon--syp {
	background: linear-gradient(145deg, #985321, #c4894a);
	color: #fff;
}

.st-rates__flag {
	font-weight: 800;
	font-size: 1.05rem;
}

.st-rates__meta {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	min-width: 0;
}

.st-rates__meta strong {
	font-size: 0.98rem;
	font-weight: 800;
}

.st-rates__meta small,
.st-rates__price small {
	color: var(--st-muted);
	font-size: 0.78rem;
	font-weight: 600;
}

.st-rates__price {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	min-width: 0;
}

.st-rates__price strong {
	font-size: 1.05rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.02em;
}

.st-rates__change {
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	font-size: 0.92rem;
	color: var(--st-muted);
	justify-self: start;
}

.st-rates__change.is-up {
	color: #16a34a;
}

.st-rates__change.is-down {
	color: #dc2626;
}

html.st-dark .st-rates__change.is-up { color: #5ecf8c; }
html.st-dark .st-rates__change.is-down { color: #f07178; }

@media (max-width: 640px) {
	.st-rates__head {
		display: none;
	}

	.st-rates__row {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			"asset change"
			"price price";
		gap: 0.45rem 0.75rem;
		padding: 1rem;
	}

	.st-rates__asset { grid-area: asset; }
	.st-rates__price { grid-area: price; }
	.st-rates__change {
		grid-area: change;
		justify-self: end;
		padding: 0.25rem 0.55rem;
		border-radius: 999px;
		background: var(--st-surface-2);
		font-size: 0.8rem;
	}
}

/* Newsletter */
.st-newsletter {
	margin: 1rem 0 0.5rem;
	padding: 2rem 1.5rem;
	border-radius: 20px;
	background:
		radial-gradient(ellipse 70% 80% at 90% 20%, rgba(255, 255, 255, 0.12), transparent 50%),
		linear-gradient(135deg, #b87333 0%, #985321 50%, #7a4219 100%);
	color: #fff;
	text-align: center;
}

.st-newsletter h2 {
	margin: 0 0 0.5rem;
	font-size: 1.4rem;
	font-weight: 800;
}

.st-newsletter p {
	margin: 0 auto 1.25rem;
	max-width: 36ch;
	opacity: 0.95;
}

.st-newsletter__form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.55rem;
	max-width: 480px;
	margin-inline: auto;
}

.st-newsletter__form input[type="email"] {
	flex: 1;
	min-width: 200px;
	border: 0;
	border-radius: var(--st-radius-pill);
	padding: 0.85rem 1.15rem;
	font: inherit;
	outline: none;
}

.st-newsletter .st-btn--primary {
	background: #fff;
	color: #985321;
	border-radius: var(--st-radius-pill);
	box-shadow: none;
}

.st-newsletter .st-btn--primary:hover {
	background: #f8f4ef;
	color: #7a4219;
}

/* ---------- Single / page ---------- */
.st-page-head {
	padding: 1.75rem 1.5rem 1.6rem;
	margin: 1.35rem 0 1.25rem;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(232, 234, 237, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
	.st-page-head {
		padding: 2.1rem 2rem 1.85rem;
		margin: 1.75rem 0 1.5rem;
	}
}

html.st-dark .st-page-head {
	background: rgba(36, 40, 48, 0.72);
	border-color: rgba(52, 58, 69, 0.9);
}

.st-page-head h1 {
	margin: 0 0 1rem;
	font-size: clamp(1.45rem, 4vw, 2.05rem);
	font-weight: 800;
	line-height: 1.55;
	letter-spacing: -0.01em;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.st-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.5rem;
	align-items: center;
	margin-bottom: 1.15rem;
	color: var(--st-muted);
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.6;
}

.st-breadcrumb__current {
	display: none;
}

@media (min-width: 768px) {
	.st-breadcrumb__current {
		display: inline;
		max-width: 28ch;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

.st-breadcrumb a {
	color: var(--st-muted);
}

.st-breadcrumb a:hover {
	color: var(--st-primary);
}

.st-single {
	max-width: 760px;
	margin-inline: auto;
	padding: 0.5rem 0 2rem;
}

.st-page-head.st-single {
	padding: 1.85rem 1.6rem 1.7rem;
	max-width: 100%;
}

@media (min-width: 768px) {
	.st-page-head.st-single {
		padding: 2.25rem 2.15rem 2rem;
	}
}

.st-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 1rem;
	margin: 0;
	padding-top: 0.15rem;
	color: var(--st-muted);
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.5;
}

.st-single__meta span {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
}

.st-single__thumb {
	border-radius: var(--st-radius);
	overflow: hidden;
	margin-bottom: 1.5rem;
	box-shadow: var(--st-shadow);
}

.st-single__thumb img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.st-single__content {
	font-size: 1.05rem;
	line-height: 1.9;
}

.st-single__content > *:first-child {
	margin-top: 0;
}

.st-single__content h2,
.st-single__content h3 {
	margin-top: 1.75rem;
	font-weight: 800;
}

.st-single__content a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.st-single__content img {
	border-radius: var(--st-radius-sm);
}

.st-single__content blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-right: 4px solid var(--st-primary);
	background: var(--st-primary-soft);
	border-radius: 0 var(--st-radius-sm) var(--st-radius-sm) 0;
	color: var(--st-text);
}

.st-single__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--st-border);
}

.st-single__tags a {
	padding: 0.35rem 0.8rem;
	border-radius: var(--st-radius-pill);
	background: var(--st-surface-2);
	border: 1px solid var(--st-border);
	color: var(--st-text);
	font-size: 0.85rem;
	font-weight: 700;
}

.st-single__tags a:hover {
	background: var(--st-primary-soft);
	border-color: transparent;
	color: var(--st-primary);
}

.st-related {
	margin-top: 2.5rem;
	padding-top: 0.5rem;
}

/* Archive list */
.st-archive-grid {
	padding-bottom: 1.5rem;
}

.st-archive-grid.st-posts-grid {
	/* inherits from st-posts-grid */
}

.st-archive-grid:not(.st-posts-grid) {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
	.st-archive-grid:not(.st-posts-grid) {
		gap: 1.15rem;
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.st-pagination {
	display: flex;
	justify-content: center;
	gap: 0.4rem;
	flex-wrap: wrap;
	padding: 1rem 0 2rem;
}

.st-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.7rem;
	border-radius: 12px;
	background: var(--st-surface);
	border: 1px solid var(--st-border);
	color: var(--st-text);
	font-weight: 700;
}

.st-pagination .page-numbers.current,
.st-pagination .page-numbers:hover {
	background: var(--st-primary);
	border-color: var(--st-primary);
	color: #fff;
}

/* Comments */
.st-comments {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--st-border);
}

.st-comments h3 {
	margin: 0 0 1rem;
	font-weight: 800;
}

.st-comments .comment-list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.st-comments .comment {
	padding: 1rem;
	margin-bottom: 0.75rem;
	background: var(--st-surface-2);
	border-radius: var(--st-radius-sm);
}

.st-comments .comment-form input,
.st-comments .comment-form textarea {
	width: 100%;
	border: 1px solid var(--st-border);
	background: var(--st-surface);
	color: var(--st-text);
	border-radius: var(--st-radius-sm);
	padding: 0.75rem 0.95rem;
	font: inherit;
	margin-bottom: 0.75rem;
}

.st-comments .form-submit input {
	background: var(--st-primary);
	color: #fff;
	border: 0;
	font-weight: 800;
	cursor: pointer;
	width: auto;
	padding: 0.75rem 1.35rem;
	border-radius: var(--st-radius-sm);
	box-shadow: 0 8px 20px rgba(var(--st-primary-rgb), 0.28);
}

/* Page content */
.st-page {
	padding: 2rem 0;
	max-width: 800px;
}

.st-page h1 {
	margin: 0 0 1rem;
	font-weight: 800;
}

.st-page__content {
	font-size: 1.05rem;
	line-height: 1.85;
}

/* 404 */
.st-404 {
	padding: 4rem 0;
	text-align: center;
}

.st-404 h1 {
	margin: 0 0 0.5rem;
	font-size: 2rem;
	font-weight: 800;
}

.st-404 p {
	margin: 0 0 1.5rem;
	color: var(--st-muted);
}

/* ---------- Footer ---------- */
.st-footer {
	margin-top: auto;
	background: #1a1d23;
	color: #d1d5db;
	padding: 2.75rem 0 1.25rem;
}

.st-footer a {
	color: #e5e7eb;
}

.st-footer a:hover {
	color: #c4894a;
}

.st-footer__grid {
	display: grid;
	gap: 1.75rem;
}

@media (min-width: 768px) {
	.st-footer__grid {
		grid-template-columns: 1.5fr 1fr 1fr 1fr;
	}
}

.st-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	margin-bottom: 0.65rem;
}

.st-footer .st-logo-link--footer {
	margin-bottom: 0.65rem;
}

.st-footer__brand span {
	font-size: 1.35rem;
	font-weight: 800;
	color: #c4894a;
}

.st-footer__brand-icon {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(196, 137, 74, 0.18);
	color: #c4894a;
}

.st-footer__tagline {
	margin: 0.35rem 0 1rem;
	font-size: 0.92rem;
	max-width: 30ch;
	line-height: 1.7;
	color: #9ca3af;
}

.st-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.st-footer__social a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: #e5e7eb;
	transition: background 0.2s ease, color 0.2s ease;
}

.st-footer__social a:hover {
	background: rgba(196, 137, 74, 0.2);
	color: #c4894a;
}

.st-footer__social .st-icon {
	width: 1.1rem;
	height: 1.1rem;
}

.st-footer-col__title {
	margin: 0 0 0.85rem;
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
}

.st-footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.st-footer-col li + li {
	margin-top: 0.45rem;
}

.st-footer-col a {
	font-size: 0.94rem;
	font-weight: 500;
}

.st-footer__nav {
	margin-top: 1.75rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.st-footer__nav-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.st-footer__bottom {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
	font-size: 0.88rem;
	color: #9ca3af;
}

.st-footer__bottom p {
	margin: 0;
}

html.st-dark .st-footer {
	background: #14171c;
}

html.st-dark .st-btn--outline {
	background: var(--st-surface-2);
}

html.st-dark .st-post-card {
	border-color: var(--st-border);
}
