/* ─── AV Related Posts Stylesheet ─── */

.av-related-posts {
	margin-top: 44px;
	padding-top: 32px;
	border-top: 1px solid var(--av-line, #e7e1d6);
	box-sizing: border-box;
}

.av-related-posts-title {
	font-family: var(--av-font-display, inherit);
	font-size: 16px;
	font-weight: 800;
	color: var(--av-navy, #1a1a1f);
	margin-bottom: 18px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.av-related-posts .av-related-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.av-related-card {
    border: 1px solid var(--av-line, #e7e1d6);
    border-radius: var(--av-r-lg, 14px);
    padding: 16px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    text-decoration: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.av-related-card:hover {
	border-color: var(--av-rust, #c4202e);
	box-shadow: 0 4px 16px rgba(196, 32, 46, 0.08);
}

.av-related-posts .av-related-card-cat {
	font-size: 11px;
	font-weight: 700;
	color: var(--av-rust, #c4202e);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 6px;
}

.av-related-posts .av-related-card h4 {
	font-family: var(--av-font-display, inherit);
	font-size: 14px;
	font-weight: 700;
	color: var(--av-navy, #1a1a1f);
	line-height: 1.35;
	margin-bottom: 6px;
	margin-top: 0;
	flex: 1;
}

.av-related-posts .av-related-card-meta {
	font-size: 12px;
	color: var(--av-ink-3, #6b6b73);
}

@media (max-width: 500px) {
	.av-related-grid {
		grid-template-columns: 1fr;
	}
}
