/*
 * Bandeau « Demande de soumission » au-dessus du pied de page (thème enfant argenta-child).
 * Rouge du site : #ed3124.
 */

.pg-quote-band {
	position: relative;
	clear: both; /* le contenu des pages est en colonnes flottantes non dégagées */
	padding: 56px 0;
	background-color: #111;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}

/* Voile : texte lisible à gauche, photo visible à droite */
.pg-quote-band:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	/* La photo (auto 100%) occupe ~570px à droite : fondu terminé avant son bord gauche */
	background: linear-gradient(to left, rgba(17, 17, 17, .3) 0, rgba(17, 17, 17, .55) 300px, #111 560px);
	pointer-events: none;
}

.pg-quote-band-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 15px;
}

.pg-quote-band h2 {
	margin: 0 0 8px;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
}

.pg-quote-band h2:after {
	content: '';
	display: block;
	width: 54px;
	height: 4px;
	margin-top: 16px;
	background: #ed3124;
}

.pg-quote-band p {
	max-width: 520px;
	margin: 16px 0 0;
	color: #e6e6e6;
	font-size: 16px;
	line-height: 1.55;
}

.pg-quote-band .pg-quote-band-btn {
	flex: 0 0 auto;
	display: inline-block;
	padding: 16px 30px;
	border-radius: 999px;
	background: #ed3124;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .03em;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: background-color .2s ease, transform .2s ease;
	transition: background-color .2s ease, transform .2s ease;
}

.pg-quote-band .pg-quote-band-btn:hover,
.pg-quote-band .pg-quote-band-btn:focus-visible {
	background: #d4261a;
	color: #fff;
	transform: translateY(-2px);
}

.pg-quote-band .pg-quote-band-btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

@media screen and (max-width: 768px) {
	.pg-quote-band {
		padding: 46px 0;
		text-align: center;
	}

	.pg-quote-band:before {
		background: rgba(17, 17, 17, .78);
	}

	.pg-quote-band-inner {
		flex-direction: column;
		padding: 0 20px;
	}

	.pg-quote-band h2 {
		font-size: 25px;
	}

	.pg-quote-band h2:after {
		margin-right: auto;
		margin-left: auto;
	}
}
