.blog-feed {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.blog-archive__description > *:last-child {
	margin-bottom: 0;
}

.blog-feed .entry-card {
	height: 100%;
	background: transparent;
	border: 0;
	box-shadow: none;
	border-radius: 0;
}

.entry-card--blog-link__shell {
	display: grid;
	gap: 0;
	height: 100%;
}

.entry-card--blog-link__surface {
	display: grid;
	min-height: 280px;
	background: rgba(255, 255, 255, 0.94);
	overflow: hidden;
}

.entry-card--blog-link__media,
.entry-card--blog-link__placeholder,
.entry-card--blog-link__embed-frame,
.entry-card--blog-link__embed-frame--oembed,
.entry-card--blog-link__embed-frame--instagram {
	min-height: inherit;
}

.entry-card--blog-link__media-link,
.entry-card--blog-link__placeholder-link,
.entry-card--blog-link__title-link {
	display: block;
	text-decoration: none;
}

.entry-card--blog-link__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}

.entry-card--blog-link__placeholder {
	display: grid;
	place-items: center;
	align-content: center;
	gap: 0.5rem;
	padding: 1.5rem;
	text-align: center;
}

.entry-card--blog-link__embed-frame,
.entry-card--blog-link__embed-frame--oembed {
	position: relative;
	height: 100%;
}

.entry-card--blog-link__embed-frame iframe,
.entry-card--blog-link__embed-frame--oembed iframe,
.entry-card--blog-link__embed-frame--oembed video,
.entry-card--blog-link__embed-frame--oembed embed,
.entry-card--blog-link__embed-frame--oembed object {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	border: 0;
}

.entry-card--blog-link__embed-frame--oembed > * {
	width: 100% !important;
	max-width: none !important;
	height: 100% !important;
	margin: 0 !important;
}

.entry-card--blog-link__embed-frame--instagram {
	display: grid;
	align-items: stretch;
	background: rgba(255, 255, 255, 0.96);
}

.entry-card--blog-link__embed-frame--instagram .instagram-media {
	width: 100% !important;
	max-width: none !important;
	min-height: inherit !important;
	height: 100% !important;
	margin: 0 !important;
	border: 0 !important;
}

.entry-card--blog-link__eyebrow {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #6c857a;
}

.entry-card--blog-link__host {
	font-family: var(--font-accent);
	font-size: 1.12rem;
	line-height: 1.2;
	color: #4c6c5e;
}

.entry-card--blog-link__label-wrap {
	background: #6b8579;
}

.entry-card--blog-link__title {
	margin: 0;
	padding: 0.85rem 1.2rem 0.95rem;
	font-family: var(--font-accent);
	font-size: clamp(1.22rem, 1.45vw, 1.5rem);
	font-weight: 400;
	line-height: 1.1;
	text-align: center;
	color: #fff;
}

.entry-card--blog-link:hover .entry-card--blog-link__label-wrap,
.entry-card--blog-link:focus-within .entry-card--blog-link__label-wrap {
	background: #4c6c5e;
}

.entry--single .entry-footer {
	margin-top: 1.5rem;
}

.entry--single .page-intro {
	margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
	.blog-feed {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.blog-feed {
		grid-template-columns: 1fr;
	}
}
