/* Blog posts. */
.ph-post { display: flex; }

.ph-post__link {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	color: inherit;
	text-decoration: none;
}

.ph-post__media {
	overflow: hidden;
	border-radius: var(--pharmacy-radius);
	aspect-ratio: 16 / 10;
	background: var(--pharmacy-muted);
}

.ph-post__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.ph-post__link:hover .ph-post__img { transform: scale(1.04); }

.ph-post__body { display: flex; flex-direction: column; gap: 6px; }

.ph-post__cat {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--pharmacy-primary);
}

.ph-post__title { margin: 0; font-size: 1.05rem; }
.ph-post__excerpt { margin: 0; font-size: 0.9rem; opacity: 0.75; }

.ph-post__meta {
	display: flex;
	gap: 10px;
	margin: 4px 0 0;
	font-size: 0.78rem;
	opacity: 0.55;
}
