/**
 * Shared post-card styles for the post-driven blocks (our-stories, blog-list).
 * Registered as the `wpgens-post-cards` style handle in inc/blocks.php.
 */

.wpgens-post-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}
.wpgens-post-card__img-link {
	text-decoration: none;
}
.wpgens-post-card__title-link {
	color: inherit;
	text-decoration: none;
}
.wpgens-post-card__title-link:hover {
	color: inherit;
	text-decoration: none;
}
.wpgens-post-card__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 1;
	object-fit: cover;
	background-color: #f0eee9;
}
.wpgens-post-card__img--empty {
	aspect-ratio: 2 / 1;
}
.wpgens-post-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 18px 24px 0;
}
.wpgens-post-card__title {
	font-family: "baskerville-urw", Georgia, "Times New Roman", serif;
	font-weight: 400;
	font-size: 30px;
	line-height: 1.07;
	margin: 0 0 32px;
	color: inherit;
}
.wpgens-post-card__excerpt {
	font-family: "acumin-pro", Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.6;
	margin: 0 0 20px;
	color: inherit;
}
.wpgens-post-card__cta {
	display: inline-block;
	align-self: flex-start;
	font-family: "acumin-pro", Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	color: inherit;
	text-decoration: none;
	margin-top: auto;
	padding-top: 10px;
	margin-bottom: 20px;
}
.wpgens-post-card__cta:hover {
	text-decoration: underline;
}
