/* Filtres réalisations */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@700&display=swap');

.realisations-filtres {
	margin-bottom: 1.5rem;
	margin-right: 100px;
	display: flex;
	justify-content: flex-end;
}

.realisations-filtres__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 10px;
	justify-content: flex-end;
}

.realisations-filtres__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 0 0 180px;
	width: 180px;
	max-width: 180px;
}


/* Champ mot-clé : même largeur que les selects (override min-width navigateur sur input search) */
.realisations-filtres input.realisations-filtres__input,
.realisations-filtres__field--keyword input[type="search"] {
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	font-family: 'Urbanist', sans-serif !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	line-height: 25px !important;
	border: solid 1px #1F327C !important;
	border-radius: 100px !important;
	background: #fff !important;
}

/* Placeholder "Mot-Clé" : même typo que les autres champs */
.realisations-filtres input.realisations-filtres__input::placeholder,
.realisations-filtres__field--keyword input[type="search"]::placeholder {
	font-family: 'Urbanist', sans-serif !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	line-height: 25px !important;
	opacity: 1;
}

.realisations-filtres input.realisations-filtres__input::-webkit-input-placeholder,
.realisations-filtres__field--keyword input[type="search"]::-webkit-input-placeholder {
	font-family: 'Urbanist', sans-serif !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	line-height: 25px !important;
	opacity: 1;
}

.realisations-filtres input.realisations-filtres__input::-moz-placeholder,
.realisations-filtres__field--keyword input[type="search"]::-moz-placeholder {
	font-family: 'Urbanist', sans-serif !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	line-height: 25px !important;
	opacity: 1;
}

.realisations-filtres input.realisations-filtres__input:-ms-input-placeholder,
.realisations-filtres__field--keyword input[type="search"]:-ms-input-placeholder {
	font-family: 'Urbanist', sans-serif !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	line-height: 25px !important;
}

.realisations-filtres__label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.realisations-filtres__input,
.realisations-filtres__select {
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	padding: 10px;
	font-family: 'Urbanist', sans-serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 25px;
	color: #1F327C;
	border: solid 1px #1F327C;
	border-radius: 100px;
	background: #fff;
}


.realisations-filtres__input:focus,
.realisations-filtres__select:focus {
	outline: none;
	border-color: #1F327C;
	box-shadow: 0 0 0 1px #1F327C;
}

/* Bouton "Afficher plus" injecté par JS quand Elementor ne le rend pas
   (cas où max_num_pages=1 car tous les posts chargés côté serveur). */
.rf-load-more-injected {
	display: none; /* JS gère la visibilité via syncLoadMoreButton */
	justify-content: center;
	width: 100%;
	margin-top: 2em;
}

.rf-load-more-injected .elementor-button {
	cursor: pointer;
	/* border: none; */
	border: solid 1px #1F327C;
	background: transparent;
	color: #1F327C;
	font-family: 'Urbanist', sans-serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 25px;
	border-radius: 100px;
	padding: 10px 20px;
	cursor: pointer;
	transition: all 0.3s;
}

@media (max-width: 767px) {
	.realisations-filtres__inner {
		grid-template-columns: 1fr;
	}
}
