.apx-editorial-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 22px;
	padding: 14px 16px;
	border: 1px solid #e7edf3;
	border-radius: 16px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	box-shadow: 0 12px 28px rgba(18, 38, 63, 0.05);
	font-size: 14px;
	line-height: 1.5;
	color: #334155;
}

.apx-editorial-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.apx-disclaimer {
	margin: 0 0 24px;
	padding: 14px 16px;
	border-left: 4px solid #b91c1c;
	border-radius: 14px;
	background: #fff7ed;
	color: #7c2d12;
	font-size: 14px;
	line-height: 1.7;
}

.apx-disclaimer--gear {
	background: #fefce8;
	color: #713f12;
}

.apx-editorial-stack {
	margin-top: 32px;
}

.apx-references,
.apx-faq,
.apx-author-bio {
	margin-top: 28px;
	padding: 24px;
	border: 1px solid #e7edf3;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 12px 28px rgba(18, 38, 63, 0.04);
}

.apx-references h2,
.apx-faq h2,
.apx-author-bio h2 {
	margin-top: 0;
	margin-bottom: 14px;
	font-size: 28px;
	line-height: 1.14;
	letter-spacing: -0.02em;
}

.apx-references__list {
	margin: 0;
	padding-left: 20px;
}

.apx-references__list li {
	margin-bottom: 10px;
	line-height: 1.7;
}

.apx-reference-source {
	display: inline-block;
	margin-left: 6px;
	color: #64748b;
	font-size: 14px;
}

.apx-faq__items {
	display: grid;
	gap: 12px;
}

.apx-faq__item {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #f8fafc;
	padding: 14px 16px;
}

.apx-faq__item[open] {
	background: #ffffff;
}

.apx-faq__item summary {
	cursor: pointer;
	font-weight: 700;
	color: #111827;
	line-height: 1.5;
}

.apx-faq__answer {
	margin-top: 12px;
	color: #334155;
	line-height: 1.7;
}

.apx-author-bio__inner {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 16px;
	align-items: start;
}

.apx-author-bio__avatar {
	width: 64px;
	height: 64px;
	border-radius: 999px;
	background: #111827;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 700;
}

.apx-author-bio__content h3 {
	margin: 0 0 8px;
	font-size: 20px;
}

.apx-author-bio__content p {
	margin: 0 0 12px;
	line-height: 1.75;
	color: #334155;
}

.apx-author-bio__links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.apx-author-bio__links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1rem;
	border-radius: 999px;
	border: 1px solid #dbe3ec;
	background: #fff;
	color: #111827;
	font-weight: 700;
	text-decoration: none;
}

.apx-author-bio__links a:hover,
.apx-author-bio__links a:focus {
	border-color: #b22f1e;
	color: #b22f1e;
}

.apx-page-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.apx-page-post-card {
	border: 1px solid #d7dee8;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.apx-page-post-card:hover,
.apx-page-post-card:focus-within {
	transform: translateY(-3px);
	border-color: #b22f1e;
	box-shadow: 0 20px 40px rgba(18, 38, 63, 0.14);
}

.apx-page-post-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: #111827;
	text-decoration: none;
}

.apx-page-post-card__media {
	
	background: #f8fafc;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.apx-page-post-card__media img,
.apx-page-post-card__placeholder {
	width: 100%;
	height: 100%;
	
	object-fit: cover;
	display: block;
}

.apx-page-post-card__placeholder {
	background: linear-gradient(135deg, #f5f7fb 0%, #edf2f7 100%);
}

.apx-page-post-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
	flex: 1;
}

.apx-page-post-card__body h3 {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.28;
}

.apx-page-post-card__body p {
	margin: 0;
	color: #4b5563;
	line-height: 1.6;
}

.apx-page-post-card__body .apx-link {
	margin-top: auto;
}

@media (max-width: 767px) {
	.apx-editorial-meta {
		flex-direction: column;
	}

	.apx-author-bio__inner {
		grid-template-columns: 1fr;
	}

	.apx-page-posts-grid {
		grid-template-columns: 1fr;
	}
}
