/* ─── AV Post Hero Stylesheet ─── */

.av-post-header {
	background: var(--av-navy, #0c1a36);
	padding: 56px 0 52px;
	box-sizing: border-box;
}

.av-post-header-inner {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.av-post-breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 18px;
	flex-wrap: wrap;
}

.av-post-breadcrumb a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.15s ease-in-out;
}

.av-post-breadcrumb a:hover {
	color: rgba(255, 255, 255, 0.95);
}

.av-post-breadcrumb span {
	color: rgba(255, 255, 255, 0.28);
}

.av-post-breadcrumb strong {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
}

.av-post-cats-container {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.av-post-cat-tag {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: rgba(196, 32, 46, 0.3);
	color: #ff8fa0;
	text-decoration: none;
	transition: all 0.15s ease-in-out;
}

a.av-post-cat-tag:hover {
	background: var(--av-rust, #c4202e);
	color: #ffffff;
}

.av-post-header h1 {
	font-family: var(--av-font-display, inherit);
	font-size: clamp(24px, 4.5vw, 44px);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.15;
	margin: 0 0 18px 0;
	letter-spacing: -0.02em;
}

.av-post-meta-row {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.av-post-author-block {
	display: flex;
	align-items: center;
	gap: 10px;
}

.av-post-author-avatar {
	width: 36px;
	height: 36px;
	background: rgba(196, 32, 46, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	flex-shrink: 0;
	overflow: hidden;
}

.av-post-author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.av-post-author-info strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #ffffff;
}

.av-post-author-info span {
	display: block;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.av-post-meta-sep {
	color: rgba(255, 255, 255, 0.25);
	font-size: 18px;
	font-weight: 300;
}

.av-post-meta-item {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	display: flex;
	align-items: center;
	gap: 6px;
}

.av-post-meta-item svg {
	flex-shrink: 0;
	color: rgba(255, 255, 255, 0.4);
}

/* Alignment utilities */
.av-post-header-align-center .av-post-breadcrumb,
.av-post-header-align-center .av-post-cats-container,
.av-post-header-align-center .av-post-meta-row {
	justify-content: center;
}

.av-post-header-align-center .av-post-header h1 {
	text-align: center;
}

.av-post-header-align-right .av-post-breadcrumb,
.av-post-header-align-right .av-post-cats-container,
.av-post-header-align-right .av-post-meta-row {
	justify-content: flex-end;
}

.av-post-header-align-right .av-post-header h1 {
	text-align: right;
}

@media (max-width: 600px) {
	.av-post-header {
		padding: 40px 0 36px;
	}
	.av-post-header-inner { 
		padding: 0 0px; 
	}
	.av-post-meta-row {
		gap: 12px;
	}
}
