.brp-related-posts {
	margin-top: 40px;
}

.brp-related-posts__heading {
	margin-bottom: 20px;
}

.brp-related-posts__grid {
	display: grid;
	grid-template-columns: repeat(var(--brp-columns, 3), 1fr);
	gap: 20px;
}

.brp-related-posts__item {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.brp-related-posts__thumb {
	position: relative;
	display: block;
	margin-bottom: 10px;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.brp-related-posts__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.brp-related-posts__item:hover .brp-related-posts__thumb img {
	transform: scale(1.08);
}

/* Matches .lte-cats a on new.bcprievidza.sk/novinky/ (Atleticos theme) */
.brp-related-posts__category {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	pointer-events: none;
	display: inline-block;
	background-color: #c42221;
	background-color: var(--main);
	color: #ffffff;
	color: var(--white);
	font-family: 'Sofia Sans Extra Condensed', sans-serif;
	font-family: var(--font-headers), sans-serif;
	letter-spacing: var(--font-headers-letterspacing, 0);
	font-weight: 800;
	font-size: 16px;
	line-height: 1em;
	text-transform: uppercase;
	border-radius: 0;
	padding: 8px 24px;
	transition: all 0.2s ease;
}

.brp-related-posts__title {
	font-weight: 600;
}

.brp-related-posts__date {
	margin-top: 4px;
	font-size: 0.85em;
	opacity: 0.65;
}

.brp-related-posts__notice {
	padding: 10px 14px;
	background: #fff3cd;
	border: 1px dashed #d4a72c;
	color: #6b5900;
	font-size: 13px;
}

@media (max-width: 767px) {

	.brp-related-posts__grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}
}

@media (max-width: 480px) {

	.brp-related-posts__grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {

	.brp-related-posts__thumb img {
		transition: none;
	}
}
