:root {
	--bg: #071817;
	--bg-soft: #0d2422;
	--surface: #f6fbfa;
	--surface-soft: #e7efed;
	--card: rgba(255, 255, 255, 0.92);
	--line: rgba(8, 20, 18, 0.12);
	--line-light: rgba(255, 255, 255, 0.14);
	--text: #091412;
	--muted: #667673;
	--white: #fbfffe;
	--blue: #00a3aa;
	--blue-dark: #047b82;
	--green: #41b84d;
	--violet: #7c4fe0;
	--orange: #ef6b28;
	--shadow: 0 28px 80px -40px rgba(5, 25, 24, 0.45);
	--container: min(1180px, calc(100% - 40px));
	--nav-container: min(1220px, calc(100% - 28px));
}

* {
	box-sizing: border-box;
}

html {
	background: var(--surface);
	max-width: 100%;
	overflow-x: clip;
}

body {
	margin: 0;
	color: var(--text);
	background: var(--surface);
	font-family: "Segoe UI", "Outfit", Arial, sans-serif;
	font-size: 16px;
	letter-spacing: 0;
	max-width: 100%;
	overflow-x: clip;
}

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

button,
input,
textarea,
select {
	font: inherit;
	letter-spacing: 0;
}

button {
	cursor: pointer;
}

button:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

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

.blog-shell,
.article-shell {
	width: var(--container);
	max-width: calc(100vw - 32px);
	margin: 0 auto;
	padding: 112px 0 84px;
	overflow-x: clip;
}

.article-shell {
	overflow: visible;
}

.admin-shell {
	width: min(1500px, calc(100% - 40px));
	margin: 0 auto;
	padding: 112px 0 84px;
}

.blog-topline {
	position: fixed;
	top: 18px;
	left: 50%;
	z-index: 15;
	width: var(--nav-container);
	max-width: calc(100vw - 16px);
	transform: translateX(-50%);
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
	min-height: 68px;
	margin: 0;
	padding: 12px 14px 12px 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(7, 24, 23, 0.68);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 50px -32px rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(18px);
	overflow: hidden;
}

.admin-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 16px;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--text);
}

.blog-topline .nav-brand {
	min-width: 154px;
	color: #ffffff;
}

.blog-topline .nav-brand img {
	width: 154px;
	height: auto;
}

.brand-mark span span {
	color: var(--blue);
}

.main-menu {
	justify-self: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	min-width: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.main-menu a {
	position: relative;
	white-space: nowrap;
	transition: color 280ms cubic-bezier(0.16, 1, 0.3, 1), transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.main-menu a::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -9px;
	height: 2px;
	content: "";
	border-radius: 999px;
	background: var(--blue);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.main-menu a:hover {
	color: var(--white);
}

.main-menu a:hover::after,
.main-menu a:focus-visible::after {
	transform: scaleX(1);
}

.main-menu a:active {
	transform: translateY(1px);
}

.nav-actions {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.admin-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	transition: transform 160ms ease, color 160ms ease, border-color 160ms ease;
}

.admin-chip:hover {
	border-color: rgba(255, 255, 255, 0.28);
	color: #ffffff;
}

.download-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 22px;
	border-radius: 999px;
	background: var(--blue);
	color: var(--white);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
	transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.download-button:hover {
	background: #09b2ba;
}

.blog-intro {
	margin: 0 0 54px;
}

.blog-top-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 8px 0 12px;
}

.blog-top-meta .breadcrumbs {
	margin: 0;
}

.breadcrumbs {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 36px;
	margin: 8px 0 12px;
	padding: 7px 12px;
	border: 1px solid rgba(0, 163, 170, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 18px 56px -46px rgba(7, 24, 23, 0.52);
	color: var(--muted);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
}

.breadcrumbs a {
	color: var(--blue-dark);
	transition: color 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
	color: var(--blue);
}

.breadcrumbs a:active {
	transform: translateY(1px);
}

.breadcrumbs span {
	width: 7px;
	height: 7px;
	border-top: 2px solid rgba(0, 163, 170, 0.68);
	border-right: 2px solid rgba(0, 163, 170, 0.68);
	transform: rotate(45deg);
}

.breadcrumbs strong {
	color: var(--text);
	font-weight: 900;
}

.blog-socials {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	min-height: 44px;
}

.blog-socials strong {
	color: var(--text);
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.blog-social-links {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.blog-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	background: var(--blue);
	color: var(--bg-soft);
	font-size: 24px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 16px 34px -28px rgba(7, 24, 23, 0.72);
	transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), background 240ms cubic-bezier(0.16, 1, 0.3, 1), color 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-social-links a:hover,
.blog-social-links a:focus-visible {
	background: var(--blue-dark);
	color: var(--white);
	transform: translateY(-2px);
}

.blog-social-links a:active {
	transform: translateY(1px);
}

.article-breadcrumbs {
	max-width: 100%;
	margin-bottom: 18px;
}

.article-breadcrumbs strong {
	overflow: hidden;
	max-width: min(520px, 48vw);
	text-overflow: ellipsis;
	white-space: nowrap;
}

.blog-intro h1 {
	max-width: 780px;
	margin: 0;
	color: var(--text);
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 760;
	line-height: 1.04;
	text-wrap: balance;
}

.admin-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--blue);
	color: var(--white);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
	transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-link:hover {
	background: #09b2ba;
}

.admin-link:active,
.admin-chip:active,
.download-button:active,
.read-button:active,
.load-more:active,
.primary-button:active,
.primary-small:active,
.ghost-button:active,
.danger-button:active {
	transform: translateY(1px);
}

.spotlight {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
	gap: 22px;
	margin-bottom: 22px;
	min-width: 0;
	max-width: 100%;
}

.spotlight-photo,
.spotlight-copy,
.post-card,
	.side-panel,
	.article-page,
	.admin-list-panel,
	.editor-panel,
	.stats-grid > div {
	border: 1px solid var(--line);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: var(--shadow);
}

.spotlight-photo {
	position: relative;
	overflow: hidden;
	min-height: 368px;
}

.spotlight-photo img,
.post-cover img,
.article-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.spotlight-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 44px;
}

.eyebrow {
	display: inline-flex;
	margin-bottom: 14px;
	color: var(--blue-dark);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.spotlight-copy h1 {
	max-width: 680px;
	margin: 0;
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 760;
	line-height: 1.04;
	letter-spacing: 0;
	text-wrap: balance;
	overflow-wrap: anywhere;
}

.spotlight-copy p {
	max-width: 560px;
	margin: 22px 0 28px;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.55;
}

.category-pill {
	display: inline-flex;
	align-items: center;
	min-height: 29px;
	padding: 0 13px;
	border-radius: 999px;
	color: var(--white);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spotlight-photo .category-pill,
.post-cover .category-pill {
	position: absolute;
	top: 18px;
	left: 18px;
}

.category-advice {
	background: var(--blue);
}

.category-economy {
	background: var(--blue-dark);
}

.category-care {
	background: #1c3431;
}

.category-news {
	background: #159947;
}

.category-partners {
	background: var(--blue);
}

.story-meta {
	display: grid;
	grid-template-columns: 28px 1fr auto;
	align-items: center;
	gap: 9px;
	color: var(--muted);
	font-size: 13px;
}

.story-meta img {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
}

.story-meta strong {
	color: var(--text);
	font-weight: 700;
}

.story-meta-large {
	grid-template-columns: 42px 1fr auto;
	gap: 12px;
}

.story-meta-large img {
	width: 42px;
	height: 42px;
}

.story-meta-large div {
	display: grid;
	gap: 2px;
}

.read-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-width: 168px;
	min-height: 48px;
	border-radius: 999px;
	background: var(--blue);
	color: var(--white);
	font-size: 14px;
	font-weight: 900;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
	transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.read-button:hover {
	background: var(--blue-dark);
}

.read-button span,
.load-more span {
	width: 14px;
	height: 14px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

.blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 22px;
	align-items: start;
	min-width: 0;
	max-width: 100%;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 14px;
	min-width: 0;
	max-width: 100%;
}

.post-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	content-visibility: auto;
	contain-intrinsic-size: 390px;
	box-shadow: 0 26px 70px -54px rgba(7, 24, 23, 0.62);
	transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), border-color 320ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.post-card:hover {
	border-color: rgba(0, 163, 170, 0.28);
	box-shadow: 0 30px 78px -48px rgba(7, 24, 23, 0.7);
	transform: translateY(-6px);
}

.post-card[hidden],
.load-more[hidden] {
	display: none;
}

.post-cover {
	position: relative;
	display: block;
	flex: 0 0 auto;
	aspect-ratio: 1.68 / 1;
	overflow: hidden;
}

.post-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 16px;
	min-height: 192px;
	padding: 18px;
}

.post-body h2 {
	min-height: 56px;
	margin: 0;
	font-size: 19px;
	font-weight: 720;
	line-height: 1.18;
	letter-spacing: 0;
}

.post-body h2 a:hover {
	color: var(--blue-dark);
}

.post-body .story-meta {
	margin-top: auto;
}

.load-more {
	grid-column: 1 / -1;
	justify-self: center;
	align-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: min(100%, 340px);
	min-height: 48px;
	padding: 0 28px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	color: var(--blue-dark);
	font-weight: 900;
	white-space: nowrap;
	transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms cubic-bezier(0.16, 1, 0.3, 1), background 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.load-more:hover {
	border-color: var(--blue);
	background: rgba(0, 163, 170, 0.08);
	color: var(--blue-dark);
}

.load-more span {
	width: 10px;
	height: 10px;
	transform: rotate(135deg);
}

.sidebar {
	align-self: stretch;
	display: grid;
	gap: 14px;
	align-content: start;
}

.side-panel {
	padding: 24px;
	box-shadow: 0 26px 70px -54px rgba(7, 24, 23, 0.62);
}

.side-panel h2,
.article-popular h2 {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
}

.flame-mark {
	position: relative;
	width: 24px;
	height: 24px;
	border-radius: 50% 50% 50% 8px;
	background: var(--blue);
	transform: rotate(-45deg);
}

.flame-mark::after {
	position: absolute;
	inset: 7px;
	content: "";
	border-radius: 50%;
	background: #ffffff;
	opacity: 0.88;
}

.popular-list,
.category-list {
	display: grid;
	gap: 12px;
}

.popular-item {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 14px;
	align-items: center;
}

.popular-item img {
	width: 100px;
	height: 70px;
	border-radius: 18px;
	object-fit: cover;
}

.popular-item span {
	display: grid;
	gap: 5px;
}

.popular-item strong {
	display: -webkit-box;
	overflow: hidden;
	color: var(--text);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.26;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.popular-item small {
	color: var(--muted);
	font-size: 13px;
}

.category-row {
	display: grid;
	grid-template-columns: 28px 1fr auto;
	align-items: center;
	gap: 12px;
	border: 1px solid transparent;
	border-radius: 16px;
	color: var(--text);
	font-weight: 800;
	padding: 7px 8px;
	transition: background 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.category-row:hover,
.category-row:focus-visible,
.category-row.is-active {
	border-color: rgba(0, 163, 170, 0.24);
	background: rgba(0, 163, 170, 0.08);
}

.category-row:active {
	transform: translateY(1px);
}

.category-row strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 27px;
	border-radius: 999px;
	background: rgba(0, 163, 170, 0.12);
	color: var(--blue-dark);
	font-size: 13px;
}

.category-icon {
	position: relative;
	width: 26px;
	height: 26px;
	border-radius: 0;
	background: currentColor;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.category-icon.category-all {
	color: var(--text);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16'/%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M4 18h16'/%3E%3Cpath d='M8 6v12'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16'/%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M4 18h16'/%3E%3Cpath d='M8 6v12'/%3E%3C/svg%3E");
}

.category-icon.category-advice {
	color: var(--blue);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3Cpath d='M8.4 14.8A6 6 0 1 1 15.6 14.8c-.8.7-1.1 1.4-1.1 2.2h-5c0-.8-.3-1.5-1.1-2.2Z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3Cpath d='M8.4 14.8A6 6 0 1 1 15.6 14.8c-.8.7-1.1 1.4-1.1 2.2h-5c0-.8-.3-1.5-1.1-2.2Z'/%3E%3C/svg%3E");
}

.category-icon.category-economy {
	color: var(--blue-dark);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 5 5 19'/%3E%3Ccircle cx='7.5' cy='7.5' r='2.5'/%3E%3Ccircle cx='16.5' cy='16.5' r='2.5'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 5 5 19'/%3E%3Ccircle cx='7.5' cy='7.5' r='2.5'/%3E%3Ccircle cx='16.5' cy='16.5' r='2.5'/%3E%3C/svg%3E");
}

.category-icon.category-care {
	color: #684bd9;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17h14l-1.5-5.2A3 3 0 0 0 14.6 9H9.4a3 3 0 0 0-2.9 2.8L5 17Z'/%3E%3Cpath d='M7 17v2'/%3E%3Cpath d='M17 17v2'/%3E%3Cpath d='M8 13h.01'/%3E%3Cpath d='M16 13h.01'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17h14l-1.5-5.2A3 3 0 0 0 14.6 9H9.4a3 3 0 0 0-2.9 2.8L5 17Z'/%3E%3Cpath d='M7 17v2'/%3E%3Cpath d='M17 17v2'/%3E%3Cpath d='M8 13h.01'/%3E%3Cpath d='M16 13h.01'/%3E%3C/svg%3E");
}

.category-icon.category-news {
	color: var(--green);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8h10a3 3 0 0 1 3 3v7H8a3 3 0 0 1-3-3V9a1 1 0 0 1 1-1Z'/%3E%3Cpath d='M8 12h7'/%3E%3Cpath d='M8 15h5'/%3E%3Cpath d='M16 8V6a2 2 0 0 0-2-2H8'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8h10a3 3 0 0 1 3 3v7H8a3 3 0 0 1-3-3V9a1 1 0 0 1 1-1Z'/%3E%3Cpath d='M8 12h7'/%3E%3Cpath d='M8 15h5'/%3E%3Cpath d='M16 8V6a2 2 0 0 0-2-2H8'/%3E%3C/svg%3E");
}

.category-icon.category-partners {
	color: var(--blue);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7.5 12.5 3-3a2.2 2.2 0 0 1 3.1 0l.9.9'/%3E%3Cpath d='m3 14 3-3 5.4 5.4a2 2 0 0 0 2.8 0L21 9.6'/%3E%3Cpath d='m17 14 2.5 2.5'/%3E%3Cpath d='m14.5 16.5 2 2'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7.5 12.5 3-3a2.2 2.2 0 0 1 3.1 0l.9.9'/%3E%3Cpath d='m3 14 3-3 5.4 5.4a2 2 0 0 0 2.8 0L21 9.6'/%3E%3Cpath d='m17 14 2.5 2.5'/%3E%3Cpath d='m14.5 16.5 2 2'/%3E%3C/svg%3E");
}

.article-page {
	overflow: visible;
}

.article-hero {
	height: 420px;
	overflow: hidden;
	border-radius: 30px 30px 0 0;
}

.article-body-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 54px;
	align-items: start;
	padding: 48px 48px 64px;
}

.article-content {
	max-width: 760px;
	margin: 0;
	padding: 0;
}

.article-content h1 {
	margin: 18px 0;
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 760;
	line-height: 1.08;
	letter-spacing: 0;
	text-wrap: balance;
	overflow-wrap: anywhere;
}

.article-excerpt {
	margin: 0 0 24px;
	color: var(--muted);
	font-size: 19px;
	line-height: 1.55;
}

.article-sidebar {
	position: sticky;
	top: 116px;
	display: grid;
	align-content: start;
	gap: 18px;
	align-self: start;
}

.app-ad-card {
	position: relative;
	overflow: hidden;
	display: grid;
	align-self: start;
	gap: 18px;
	min-height: 430px;
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 30px;
	background:
		linear-gradient(145deg, rgba(0, 163, 170, 0.24), transparent 42%),
		var(--bg-soft);
	color: var(--white);
	box-shadow: var(--shadow);
}

.sidebar-app-ad {
	position: sticky;
	top: 116px;
}

.article-banner-card {
	position: relative;
	overflow: hidden;
	display: block;
	border: 1px solid var(--line);
	border-radius: 30px;
	background: var(--white);
	box-shadow: var(--shadow);
	transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.article-banner-card:hover {
	border-color: rgba(0, 163, 170, 0.32);
	transform: translateY(-2px);
}

.article-banner-card img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.app-ad-card::after {
	position: absolute;
	right: 0;
	bottom: -70px;
	content: "24";
	color: rgba(255, 255, 255, 0.055);
	font-size: 184px;
	font-weight: 900;
	line-height: 1;
}

.app-ad-card > * {
	position: relative;
	z-index: 1;
}

.app-ad-logo img {
	width: 154px;
	height: auto;
}

.app-ad-card h2 {
	max-width: 270px;
	margin: 0;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.06;
	text-wrap: balance;
}

.app-ad-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 16px;
	line-height: 1.45;
}

.app-ad-screenshot {
	position: relative;
	justify-self: center;
	width: 156px;
	height: 205px;
	margin: 4px 0 -6px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.app-ad-screenshot img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.app-ad-button {
	width: 100%;
}

.article-categories-panel {
	box-shadow: 0 26px 70px -54px rgba(7, 24, 23, 0.62);
}

.rich-text {
	margin-top: 34px;
	color: var(--text);
	font-size: 18px;
	line-height: 1.72;
}

.rich-text h1,
.rich-text h2,
.rich-text h3 {
	margin: 34px 0 12px;
	color: var(--text);
	font-weight: 720;
	line-height: 1.2;
	letter-spacing: 0;
}

.rich-text h1 {
	font-size: 32px;
}

.rich-text h2 {
	font-size: 26px;
}

.rich-text h3 {
	font-size: 22px;
}

.rich-text h4 {
	margin: 26px 0 10px;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.24;
}

.rich-text p,
.rich-text ul,
.rich-text ol,
.rich-text blockquote {
	margin: 0 0 18px;
}

.rich-text ul,
.rich-text ol {
	padding-left: 22px;
}

.rich-text a {
	color: var(--blue-dark);
	font-weight: 650;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.rich-text h1[id],
.rich-text h2[id],
.rich-text h3[id],
.rich-text h4[id] {
	scroll-margin-top: 120px;
}

.rich-text strong {
	font-weight: 650;
}

.rich-text .article-toc {
	display: block;
	margin: 8px 0 28px;
}

.rich-text .article-toc ul {
	columns: 2;
	column-gap: 34px;
	margin: 0;
	padding-left: 20px;
}

.rich-text .article-toc li {
	break-inside: avoid;
	margin: 0 0 6px;
	padding-left: 2px;
	color: var(--muted);
	line-height: 1.28;
}

.rich-text .article-toc a {
	color: var(--muted);
	font-size: 15px;
	font-weight: 500;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.rich-text .content-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	margin: 6px 0 18px;
	padding: 0 26px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: var(--blue);
	color: var(--white);
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: 0 18px 38px -28px rgba(0, 121, 126, 0.85);
	transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.rich-text .content-button:hover {
	background: var(--blue-dark);
	transform: translateY(-2px);
}

.rich-text .content-button:active {
	transform: translateY(0);
}

.rich-text .content-store-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	margin: 8px 0 28px;
}

.rich-text .wash-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 16px 0 28px;
}

.rich-text .wash-card {
	display: grid;
	grid-template-columns: 116px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-height: 112px;
	padding: 10px;
	color: var(--black);
	text-decoration: none;
	border: 1px solid rgba(9, 33, 31, 0.12);
	border-radius: 18px;
	background: var(--white);
	box-shadow: 0 18px 38px -34px rgba(7, 24, 23, 0.48);
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.rich-text .wash-card:hover {
	color: var(--black);
	border-color: rgba(0, 167, 172, 0.44);
	box-shadow: 0 22px 48px -34px rgba(7, 24, 23, 0.62);
	transform: translateY(-1px);
}

.rich-text .wash-card-media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border-radius: 13px;
	background: var(--bg-soft);
}

.rich-text .wash-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rich-text .wash-card-body {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.rich-text .wash-card-body strong {
	display: -webkit-box;
	overflow: hidden;
	color: var(--black);
	font-size: 18px;
	line-height: 1.12;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.rich-text .wash-card-body small {
	display: -webkit-box;
	overflow: hidden;
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.22;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.rich-text .wash-card-body span {
	width: fit-content;
	padding: 7px 12px;
	color: var(--blue-dark);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	border-radius: 999px;
	background: rgba(0, 167, 172, 0.12);
}

.rich-text .store-badge {
	display: inline-flex;
	align-items: center;
	width: 256px;
	min-height: 76px;
	padding: 9px 18px;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 9px;
	background: #050505;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 10px 26px -18px rgba(0, 0, 0, 0.72);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.rich-text .store-badge:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.72);
	transform: translateY(-2px);
	box-shadow: 0 18px 34px -24px rgba(0, 0, 0, 0.8);
}

.rich-text .store-badge:active {
	transform: translateY(0);
}

.rich-text .store-badge-icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 52px;
	margin-right: 12px;
	color: #fff;
}

.rich-text .store-badge-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.rich-text .store-badge-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1;
	text-transform: none;
}

.rich-text .store-badge-copy span {
	margin-bottom: 5px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
}

.rich-text .store-badge-copy strong {
	display: block;
	color: #fff;
	font-size: 28px;
	font-weight: 500;
	letter-spacing: 0;
	white-space: nowrap;
}

.rich-text code {
	border: 1px solid rgba(0, 163, 170, 0.16);
	border-radius: 7px;
	background: rgba(0, 163, 170, 0.08);
	color: var(--blue-dark);
	font-family: "Consolas", "JetBrains Mono", monospace;
	font-size: 0.9em;
	padding: 0.08em 0.32em;
}

.rich-text blockquote {
	border-left: 4px solid var(--blue);
	padding: 12px 18px;
	border-radius: 0 12px 12px 0;
	background: rgba(0, 163, 170, 0.08);
	color: var(--text);
	font-weight: 600;
}

.rich-text hr {
	height: 1px;
	margin: 28px 0;
	border: 0;
	background: var(--line);
}

.rich-text .check-list {
	padding-left: 0;
	list-style: none;
}

.rich-text .check-list li {
	position: relative;
	padding-left: 30px;
}

.rich-text .check-list li::before {
	position: absolute;
	top: 0.38em;
	left: 0;
	width: 16px;
	height: 16px;
	content: "";
	border: 2px solid var(--blue);
	border-radius: 5px;
}

.rich-text .check-list li.is-checked::before {
	background: var(--blue);
	box-shadow: inset 0 0 0 3px var(--white);
}

.rich-text .content-media {
	width: 100%;
	margin: 24px 0;
	text-align: center;
}

.rich-text .content-media img {
	display: block;
	width: 100%;
	max-width: none;
	max-height: none;
	height: auto;
	margin: 0 auto;
	border-radius: 18px;
	object-fit: cover;
}

.rich-text .content-media img[src*="/uploads/partner-integrations/"] {
	width: min(100%, 364px);
	max-width: 100%;
	max-height: none;
	border-radius: 30px;
}

.rich-text .content-phone-mockup {
	position: relative;
	width: min(100%, 398px);
	margin: 32px auto 24px;
	padding: 22px 14px 18px;
	border: 1px solid rgba(18, 31, 30, 0.44);
	border-radius: 34px;
	background:
		linear-gradient(145deg, rgba(44, 58, 55, 0.96), rgba(17, 27, 26, 0.98)),
		#172321;
	box-shadow:
		0 30px 64px -42px rgba(3, 22, 21, 0.82),
		inset 0 0 0 2px rgba(255, 255, 255, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.rich-text .content-phone-mockup::before {
	position: absolute;
	top: 10px;
	left: 50%;
	z-index: 2;
	width: 58px;
	height: 5px;
	content: "";
	border-radius: 999px;
	background: rgba(236, 244, 242, 0.34);
	box-shadow: 74px 0 0 -1px rgba(236, 244, 242, 0.28);
	transform: translateX(-50%);
}

.rich-text .content-phone-mockup::after {
	position: absolute;
	top: 88px;
	right: -3px;
	width: 3px;
	height: 70px;
	content: "";
	border-radius: 999px;
	background: rgba(17, 28, 27, 0.82);
}

.rich-text .content-phone-mockup img,
.rich-text .content-phone-mockup img[src*="/uploads/partner-integrations/"] {
	position: relative;
	display: block;
	width: 100%;
	max-height: none;
	margin: 0 auto;
	border-radius: 24px;
	background: var(--white);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.rich-text .content-video {
	overflow: hidden;
	aspect-ratio: 16 / 9;
	margin: 24px 0 26px;
	border-radius: 22px;
	background: var(--bg-soft);
	box-shadow: 0 24px 56px -40px rgba(7, 24, 23, 0.72);
}

.rich-text .content-video iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.text-align-left {
	text-align: left;
}

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

.text-align-right {
	text-align: right;
}

.text-align-justify {
	text-align: justify;
}

.article-popular {
	margin-top: 22px;
}

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

.article-popular-grid .popular-item {
	border: 1px solid var(--line);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.86);
	padding: 12px;
}

.site-footer {
	width: 100%;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: var(--bg-soft);
	color: var(--white);
	box-shadow: none;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(180px, 1.1fr) repeat(3, minmax(0, 1fr));
	gap: 34px;
	width: min(1490px, calc(100% - 80px));
	margin: 0 auto;
	padding: 38px 40px 34px;
}

.footer-brand {
	align-self: start;
}

.footer-logo {
	width: 204px;
	height: auto;
}

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

.footer-column h3 {
	margin: 0 0 8px;
	color: var(--white);
	font-size: 20px;
	font-weight: 900;
	line-height: 1.08;
}

.footer-column a,
.footer-column p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
	line-height: 1.42;
}

.footer-column a {
	transition: color 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-column a:hover,
.footer-column a:focus-visible {
	color: var(--white);
}

.footer-column a:active {
	transform: translateY(1px);
}

.footer-socials {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	background: var(--blue);
	color: var(--bg-soft);
	font-size: 24px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
	transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), background 240ms cubic-bezier(0.16, 1, 0.3, 1), color 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
	background: #09b2ba;
	color: var(--white);
	transform: translateY(-2px);
}

.footer-socials a:active {
	transform: translateY(1px);
}

.copyright {
	margin-top: 4px;
}

.admin-body {
	background:
		radial-gradient(circle at 12% 18%, rgba(0, 163, 170, 0.12), transparent 23rem),
		var(--surface);
	color: var(--text);
}

.admin-shell {
	width: min(1500px, calc(100% - 40px));
	padding: 112px 0 84px;
}

.admin-header {
	position: fixed;
	top: 18px;
	left: 50%;
	z-index: 15;
	width: var(--nav-container);
	transform: translateX(-50%);
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
	min-height: 68px;
	margin: 0;
	padding: 12px 14px 12px 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(7, 24, 23, 0.68);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 50px -32px rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(18px);
}

.admin-header .nav-brand {
	min-width: 154px;
}

.admin-header .nav-brand img {
	width: 154px;
	height: auto;
}

.admin-header-copy {
	justify-self: center;
	display: grid;
	gap: 2px;
	text-align: center;
}

.admin-header-copy strong {
	color: var(--white);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.admin-header-copy span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	font-weight: 800;
}

.admin-intro {
	margin: 34px 0 34px;
}

.admin-intro h1 {
	margin: 0;
	color: var(--text);
	font-size: clamp(34px, 5vw, 54px);
	font-weight: 900;
	line-height: 1.04;
}

.admin-intro p:not(.eyebrow) {
	max-width: 680px;
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 20px;
	line-height: 1.42;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 18px;
}

.stats-grid > div {
	display: grid;
	gap: 8px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 26px 70px -54px rgba(7, 24, 23, 0.62);
}

.stats-grid span {
	color: var(--muted);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.stats-grid strong {
	color: var(--blue-dark);
	font-size: 38px;
	font-weight: 900;
	line-height: 1;
}

.admin-layout {
	display: grid;
	grid-template-columns: 390px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.admin-list-panel,
.editor-panel {
	border: 1px solid var(--line);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.86);
	padding: 22px;
	box-shadow: 0 26px 70px -54px rgba(7, 24, 23, 0.62);
}

.admin-list-panel {
	position: sticky;
	top: 104px;
	display: grid;
	gap: 14px;
	max-height: calc(100dvh - 128px);
	overflow: auto;
}

.admin-toolbar,
.editor-head,
.editor-actions,
.switch-row,
.markdown-tools {
	display: flex;
	align-items: center;
	gap: 10px;
}

.admin-toolbar {
	justify-content: flex-start;
	flex-wrap: wrap;
}

.admin-toolbar .primary-small {
	width: 100%;
	flex: 0 0 100%;
	min-height: 50px;
	padding: 0 26px;
	font-size: 14px;
	line-height: 1.05;
}

.status-filter-group {
	display: inline-flex;
	flex: 0 0 100%;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.status-filter-pill {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	cursor: pointer;
}

.status-filter-pill input {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
}

.status-filter-pill span {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 28px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: transparent;
	color: var(--muted);
	font-size: 10px;
	font-weight: 700;
	padding: 0 9px 0 8px;
	text-transform: uppercase;
	transition: border-color 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms cubic-bezier(0.16, 1, 0.3, 1), color 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.status-filter-pill span::before {
	width: 11px;
	height: 11px;
	content: "";
	border: 1.5px solid rgba(0, 128, 135, 0.42);
	border-radius: 3px;
	background: transparent;
}

.status-filter-pill span::after {
	position: absolute;
	left: 12px;
	top: 50%;
	width: 4px;
	height: 7px;
	content: "";
	border-right: 2px solid var(--blue);
	border-bottom: 2px solid var(--blue);
	opacity: 0;
	transform: translateY(-62%) rotate(45deg);
}

.status-filter-pill input:checked + span {
	border-color: rgba(0, 163, 170, 0.3);
	background: transparent;
	color: var(--blue-dark);
}

.status-filter-pill input:checked + span::before {
	border-color: var(--blue);
	background: transparent;
}

.status-filter-pill input:checked + span::after {
	opacity: 1;
}

.status-filter-pill input:focus-visible + span {
	box-shadow: 0 0 0 4px rgba(0, 163, 170, 0.12);
}

.status-filter-pill:active span {
	transform: translateY(1px);
}

.admin-category-filter {
	display: grid;
	gap: 7px;
}

.admin-category-filter > span {
	color: var(--text);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.category-filter-group {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.category-filter-pill {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	cursor: pointer;
}

.category-filter-pill input {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
}

.category-filter-pill span {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 28px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: transparent;
	color: var(--muted);
	font-size: 10px;
	font-weight: 700;
	padding: 0 9px 0 8px;
	text-transform: uppercase;
	transition: border-color 220ms cubic-bezier(0.16, 1, 0.3, 1), color 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.category-filter-pill span::before {
	width: 11px;
	height: 11px;
	content: "";
	border: 1.5px solid rgba(0, 128, 135, 0.42);
	border-radius: 3px;
	background: transparent;
}

.category-filter-pill span::after {
	position: absolute;
	left: 12px;
	top: 50%;
	width: 4px;
	height: 7px;
	content: "";
	border-right: 2px solid var(--blue);
	border-bottom: 2px solid var(--blue);
	opacity: 0;
	transform: translateY(-62%) rotate(45deg);
}

.category-filter-pill input:checked + span {
	border-color: rgba(0, 163, 170, 0.3);
	color: var(--blue-dark);
}

.category-filter-pill input:checked + span::before {
	border-color: var(--blue);
}

.category-filter-pill input:checked + span::after {
	opacity: 1;
}

.category-filter-pill input:focus-visible + span {
	box-shadow: 0 0 0 4px rgba(0, 163, 170, 0.12);
}

.category-filter-pill:active span {
	transform: translateY(1px);
}

.admin-logout-floating {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 12;
	min-height: 44px;
	box-shadow: 0 18px 48px -34px rgba(7, 24, 23, 0.72);
}

.field {
	display: grid;
	gap: 7px;
	color: var(--text);
	font-weight: 600;
}

.field span {
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--text);
	font-weight: 400;
	padding: 13px 14px;
	outline: none;
	transition: border-color 240ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 240ms cubic-bezier(0.16, 1, 0.3, 1), background 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.field textarea {
	resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
	border-color: rgba(0, 163, 170, 0.58);
	background: var(--white);
	box-shadow: 0 0 0 4px rgba(0, 163, 170, 0.12);
}

.post-list {
	display: grid;
	gap: 10px;
}

.post-list-item {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.74);
	padding: 10px;
	text-align: left;
	transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms cubic-bezier(0.16, 1, 0.3, 1), background 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.post-list-item:hover,
.post-list-item.is-active {
	border-color: rgba(0, 163, 170, 0.45);
	background: rgba(0, 163, 170, 0.08);
}

.post-list-item:active {
	transform: translateY(1px);
}

.post-list-item img {
	width: 72px;
	height: 56px;
	border-radius: 16px;
	object-fit: cover;
}

.post-list-item span {
	min-width: 0;
}

.post-list-item strong {
	display: block;
	overflow: hidden;
	color: var(--text);
	font-size: 14px;
	font-weight: 800;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.post-list-item small {
	display: block;
	overflow: hidden;
	margin-top: 4px;
	color: var(--muted);
	font-size: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.post-list-item em {
	border-radius: 999px;
	background: rgba(0, 163, 170, 0.12);
	color: var(--blue-dark);
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	padding: 5px 8px;
}

.editor-head {
	justify-content: space-between;
	margin-bottom: 18px;
}

.editor-head h2 {
	margin: 0;
	font-size: 30px;
	font-weight: 900;
	letter-spacing: 0;
}

.editor-head .eyebrow {
	margin-bottom: 6px;
}

.editor-panel form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 14px 18px;
	align-items: start;
}

.editor-panel .editor-head {
	display: contents;
}

.editor-panel .editor-head > div:first-child {
	grid-column: 1;
	grid-row: 1;
}

.editor-panel .editor-head .eyebrow {
	display: none;
}

.editor-panel .editor-head h2 {
	margin: 0 0 4px;
	font-size: 26px;
	line-height: 1.1;
}

.editor-panel .editor-actions {
	grid-column: 2;
	grid-row: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 26px 70px -54px rgba(7, 24, 23, 0.62);
}

.editor-panel .editor-actions::before {
	grid-column: 1 / -1;
	content: "Опублікувати";
	color: var(--text);
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
}

.editor-panel .editor-actions .primary-button {
	grid-column: 1 / -1;
	min-height: 46px;
}

.editor-panel .editor-actions .ghost-button,
.editor-panel .editor-actions .danger-button {
	min-height: 38px;
	padding: 0 12px;
}

.editor-panel .form-grid {
	display: contents;
}

.editor-panel .form-grid > .field:nth-child(1) {
	grid-column: 1;
	grid-row: 2;
}

.editor-panel .form-grid > .field:nth-child(1) span {
	display: none;
}

.editor-panel .form-grid > .field:nth-child(1) input {
	min-height: 54px;
	border-radius: 4px;
	background: var(--white);
	font-size: 24px;
	font-weight: 800;
}

.editor-panel .form-grid > .field:nth-child(2) {
	grid-column: 1;
	grid-row: 3;
}

.editor-panel .form-grid > .field:nth-child(4) {
	grid-column: 1;
	grid-row: 4;
}

.editor-panel .form-grid > .field:nth-child(3),
.editor-panel .form-grid > .field:nth-child(5),
.editor-panel .form-grid > .field:nth-child(6),
.editor-panel .form-grid > .field:nth-child(7),
.editor-panel .form-grid > .field:nth-child(8),
.editor-panel .form-grid > .field:nth-child(9),
.editor-panel .form-grid > .field:nth-child(10),
.editor-panel .switch-row {
	grid-column: 2;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.86);
	padding: 14px;
	box-shadow: 0 26px 70px -54px rgba(7, 24, 23, 0.62);
}

.editor-panel .form-grid > .field:nth-child(3) {
	grid-row: 3;
}

.editor-panel .form-grid > .field:nth-child(3) span {
	color: var(--text);
	font-size: 18px;
	font-weight: 900;
	text-transform: none;
}

.editor-panel .form-grid > .field:nth-child(8) {
	grid-row: 4;
}

.editor-panel .form-grid > .field:nth-child(9) {
	grid-row: 5;
}

.editor-panel .form-grid > .field:nth-child(10) {
	grid-row: 6;
}

.editor-panel .switch-row {
	grid-row: 7;
	margin: 0;
}

.editor-panel .form-grid > .field:nth-child(5) {
	grid-row: 8;
}

.editor-panel .form-grid > .field:nth-child(6) {
	grid-row: 9;
}

.editor-panel .form-grid > .field:nth-child(7) {
	grid-row: 10;
}

.editor-panel .editor-tabs {
	grid-column: 1;
	grid-row: 5;
	margin: 0;
}

.editor-panel .editor-grid {
	grid-column: 1;
	grid-row: 6 / span 5;
	display: block;
}

.editor-panel .preview-panel {
	display: none;
}

.primary-button,
.primary-small,
.ghost-button,
.danger-button {
	min-height: 42px;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 0 16px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), background 240ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms cubic-bezier(0.16, 1, 0.3, 1), color 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-button,
.primary-small {
	background: var(--blue);
	color: var(--white);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.primary-small {
	min-height: 38px;
}

.primary-button:hover,
.primary-small:hover {
	background: var(--blue-dark);
}

.ghost-button {
	border-color: var(--line);
	background: var(--white);
	color: var(--text);
}

.ghost-button:hover {
	border-color: rgba(0, 163, 170, 0.45);
	color: var(--blue-dark);
}

.danger-button {
	border-color: #f5c8c8;
	background: #fff6f6;
	color: #b12222;
}

.danger-button:hover {
	background: #ffecec;
}

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

.field-wide {
	grid-column: span 2;
}

.switch-row {
	flex-wrap: wrap;
	margin: 16px 0;
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: rgba(0, 163, 170, 0.07);
}

.switch-row label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--text);
	font-weight: 600;
}

.switch-row input {
	width: 18px;
	height: 18px;
	accent-color: var(--blue);
}

.editor-tabs {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--line);
	padding-bottom: 0;
}

.media-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	border: 1px solid rgba(0, 163, 170, 0.28);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.84);
	color: var(--blue-dark);
	font-size: 13px;
	font-weight: 700;
	padding: 0 12px;
	transition: border-color 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.media-button::before {
	width: 15px;
	height: 15px;
	content: "";
	background: currentColor;
	clip-path: polygon(8% 18%, 46% 18%, 52% 8%, 92% 8%, 92% 82%, 8% 82%);
}

.media-button:hover,
.media-button:focus-visible {
	border-color: rgba(0, 163, 170, 0.52);
	background: var(--white);
}

.media-button:active {
	transform: translateY(1px);
}

.editor-mode-tabs {
	display: inline-flex;
	align-items: flex-end;
	gap: 0;
	margin-left: auto;
}

.editor-mode-tabs span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	border: 1px solid var(--line);
	border-bottom: 0;
	border-radius: 12px 12px 0 0;
	background: var(--white);
	box-shadow: inset 0 3px 0 var(--blue);
	color: var(--text);
	font-size: 12px;
	font-weight: 700;
	padding: 0 12px;
	text-transform: uppercase;
}

.markdown-tools {
	flex-wrap: wrap;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.rich-toolbar {
	display: flex;
	align-items: center;
	gap: 6px;
	width: 100%;
}

.rich-toolbar select {
	min-height: 34px;
	max-width: 160px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	color: var(--text);
	font-size: 13px;
	font-weight: 500;
	padding: 0 28px 0 12px;
}

.rich-toolbar select[data-font-size] {
	width: 70px;
	padding-right: 16px;
}

.toolbar-color {
	width: 32px;
	min-width: 32px;
	height: 32px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--white);
	padding: 4px;
}

.markdown-tools button {
	min-height: 34px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	color: var(--text);
	font-size: 13px;
	font-weight: 500;
	padding: 0 12px;
}

.markdown-tools button:hover {
	border-color: rgba(0, 163, 170, 0.48);
	color: var(--blue-dark);
}

.file-picker {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-height: 38px;
	border: 1px solid rgba(0, 163, 170, 0.28);
	border-radius: 14px;
	background: var(--white);
	padding: 6px;
	cursor: pointer;
}

.file-picker input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.file-picker strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	border-radius: 10px;
	background: var(--blue);
	color: var(--white);
	font-size: 12px;
	font-weight: 900;
	padding: 0 12px;
	text-transform: uppercase;
}

.file-picker span {
	overflow: hidden;
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-transform: none;
}

.editor-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 420px;
	gap: 14px;
	align-items: start;
}

.content-field textarea {
	min-height: 520px;
	font-family: "Consolas", "JetBrains Mono", monospace;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
}

.content-field .content-source {
	display: none;
}

.visual-editor.rich-text {
	min-height: 520px;
	max-height: 68vh;
	margin-top: 0;
	overflow: auto;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: var(--white);
	padding: 20px 22px;
	outline: none;
	font-family: "Segoe UI", "Outfit", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.72;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
	transition: border-color 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-editor:focus {
	border-color: rgba(0, 163, 170, 0.7);
	box-shadow: 0 0 0 4px rgba(0, 163, 170, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.visual-editor:empty::before {
	content: attr(data-placeholder);
	color: var(--muted);
}

.visual-editor figure {
	cursor: default;
}

.visual-editor .content-video {
	position: relative;
	outline: 1px solid rgba(0, 163, 170, 0.22);
	outline-offset: 3px;
}

.visual-editor .content-video iframe {
	pointer-events: none;
}

.visual-editor .embedded-media-remove {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 999px;
	background: rgba(16, 31, 31, 0.82);
	box-shadow: 0 12px 24px -16px rgba(3, 22, 21, 0.86);
	color: var(--white);
	cursor: pointer;
	font: 700 12px/1 "Outfit", Arial, sans-serif;
	padding: 0 14px;
	transition: background 180ms cubic-bezier(0.16, 1, 0.3, 1), transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-editor .embedded-media-remove:hover,
.visual-editor .embedded-media-remove:focus-visible {
	background: #0f302e;
}

.visual-editor .embedded-media-remove:active {
	transform: translateY(1px);
}

.editor-panel .content-field span {
	display: none;
}

.preview-panel {
	position: sticky;
	top: 104px;
	border: 1px solid var(--line);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.86);
	padding: 16px;
	box-shadow: 0 26px 70px -54px rgba(7, 24, 23, 0.62);
}

.preview-cover {
	height: 190px;
	margin-bottom: 14px;
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(0, 163, 170, 0.18), rgba(255, 255, 255, 0.82));
	background-position: center;
	background-size: cover;
}

.preview-panel h3 {
	margin: 12px 0 8px;
	font-size: 26px;
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: 0;
}

.preview-panel p {
	color: var(--muted);
	line-height: 1.5;
}

.preview-panel .rich-text {
	max-height: 360px;
	overflow: auto;
	margin-top: 18px;
	border-top: 1px solid var(--line);
	padding-top: 14px;
	font-size: 15px;
	line-height: 1.62;
}

.admin-body .admin-shell {
	width: min(1560px, calc(100% - 28px));
	padding: 18px 0 34px;
}

.admin-body .admin-intro {
	display: grid;
	gap: 5px;
	margin: 0 0 12px;
}

.admin-body .admin-intro .eyebrow {
	margin-bottom: 0;
	font-size: 11px;
}

.admin-body .admin-intro h1 {
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1;
}

.admin-body .admin-intro p:not(.eyebrow) {
	max-width: 620px;
	margin: 3px 0 0;
	font-size: 15px;
	line-height: 1.34;
}

.admin-body .stats-grid {
	gap: 10px;
	margin-bottom: 12px;
}

.admin-body .stats-grid > div {
	gap: 4px;
	min-height: 88px;
	padding: 12px 16px;
	border-radius: 18px;
	box-shadow: 0 18px 46px -38px rgba(7, 24, 23, 0.52);
}

.admin-body .stats-grid span {
	font-size: 11px;
}

.admin-body .stats-grid strong {
	font-size: 30px;
}

.admin-body .admin-layout {
	grid-template-columns: 340px minmax(0, 1fr);
	gap: 12px;
}

.admin-body .admin-list-panel,
.admin-body .editor-panel {
	border-radius: 18px;
	padding: 12px;
	box-shadow: 0 20px 56px -44px rgba(7, 24, 23, 0.58);
}

.admin-body .admin-list-panel {
	top: 14px;
	gap: 10px;
	max-height: calc(100dvh - 28px);
}

.admin-body .admin-toolbar,
.admin-body .editor-head,
.admin-body .editor-actions,
.admin-body .switch-row,
.admin-body .markdown-tools {
	gap: 8px;
}

.admin-body .admin-toolbar .primary-small {
	min-height: 48px;
	padding: 0 22px;
	font-size: 13px;
}

.admin-body .status-filter-group {
	gap: 6px;
}

.admin-body .status-filter-pill,
.admin-body .status-filter-pill span {
	min-height: 26px;
}

.admin-body .status-filter-pill span {
	gap: 5px;
	font-size: 10px;
	padding: 0 8px;
}

.admin-body .status-filter-pill span::before {
	width: 10px;
	height: 10px;
	border-radius: 3px;
}

.admin-body .status-filter-pill span::after {
	left: 11px;
	width: 4px;
	height: 7px;
}

.admin-body .admin-category-filter {
	gap: 5px;
}

.admin-body .category-filter-group {
	gap: 5px;
}

.admin-body .category-filter-pill,
.admin-body .category-filter-pill span {
	min-height: 26px;
}

.admin-body .category-filter-pill span {
	gap: 5px;
	font-size: 10px;
	padding: 0 8px;
}

.admin-body .category-filter-pill span::before {
	width: 10px;
	height: 10px;
	border-radius: 3px;
}

.admin-body .category-filter-pill span::after {
	left: 11px;
	width: 4px;
	height: 7px;
}

.admin-body .field {
	gap: 4px;
}

.admin-body .field span {
	font-size: 11px;
}

.admin-body .field input,
.admin-body .field textarea,
.admin-body .field select {
	min-height: 36px;
	border-radius: 12px;
	padding: 8px 10px;
	font-size: 14px;
}

.admin-body .field textarea {
	line-height: 1.45;
}

.admin-body .post-list {
	gap: 7px;
}

.admin-body .post-list-item {
	grid-template-columns: 58px minmax(0, 1fr) auto;
	gap: 8px;
	border-radius: 15px;
	padding: 7px;
}

.admin-body .post-list-item img {
	width: 58px;
	height: 44px;
	border-radius: 11px;
}

.admin-body .post-list-item strong {
	font-size: 13px;
}

.admin-body .post-list-item small {
	margin-top: 2px;
	font-size: 11px;
}

.admin-body .post-list-item em {
	font-size: 11px;
	padding: 4px 7px;
}

.admin-body .editor-panel form {
	grid-template-columns: minmax(0, 1fr) 260px;
	gap: 10px 12px;
}

.admin-body .editor-panel .editor-head h2 {
	font-size: 22px;
}

.admin-body .editor-panel .editor-actions {
	gap: 8px;
	padding: 10px;
	border-radius: 16px;
	box-shadow: 0 16px 40px -34px rgba(7, 24, 23, 0.58);
}

.admin-body .editor-panel .editor-actions::before {
	font-size: 15px;
}

.admin-body .primary-button,
.admin-body .primary-small,
.admin-body .ghost-button,
.admin-body .danger-button {
	min-height: 34px;
	padding: 0 12px;
	font-size: 12px;
}

.admin-body .admin-logout-floating {
	right: 18px;
	bottom: 18px;
	min-height: 38px;
	padding: 0 14px;
	font-size: 12px;
}

.admin-body .editor-panel .editor-actions .primary-button {
	min-height: 38px;
}

.admin-body .editor-panel .editor-actions .ghost-button,
.admin-body .editor-panel .editor-actions .danger-button {
	min-height: 34px;
	padding: 0 10px;
}

.admin-body .editor-panel .form-grid > .field:nth-child(1) input {
	min-height: 46px;
	font-size: 21px;
}

.admin-body .editor-panel .form-grid > .field:nth-child(3),
.admin-body .editor-panel .form-grid > .field:nth-child(5),
.admin-body .editor-panel .form-grid > .field:nth-child(6),
.admin-body .editor-panel .form-grid > .field:nth-child(7),
.admin-body .editor-panel .form-grid > .field:nth-child(8),
.admin-body .editor-panel .form-grid > .field:nth-child(9),
.admin-body .editor-panel .form-grid > .field:nth-child(10),
.admin-body .editor-panel .switch-row {
	border-radius: 16px;
	padding: 10px;
	box-shadow: 0 16px 40px -34px rgba(7, 24, 23, 0.58);
}

.admin-body .editor-panel .form-grid > .field:nth-child(3) span {
	font-size: 15px;
}

.admin-body .switch-row label {
	gap: 6px;
	font-size: 13px;
}

.admin-body .switch-row input {
	width: 15px;
	height: 15px;
}

.admin-body .editor-tabs {
	gap: 8px;
}

.admin-body .media-button {
	min-height: 32px;
	border-radius: 10px;
	font-size: 12px;
	padding: 0 10px;
}

.admin-body .media-button::before {
	width: 13px;
	height: 13px;
}

.admin-body .markdown-tools button {
	min-height: 30px;
	padding: 0 10px;
	font-size: 12px;
}

.admin-body .rich-toolbar {
	gap: 5px;
}

.admin-body .rich-toolbar select {
	min-height: 30px;
	max-width: 138px;
	font-size: 12px;
	padding-left: 10px;
}

.admin-body .rich-toolbar select[data-font-size] {
	width: 62px;
}

.admin-body .toolbar-color {
	width: 30px;
	min-width: 30px;
	height: 30px;
}

.admin-body .file-picker {
	min-height: 34px;
	border-radius: 12px;
	padding: 5px;
}

.admin-body .file-picker strong {
	min-height: 28px;
	border-radius: 9px;
	font-size: 11px;
	padding: 0 10px;
}

.admin-body .file-picker span {
	font-size: 12px;
}

.admin-body .editor-mode-tabs span {
	min-height: 32px;
	border-radius: 10px 10px 0 0;
	font-size: 11px;
	padding: 0 10px;
}

.admin-body .content-field textarea {
	min-height: 430px;
	font-size: 13px;
	line-height: 1.5;
}

.admin-body .visual-editor.rich-text {
	min-height: 430px;
	font-size: 16px;
	line-height: 1.62;
	padding: 16px 18px;
}

.admin-body .editor-main,
.admin-body .editor-sidebar {
	display: grid;
	gap: 8px;
	align-content: start;
}

.admin-body .editor-main {
	min-width: 0;
}

.admin-body .editor-sidebar {
	position: sticky;
	top: 14px;
}

.admin-body .editor-main .editor-head,
.admin-body .editor-main .editor-tabs,
.admin-body .editor-main .editor-grid,
.admin-body .editor-sidebar .editor-actions,
.admin-body .editor-sidebar .switch-row {
	grid-column: auto;
	grid-row: auto;
	margin: 0;
}

.admin-body .editor-main .editor-head {
	display: flex;
}

.admin-body .editor-main .field-wide,
.admin-body .editor-sidebar .field-wide {
	grid-column: auto;
}

.admin-body .editor-main > .field:first-of-type span {
	display: none;
}

.admin-body .editor-main > .field:first-of-type input {
	min-height: 46px;
	border-radius: 6px;
	background: var(--white);
	font-size: 21px;
	font-weight: 800;
}

.admin-body .editor-main textarea[name="excerpt"] {
	min-height: 86px;
}

.admin-body .editor-sidebar .editor-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.admin-body .editor-sidebar .editor-actions::before,
.admin-body .editor-sidebar .editor-actions .primary-button {
	grid-column: 1 / -1;
}

.admin-body .editor-sidebar > .field,
.admin-body .editor-sidebar > .switch-row {
	border: 1px solid var(--line);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.86);
	padding: 10px;
	box-shadow: 0 16px 40px -34px rgba(7, 24, 23, 0.58);
}

.admin-body .editor-sidebar .switch-row {
	display: grid;
	gap: 8px;
}

.admin-body .empty-state,
.admin-body .skeleton-list {
	border-radius: 16px;
	padding: 12px;
	font-size: 13px;
}

.admin-body .skeleton-list span {
	height: 52px;
	border-radius: 10px;
}

.empty-state,
.skeleton-list {
	border: 1px dashed rgba(0, 163, 170, 0.34);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.62);
	color: var(--muted);
	padding: 18px;
	text-align: center;
}

.skeleton-list {
	display: grid;
	gap: 12px;
}

.skeleton-list span {
	height: 64px;
	border-radius: 12px;
	background: linear-gradient(90deg, #edf2f8, #f8fbff, #edf2f8);
	background-size: 220% 100%;
	animation: shimmer 1.3s infinite;
}

.toast {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 3;
	max-width: 360px;
	border: 1px solid rgba(0, 163, 170, 0.28);
	border-radius: 18px;
	background: var(--white);
	box-shadow: var(--shadow);
	color: var(--text);
	font-weight: 800;
	opacity: 0;
	padding: 14px 16px;
	transform: translateY(12px);
	transition: opacity 180ms ease, transform 180ms ease;
	pointer-events: none;
}

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

.toast[data-type="error"] {
	border-color: #f0b7b7;
	color: #a72020;
}

@keyframes shimmer {
	to {
		background-position: -220% 0;
	}
}

@media (max-width: 1180px) {
	.spotlight,
	.blog-layout,
	.article-body-grid,
	.admin-layout,
	.editor-grid {
		grid-template-columns: 1fr;
	}

	.sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-self: start;
	}

	.admin-list-panel,
	.article-sidebar,
	.sidebar-app-ad,
	.preview-panel {
		position: static;
		max-height: none;
		overflow: visible;
	}

	.article-sidebar {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
		align-items: start;
	}

	.article-sidebar > .app-ad-card,
	.article-sidebar > .article-banner-card {
		position: static;
		top: auto;
	}

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

	.admin-body .admin-list-panel {
		position: static;
		max-height: none;
	}

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

@media (max-width: 1080px) {
	.blog-topline {
		grid-template-columns: auto minmax(0, 1fr) auto;
	}

	.main-menu {
		display: none;
	}
}

@media (max-width: 920px) {
	.post-grid,
	.stats-grid,
	.article-popular-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.form-grid {
		grid-template-columns: 1fr 1fr;
	}

	.field-wide {
		grid-column: 1 / -1;
	}

	.load-more {
		grid-column: 1 / -1;
	}

	.editor-panel form {
		grid-template-columns: 1fr;
	}

	.editor-panel .editor-head {
		display: grid;
		grid-column: 1;
		grid-row: auto;
		gap: 12px;
		margin-bottom: 0;
	}

	.editor-panel .editor-head > div:first-child,
	.editor-panel .editor-actions,
	.editor-panel .editor-tabs,
	.editor-panel .editor-grid,
	.editor-panel .switch-row {
		grid-column: 1;
		grid-row: auto;
	}

	.editor-panel .editor-actions {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.editor-panel .editor-actions::before,
	.editor-panel .editor-actions .primary-button {
		grid-column: 1 / -1;
	}

	.editor-panel .form-grid {
		display: grid;
		grid-column: 1;
		grid-row: auto;
		grid-template-columns: 1fr;
	}

	.editor-panel .form-grid > .field:nth-child(n),
	.editor-panel .switch-row {
		grid-column: 1;
		grid-row: auto;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		padding: 0;
	}

	.admin-body .editor-panel form {
		grid-template-columns: 1fr;
	}

	.admin-body .editor-panel .editor-head {
		display: grid;
		grid-column: 1;
		grid-row: auto;
		gap: 10px;
		margin-bottom: 0;
	}

	.admin-body .editor-panel .editor-head > div:first-child,
	.admin-body .editor-panel .editor-actions,
	.admin-body .editor-panel .editor-tabs,
	.admin-body .editor-panel .editor-grid,
	.admin-body .editor-panel .switch-row {
		grid-column: 1;
		grid-row: auto;
	}

	.admin-body .editor-panel .editor-actions {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.admin-body .editor-panel .editor-actions::before,
	.admin-body .editor-panel .editor-actions .primary-button {
		grid-column: 1 / -1;
	}

	.admin-body .editor-panel .form-grid {
		display: grid;
		grid-column: 1;
		grid-row: auto;
		grid-template-columns: 1fr;
	}

	.admin-body .editor-panel .form-grid > .field:nth-child(n),
	.admin-body .editor-panel .switch-row {
		grid-column: 1;
		grid-row: auto;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		padding: 0;
	}
}

@media (max-width: 720px) {
	html,
	body {
		max-width: 100%;
		overflow-x: clip;
	}

	.blog-shell,
	.article-shell {
		width: auto;
		max-width: none;
		margin-right: 16px;
		margin-left: 16px;
		padding-top: 92px;
		overflow: clip;
	}

	.admin-shell {
		width: min(100% - 18px, 100%);
		padding-top: 92px;
	}

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

	.admin-header {
		top: 10px;
		width: calc(100% - 24px);
		min-height: 60px;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 10px;
		padding: 10px 10px 10px 18px;
	}

	.admin-header .nav-brand {
		min-width: 0;
	}

	.admin-header .nav-brand img {
		width: 142px;
		max-width: min(142px, calc(100vw - 150px));
	}

	.admin-header-copy {
		display: none;
	}

	.blog-topline {
		top: 10px;
		left: 8px;
		right: 8px;
		width: auto;
		transform: none;
		min-height: 60px;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 10px;
		padding: 10px clamp(6px, 2vw, 10px) 10px clamp(12px, 3vw, 16px);
		overflow: hidden;
	}

	.blog-topline .nav-brand {
		min-width: 0;
		overflow: hidden;
	}

	.blog-topline .nav-brand img {
		width: clamp(118px, 34vw, 136px);
		max-width: 100%;
	}

	.blog-topline .nav-actions {
		min-width: 0;
		justify-content: flex-end;
		overflow: hidden;
	}

	.article-breadcrumbs strong {
		max-width: min(132px, 30vw);
	}

	.breadcrumbs {
		gap: 6px;
		min-height: 31px;
		max-width: 100%;
		padding: 5px 8px;
		font-size: 9.5px;
		line-height: 1.08;
	}

	.breadcrumbs span {
		width: 5px;
		height: 5px;
		border-top-width: 1.5px;
		border-right-width: 1.5px;
	}

	.breadcrumbs a,
	.breadcrumbs strong {
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.blog-top-meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.blog-socials {
		width: 100%;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.blog-social-links {
		flex-wrap: wrap;
		gap: 8px;
	}

	.blog-social-links a {
		width: 38px;
		height: 38px;
		font-size: 21px;
	}

	.blog-topline .download-button {
		min-width: 0;
		min-height: 44px;
		max-width: clamp(96px, 31vw, 126px);
		padding: 0 clamp(10px, 2.2vw, 14px);
		overflow: hidden;
		font-size: clamp(9px, 2.45vw, 11px);
		white-space: nowrap;
	}

	.spotlight-photo {
		min-height: 260px;
		width: 100%;
	}

	.spotlight-copy {
		padding: 26px 22px;
		width: 100%;
	}

	.spotlight-copy h1,
	.article-content h1 {
		font-size: 30px;
	}

	.spotlight-copy p,
	.article-excerpt {
		font-size: 17px;
	}

	.story-meta-large {
		grid-template-columns: 40px 1fr;
	}

	.read-button {
		grid-column: 1 / -1;
		width: 100%;
		margin-top: 10px;
	}

	.post-grid,
	.sidebar,
	.stats-grid,
	.form-grid,
	.article-popular-grid,
	.footer-grid {
		width: 100%;
		grid-template-columns: 1fr;
	}

	.spotlight,
	.blog-layout,
	.blog-top-meta,
	.blog-socials,
	.article-page,
	.article-body-grid,
	.article-content,
	.article-popular,
	.article-popular-grid,
	.side-panel,
	.post-card {
		min-width: 0;
		max-width: 100%;
	}

	.site-footer {
		width: 100%;
		border-radius: 0;
	}

	.footer-grid {
		gap: 24px;
		width: calc(100% - 24px);
		padding: 30px 24px;
	}

	.footer-logo {
		width: 168px;
	}

	.popular-item {
		grid-template-columns: 92px 1fr;
	}

	.popular-item img {
		width: 92px;
	}

	.article-hero {
		height: 280px;
	}

	.article-body-grid {
		padding: 26px 18px 38px;
	}

	.article-content {
		padding: 0;
	}

	.rich-text h1[id],
	.rich-text h2[id],
	.rich-text h3[id],
	.rich-text h4[id] {
		scroll-margin-top: 92px;
	}

	.rich-text .article-toc {
		margin: 6px 0 24px;
	}

	.rich-text .article-toc ul {
		columns: 1;
		padding-left: 20px;
	}

	.rich-text .article-toc li {
		margin-bottom: 5px;
	}

	.rich-text .article-toc a {
		font-size: 14px;
	}

	.rich-text .content-media {
		width: 100%;
		margin: 18px 0;
	}

	.rich-text .content-media img {
		border-radius: 14px;
	}

	.rich-text .wash-card-grid {
		grid-template-columns: 1fr;
		gap: 10px;
		margin: 12px 0 24px;
	}

	.rich-text .wash-card {
		grid-template-columns: 104px minmax(0, 1fr);
		gap: 12px;
		min-height: 104px;
		padding: 9px;
		border-radius: 16px;
	}

	.rich-text .wash-card-media {
		border-radius: 12px;
	}

	.rich-text .wash-card-body strong {
		font-size: 16px;
		line-height: 1.13;
		-webkit-line-clamp: 2;
	}

	.rich-text .wash-card-body small {
		font-size: 12px;
		line-height: 1.18;
	}

	.rich-text .wash-card-body span {
		padding: 7px 10px;
		font-size: 11px;
	}

	.rich-text .content-media img[src*="/uploads/partner-integrations/"] {
		width: min(100%, 320px);
		max-height: none;
		border-radius: 24px;
	}

	.rich-text .content-phone-mockup {
		width: min(100%, 350px);
		margin: 24px auto 22px;
		padding: 19px 12px 16px;
		border-radius: 30px;
	}

	.rich-text .content-phone-mockup::before {
		top: 8px;
		width: 48px;
		height: 4px;
	}

	.rich-text .content-phone-mockup::after {
		top: 76px;
		height: 56px;
	}

	.rich-text .content-phone-mockup img,
	.rich-text .content-phone-mockup img[src*="/uploads/partner-integrations/"] {
		width: 100%;
		border-radius: 21px;
	}

	.article-sidebar {
		grid-template-columns: 1fr;
	}

	.app-ad-card {
		min-height: 0;
	}

	.editor-actions,
	.admin-toolbar {
		width: 100%;
		flex-wrap: wrap;
	}

	.editor-actions > *,
	.admin-toolbar > * {
		flex: 1 1 140px;
	}
}
