/* Block: DD — Uitgelichte case */

.dd-featcase__tile {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--dd-line);
	transition: transform 0.28s ease;
}

.dd-featcase__tile:hover {
	transform: translateY(-4px);
	color: inherit;
}

.dd-featcase__tile .dd-placeholder {
	border-radius: 0;
	aspect-ratio: 16 / 11;
}

.dd-featcase__body {
	background: var(--dd-paper-card);
	padding: 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.dd-featcase__eyebrow {
	color: var(--dd-terracotta);
	margin-bottom: 14px;
}

.dd-featcase__title {
	font-size: 32px;
	line-height: 1.1;
	margin: 0 0 14px;
}

.dd-featcase__text {
	font-size: 16px;
	color: var(--dd-body);
	line-height: 1.6;
	margin: 0 0 20px;
}

.dd-featcase__cta {
	font-size: 15px;
	font-weight: 600;
}

@media (max-width: 760px) {
	.dd-featcase__tile {
		grid-template-columns: 1fr;
	}

	.dd-featcase__body {
		padding: 32px;
	}
}
