/**
 * Blog archive (index, category, tag).
 */

.blog-page .hero {
	background-position: center;
}

.blog-page .blog-intro {
	padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.blog-page .blog-page__eyebrow.section-label {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0 0 0.5rem;
	padding: 0;
	font-family: "Oxygen", sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fa8b07;
	text-shadow: 0 0 8px rgba(255, 98, 0, 0.2);
}

.blog-page .blog-page__eyebrow.section-label::before {
	content: "—";
	display: inline-block;
	width: auto;
	height: auto;
	background: none;
	color: currentColor;
	line-height: 1;
}

.blog-page .blog-intro__heading {
	margin: 0 0 0.75rem;
}

.blog-page .blog-intro__text {
	width: 100%;
	max-width: none;
	color: rgba(205, 214, 225, 0.92);
	line-height: 1.55;
}

.blog-page .blog-content {
	position: relative;
	overflow: hidden;
	padding: 0 0 clamp(3rem, 6vw, 4.5rem);
	background-color: #00000b;
	background-image: none;
}

.blog-page .blog-content > .container {
	position: relative;
	z-index: 1;
}

.blog-page .blog-content .seorca-home-why-particles {
	opacity: 0.55;
}

.blog-page .seorca-blog-archive__row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.blog-page .seorca-blog-archive__main {
	float: none;
	width: 100%;
}

.blog-page .seorca-blog-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 2vw, 1.5rem);
	margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

@media (min-width: 768px) {
	.blog-page .seorca-blog-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	/* 3 → 2 → 3 → 2 column rhythm */
	.blog-page .seorca-blog-card:nth-child(10n + 1),
	.blog-page .seorca-blog-card:nth-child(10n + 2),
	.blog-page .seorca-blog-card:nth-child(10n + 3),
	.blog-page .seorca-blog-card:nth-child(10n + 6),
	.blog-page .seorca-blog-card:nth-child(10n + 7),
	.blog-page .seorca-blog-card:nth-child(10n + 8) {
		grid-column: span 2;
	}

	.blog-page .seorca-blog-card:nth-child(10n + 4),
	.blog-page .seorca-blog-card:nth-child(10n + 5),
	.blog-page .seorca-blog-card:nth-child(10n + 9),
	.blog-page .seorca-blog-card:nth-child(10n + 10) {
		grid-column: span 3;
	}
}

.blog-page .seorca-blog-card {
	margin: 0;
}

.blog-page .seorca-blog-card__link {
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
	min-height: clamp(240px, 32vw, 320px);
	height: 100%;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	text-decoration: none;
	color: #fff;
	text-align: left;
	overflow: hidden;
	background-color: #06090e;
	background-image: none;
	isolation: isolate;
	contain: paint;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.04),
		0 12px 40px rgba(0, 0, 0, 0.45);
	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.blog-page .seorca-blog-card__media,
.blog-page .seorca-blog-card__scrim {
	position: absolute;
	top: -3px;
	right: -3px;
	bottom: -6px;
	left: -3px;
	z-index: 0;
	border-radius: inherit;
	pointer-events: none;
}

.blog-page .seorca-blog-card__media {
	background-color: #06090e;
	background-image: var(--seorca-blog-card-bg, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.blog-page .seorca-blog-card__scrim {
	z-index: 1;
	background:
		linear-gradient(
			180deg,
			rgba(0, 0, 11, 0.18) 0%,
			rgba(0, 0, 11, 0.62) 38%,
			rgba(6, 9, 14, 0.98) 72%,
			rgba(6, 9, 14, 1) 100%
		),
		radial-gradient(ellipse 130% 85% at 50% -5%, rgba(76, 182, 236, 0.14) 0%, transparent 52%);
	box-shadow: inset 0 -10px 0 0 #06090e;
}

.blog-page .seorca-blog-card__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0;
	width: 100%;
	min-height: 100%;
	padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.05rem, 2.4vw, 1.35rem);
	box-sizing: border-box;
}

.blog-page .seorca-blog-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	margin-bottom: 0.65rem;
	font-family: "Oxygen", sans-serif;
	font-size: 0.72rem;
	line-height: 1.2;
}

.blog-page .seorca-blog-card__category {
	padding: 0.28rem 0.55rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.blog-page .seorca-blog-card__date {
	color: rgba(160, 174, 192, 0.95);
	font-weight: 400;
	white-space: nowrap;
}

.blog-page .seorca-blog-card__excerpt {
	flex: 1 1 auto;
	margin: 0;
	font-family: "Oxygen", sans-serif;
	font-size: clamp(0.84rem, 1.6vw, 0.95rem);
	font-weight: 300;
	line-height: 1.55;
	color: rgba(205, 214, 225, 0.92);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.blog-page .seorca-blog-card__title {
	margin: 0 0 0.65rem;
	width: 100%;
	font-family: "Oswald", sans-serif;
	font-size: clamp(1.2rem, 2.4vw, 1.55rem);
	font-weight: 400;
	line-height: 1.22;
	color: #fff;
	text-align: left;
	text-shadow: 0 0 4px rgba(76, 182, 236, 0.2), 0 0 1px rgba(76, 182, 236, 0.28);
}

.blog-page .seorca-blog-card__cta {
	display: inline-flex;
	align-items: center;
	align-self: stretch;
	gap: 0.35rem;
	width: 100%;
	margin-top: auto;
	padding: 0.65rem 0 0;
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 0;
	background: none !important;
	box-shadow: none !important;
	pointer-events: none;
	font-family: "Oxygen", sans-serif;
	font-size: clamp(0.74rem, 0.8vw, 0.82rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.2;
	color: #fa8b07;
}

.blog-page .seorca-blog-card__cta-arrow {
	line-height: 1;
	transition: transform 0.25s ease;
}

@media (hover: hover) {
	.blog-page .seorca-blog-card__link:hover,
	.blog-page .seorca-blog-card__link:focus-visible {
		border-color: rgba(250, 139, 7, 0.42);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.06),
			0 0 0 1px rgba(250, 139, 7, 0.12),
			0 12px 40px rgba(0, 0, 0, 0.5);
		outline: none;
	}

	.blog-page .seorca-blog-card__link:hover .seorca-blog-card__cta-arrow,
	.blog-page .seorca-blog-card__link:focus-visible .seorca-blog-card__cta-arrow {
		transform: translateX(3px);
	}
}

.blog-page .seorca-blog-sidebar {
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.03);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.04),
		0 12px 40px rgba(0, 0, 0, 0.35);
}

.blog-page .seorca-blog-sidebar__widget + .seorca-blog-sidebar__widget {
	margin-top: clamp(1.5rem, 3vw, 2rem);
	padding-top: clamp(1.5rem, 3vw, 2rem);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-page .seorca-blog-sidebar__title {
	margin: 0 0 1rem;
	font-family: "Oswald", sans-serif;
	font-size: clamp(1.2rem, 2.2vw, 1.45rem);
	font-weight: 400;
	line-height: 1.2;
	color: #fff;
	text-shadow: none;
}

.blog-page .seorca-blog-sidebar__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog-page .seorca-blog-sidebar__post {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 0.85rem;
}

.blog-page .seorca-blog-sidebar__post:last-child {
	margin-bottom: 0;
}

.blog-page .seorca-blog-sidebar__thumb img {
	display: block;
	width: 4.5rem;
	height: 4.5rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	object-fit: cover;
}

.blog-page .seorca-blog-sidebar__post-title {
	display: block;
	font-family: "Oswald", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25;
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.blog-page .seorca-blog-sidebar__post-date {
	display: block;
	margin-top: 0.35rem;
	font-family: "Oxygen", sans-serif;
	font-size: 0.75rem;
	color: rgba(160, 174, 192, 0.95);
}

.blog-page .seorca-blog-sidebar__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.blog-page .seorca-blog-sidebar__tag {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.7rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	font-family: "Oxygen", sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	text-decoration: none;
	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		color 0.2s ease;
}

@media (hover: hover) {
	.blog-page .seorca-blog-sidebar__post-title:hover,
	.blog-page .seorca-blog-sidebar__post-title:focus-visible {
		color: #fa8b07;
		outline: none;
	}

	.blog-page .seorca-blog-sidebar__tag:hover,
	.blog-page .seorca-blog-sidebar__tag:focus-visible {
		border-color: rgba(250, 139, 7, 0.42);
		background: rgba(250, 139, 7, 0.08);
		color: #fa8b07;
		outline: none;
	}
}

.blog-page .blog-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 0;
}

.blog-page .blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.65rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
	color: rgba(205, 214, 225, 0.92);
	font-family: "Oxygen", sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
	transition:
		border-color 0.25s ease,
		background 0.25s ease,
		color 0.25s ease;
}

.blog-page .blog-pagination .page-numbers.current {
	border-color: transparent;
	background: linear-gradient(270deg, #ff6200 0%, #fa8b07 100%);
	color: #fff;
	box-shadow: var(--seorca-orange-btn-glow-hover, 0 0 14px rgba(255, 98, 0, 0.3));
}

.blog-page .blog-pagination .blog-pagination__arrow {
	display: block;
	font-size: 0.875rem;
	line-height: 1;
	transition: transform 0.25s ease;
}

@media (hover: hover) {
	.blog-page .blog-pagination .page-numbers:not(.current):hover,
	.blog-page .blog-pagination .page-numbers:not(.current):focus-visible {
		border-color: rgba(250, 139, 7, 0.42);
		background: rgba(250, 139, 7, 0.08);
		color: #fa8b07;
		outline: none;
	}

	.blog-page .blog-pagination .page-numbers.prev:hover .blog-pagination__arrow,
	.blog-page .blog-pagination .page-numbers.prev:focus-visible .blog-pagination__arrow {
		transform: translateX(-2px);
	}

	.blog-page .blog-pagination .page-numbers.next:hover .blog-pagination__arrow,
	.blog-page .blog-pagination .page-numbers.next:focus-visible .blog-pagination__arrow {
		transform: translateX(2px);
	}
}

.blog-page .seorca-blog-archive__empty {
	color: rgba(205, 214, 225, 0.92);
}

@media (max-width: 767px) {
	.blog-page .blog-intro,
	.blog-page .blog-content {
		text-align: left;
	}

	.blog-page .seorca-blog-card__link {
		min-height: clamp(220px, 44vw, 280px);
	}

	.blog-page .seorca-blog-card__inner {
		padding: clamp(1.5rem, 4.5vw, 1.85rem) clamp(1.1rem, 3.5vw, 1.35rem);
	}

	.blog-page .seorca-blog-card__title {
		font-size: clamp(1.35rem, 6vw, 1.6rem);
	}

	.blog-page .blog-pagination .page-numbers {
		min-width: 2.25rem;
		height: 2.25rem;
		font-size: 0.875rem;
	}
}

/**
 * Single blog post.
 */
.blog-post-single {
	background: #00000b;
}

.blog-post-single .hero {
	padding: clamp(5rem, 10vw, 7.5rem) 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.blog-post-single__content {
	position: relative;
	overflow: hidden;
	padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 7vw, 5rem);
	background-color: #00000b;
}

.blog-post-single__content > .container {
	position: relative;
	z-index: 1;
}

.blog-post-single__content .seorca-home-why-particles {
	opacity: 0.55;
}

.blog-post-single__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
	font-family: "Oxygen", sans-serif;
	font-size: 0.72rem;
	line-height: 1.2;
}

.blog-post-single__category {
	padding: 0.28rem 0.55rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		border-color 0.22s ease,
		background 0.22s ease,
		color 0.22s ease;
}

.blog-post-single__date {
	color: rgba(160, 174, 192, 0.95);
	font-weight: 400;
	white-space: nowrap;
}

.blog-post-single__body {
	width: 100%;
	max-width: none;
	font-family: "Oxygen", sans-serif;
	font-size: clamp(1rem, 1.8vw, 1.05rem);
	font-weight: 400;
	line-height: 1.65;
	color: rgba(205, 214, 225, 0.92);
}

.blog-post-single__body > :first-child {
	margin-top: 0;
}

.blog-post-single__body p {
	margin: 0 0 1.25rem;
	font-family: inherit;
	font-size: inherit;
	font-weight: 400;
	line-height: inherit;
	color: inherit;
}

.blog-post-single__body p:last-child {
	margin-bottom: 0;
}

.blog-post-single__body h2,
.blog-post-single__body h3,
.blog-post-single__body h4,
.blog-post-single__body h5,
.blog-post-single__body h6 {
	margin: clamp(1.75rem, 3vw, 2.25rem) 0 0.85rem;
	font-family: "Oswald", sans-serif;
	font-weight: 400;
	line-height: 1.22;
	color: #fff;
	text-shadow: 0 0 4px rgba(76, 182, 236, 0.2), 0 0 1px rgba(76, 182, 236, 0.28);
}

.blog-post-single__body h2:first-child,
.blog-post-single__body h3:first-child {
	margin-top: 0;
}

.blog-post-single__body h2 {
	font-size: var(--seorca-h2-size);
}

.blog-post-single__body h3 {
	font-size: clamp(1.3rem, 2.2vw, 1.55rem);
}

.blog-post-single__body h4 {
	font-size: clamp(1.15rem, 1.8vw, 1.3rem);
}

.blog-post-single__body h5 {
	font-size: clamp(1.05rem, 1.6vw, 1.15rem);
}

.blog-post-single__body h6 {
	font-size: 1rem;
}

.blog-post-single__body a:not(.wp-block-button__link) {
	color: #4cb6ec;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.2s ease;
}

.blog-post-single__body ul,
.blog-post-single__body ol {
	display: block;
	margin: 0 0 1.25rem;
	padding: 0 0 0 1.35rem;
}

.blog-post-single__body ul {
	list-style: disc;
}

.blog-post-single__body ol {
	list-style: decimal;
}

.blog-post-single__body li {
	display: list-item;
	margin: 0 0 0.55rem;
	font-family: inherit;
	font-size: inherit;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(205, 214, 225, 0.92);
}

.blog-post-single__body li:last-child {
	margin-bottom: 0;
}

.blog-post-single__body ul ul,
.blog-post-single__body ol ol,
.blog-post-single__body ul ol,
.blog-post-single__body ol ul {
	margin-top: 0.55rem;
	margin-bottom: 0;
}

.blog-post-single__body blockquote {
	margin: 0 0 1.75rem;
}

/* Pulse bubble panels — matches cities/industries citation blocks */
.blog-post-single .blog-post-single__quote-pulse {
	margin: 0 0 1.75rem;
}

.blog-post-single .seorca-loc-pulse__panel {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	min-height: 0;
	border: 1px solid rgba(64, 200, 220, 0.35);
	box-shadow:
		0 0 0 1px rgba(0, 40, 60, 0.5) inset,
		0 24px 64px rgba(0, 20, 40, 0.55);
	background:
		radial-gradient(ellipse 120% 80% at 50% 120%, rgba(0, 80, 120, 0.45), transparent 55%),
		linear-gradient(165deg, #031018 0%, #061c2a 40%, #020810 100%);
}

.blog-post-single .seorca-loc-pulse__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	pointer-events: none;
	opacity: 0.95;
}

.blog-post-single .seorca-loc-pulse__vignette {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(ellipse 70% 60% at 50% 45%, transparent 30%, rgba(0, 8, 16, 0.75) 100%);
}

.blog-post-single .seorca-loc-pulse__scanlines {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.06;
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 2px,
		rgba(160, 240, 255, 0.35) 2px,
		rgba(160, 240, 255, 0.35) 3px
	);
	animation: seorca-blog-pulse-scan 10s linear infinite;
}

@keyframes seorca-blog-pulse-scan {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(24px);
	}
}

.blog-post-single .blog-post-single__blockquote {
	position: relative;
	z-index: 2;
	margin: 0;
	padding: clamp(1.35rem, 2.4vw, 2rem) clamp(1.25rem, 2.2vw, 1.75rem);
	width: 100%;
	max-width: 100%;
	border: 0;
	background: transparent;
	box-shadow: none;
	font-style: normal;
	text-align: left;
}

.blog-post-single .blog-post-single__blockquote p {
	margin: 0 0 0.85rem;
	font-family: "Oxygen", sans-serif;
	font-size: clamp(1.05rem, 2.1vw, 1.2rem);
	font-weight: 400;
	font-style: normal;
	line-height: 1.65;
	color: rgba(240, 252, 255, 0.95);
	text-shadow: 0 0 20px rgba(0, 120, 160, 0.35);
}

.blog-post-single .blog-post-single__blockquote p:last-child {
	margin-bottom: 0;
}

.blog-post-single .blog-post-single__blockquote cite {
	display: block;
	margin-top: 0.85rem;
	font-family: "Oxygen", sans-serif;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.45;
	color: rgba(180, 220, 235, 0.7);
}

.blog-post-single .blog-post-single__blockquote a {
	color: rgba(120, 220, 255, 0.95);
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.blog-post-single .seorca-loc-pulse__scanlines {
		animation: none;
	}

	.blog-post-single .seorca-loc-pulse__canvas {
		display: none;
	}
}

@media (hover: hover) {
	.blog-post-single .blog-post-single__blockquote a:hover,
	.blog-post-single .blog-post-single__blockquote a:focus-visible {
		color: #fa8b07;
		outline: none;
	}
}

.blog-post-single__body img,
.blog-post-single__body figure img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 0 0 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	background: #06090e;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.04),
		0 12px 40px rgba(0, 0, 0, 0.35);
}

.blog-post-single__body figure {
	margin: 0 0 1.5rem;
}

.blog-post-single__body figure img {
	margin-bottom: 0.65rem;
}

.blog-post-single__body figcaption {
	font-family: "Oxygen", sans-serif;
	font-size: 0.82rem;
	line-height: 1.45;
	color: rgba(160, 174, 192, 0.95);
	text-align: center;
}

.blog-post-single__body .wp-block-image {
	margin: 0 0 1.5rem;
}

.blog-post-single__body .wp-block-image.alignleft,
.blog-post-single__body .wp-block-image.alignright {
	max-width: min(100%, 22rem);
}

.blog-post-single__body .wp-block-image.alignleft {
	float: left;
	margin: 0.35rem 1.25rem 1rem 0;
}

.blog-post-single__body .wp-block-image.alignright {
	float: right;
	margin: 0.35rem 0 1rem 1.25rem;
}

.blog-post-single__body .wp-block-image.aligncenter {
	margin-left: auto;
	margin-right: auto;
}

.blog-post-single__body .wp-block-image img {
	margin-bottom: 0;
}

.blog-post-single__body hr {
	margin: clamp(1.75rem, 3vw, 2.25rem) 0;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-post-single__body strong {
	font-weight: 700;
	color: #fff;
}

.blog-post-single__nav {
	--seorca-blog-nav-width: 17.5rem;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: clamp(0.75rem, 2vw, 1rem);
	margin-top: clamp(2rem, 4vw, 3rem);
	padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-post-single__nav-spacer {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
}

.blog-post-single__nav-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	flex: 0 0 var(--seorca-blog-nav-width);
	width: var(--seorca-blog-nav-width);
	min-width: var(--seorca-blog-nav-width);
	max-width: min(100%, var(--seorca-blog-nav-width));
	padding: 0.65rem 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	background: rgba(14, 23, 36, 0.85);
	color: #fff;
	text-decoration: none;
	box-sizing: border-box;
	transition:
		border-color 0.22s ease,
		background 0.22s ease,
		box-shadow 0.22s ease;
}

.blog-post-single__nav-link--next {
	justify-content: flex-end;
	text-align: right;
	margin-left: auto;
}

.blog-post-single__nav-copy {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.blog-post-single__nav-kicker {
	font-family: "Oxygen", sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fa8b07;
}

.blog-post-single__nav-title {
	font-family: "Oswald", sans-serif;
	font-size: clamp(0.82rem, 1.2vw, 0.9rem);
	font-weight: 400;
	line-height: 1.3;
	color: #fff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.blog-post-single__nav-arrow {
	flex: 0 0 auto;
	font-size: 0.95rem;
	line-height: 1;
	color: #fa8b07;
	transition: transform 0.22s ease;
}

@media (hover: hover) {
	.blog-post-single__category:hover,
	.blog-post-single__category:focus-visible {
		border-color: rgba(250, 139, 7, 0.42);
		background: rgba(250, 139, 7, 0.08);
		color: #fa8b07;
		outline: none;
	}

	.blog-post-single__body a:not(.wp-block-button__link):hover,
	.blog-post-single__body a:not(.wp-block-button__link):focus-visible {
		color: #78c8f0;
		outline: none;
	}

	.blog-post-single__nav-link:hover,
	.blog-post-single__nav-link:focus-visible {
		border-color: rgba(250, 139, 7, 0.42);
		background: rgba(250, 139, 7, 0.08);
		box-shadow: 0 0 0 1px rgba(250, 139, 7, 0.1);
		outline: none;
	}

	.blog-post-single__nav-link--prev:hover .blog-post-single__nav-arrow,
	.blog-post-single__nav-link--prev:focus-visible .blog-post-single__nav-arrow {
		transform: translateX(-3px);
	}

	.blog-post-single__nav-link--next:hover .blog-post-single__nav-arrow,
	.blog-post-single__nav-link--next:focus-visible .blog-post-single__nav-arrow {
		transform: translateX(3px);
	}
}

@media (max-width: 767px) {
	.blog-post-single .hero {
		padding: 60px 0;
	}

	.blog-post-single__content {
		padding: clamp(1.75rem, 5vw, 2.5rem) 0 clamp(2.75rem, 7vw, 4rem);
		text-align: left;
	}

	.blog-post-single__category {
		padding: 0.2rem 0.45rem;
		font-size: 0.625rem;
		letter-spacing: 0.03em;
	}

	.blog-post-single__body {
		font-size: 0.875rem;
	}

	.blog-post-single__body p {
		font-size: 0.875rem;
	}

	.blog-post-single__body h2,
	.blog-post-single__body h3,
	.blog-post-single__body h4,
	.blog-post-single__body h5,
	.blog-post-single__body h6 {
		text-align: left;
	}

	.blog-post-single__body :is(h2, h3, h4, h5, h6).has-text-align-center {
		text-align: center;
	}

	.blog-post-single__body :is(h2, h3, h4, h5, h6).has-text-align-right {
		text-align: right;
	}

	.blog-post-single__body :is(h2, h3, h4, h5, h6).has-text-align-left {
		text-align: left;
	}

	.blog-post-single__body p.has-text-align-center {
		text-align: center;
	}

	.blog-post-single__body p.has-text-align-right {
		text-align: right;
	}

	.blog-post-single__body p.has-text-align-left {
		text-align: left;
	}

	.blog-post-single .blog-post-single__blockquote p {
		font-size: 0.875rem;
	}

	.blog-post-single__body .wp-block-image.alignleft,
	.blog-post-single__body .wp-block-image.alignright {
		float: none;
		max-width: 100%;
		margin: 0 0 1.25rem;
	}

	.blog-post-single__nav {
		flex-direction: column;
		align-items: stretch;
	}

	.blog-post-single__nav-link {
		flex: 1 1 auto;
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.blog-post-single__nav-link--next {
		justify-content: flex-start;
		text-align: left;
		margin-left: 0;
	}

	.blog-post-single__body li {
		font-size: inherit !important;
	}
}
