/**
 * Локальні сторінки (CPT locations) — стилі (§9-10 ТЗ).
 */

/* Hero */
.location-hero {
	padding-top: 32px;
}

.location-hero__row {
	align-items: center;
}

.location-hero__title {
	margin: 12px 0 16px;
}

.location-hero__lead {
	margin: 0 0 24px;
	font-size: 18px;
	line-height: 1.5;
	color: #444;
}

.location-hero__image {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #f5f4f0;
}

.location-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 991px) {
	.location-hero__image-col {
		margin-top: 24px;
	}
}

/* Local services list */
.section-local-services .local-services-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
}

.section-local-services .local-services-link {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	color: inherit;
	text-decoration: none;
	background: #fff;
	border: 1px solid #e8e6e0;
	border-radius: 8px;
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.section-local-services .local-services-link:hover {
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	border-color: #d4cdbf;
	transform: translateY(-2px);
}

.section-local-services .local-services-icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.section-local-services .local-services-icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.section-local-services .local-services-title {
	flex: 1 1 auto;
	font-size: 15px;
	font-weight: 600;
	color: #111;
}

.section-local-services .local-services-arrow {
	flex: 0 0 auto;
	color: #a4763e;
}
