/* ============================================================================================
	RELATED LIST / BLOCK
============================================================================================ */
.meehhobar-related-list {
	container-type: inline-size;
    font-size: var(--wp--preset--font-size--x-small)
}
.meehhobar-related-post {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px clamp(10px, 5%, 20px)
}
@media screen and (min-width: 375px) {
	.meehhobar-related-post {
		grid-template-columns: repeat(auto-fill, minmax(min(130px, 100%), 1fr))
	}
}
.meehhobar-related-item {
	margin: 0
}
.meehhobar-related-anchor {
    display: block;
	color: inherit;
	text-decoration: none
}
.meehhobar-related-image {
	width: 100%;
	aspect-ratio: 16/9;
	margin: 0 0 1em;
	overflow: hidden
}
.meehhobar-related-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease-in-out
}
.meehhobar-related-image:hover img {
	transform: scale(1.05)
}
.meehhobar-related-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px
}
.meehhobar-related-title {
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden
}
.meehhobar-related-date {
	opacity: .8;
	font-size: .92em;
    letter-spacing: 1px;
	white-space: nowrap
}
