/* Anderl Manager – Vertrauens-Kacheln */
.am-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 1.8vw, 24px);
	width: 100%;
}

.am-trust-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	overflow: hidden;
	color: inherit;
	background: #fff;
	border: 1px solid rgba(94, 33, 41, 0.09);
	border-radius: 5px;
	box-shadow: 0 5px 18px rgba(42, 32, 26, 0.08);
	text-decoration: none !important;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.am-trust-card:hover,
.am-trust-card:focus-visible {
	color: inherit;
	transform: translateY(-3px);
	border-color: rgba(94, 33, 41, 0.18);
	box-shadow: 0 9px 25px rgba(42, 32, 26, 0.13);
}

.am-trust-card:focus-visible {
	outline: 2px solid #616942;
	outline-offset: 3px;
}

.am-trust-card__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f1ece4;
}

.am-trust-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.am-trust-card:hover .am-trust-card__image img {
	transform: scale(1.015);
}

.am-trust-card__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f5f1ed, #ead5b5);
}

.am-trust-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(13px, 1.5vw, 19px);
}

.am-trust-card__body h3 {
	margin: 0 0 7px;
	font-size: clamp(1.08rem, 1.25vw, 1.35rem);
	line-height: 1.18;
	color: #5e2129;
}

.am-trust-card__body p {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	font-size: .92rem;
	line-height: 1.42;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.am-trust-card__link {
	margin-top: auto;
	padding-top: 11px;
	font-size: .9rem;
	font-weight: 650;
	color: #616942;
}

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

@media (max-width: 767px) {
	.am-trust-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 11px;
	}

	.am-trust-card__body {
		padding: 10px;
	}

	.am-trust-card__body h3 {
		margin-bottom: 5px;
		font-size: .98rem;
	}

	.am-trust-card__body p {
		font-size: .76rem;
		line-height: 1.3;
		-webkit-line-clamp: 4;
	}

	.am-trust-card__link {
		padding-top: 7px;
		font-size: .76rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.am-trust-card,
	.am-trust-card__image img {
		transition: none;
	}
}
