/* ============================================================
   Global post card — template-parts/post-card.php
   Image on top (existing 4:3 rectangle), off-white (#EDEDEB)
   body below
   with "Published [date]" / title / author byline. Shared across
   any post grid on the site.
   ============================================================ */

.pcard {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}
.pcard:hover .pcard__title {
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 2px;
}
.pcard__img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	margin: 0;
}
.pcard__img--empty { background: #ddd8cc; }

.pcard__body {
	background: #EDEDEB;
	padding: 22px 22px 26px;
	min-height: 265px;
	display: flex;
	flex-direction: column;
}
.pcard__meta {
	font-family: 'JetBrains Mono', monospace;
	font-weight: 500;
	font-size: 9px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #6b6860;
	margin: 0 0 14px 0;
}
.pcard__title {
	font-family: 'JetBrains Mono', monospace;
	font-weight: 800;
	font-size: 21px;
	letter-spacing: -0.6px;
	word-spacing: -1px;
	text-transform: uppercase;
	line-height: 1.3;
	color: #1a1a18;
	margin: 0 0 10px 0;
}
.pcard__excerpt {
	font-family: 'EB Garamond', Georgia, serif;
	font-size: 15px;
	line-height: 1.5;
	color: #4a473e;
	margin: 0;
}

@media (max-width: 560px) {
	.pcard__body { padding: 18px 18px 22px; min-height: 0; }
	.pcard__title { font-size: 20px; }
}
