.post-editorial {
	background: #fff;
	padding-top: 8rem;
}

/* Header ------------------------------------------------------------------- */

.post-editorial .post-editorial__header {
	text-align: center;
	padding: 6rem 2rem 0;
	max-width: 800px;
	margin: 0 auto;
}

.post-editorial .post-editorial__header::after {
	content: '';
	display: block;
	width: 4rem;
	height: 3px;
	background: #499b95;
	margin: 4rem auto 0;
}

.post-editorial .post-editorial__cats {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-bottom: 2.4rem;
}

.post-editorial .post-editorial__cat {
	display: inline-block;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-transform: none;
	color: #092b3a;
	border: 1.5px solid #d1d5db;
	border-radius: 10rem;
	padding: 0.4rem 1.4rem;
	line-height: 1.2;
	text-decoration: none;
	background: #fff;
	transition: border-color 0.15s, color 0.15s;
}

.post-editorial .post-editorial__cat:hover {
	border-color: #092b3a;
	color: #092b3a;
}

.post-editorial .post-editorial__title {
	font-size: clamp(3rem, 4.5vw, 5rem) !important;
	font-weight: 700;
	line-height: 1.15;
	color: #092b3a;
	margin: 0 0 2rem;
	letter-spacing: -0.03em;
	text-align: center;
}

.post-editorial .post-editorial__meta {
	font-size: 1.4rem;
	color: #6b7280;
	letter-spacing: 0.01em;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 3.2rem;
}

.post-editorial .post-editorial__dot {
	color: #d1d5db;
}

.post-editorial .post-editorial__byline {
	display: inline-flex;
	align-items: center;
	gap: 1.2rem;
	padding: 1.4rem 2rem;
	background: #f5efe0;
	border-radius: 0.8rem;
	margin-bottom: 0.8rem;
}

.post-editorial .post-editorial__byline-img {
	width: 4.4rem;
	height: 4.4rem;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.post-editorial .post-editorial__byline-info {
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.post-editorial .post-editorial__byline-name {
	font-size: 1.5rem;
	font-weight: 600;
	color: #092b3a;
}

.post-editorial .post-editorial__byline-role {
	font-size: 1.3rem;
	color: #6b7280;
}


/* Hero image --------------------------------------------------------------- */

.post-editorial__hero {
	max-width: 740px;
	margin: 4rem auto 0;
	padding: 0 2rem;
}

.post-editorial__hero-img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: cover;
	border-radius: 1.2rem;
}

/* Body --------------------------------------------------------------------- */

.post-editorial .post-editorial__body {
	padding-bottom: 6rem;
}

.post-editorial .post-editorial__content {
	max-width: 740px;
	margin: 0 auto;
	padding: 5rem 2rem 2rem;
}

.post-editorial .post-editorial__content p {
	font-size: 1.8rem;
	line-height: 1.85;
	color: #374151;
	margin-bottom: 2.4rem;
}

.post-editorial .post-editorial__content > p:first-of-type::first-letter {
	float: left;
	font-size: 6.5rem;
	font-weight: 700;
	line-height: 0.78;
	color: #092b3a;
	margin: 0.08em 0.12em 0 0;
}

.post-editorial .post-editorial__content h2 {
	font-size: clamp(2.2rem, 2.8vw, 2.8rem) !important;
	font-weight: 700;
	color: #092b3a;
	margin: 5rem 0 1.6rem !important;
	letter-spacing: -0.02em;
	line-height: 1.25;
	text-align: left;
}

.post-editorial .post-editorial__content h3 {
	font-size: 2rem !important;
	font-weight: 600;
	color: #092b3a;
	margin: 3.6rem 0 1.2rem !important;
	line-height: 1.3;
	text-align: left;
}

.post-editorial .post-editorial__content h4,
.post-editorial .post-editorial__content h5,
.post-editorial .post-editorial__content h6 {
	font-size: 1.8rem !important;
	font-weight: 600;
	color: #092b3a;
	margin: 2.8rem 0 1rem !important;
	text-align: left;
}

.post-editorial .post-editorial__content ul,
.post-editorial .post-editorial__content ol {
	padding-left: 2.4rem;
	margin-bottom: 2.4rem;
}

.post-editorial .post-editorial__content li {
	font-size: 1.8rem;
	line-height: 1.8;
	color: #374151;
	margin-bottom: 0.8rem;
}

/* Ordered list — numbered step style ------------------------------------ */

.post-editorial .post-editorial__content ol {
	list-style: none;
	padding: 0;
	counter-reset: step-counter;
	margin: 2.4rem 0;
	border-top: 1px solid #f0f4f8;
}

.post-editorial .post-editorial__content ol li {
	counter-increment: step-counter;
	display: flex;
	align-items: flex-start;
	gap: 1.6rem;
	padding: 1.6rem 0;
	border-bottom: 1px solid #f0f4f8;
	margin-bottom: 0;
	font-size: 1.7rem;
	line-height: 1.7;
}

.post-editorial .post-editorial__content ol li::before {
	content: counter(step-counter);
	min-width: 3rem;
	height: 3rem;
	background: #499b95;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 0.2rem;
	letter-spacing: 0;
}

.post-editorial .post-editorial__content blockquote {
	border-left: 4px solid #499b95;
	padding: 0.6rem 0 0.6rem 2.4rem;
	margin: 3.2rem 0;
	font-size: 2.1rem;
	font-style: italic;
	color: #092b3a;
	line-height: 1.6;
}

.post-editorial .post-editorial__content a {
	color: #499b95;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.post-editorial .post-editorial__content a:hover {
	color: #092b3a;
}

.post-editorial .post-editorial__content img {
	width: 100%;
	height: auto;
	border-radius: 0.8rem;
	margin: 3.2rem 0;
}

.post-editorial .post-editorial__content strong,
.post-editorial .post-editorial__content b {
	font-weight: 600;
	color: #092b3a;
}

/* Table: clean visual design, mobile-safe scroll ------------------------ */

.post-editorial .post-editorial__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 3.2rem 0 2.4rem;
	font-size: 1.5rem;
}

.post-editorial .post-editorial__content th {
	background: #092b3a;
	color: #fff;
	padding: 1.4rem 2rem;
	text-align: left;
	font-weight: 600;
	font-size: 1.3rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
}

.post-editorial .post-editorial__content td {
	padding: 1.4rem 2rem;
	color: #374151;
	vertical-align: top;
	line-height: 1.65;
}

.post-editorial .post-editorial__content tbody tr:nth-child(even) td {
	background: #f8fafc;
}

.post-editorial .post-editorial__content tbody tr:hover td {
	background: #ecf7f6;
}


.post-editorial .post-editorial__content th:first-child,
.post-editorial .post-editorial__content td:first-child {
	min-width: 18rem;
}

/* Author bio card ---------------------------------------------------------- */

.post-editorial .post-editorial__bio-card {
	max-width: 740px;
	margin: 0 auto 6rem;
	padding: 3rem 3.2rem;
	display: flex;
	align-items: center;
	gap: 2.4rem;
	background: #f5efe0;
	border-radius: 1.2rem;
}

.post-editorial .post-editorial__bio-img {
	width: 7rem;
	height: 7rem;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.post-editorial .post-editorial__bio-label {
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #499b95;
	margin-bottom: 0.4rem;
}

.post-editorial .post-editorial__bio-name {
	font-size: 1.8rem;
	font-weight: 700;
	color: #092b3a;
	margin-bottom: 0.4rem;
}

.post-editorial .post-editorial__bio-role {
	font-size: 1.5rem;
	color: #6b7280;
}

/* Responsive --------------------------------------------------------------- */

@media ( max-width: 768px ) {
	.post-editorial .post-editorial__header {
		padding: 4rem 2rem 0;
	}
	.post-editorial .post-editorial__title {
		font-size: 2.8rem !important;
	}
	.post-editorial .post-editorial__content {
		padding: 4rem 2rem 2rem;
	}
	.post-editorial .post-editorial__content > p:first-of-type::first-letter {
		font-size: 4.2rem;
	}
	.post-editorial .post-editorial__bio-card {
		flex-direction: column;
		text-align: center;
		padding: 2.4rem;
	}
}


/* Navigation --------------------------------------------------------------- */

.post-editorial__nav {
	max-width: 740px;
	margin: 0 auto;
	padding: 0 2rem 8rem;
}

.post-editorial__nav-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.4rem;
	padding-top: 4rem;
	border-top: 2px solid #499b95;
}

.post-editorial__nav-item {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	text-decoration: none;
	padding: 2rem;
	border-radius: 0.8rem;
	transition: background 0.15s;
}

.post-editorial__nav-item:hover {
	background: #f5efe0;
}

.post-editorial__nav-item--next {
	text-align: right;
}

.post-editorial__nav-item--empty {
	pointer-events: none;
}

.post-editorial__nav-label {
	display: block;
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #499b95;
}

.post-editorial__nav-arrow {
	display: inline-block;
}

.post-editorial__nav-title {
	display: block;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.4;
	color: #092b3a;
}

.post-editorial__nav-item:hover .post-editorial__nav-title {
	color: #499b95;
}

@media (max-width: 600px) {
	.post-editorial__nav-inner {
		grid-template-columns: 1fr;
	}
	.post-editorial__nav-item--next {
		text-align: left;
	}
}
