:root {
	--cc-blue: #0b63f6;
	--cc-blue-2: #0b78ff;
	--cc-dark: #071747;
	--cc-text: #34415f;
	--cc-muted: #63708f;
	--cc-border: #dfe7f3;
	--cc-soft: #f6f9ff;
	--cc-shadow: 0 18px 42px rgba(10, 24, 64, 0.08);
	--ps-container: 1240px;
	--ps-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--ps-font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--ps-font-nav: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}
body {
	margin: 0;
	background: #fff;
	color: var(--cc-text);
	font-family: var(--ps-font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: var(--cc-blue); }
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.skip-link:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: #fff;
	clip: auto;
}

.site-header {
	position: relative;
	z-index: 50;
	padding: 14px 18px 10px;
	background: #fff;
}
.has-sticky-header .site-header {
	position: sticky;
	top: 0;
}
.site-header__shell {
	position: relative;
	display: grid;
	grid-template-columns: minmax(190px, auto) 1fr auto;
	align-items: center;
	gap: 24px;
	width: min(100%, 1280px);
	max-width: 100%;
	min-height: 78px;
	margin: 0 auto;
	padding: 12px 18px;
	border: 1px solid var(--cc-border);
	border-radius: 14px;
	background: var(--cc-header-bg, #fff);
	box-shadow: 0 10px 24px rgba(17, 31, 68, 0.06);
}
.cc-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--cc-header-text, var(--cc-dark));
	text-decoration: none;
}
.cc-brand-mark {
	display: inline-grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 12px;
	background: linear-gradient(135deg, #0488ff, #084de8);
	color: #fff;
	font-size: 21px;
	font-weight: 900;
	letter-spacing: -0.03em;
	box-shadow: 0 10px 18px rgba(9, 101, 240, 0.18);
}
.cc-brand__image { max-width: 220px; max-height: 54px; width: auto; }
.cc-brand__title {
	color: var(--cc-header-text, var(--cc-dark));
	font-size: clamp(22px, 2vw, 28px);
	font-weight: 800;
	letter-spacing: 0;
	white-space: nowrap;
}
.cc-brand__title span { color: var(--cc-blue-2); }
.main-navigation {
	position: relative;
	display: flex;
	justify-content: center;
	min-width: 0;
	border-left: 1px solid var(--cc-border);
	border-right: 1px solid var(--cc-border);
	padding-inline: 28px;
}
.primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}
.primary-menu a {
	position: relative;
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	border-radius: 9px;
	color: var(--cc-header-text, var(--cc-dark));
	font-size: var(--cc-menu-size, 17px);
	font-weight: var(--cc-menu-weight, 700);
	letter-spacing: var(--cc-menu-spacing, 0);
	line-height: 1;
	padding: 0 12px;
	text-decoration: none;
}
.primary-menu .current-menu-item > a,
.primary-menu a:hover {
	color: var(--cc-blue);
	background: transparent;
	box-shadow: none;
}
.primary-menu a::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 4px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--cc-blue), var(--cc-blue-2));
	opacity: 0;
	transform: scaleX(0.35);
	transform-origin: center;
	transition: opacity 160ms ease, transform 160ms ease;
}
.primary-menu .current-menu-item > a::after,
.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
	opacity: 1;
	transform: scaleX(1);
}
.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	min-width: 220px;
	padding: 10px;
	margin: 0;
	list-style: none;
	border: 1px solid var(--cc-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: var(--cc-shadow);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
}
.primary-menu li { position: relative; }
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
.primary-menu .sub-menu a {
	min-height: 42px;
	width: 100%;
	font-size: 16px;
	padding: 0 12px;
}
.menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	border: 1px solid var(--cc-border);
	border-radius: 10px;
	background: #fff;
}
.menu-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px auto;
	border-radius: 99px;
	background: var(--cc-dark);
}
.cc-header-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--cc-header-button-bg, #0b78ff), #0759e6);
	color: var(--cc-header-button-text, #fff);
	font-size: var(--cc-button-size, 17px);
	font-weight: var(--cc-button-weight, 800);
	letter-spacing: var(--cc-button-spacing, 0);
	line-height: 1;
	padding: 0 20px;
	text-decoration: none;
	box-shadow: 0 10px 18px rgba(8, 94, 230, 0.18);
	white-space: nowrap;
}
.cc-header-button__icon {
	width: 13px;
	height: 22px;
	background: currentColor;
	clip-path: polygon(58% 0, 10% 54%, 46% 54%, 32% 100%, 92% 38%, 57% 38%);
}

.site-main { min-height: 48vh; }
.ps-container { width: min(calc(100% - 32px), var(--ps-container)); margin: 0 auto; }

.ps-blog-archive,
.ps-blog-post,
.ps-author-page {
	background: #fff;
	color: var(--cc-dark);
	font-family: var(--ps-font-body);
}
.ps-blog-archive {
	padding-bottom: 72px;
}
.ps-blog-archive__inner {
	width: min(calc(100% - 32px), var(--ps-container));
	margin: 0 auto;
}
.ps-blog-archive-hero {
	position: relative;
	overflow: hidden;
	padding: 46px 0 48px;
	border-bottom: 1px solid #edf1fb;
	background: radial-gradient(circle at 83% 20%, rgba(11, 99, 246, 0.1), transparent 23%), linear-gradient(135deg, #f7f9ff 0%, #fff 54%, #f2f6ff 100%);
}
.ps-blog-archive-breadcrumb,
.ps-blog-breadcrumb,
.ps-author-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0 0 22px;
	color: #8b98b9;
	font-size: 14px;
	font-weight: 700;
}
.ps-blog-archive-breadcrumb a,
.ps-blog-breadcrumb a,
.ps-author-breadcrumb a,
.ps-author-breadcrumb b {
	color: var(--cc-blue);
	text-decoration: none;
}
.ps-blog-archive-breadcrumb span,
.ps-blog-breadcrumb span,
.ps-author-breadcrumb span {
	width: 7px;
	height: 7px;
	border-top: 2px solid #8b98b9;
	border-right: 2px solid #8b98b9;
	transform: rotate(45deg);
}
.ps-blog-archive-hero h1 {
	max-width: 720px;
	margin: 0;
	color: var(--cc-dark);
	font-size: clamp(2.35rem, 6vw, 3.25rem);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.05;
}
.ps-blog-archive-hero p {
	max-width: 640px;
	margin: 24px 0 28px;
	color: #425071;
	font-size: 18px;
	line-height: 1.7;
}
.ps-blog-search {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr) 118px;
	width: min(100%, 880px);
	max-width: 100%;
	height: 58px;
	border: 1px solid #dbe4f3;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(22, 34, 82, 0.08);
}
.ps-blog-search__icon { position: relative; display: grid; place-items: center; }
.ps-blog-search__icon::before {
	content: "";
	width: 16px;
	height: 16px;
	border: 2px solid #8794b4;
	border-radius: 50%;
}
.ps-blog-search__icon::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 2px;
	margin: 16px 0 0 16px;
	border-radius: 99px;
	background: #8794b4;
	transform: rotate(45deg);
}
.ps-blog-search input {
	width: 100%;
	min-width: 0;
	min-height: 56px;
	border: 0;
	background: transparent;
	color: #111b3f;
	font: 600 15px/1 var(--ps-font-body);
	outline: 0;
}
.ps-blog-search button {
	border: 0;
	border-radius: 0 4px 4px 0;
	background: linear-gradient(135deg, #0b78ff, #084de8);
	color: #fff;
	cursor: pointer;
	font: 800 16px/1 var(--ps-font-nav);
}
.ps-blog-category-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 38px 0 20px;
}
.ps-blog-category-filter a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 48px;
	border: 1px solid #dce4f2;
	border-radius: 10px;
	background: linear-gradient(180deg, #fff, #fbfcff);
	color: #0d1a42;
	font-size: 14px;
	font-weight: 700;
	padding: 0 18px;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(18, 31, 74, 0.05);
}
.ps-blog-category-filter a.is-active,
.ps-blog-category-filter a:hover {
	border-color: #0b63f6;
	background: linear-gradient(135deg, #0b78ff, #084de8);
	color: #fff;
}
.ps-cat-icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	color: currentColor;
	flex: 0 0 auto;
}
.ps-cat-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.25;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.ps-blog-section-head {
	display: flex;
	justify-content: flex-end;
	margin: 0 0 18px;
}
.ps-blog-card-grid,
.ps-related-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}
.ps-related-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ps-blog-list-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	border: 1px solid #dce4f2;
	border-radius: 16px;
	background: #fff;
	box-shadow: var(--cc-shadow);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.ps-blog-list-card:hover {
	border-color: #c9d6ff;
	box-shadow: 0 24px 54px rgba(10, 24, 64, 0.12);
	transform: translateY(-3px);
}
.ps-blog-card-art {
	display: grid;
	place-items: center;
	aspect-ratio: 1.72 / 1;
	overflow: hidden;
	background: linear-gradient(135deg, #eaf3ff, #f7faff);
	color: var(--cc-blue);
	text-decoration: none;
}
.ps-blog-card-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ps-blog-card-art .ps-cat-icon {
	width: 72px;
	height: 72px;
	color: var(--cc-blue);
}
.ps-blog-list-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px 22px 22px;
}
.ps-blog-list-card__cat {
	align-self: flex-start;
	border: 1px solid #cfe0ff;
	border-radius: 999px;
	background: #eef5ff;
	color: var(--cc-blue);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1;
	padding: 7px 10px;
	text-decoration: none;
	text-transform: uppercase;
}
.ps-blog-list-card h3 {
	margin: 13px 0 12px;
	color: var(--cc-dark);
	font-size: 21px;
	font-weight: 700;
	line-height: 1.18;
}
.ps-blog-list-card h3 a { color: inherit; text-decoration: none; }
.ps-blog-list-card p {
	margin: 0 0 24px;
	color: #4f5b80;
	font-size: 15px;
	line-height: 1.65;
}
.ps-blog-card-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 11px;
	margin-top: auto;
	color: #4f5b80;
	font-size: 14px;
	font-weight: 700;
}
.ps-blog-card-meta img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
}
.navigation.pagination { margin: 34px 0 0; }
.nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	border: 1px solid #dce4f2;
	border-radius: 8px;
	background: #fff;
	color: #27314f;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(18, 31, 74, 0.04);
}
.page-numbers.current {
	border-color: #0b63f6;
	background: linear-gradient(135deg, #0b78ff, #084de8);
	color: #fff;
}
.ps-blog-empty,
.no-results {
	border: 1px solid #dce4f2;
	border-radius: 12px;
	background: #fff;
	padding: 28px;
	box-shadow: var(--cc-shadow);
}

.single .site-main { padding: 0; background: #fff; }
.singular-container,
.page-container {
	width: 100%;
	margin: 0;
	background: transparent;
}
.ps-blog-post {
	width: min(calc(100% - 40px), 1180px);
	margin: 0 auto;
	color: #222a4a;
}
.ps-blog-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
	gap: 42px;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 28px 0 42px;
	border: 0;
	background: #fff;
}
.ps-blog-hero__media {
	min-height: 380px;
	overflow: hidden;
	border: 0;
	border-radius: 9px;
	background: linear-gradient(135deg, #0b4bd8, #173ec2);
	box-shadow: none;
}
.ps-blog-hero__media img {
	width: 100%;
	height: 100%;
	min-height: 380px;
	object-fit: cover;
	display: block;
}
.ps-blog-hero__placeholder {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 380px;
	align-items: center;
	justify-content: center;
	place-items: center;
	color: #fff;
	font-size: 32px;
	font-weight: 800;
}
.ps-blog-hero__content {
	max-width: 760px;
	padding: 0;
}
.ps-blog-meta,
.ps-blog-dates {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0 0 22px;
}
.ps-blog-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #dbe4ff;
	border-radius: 999px;
	background: #fff;
	color: #0759e6;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	padding: 8px 12px;
	text-decoration: none;
}
.ps-blog-meta__item > span {
	position: relative;
	width: 18px;
	height: 18px;
	border: 1.6px solid currentColor;
	border-radius: 5px;
	flex: 0 0 auto;
}
.ps-blog-meta__item--category > span::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	width: 8px;
	height: 1.6px;
	border: 0;
	border-radius: 99px;
	background: currentColor;
	box-shadow: 0 4px 0 currentColor;
}
.ps-blog-meta__item--category > span::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 12px;
	width: 5px;
	height: 1.6px;
	background: currentColor;
}
.ps-blog-meta__item--read > span {
	border-radius: 50%;
}
.ps-blog-meta__item--read > span::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 4px;
	width: 1.8px;
	height: 5px;
	background: currentColor;
}
.ps-blog-meta__item--read > span::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 8px;
	width: 5px;
	height: 1.8px;
	background: currentColor;
	transform: rotate(22deg);
	transform-origin: left center;
}
.ps-blog-title {
	max-width: 660px;
	margin: 0 0 26px;
	color: var(--cc-dark);
	font-size: clamp(30px, 3.2vw, 40px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.16;
}
.ps-blog-author-mini {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 0 0 28px;
}
.ps-blog-author-mini img {
	border: 3px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #0759e6;
}
.ps-blog-author-mini a { color: var(--cc-dark); text-decoration: none; }
.ps-blog-author-mini strong {
	display: block;
	color: #071747;
	font-size: 16px;
	line-height: 1.2;
}
.ps-blog-author-mini span {
	display: block;
	color: var(--cc-muted);
	font-size: 14px;
	font-weight: 700;
}
.ps-blog-dates {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 38px;
}
.ps-blog-date {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	height: 64px;
	border: 1px solid #dbe4ff;
	border-radius: 7px;
	background: #fff;
	color: #263653;
	font-size: 13px;
	font-weight: 400;
	padding: 11px 16px;
}
.ps-blog-date > span {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #eef3ff;
	color: #0759e6;
	flex: 0 0 auto;
}
.ps-blog-date > span::before {
	content: "";
	width: 16px;
	height: 16px;
	border: 1.6px solid currentColor;
	border-radius: 50%;
}
.ps-blog-date > span::after {
	content: "";
	position: absolute;
	left: 17px;
	top: 11px;
	width: 5px;
	height: 7px;
	border-left: 1.6px solid currentColor;
	border-bottom: 1.6px solid currentColor;
	background: transparent;
}
.ps-blog-share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 0;
	color: #53627f;
	font-size: 16px;
	font-weight: 700;
}
.ps-blog-share a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 1px solid #dbe4ff;
	border-radius: 50%;
	background: #fff;
	color: var(--cc-blue);
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 12px 26px rgba(35, 59, 125, 0.08);
}
.ps-blog-shell {
	display: grid;
	grid-template-columns: 330px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	justify-content: center;
	width: 100%;
	margin: 26px 0 0;
	border: 1px solid #dbe4ff;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 14px 44px rgba(35, 59, 125, 0.08);
	padding: 28px 34px 42px 18px;
}
.ps-blog-sidebar {
	position: sticky;
	top: 180px;
	display: grid;
	gap: 18px;
}
.ps-toc,
.ps-blog-promo,
.ps-author-box,
.ps-related-posts,
.comments-area {
	border: 1px solid #dce4f2;
	border-radius: 12px;
	background: #fff;
	box-shadow: var(--cc-shadow);
}
.ps-toc,
.ps-blog-promo { padding: 22px; }
.ps-toc h2,
.ps-blog-promo h2 {
	margin: 0 0 14px;
	color: var(--cc-dark);
	font-size: 18px;
}
.ps-toc ol { margin: 0; padding-left: 20px; }
.ps-toc li + li { margin-top: 8px; }
.ps-toc a { color: #33415f; font-weight: 700; text-decoration: none; }
.ps-blog-promo {
	background: linear-gradient(135deg, #0b78ff, #084de8);
	color: #fff;
}
.ps-blog-promo h2,
.ps-blog-promo p { color: #fff; }
.ps-blog-promo a {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	color: #0b63f6;
	background: #fff;
	border-radius: 8px;
	padding: 10px 14px;
	font-weight: 800;
	text-decoration: none;
}
.ps-blog-content {
	color: #263653;
	font-size: 18px;
	line-height: 1.78;
}
.ps-blog-content > * { margin-top: 0; margin-bottom: 24px; }
.ps-blog-content h2,
.ps-blog-content h3,
.ps-blog-content h4 {
	color: var(--cc-dark);
	font-weight: 800;
	line-height: 1.22;
	margin-top: 40px;
}
.ps-blog-content h2 { font-size: 32px; }
.ps-blog-content h3 { font-size: 25px; }
.ps-blog-content a { color: var(--cc-blue); font-weight: 700; }
.ps-blog-content blockquote {
	margin: 32px 0;
	border-left: 4px solid var(--cc-blue);
	border-radius: 0 8px 8px 0;
	background: #f6f9ff;
	padding: 20px 24px;
	color: #182544;
}
.ps-blog-content table {
	width: 100%;
	border-collapse: collapse;
	display: block;
	overflow-x: auto;
}
.ps-blog-content th,
.ps-blog-content td {
	border: 1px solid #dce4f2;
	padding: 12px;
	text-align: left;
}
.ps-blog-content pre,
.ps-blog-content code {
	border-radius: 8px;
	background: #071747;
	color: #f8fbff;
}
.ps-blog-content pre {
	overflow-x: auto;
	padding: 18px;
}
.wp-block-image img,
.wp-block-gallery img,
.wp-block-embed iframe { border-radius: 10px; }
.wp-block-button__link {
	border-radius: 8px;
	background: var(--cc-blue-2);
	color: #fff;
	font-weight: 800;
}
.alignwide { max-width: 980px; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.ps-blog-after {
	width: min(calc(100% - 32px), 980px);
	margin: 54px auto 72px;
	display: grid;
	gap: 26px;
}
.ps-author-box { padding: 26px; }
.ps-author-box__label {
	color: var(--cc-blue);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.ps-author-box__content {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 22px;
	align-items: center;
}
.ps-author-box img { border-radius: 50%; }
.ps-author-box h2 { margin: 0 0 4px; }
.ps-author-box h2 a { color: var(--cc-dark); text-decoration: none; }
.ps-author-box strong { color: var(--cc-blue); }
.ps-related-posts { padding: 26px; }
.ps-related-posts {
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	padding: 0;
}
.ps-related-posts h2 { margin: 0 0 6px; color: var(--cc-dark); }
.ps-related-posts > p { margin: 0 0 22px; color: var(--cc-muted); }
.ps-related-grid .ps-blog-card-meta img,
.ps-related-grid .ps-blog-card-meta small:first-of-type {
	display: none;
}
.ps-related-grid .ps-blog-card-meta small::before {
	display: none;
}
.post-navigation .nav-links {
	justify-content: space-between;
}

.page-entry {
	width: min(calc(100% - 32px), 980px);
	margin: 48px auto;
}
.page-entry__header .page-title {
	color: var(--cc-dark);
	font-size: clamp(34px, 5vw, 52px);
	line-height: 1.1;
	margin: 0 0 28px;
}
.page-entry__content {
	color: #263653;
	font-size: 18px;
	line-height: 1.75;
}
.cc-front-page .page-entry {
	width: min(calc(100% - 32px), 1280px);
	margin: 0 auto;
}
.cc-front-page .page-entry__content > * {
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}
.cc-front-page .page-entry__content > .alignwide {
	max-width: 1280px;
}
.cc-front-page .page-entry__content > .alignfull {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}
.cc-shortcode-shell {
	width: min(calc(100% - 32px), 1100px);
	margin: 54px auto;
}

.ps-author-page {
	background: #fff;
	padding: 34px 0 72px;
}
.ps-author-page__inner {
	width: min(calc(100% - 32px), 1240px);
	margin: 0 auto;
}
.ps-author-hero {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr) 280px;
	gap: 34px;
	align-items: start;
}
.ps-author-hero__avatar img {
	width: 240px;
	height: 240px;
	border: 8px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 1px #dbe4ff, 0 18px 36px rgba(35, 59, 125, 0.14);
	object-fit: cover;
}
.ps-author-hero__bio h1 {
	color: var(--cc-dark);
	font-size: clamp(30px, 3.5vw, 40px);
	line-height: 1.1;
	margin: 14px 0 4px;
}
.ps-author-hero__bio > strong {
	display: block;
	color: var(--cc-blue);
	font-size: 21px;
	margin-bottom: 16px;
}
.ps-author-hero__bio p {
	max-width: 640px;
	color: #33405f;
	font-size: 17px;
	line-height: 1.65;
	margin: 0 0 18px;
}
.ps-author-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.ps-author-chips span {
	border: 1px solid #dbe4ff;
	border-radius: 999px;
	background: #f8faff;
	color: var(--cc-blue);
	font-size: 14px;
	font-weight: 800;
	padding: 8px 14px;
}
.ps-author-quote {
	min-height: 270px;
	border: 1px solid #dbe4ff;
	border-radius: 8px;
	background: linear-gradient(180deg, #fff, #fbfcff);
	box-shadow: var(--cc-shadow);
	color: #111735;
	padding: 34px 34px 28px;
}
.ps-author-quote > span {
	display: block;
	color: var(--cc-blue);
	font-family: Georgia, serif;
	font-size: 58px;
	line-height: 0.75;
}
.ps-author-quote p { color: #1c2747; font-size: 17px; font-weight: 600; line-height: 1.55; }
.ps-author-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 34px 0 48px;
}
.ps-author-stat {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	column-gap: 16px;
	align-items: center;
	border: 1px solid #dbe4ff;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(35, 59, 125, 0.06);
	padding: 22px 26px;
}
.ps-author-stat > span {
	position: relative;
	grid-row: span 2;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #ede7ff;
}
.ps-author-stat > span::before,
.ps-author-stat > span::after {
	content: "";
	position: absolute;
	box-sizing: border-box;
	color: #0b63f6;
}
.ps-author-stat--1 > span::before {
	top: 13px;
	left: 17px;
	width: 18px;
	height: 25px;
	border: 2.6px solid currentColor;
	border-radius: 4px;
	background: transparent;
}
.ps-author-stat--1 > span::after {
	top: 19px;
	left: 23px;
	width: 8px;
	height: 2px;
	border-radius: 99px;
	background: currentColor;
	box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}
.ps-author-stat--2 > span {
	background: #e7efff;
}
.ps-author-stat--2 > span::before {
	top: 17px;
	left: 11px;
	width: 30px;
	height: 21px;
	border: 2.6px solid #1261df;
	border-radius: 4px;
	background: transparent;
}
.ps-author-stat--2 > span::after {
	top: 12px;
	left: 15px;
	width: 14px;
	height: 8px;
	border: 2.6px solid #1261df;
	border-bottom: 0;
	border-radius: 5px 5px 0 0;
	background: transparent;
}
.ps-author-stat--3 > span {
	background: #e8f8e9;
}
.ps-author-stat--3 > span::before {
	top: 14px;
	left: 13px;
	width: 25px;
	height: 25px;
	border: 2.8px solid #22a447;
	border-right-color: transparent;
	border-radius: 50%;
	transform: rotate(-20deg);
	background: transparent;
}
.ps-author-stat--3 > span::after {
	top: 12px;
	right: 11px;
	width: 10px;
	height: 10px;
	border-top: 2.8px solid #22a447;
	border-right: 2.8px solid #22a447;
	transform: rotate(25deg);
	background: transparent;
}
.ps-author-stat strong { color: var(--cc-dark); font-size: 30px; line-height: 1; }
.ps-author-stat small { color: #31405f; font-size: 14px; font-weight: 700; }
.ps-author-section-title h2 {
	color: var(--cc-dark);
	font-size: 28px;
	line-height: 1.2;
	margin: 0 0 22px;
}
.ps-author-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}
.ps-author-post-grid .ps-blog-card-grid { display: contents; }

.site-footer {
	width: 100%;
	margin: 44px 0 0;
	border: 0;
	border-radius: 0;
	border-top: 1px solid #e6edf7;
	background: linear-gradient(180deg, #fbfdff 0%, var(--cc-footer-bg, #fff) 100%);
	color: var(--cc-footer-text, #53627f);
	box-shadow: none;
	overflow: hidden;
}
.cc-footer-menu a span {
	width: 9px;
	height: 9px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}
.site-footer__inner {
	width: min(calc(100% - 32px), 1280px);
	max-width: calc(100vw - 32px);
	margin: 0 auto;
	padding: 34px 0 20px;
}
.cc-footer-main {
	display: grid;
	grid-template-columns: minmax(250px, 0.85fr) 2.5fr;
	gap: 34px;
	align-items: start;
}
.cc-footer-brand p {
	max-width: 310px;
	margin: 16px 0 18px;
	color: var(--cc-footer-text, #53627f);
	font-size: 15px;
	line-height: 1.55;
}
.cc-footer-brand .cc-brand { gap: 12px; }
.cc-footer-brand .cc-brand__title { font-size: 24px; }
.cc-footer-brand .cc-brand-mark {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	font-size: 16px;
}
.cc-footer-socials {
	display: flex;
	gap: 10px;
}
.cc-footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid #dce4f2;
	border-radius: 50%;
	color: var(--cc-footer-link, var(--cc-blue));
	font-weight: 800;
	text-decoration: none;
}
.cc-footer-columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}
.cc-footer-column {
	border-left: 1px solid #e5ebf5;
	padding-left: 24px;
}
.cc-footer-column summary {
	display: block;
	margin-bottom: 14px;
	color: var(--cc-footer-link, var(--cc-blue));
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}
.cc-footer-menu {
	display: grid;
	gap: 11px;
	padding: 0;
	margin: 0;
	list-style: none;
}
.cc-footer-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	color: var(--cc-dark);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}
.cc-footer-menu a span { color: #8ca0bf; }
.cc-footer-trust {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 26px;
	padding-top: 18px;
	border-top: 1px solid #dce4f2;
}
.cc-footer-trust div {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	column-gap: 12px;
	align-items: center;
	min-height: 74px;
	padding: 13px 14px;
	border: 1px solid #e4ebf6;
	border-radius: 10px;
	background: #fff;
}
.cc-footer-trust span {
	grid-row: span 2;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #eef5ff;
	color: var(--cc-blue);
	display: inline-grid;
	place-items: center;
}
.cc-footer-trust__svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.cc-footer-trust strong { color: var(--cc-dark); font-size: 14px; line-height: 1.2; }
.cc-footer-trust small { color: var(--cc-footer-text, #53627f); font-size: 12px; line-height: 1.35; }
.cc-footer-bottom {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #e6edf7;
	color: var(--cc-footer-text, #53627f);
	font-size: 13px;
	text-align: center;
}
.cc-footer-bottom p {
	margin: 0;
	text-align: center;
}

.comments-area {
	width: min(calc(100% - 32px), 980px);
	margin: 36px auto;
	padding: 24px;
}
.comment-list { padding-left: 24px; }
.comment-form textarea,
.comment-form input:not([type="submit"]) {
	width: 100%;
	border: 1px solid var(--cc-border);
	border-radius: 8px;
	padding: 12px;
}
.form-submit .submit {
	border: 0;
	border-radius: 8px;
	background: var(--cc-blue-2);
	color: #fff;
	cursor: pointer;
	font-weight: 800;
	padding: 12px 18px;
}
.cc-error-page {
	padding: 72px 16px;
}
.cc-error-card {
	width: min(100%, 760px);
	margin: 0 auto;
	border: 1px solid var(--cc-border);
	border-radius: 14px;
	padding: 34px;
	box-shadow: var(--cc-shadow);
}

@media (max-width: 1280px) {
	.site-header__shell {
		grid-template-columns: auto 1fr auto;
		min-height: 72px;
		padding: 10px 16px;
	}
	.cc-brand-mark { width: 50px; height: 50px; font-size: 19px; }
	.cc-brand__title { font-size: 25px; }
	.primary-menu { gap: 8px; }
	.primary-menu a { min-height: 40px; padding: 0 10px; }
	.cc-header-button { min-height: 48px; padding: 0 18px; }
	.ps-blog-card-grid,
	.ps-related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
	.site-header { padding-top: 12px; }
	.site-header__shell {
		grid-template-columns: 1fr auto auto;
		gap: 12px;
		border-radius: 12px;
	}
	.cc-brand { gap: 12px; }
	.cc-brand-mark { width: 46px; height: 46px; border-radius: 10px; font-size: 18px; }
	.cc-brand__title { font-size: 22px; white-space: normal; }
	.main-navigation {
		order: 3;
		position: static;
		border: 0;
		padding: 0;
	}
	.menu-toggle { display: block; }
	.primary-menu {
		position: absolute;
		top: calc(100% + 8px);
		right: 12px;
		left: 12px;
		display: grid;
		width: auto;
		gap: 4px;
		border: 1px solid var(--cc-border);
		border-radius: 12px;
		background: #fff;
		box-shadow: var(--cc-shadow);
		padding: 10px;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-6px);
		transition: opacity 180ms ease, transform 180ms ease;
		z-index: 20;
	}
	.main-navigation.is-open .primary-menu {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}
	.primary-menu a {
		width: 100%;
		min-height: 46px;
	}
	.primary-menu .sub-menu {
		position: static;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		box-shadow: none;
		margin-left: 12px;
	}
	.cc-header-button {
		min-height: 44px;
		font-size: 0;
		padding: 0 12px;
	}
	.cc-header-button__icon { width: 13px; height: 22px; }
	.ps-blog-card-grid,
	.ps-related-grid,
	.ps-author-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ps-blog-hero,
	.ps-blog-shell,
	.ps-author-hero,
	.cc-footer-main,
	.cc-footer-columns,
	.cc-footer-trust {
		grid-template-columns: 1fr;
	}
	.ps-blog-post {
		width: min(calc(100% - 24px), 1180px);
	}
	.ps-blog-hero {
		gap: 24px;
		padding: 22px 0 28px;
	}
	.ps-blog-hero__media,
	.ps-blog-hero__media img,
	.ps-blog-hero__placeholder {
		min-height: 260px;
	}
	.ps-blog-shell {
		padding: 22px 18px 30px;
	}
	.ps-blog-dates {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		margin-bottom: 26px;
	}
	.ps-blog-date {
		height: 58px;
		gap: 8px;
		font-size: 12px;
		font-weight: 400;
		padding: 9px 10px;
	}
	.ps-blog-date > span {
		width: 28px;
		height: 28px;
	}
	.ps-blog-date > span::before {
		width: 14px;
		height: 14px;
	}
	.ps-blog-date > span::after {
		left: 14px;
		top: 9px;
		width: 5px;
		height: 6px;
	}
	.ps-blog-sidebar { position: static; }
	.cc-footer-main {
		gap: 24px;
	}
	.cc-footer-column {
		border-left: 0;
		border-top: 1px solid #e5ebf5;
		padding: 16px 0 0;
	}
	.cc-footer-trust div { border: 1px solid #e4ebf6; }
}

@media (max-width: 640px) {
	.site-header__shell {
		grid-template-columns: 1fr auto;
		padding: 14px;
	}
	.cc-header-button { display: none; }
	.cc-brand__title { font-size: 20px; }
	.ps-blog-search {
		grid-template-columns: 42px minmax(0, 1fr);
		width: 100%;
		height: auto;
		overflow: hidden;
	}
	.ps-blog-search input {
		min-height: 50px;
		font-size: 14px;
	}
	.ps-blog-search button {
		grid-column: 1 / -1;
		min-height: 44px;
		border-radius: 0 0 4px 4px;
		font-size: 14px;
	}
	.ps-blog-card-grid,
	.ps-related-grid,
	.ps-author-post-grid,
	.ps-author-stats,
	.ps-author-box__content { grid-template-columns: 1fr; }
	.ps-blog-archive-hero { padding: 34px 0; }
	.ps-blog-title {
		font-size: 30px;
		font-weight: 700;
	}
	.ps-blog-share a {
		width: 44px;
		height: 44px;
	}
	.ps-blog-content { font-size: 17px; }
	.ps-blog-hero__media,
	.ps-blog-hero__media img,
	.ps-blog-hero__placeholder {
		min-height: 220px;
	}
	.ps-blog-hero__media img {
		height: auto;
		object-fit: contain;
	}
	.ps-author-hero__avatar img {
		width: 140px;
		height: 140px;
		border-width: 6px;
	}
	.ps-blog-shell {
		border-radius: 10px;
		padding: 18px 14px 24px;
	}
	.site-footer { width: 100%; }
	.site-footer__inner { padding: 24px 0; }
	.cc-footer-brand { text-align: center; }
	.cc-footer-brand .cc-brand { justify-content: center; }
	.cc-footer-brand p { margin-inline: auto; }
	.cc-footer-socials { justify-content: center; }
	.cc-footer-column {
		border-left: 0;
		border-top: 1px solid #e5ebf5;
		padding: 16px 0 0;
	}
	.cc-footer-column:not([open]) .cc-footer-menu { display: none; }
	.cc-footer-trust div {
		grid-template-columns: 42px 1fr;
		padding: 14px;
	}
	.cc-footer-trust span { width: 42px; height: 42px; }
	.cc-footer-bottom p { text-align: center; }
}
