.hrc-related {
	margin-block: 3rem 1.5rem;
}

.hrc-related__heading {
	margin: 0 0 1.25rem;
	color: #18392b;
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.25;
}

.hrc-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.hrc-related__card {
	min-width: 0;
	margin: 0;
	border: 1px solid #c8d4cb;
	border-radius: 0.625rem;
	background: #fff;
	box-shadow: 0 0.2rem 0.75rem rgba(24, 57, 43, 0.08);
	overflow: hidden;
}

.hrc-related__link {
	display: flex;
	height: 100%;
	flex-direction: column;
	color: #18392b;
	text-decoration: none;
}

.hrc-related__link:hover .hrc-related__title {
	text-decoration: underline;
	text-decoration-thickness: 0.1em;
	text-underline-offset: 0.15em;
}

.hrc-related__link:focus-visible {
	outline: 3px solid #1f6b49;
	outline-offset: -3px;
}

.hrc-related__media {
	margin: 0;
	aspect-ratio: 16 / 9;
	background: #edf3ef;
	overflow: hidden;
}

.hrc-related__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hrc-related__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1rem;
}

.hrc-related__title {
	margin: 0;
	color: #173c2b;
	font-size: 1.125rem;
	line-height: 1.35;
}

.hrc-related__excerpt {
	margin: 0.65rem 0 0;
	color: #35483f;
	font-size: 0.95rem;
	line-height: 1.55;
}

@media (max-width: 900px) {
	.hrc-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.hrc-related__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hrc-related__link {
		scroll-behavior: auto;
	}
}
