/* Avalehe pildikaardid — horisontaalne liikuv rida (marquee) */
.home-img-grid-wrap {
	padding: 48px 0;
}

.home-marquee {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.home-marquee::-webkit-scrollbar {
	display: none;
}

.home-marquee-track {
	display: flex;
	gap: 20px;
	width: max-content;
	padding: 8px 2px;
}

.home-img-grid-item {
	flex: 0 0 auto;
	width: 300px;
	display: block;
	line-height: 0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
	transition: transform .25s ease, box-shadow .25s ease;
}

.home-img-grid-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
}

.home-img-grid-item img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 768px) {
	.home-img-grid-item {
		width: 240px;
	}
	.home-marquee-track {
		gap: 14px;
	}
	.home-img-grid-wrap {
		padding: 32px 0;
	}
}

@media (max-width: 480px) {
	.home-img-grid-item {
		width: 200px;
	}
}

/* Teenuste kaardid — täis-pilt (full-tile), asendab ikoon+pealkiri kaardi */
.feat-item--tile {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
	border-radius: 10px;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}

.feat-item--tile:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.feat-tile-img {
	display: block;
	width: 100%;
	height: auto;
}

/* Täislaiuses interaktiivne kaart (asendab "Kaart" bänneri terve bloki) */
.feat-fullmap {
	width: 100%;
	max-width: 1360px;
	margin: 0 auto;
	line-height: 0;
}

.feat-fullmap-frame {
	display: block;
	width: 100%;
	border: 0;
	aspect-ratio: 1360 / 600;
}

@media (max-width: 760px) {
	.feat-fullmap-frame {
		aspect-ratio: 3 / 4;
	}
}

/* Pealehe hero: eemalda zoom-animatsioon */
.bg-overlay { animation: none !important; transform: none !important; }
