.cpr-widget {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin: 24px 0;
}

.cpr-item {
	color: inherit;
	display: block;
	text-decoration: none;
}

.cpr-item:hover .cpr-title,
.cpr-item:focus .cpr-title {
	text-decoration: underline;
}

.cpr-image {
	aspect-ratio: 16 / 9;
	background: #f0f0f0 center / cover no-repeat;
	display: block;
	margin-bottom: 8px;
	width: 100%;
}

.cpr-image-empty {
	background:
		linear-gradient(135deg, rgba(20, 20, 20, 0.08), rgba(20, 20, 20, 0.02)),
		#eeeeee;
}

.cpr-title {
	display: block;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 4px;
}

.cpr-source {
	color: #666666;
	display: block;
	font-size: 13px;
	line-height: 1.3;
}

.cpr-item-ad .cpr-source::before {
	content: "Oglas: ";
}

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

@media (max-width: 520px) {
	.cpr-widget {
		grid-template-columns: 1fr;
	}
}
