.adv-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: clamp(12px, 2vw, 20px);
	row-gap: clamp(32px, 4vw, 52px);
	align-items: start;
}

.adv-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-decoration: none;
	color: inherit;
}

.adv-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
	box-shadow: 0 4px 20px rgba(52, 47, 46, 0.14);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

a.adv-item:hover .adv-img,
a.adv-item:focus-visible .adv-img {
	box-shadow: 0 8px 36px rgba(52, 47, 46, 0.26);
	transform: translateY(-3px);
}

.adv-naam {
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--nlkv-muted, #746f6b);
	text-align: center;
}

.adv-leeg {
	color: inherit;
	font-style: italic;
}

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

@media (max-width: 480px) {
	.adv-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
