/* Accueil — section « Secteur d'intervention » ([ville_home]) */
.secteur_home {
	padding: 80px 0;
}

.secteur_home__inner {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 56px;
	align-items: center;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}

.secteur_home__texte p {
	line-height: 1.7;
	margin: 0 0 24px;
}

.secteur_home__texte p a {
	color: #dc4e4b;
	font-weight: 700;
}

.secteur_home__tout {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 999px;
	background: #dc4e4b;
	color: #fff !important;
	font-weight: 700;
	text-decoration: none !important;
	transition: background .2s, transform .2s;
}

.secteur_home__tout:hover {
	background: #c23f3c;
	transform: translateY(-1px);
}

.secteur_home__villes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.secteur_home__villes li {
	margin: 0;
	padding: 0;
	list-style: none !important;
}

.secteur_home__villes li::before,
.secteur_home__villes li::marker {
	content: none !important;
}

.secteur_home__villes a {
	position: relative;
	display: block;
	padding: 16px 44px 16px 20px;
	border: 1px solid #e7e4df;
	border-radius: 12px;
	background: #f6f5f3;
	color: #1d1d1b !important;
	font-weight: 600;
	text-decoration: none !important;
	transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.secteur_home__villes a::after {
	content: "→";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: #efb343;
	font-weight: 700;
	transition: right .2s, color .2s;
}

.secteur_home__villes a:hover {
	background: #dc4e4b;
	border-color: #dc4e4b;
	color: #fff !important;
	transform: translateY(-2px);
}

.secteur_home__villes a:hover::after {
	right: 14px;
	color: #fff;
}

@media screen and (max-width: 1023px) {
	.secteur_home {
		padding: 56px 0;
	}

	.secteur_home__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}
}

@media screen and (max-width: 767px) {
	.secteur_home__inner {
		padding: 0 16px;
	}

	.secteur_home__villes {
		grid-template-columns: minmax(0, 1fr);
	}

	.secteur_home__tout {
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}
}
