.page-guides .guides-list {
	padding-top: 60px;
	padding-bottom: 60px;
}
.guides-head {
	margin-bottom: 50px;
}
.guides-head .biens-section-title {
	margin-bottom: 10px;
	margin-top: 0px;
}
.guides-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px 60px;
}
.guide-card {
	display: flex;
	flex-direction: column;
}
.guide-card-img {
	width: 100%;
	height: 280px;
	overflow: hidden;
	margin-bottom: 18px;
}
.guide-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.guide-card:hover .guide-card-img img {
	transform: scale(1.04);
}
.guide-cat {
	display: inline-block;
	width: fit-content;
	background-color: #F5F2EA;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 15px 20px;
	margin-bottom: 16px;
}
.guide-card-title {
	margin: 0 0 14px;
}
.guide-card-excerpt {
	margin: 0 0 22px;
	flex: 1;
}
.guide-form .wpcf7, .guide-form .wpcf7-form p  { 
	margin: 0; 
}
.guide-form .wpcf7-form p { 
	display: flex;
	gap: 30px;
}
.guide-form-row {
	display: flex;
	gap: 14px;
	align-items: stretch;
}
.guide-form .wpcf7-form-control-wrap[data-name="guide-titre"] { 
	display: none; 
}
.guide-form-row .wpcf7-form-control-wrap { 
	flex: 1 1 auto; 
	display: block; 
}
.guide-form input[type="email"] {
	width: 100%;
	box-sizing: border-box;
	padding: 13px 18px;
	border: 1px solid #d8c9a3;
	background-color: #fff;
	font-size: 0.85rem;
	font-family: inherit;
	color: #252526;
	outline: none;
	transition: border-color 0.2s ease;
}
.guide-form input[type="email"]::placeholder { 
	color: #252526; 
	opacity: 0.5; 
}
.guide-form input[type="email"]:focus { 
	border-color: #C5BA9B; 
}
.guide-form input[type="submit"] {
	flex: 0 0 auto;
	background-color: #C5BA9B;
	color: #fff;
	border: 1px solid #C5BA9B;
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
	padding: 13px 30px;
	font-size: 13px;
	font-weight: 700;
	transition: background-color 0.3s ease;
}
.guide-form input[type="submit"]:hover { 
	background-color: #b5a88a; 
	border-color: #b5a88a; 
}
.guide-form .wpcf7-spinner { 
	display: none; 
}
.guide-form .wpcf7-response-output {
	margin: 12px 0 0 !important;
	font-size: 0.78rem;
	padding: 8px 12px !important;
}
.guide-form .wpcf7-not-valid-tip { 
	font-size: 0.75rem; margin-top: 5px; 
}

@media screen and (max-width: 1080px) {
	.guides-grid { 
		gap: 40px; 
		grid-template-columns: 1fr;
	}
	.page-guides .guides-list {
	    padding-top: 20px;
	    padding-bottom: 20px;
	}
	.guide-form-row { 
		flex-direction: column; 
	}
	.guide-form input[type="submit"] { 
		width: 100%; 
	}
	.guide-form .wpcf7-form p {
		gap: 10px;
		flex-direction: column;
	}
	.guides-head {
	    margin-bottom: 30px;
	}
}