:root {
	--color-primary: #16213d;
	--color-secondary: #3663f5;
	--color-accent: #ef6b57;
	--color-surface: #ffffff;
	--color-surface-soft: #f4f7fb;
	--color-border: #dde5f0;
	--color-text: #1b2430;
	--color-text-soft: #64748b;
	--shadow-sm: 0 12px 24px rgba(15, 23, 42, 0.06);
	--shadow-md: 0 18px 40px rgba(15, 23, 42, 0.08);
	--radius-md: 16px;
	--radius-lg: 24px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 35%);
	color: var(--color-text);
	line-height: 1.75;
}

a {
	color: var(--color-secondary);
	text-decoration: none;
}

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

.container {
	width: min(1200px, calc(100% - 2rem));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(22, 33, 61, 0.08);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
}

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

.site-logo img,
.custom-logo {
	max-height: 84px;
	width: auto;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	justify-self: end;
}

.site-title {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 700;
}

.site-title a {
	color: var(--color-primary);
}

.site-description {
	margin: 0.15rem 0 0;
	color: var(--color-text-soft);
	font-size: 0.9rem;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 0.5rem;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.menu-toggle span {
	width: 24px;
	height: 2px;
	background: var(--color-primary);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-navigation ul {
	display: flex;
	justify-content: center;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation a {
	color: var(--color-primary);
	font-size: 0.95rem;
	font-weight: 600;
}

.main-navigation {
	justify-self: center;
}

.search-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(22, 33, 61, 0.12);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.82);
	color: var(--color-primary);
	cursor: pointer;
	transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.search-toggle:hover {
	transform: translateY(-1px);
	border-color: rgba(54, 99, 245, 0.4);
	color: var(--color-secondary);
}

.search-toggle svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-header.search-opened .search-toggle {
	border-color: rgba(54, 99, 245, 0.4);
	color: var(--color-secondary);
}

.site-header.menu-opened .menu-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-header.menu-opened .menu-toggle span:nth-child(2) {
	opacity: 0;
}

.site-header.menu-opened .menu-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

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

.search-modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	z-index: 1300;
}

.search-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.search-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(9, 15, 28, 0.58);
	backdrop-filter: blur(8px);
}

.search-modal__dialog {
	position: relative;
	width: min(760px, 100%);
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 30px 90px rgba(15, 23, 42, 0.18);
}

.search-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(22, 33, 61, 0.06);
	cursor: pointer;
}

.search-modal__close span {
	position: absolute;
	top: 21px;
	left: 12px;
	width: 20px;
	height: 2px;
	background: var(--color-primary);
}

.search-modal__close span:first-child {
	transform: rotate(45deg);
}

.search-modal__close span:last-child {
	transform: rotate(-45deg);
}

.search-modal__content {
	max-width: 620px;
}

.search-modal__title {
	margin: 0 0 0.75rem;
	font-size: clamp(2rem, 4vw, 3rem);
}

.search-modal__description {
	margin-bottom: 1.5rem;
	color: var(--color-text-soft);
}

.search-modal .search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.75rem;
}

.search-modal .search-field {
	margin-bottom: 0;
}

.site-main {
	padding: 3rem 0;
}

.content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 2rem;
}

.content-area--narrow {
	max-width: 820px;
}

.archive-header,
.hero-block,
.entry-card,
.post-card,
.widget-area,
.empty-state,
.comments-area {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.archive-header,
.hero-block,
.empty-state,
.comments-area {
	padding: 2rem;
}

.hero-block {
	margin-bottom: 2rem;
	background: linear-gradient(135deg, #13203a, #2d4ea7);
	color: #fff;
}

.hero-block h1,
.hero-block p {
	color: #fff;
}

.hero-block__eyebrow,
.empty-state__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.78rem;
	font-weight: 700;
}

.archive-title,
.entry-title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.05;
	color: var(--color-primary);
}

.archive-description {
	color: var(--color-text-soft);
}

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

.post-card,
.entry-card {
	overflow: hidden;
}

.post-card__media img,
.entry-featured-image img {
	aspect-ratio: 16 / 10;
	width: 100%;
	object-fit: cover;
}

.post-card__content,
.entry-card {
	padding: 1.5rem;
}

.entry-featured-image {
	margin: 1.5rem 0;
	overflow: hidden;
	border-radius: var(--radius-md);
}

.post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 0.75rem;
	color: var(--color-text-soft);
	font-size: 0.88rem;
}

.post-card__title {
	margin: 0 0 0.75rem;
	font-size: 1.55rem;
	line-height: 1.15;
}

.post-card__title a {
	color: var(--color-primary);
}

.entry-content > * + * {
	margin-top: 1.25rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: var(--color-primary);
	line-height: 1.15;
}

.entry-content blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	border-left: 4px solid var(--color-secondary);
	background: var(--color-surface-soft);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 0.85rem 1rem;
	border: 1px solid var(--color-border);
}

.sidebar {
	padding: 1.5rem;
	position: sticky;
	top: 96px;
}

.widget + .widget {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
}

.widget-title {
	margin: 0 0 0.85rem;
	font-size: 1.1rem;
	color: var(--color-primary);
}

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

.widget li + li {
	margin-top: 0.65rem;
}

.post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.post-navigation a {
	display: block;
	padding: 1rem 1.25rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.comments-title {
	margin-top: 0;
	color: var(--color-primary);
}

.comment-list,
.comment-list .children {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment-list .children {
	margin-top: 1rem;
	padding-left: 1.5rem;
}

.comment-body {
	padding: 1rem 0;
	border-bottom: 1px solid var(--color-border);
}

.comment-form input,
.comment-form textarea,
.search-form input[type='search'] {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: 12px;
	background: #fff;
}

.comment-form .submit,
.search-submit,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.3rem;
	border: 0;
	border-radius: 999px;
	background: var(--color-secondary);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.btn-secondary {
	background: var(--color-accent);
}

.btn-outline {
	background: transparent;
	border: 1px solid var(--color-secondary);
	color: var(--color-secondary);
}

.site-footer {
	margin-top: 3rem;
	padding: 3.6rem 0 1.5rem;
	background: #2d6f91;
	color: rgba(255, 255, 255, 0.84);
}

.site-footer__inner {
	max-width: 1480px;
}

.site-footer__brand {
	display: flex;
	justify-content: center;
	margin-bottom: 2.7rem;
}

.site-footer__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.site-footer__logo-image {
	max-height: 62px;
	width: auto;
}

.site-footer__logo--text {
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.35fr 1.35fr 1.1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.site-footer__column {
	min-width: 0;
}

.site-footer__heading {
	margin: 0 0 1.2rem;
	color: #ffffff;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.site-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__menu li + li {
	margin-top: 0.7rem;
}

.site-footer__menu a {
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.98rem;
	line-height: 1.45;
	transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer__menu a:hover {
	color: #ffffff;
	transform: translateX(2px);
}

.site-footer__social {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.9rem;
	height: 1.9rem;
	color: rgba(255, 255, 255, 0.92);
	transition: transform 0.25s ease, color 0.25s ease;
}

.site-footer__social-link:hover {
	color: #ffffff;
	transform: translateY(-2px);
}

.site-footer__social-link svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
	stroke: none;
}

.site-footer__bottom {
	margin-top: 2.2rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
}

.site-footer__bottom p {
	margin: 0;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.72);
}

.home-archive-page .content-area {
	display: grid;
	gap: 1.5rem;
}

.home-feature-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
	gap: 1.5rem;
	margin-top: 0.25rem;
}

.home-feature-post {
	position: relative;
	overflow: hidden;
	border-radius: 0;
	min-height: 480px;
	box-shadow: var(--shadow-md);
}

.home-feature-post__media {
	display: block;
	position: relative;
	height: 100%;
	background: linear-gradient(135deg, #dbe6ff, #f4f7fb);
}

.home-feature-post__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-feature-post__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	background: linear-gradient(180deg, rgba(9, 15, 28, 0.04) 0%, rgba(9, 15, 28, 0.78) 100%);
}

.home-feature-post__title {
	margin: 0 0 0.9rem;
	font-size: clamp(2.2rem, 4vw, 3.8rem);
	line-height: 1;
	color: #fff;
}

.home-feature-post__excerpt {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.02rem;
	line-height: 1.8;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.home-side-stack {
	display: grid;
	gap: 1rem;
}

.home-side-card {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	gap: 1rem;
	align-items: stretch;
	padding: 1rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 22px;
	box-shadow: var(--shadow-sm);
}

.home-side-card__media {
	display: block;
	overflow: hidden;
	border-radius: 16px;
}

.home-side-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-side-card__content {
	display: flex;
	flex-direction: column;
}

.home-side-card__title {
	margin: 0 0 0.55rem;
	font-size: 1.2rem;
	line-height: 1.15;
}

.home-side-card__title a {
	color: var(--color-primary);
}

.home-side-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 1rem;
	color: var(--color-text-soft);
	font-size: 0.95rem;
	line-height: 1.65;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.home-side-card__link {
	margin-top: auto;
	align-self: flex-start;
	padding: 0.72rem 1rem;
	font-size: 0.82rem;
}

.home-post-grid-standard .post-card {
	display: flex;
	flex-direction: column;
}

.home-post-grid-standard {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-post-grid-standard .post-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.home-post-grid-standard .post-card__readmore {
	margin-top: auto;
	align-self: flex-start;
}

.home-load-more {
	display: flex;
	justify-content: center;
	padding-top: 0.25rem;
}

.home-load-more__button[disabled] {
	opacity: 0.75;
	cursor: wait;
}

.single-post-page {
	padding-top: 2.25rem;
}

.single-post-layout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2rem;
	align-items: start;
}

.single-entry {
	padding: 0;
}

.single-entry__header,
.single-entry__content,
.single-entry__related,
.single-entry .comments-area {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
}

.single-entry__header,
.single-entry__content,
.single-entry__related,
.single-entry .comments-area {
	padding: 2rem;
	border-radius: var(--radius-lg);
}

.single-entry__header {
	margin-bottom: 1.25rem;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 1rem;
	color: var(--color-text-soft);
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.breadcrumbs a {
	color: var(--color-text-soft);
	transition: color 0.25s ease, transform 0.25s ease;
}

.breadcrumbs a:hover {
	color: var(--color-secondary);
	transform: translateY(-1px);
}

.breadcrumbs__sep {
	opacity: 0.7;
}

.single-entry__categories {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1rem;
	list-style: none;
	padding-left: 0;
}

.single-entry__categories ul,
.single-entry__categories li {
	list-style: none !important;
	margin: 0;
	padding: 0;
}

.single-entry__categories a,
.single-entry__footer-label {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(54, 99, 245, 0.08);
	color: var(--color-secondary);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.single-entry__categories--floating {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	margin-bottom: 0;
	justify-content: flex-end;
}

.single-entry__categories--floating a {
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(10px);
	color: var(--color-primary);
	box-shadow: var(--shadow-sm);
}

.single-entry__title {
	margin: 0 0 1.1rem;
	font-size: clamp(1.7rem, 3.2vw, 2.65rem);
	line-height: 1.02;
	letter-spacing: -0.03em;
}

.single-entry__excerpt {
	max-width: 720px;
	margin: -0.2rem 0 1rem;
	color: var(--color-text-soft);
	font-size: 1.05rem;
}

.single-entry__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: center;
}

.single-entry__author {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.single-entry__author-avatar img {
	width: 52px;
	height: 52px;
	border-radius: 50%;
}

.single-entry__meta-label {
	display: block;
	margin-bottom: 0.2rem;
	color: var(--color-text-soft);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.single-entry__meta a,
.single-entry__meta-item span:last-child {
	color: var(--color-primary);
	font-weight: 700;
}

.single-entry__header-media {
	margin: 0 0 1.25rem;
	overflow: hidden;
	border-radius: 24px;
	margin-top: 1.1rem;
	position: relative;
}

.single-entry__header-media img {
	width: 100%;
	max-height: 460px;
	object-fit: cover;
}

.single-entry__content {
	font-size: 1.08rem;
	line-height: 1.95;
}

.single-entry__content mjx-container {
	margin: 1.35rem 0;
	overflow-x: auto;
	overflow-y: hidden;
}

.single-entry__content mjx-container[jax='CHTML'][display='true'] {
	padding: 0.2rem 0;
}

.single-entry__content > * + * {
	margin-top: 1.35rem;
}

.single-entry__content > p:first-of-type::first-letter {
	float: left;
	margin-right: 0.5rem;
	color: var(--color-primary);
	font-size: 3.9rem;
	line-height: 0.9;
	font-weight: 700;
}

.single-entry__content h2,
.single-entry__content h3,
.single-entry__content h4 {
	margin-top: 2.75rem;
	margin-bottom: 1rem;
	line-height: 1.12;
}

.single-entry__content ul,
.single-entry__content ol {
	padding-left: 1.5rem;
}

.single-entry__content blockquote {
	margin: 2rem 0;
	padding: 1.5rem 1.75rem;
	border-left: 4px solid var(--color-accent);
	background: linear-gradient(135deg, rgba(239, 107, 87, 0.06), rgba(54, 99, 245, 0.05));
	border-radius: 0 20px 20px 0;
}

.single-entry__content pre {
	overflow-x: auto;
	padding: 1.25rem;
	border-radius: 18px;
	background: #0f172a;
	color: #f8fafc;
}

.single-entry__content :not(pre) > code {
	padding: 0.15rem 0.4rem;
	border-radius: 8px;
	background: rgba(22, 33, 61, 0.08);
}

.single-entry__content table {
	width: 100%;
	border-collapse: collapse;
}

.single-entry__content th,
.single-entry__content td {
	padding: 0.9rem 1rem;
	border: 1px solid var(--color-border);
}

.single-entry__pages {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 2rem;
}

.single-entry__pages a,
.single-entry__pages span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(22, 33, 61, 0.06);
}

.single-entry__related,
.single-entry .comments-area {
	margin-top: 1.75rem;
}

.single-entry__content-extras {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--color-border);
}

.single-entry__toc {
	margin: 0 0 2rem;
	padding: 0 0 1.5rem;
	border-bottom: 1px solid var(--color-border);
}

.single-entry__toc-header {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
	margin-bottom: 1rem;
}

.single-entry__toc-heading {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.single-entry__toc-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(54, 99, 245, 0.08);
	color: var(--color-secondary);
}

.single-entry__toc-icon svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
}

.single-entry__toc-title {
	margin: 0.7rem 0 0;
	font-size: 1.35rem;
}

.single-entry__toc-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(22, 33, 61, 0.12);
	border-radius: 50%;
	background: rgba(22, 33, 61, 0.04);
	color: var(--color-primary);
	cursor: pointer;
}

.single-entry__toc-toggle svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.25s ease;
}

.single-entry__toc-toggle[aria-expanded='false'] svg {
	transform: rotate(-90deg);
}

.single-entry__toc-nav {
	overflow: hidden;
	max-height: 1000px;
	transition: max-height 0.3s ease, opacity 0.3s ease;
}

.single-entry__toc.is-collapsed .single-entry__toc-nav {
	max-height: 0;
	opacity: 0;
}

.single-entry__toc-list,
.single-entry__toc-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.single-entry__toc-list {
	display: grid;
	gap: 0.55rem;
}

.single-entry__toc-list ul {
	margin-top: 0.45rem;
	margin-left: 1rem;
	padding-left: 0.9rem;
	border-left: 1px solid rgba(22, 33, 61, 0.1);
}

.single-entry__toc-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.3rem 0;
	color: var(--color-text-soft);
	font-size: 0.98rem;
	transition: color 0.25s ease, transform 0.25s ease;
}

.single-entry__toc-link::before {
	content: '';
	flex: 0 0 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(54, 99, 245, 0.35);
}

.single-entry__toc-link:hover {
	color: var(--color-secondary);
	transform: translateX(4px);
}

.single-entry__toc-link--level-2 {
	font-weight: 700;
	color: var(--color-primary);
}

.single-entry__toc-link--level-3,
.single-entry__toc-link--level-4 {
	font-size: 0.92rem;
}

.single-entry__toc-link--level-3::before {
	width: 7px;
	height: 7px;
	background: rgba(239, 107, 87, 0.45);
}

.single-entry__toc-link--level-4::before {
	width: 6px;
	height: 6px;
	background: rgba(22, 33, 61, 0.35);
}

.single-entry__toc-link--level-4 {
	opacity: 0.9;
}

.single-entry__tags {
	margin-bottom: 1.75rem;
}

.single-entry__tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.9rem;
}

.single-entry__tag-list a {
	display: inline-flex;
	align-items: center;
	padding: 0.65rem 0.95rem;
	border-radius: 999px;
	background: rgba(22, 33, 61, 0.06);
	color: var(--color-primary);
	transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.single-entry__tag-list a:hover {
	transform: translateY(-2px);
	background: var(--color-secondary);
	color: #fff;
}

.single-entry__author-box {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr);
	gap: 1.25rem;
	align-items: start;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
}

.single-entry__share {
	margin-bottom: 1.75rem;
}

.single-entry__share-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.9rem;
}

.single-entry__share-link {
	--share-color: var(--color-primary);
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.72rem 1.05rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--color-border);
	color: var(--share-color);
	font-weight: 700;
	line-height: 1;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.single-entry__share-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: var(--share-color);
	color: #fff;
	flex-shrink: 0;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.single-entry__share-icon svg {
	display: block;
	width: 16px;
	height: 16px;
	fill: #ffffff !important;
	stroke: none !important;
}

.single-entry__share-link:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
	border-color: currentColor;
	background: #fffdf9;
}

.single-entry__share-link--facebook {
	--share-color: #1877f2;
}

.single-entry__share-link--x {
	--share-color: #111111;
}

.single-entry__share-link--linkedin {
	--share-color: #0a66c2;
}

.single-entry__share-link--whatsapp {
	--share-color: #25d366;
}

.single-entry__share-link--copy {
	--share-color: #5b4636;
	cursor: pointer;
}

.single-entry__share-link--copy.is-copied {
	--share-color: #157347;
}

.single-entry__author-box-avatar img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
}

.single-entry__author-box-content h2 {
	margin: 0.8rem 0 0.5rem;
	font-size: 1.8rem;
}

.single-entry__navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.75rem;
}

.single-entry__navigation-item a {
	display: block;
	padding: 1.2rem 1.4rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 20px;
	box-shadow: var(--shadow-sm);
	color: var(--color-primary);
	font-weight: 700;
}

.single-entry__section-heading {
	margin-bottom: 1.25rem;
}

.single-entry__section-heading h2 {
	margin: 0.8rem 0 0;
	font-size: 2rem;
}

.single-entry__related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.single-entry__related-card {
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: 20px;
	background: #fff;
}

.single-entry__related-media {
	display: block;
}

.single-entry__related-media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.single-entry__related-content {
	padding: 1.1rem;
}

.single-entry__related-date {
	display: inline-block;
	margin-bottom: 0.55rem;
	color: var(--color-text-soft);
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.single-entry__related-content h3 {
	margin: 0 0 0.6rem;
	font-size: 1.2rem;
	line-height: 1.2;
}

.single-entry .comments-area {
	padding-bottom: 2rem;
}

.home-links-section {
	margin-top: 2.5rem;
}

.home-links-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.home-links-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 180px;
	padding: 1.4rem;
	border: 1px solid var(--color-border);
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	box-shadow: var(--shadow-sm);
	color: var(--color-primary);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-links-card:hover {
	transform: translateY(-4px);
	border-color: rgba(54, 99, 245, 0.26);
	box-shadow: var(--shadow-md);
}

.home-links-card__label {
	display: inline-flex;
	align-self: flex-start;
	padding: 0.4rem 0.72rem;
	border-radius: 999px;
	background: rgba(54, 99, 245, 0.08);
	color: var(--color-secondary);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-links-card__title {
	margin: 1rem 0;
	font-size: 1.45rem;
	line-height: 1.2;
}

.home-links-card__action {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: var(--color-accent);
	font-weight: 700;
}

.home-links-card__action svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}
