/* =========================================================
   RATGEBER - NEUESTE BEITRÄGE
   ========================================================= */

.ratgeber-latest-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
	margin: 25px 0 55px;
}

.ratgeber-latest-card {
	background: #fff;
}

.ratgeber-latest-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f2f2f2;
}

.ratgeber-latest-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.ratgeber-latest-card:hover .ratgeber-latest-image img {
	transform: scale(1.025);
}

.ratgeber-latest-content {
	padding: 14px 0 0;
}

.ratgeber-latest-category {
	display: inline-block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ast-global-color-0);
	text-decoration: none !important;
}

.ratgeber-latest-title {
	margin: 0 0 8px;
	padding: 0;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 700;
}

.ratgeber-latest-title a {
	color: #222;
	text-decoration: none !important;
}

.ratgeber-latest-title a:hover {
	color: var(--ast-global-color-0);
}

.ratgeber-latest-date {
	font-size: 13px;
	line-height: 1.4;
	color: #777;
}

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

@media (max-width: 600px) {
	.ratgeber-latest-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
}
