.contact-hero {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 56px;
	align-items: start;
}
.page-contact .hero{
	background: var(--navy);
	margin: 16px 16px 0px 16px;
}
.page-contact .hero .breadcrumb a, .page-contact .breadcrumb-trail .breadcrumb-item + .breadcrumb-item::before, .page-contact .breadcrumb-trail .breadcrumb-item span[aria-current="page"] {
    color: white;
}
.page-contact h1 {
	width: 90%;
}
.page-contact .hero__subtitle {
	width: 500px;
}
.page-contact .hero .breadcrumb {
	margin-bottom: 36px;
}
.page-contact .hero__inner {
	padding-top: 36px;
	padding-bottom: 72px;
}
.steps > .section__title {
	margin-bottom: 48px;
}
.steps__row {
	display: flex;
	gap: 56px;
	align-items: flex-end;
}
.steps__main {
	flex: 1;
	min-width: 0;
}
.steps__lead {
	max-width: 500px;
	color: var(--navy);
}
.steps__subtitle {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 44px 0 24px;
}
.steps__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.steps__item {
	display: flex;
	align-items: baseline;
	gap: 20px;
	padding: 16px 0;
	border-top: 1px solid var(--navy);
	font-size: 1.05rem;
}
.steps__item:last-child {
	border-bottom: 1px solid var(--navy);
}
.steps__num {
	flex: 0 0 auto;
	font-weight: 700;
}
.contact-card {
	flex: 0 0 40%;
	background: var(--navy);
	color: #fff;
	padding: 40px 38px;
	height: fit-content;
}
.contact-card__title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 28px;
}
.contact-card__row {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	color: #fff;
	text-decoration: none;
}
.contact-card__row strong {
	font-size: 1.1rem;
}
.contact-card__sub {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.92rem;
}
.contact-card__icon {
	flex: 0 0 auto;
	width: 20px;
	height: 24px;
	margin-top: 2px;
	background-color: var(--orange);
	-webkit-mask: var(--icon) center / contain no-repeat;
	mask: var(--icon) center / contain no-repeat;
}
.contact-card__rule {
	border: 0;
	height: 1px;
	background: white;
	margin: 24px 0;
}
.help-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-top: 56px;
}
.help-card {
	position: relative;
	min-height: 360px;
	padding: 40px;
	border: 1px solid var(--navy);
	background: #fff;
	display: flex;
	flex-direction: column;
}
.help-card .icon-arrow {
	position: absolute;
	top: 32px;
	right: 36px;
	background-color: var(--navy);
}
.help-card__title {
	font-size: 35px;
	font-weight: 700;
	text-transform: uppercase;
	margin: auto 0 0;
}
.help-card .separator {
	width: 100%;
	margin: 18px 0;
	background: var(--navy);
}
.help-card__text {
	margin: 0 0 22px;
}
.help-card--dark {
	background: var(--navy);
	border-color: var(--navy);
	color: #fff;
}
.help-card--dark .icon-arrow {
	background-color: #fff;
}
.help-card--dark .separator {
	background: white;
}
.help-card--dark .help-card__text {
	color: white;
}

@media screen and (max-width: 1080px) {
	.contact-hero, .help-cards {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.page-contact .hero__subtitle, .steps__lead {
		width: 100%;
	}
	.steps__row {
		flex-direction: column;
		gap: 30px;
		align-items: normal;
	}
	.contact-hero__intro {
		padding-top: 0;
	}
	.steps > .section__title {
		margin-bottom: 30px;
	}
	.help-card {
		min-height: fit-content;
		min-width: 0; /* autorise la card à rétrécir dans la grille (sinon le long titre la fait déborder) */
	}
	.help-card__title {
		font-size: 28px;
		overflow-wrap: break-word; /* « PARTENARIATS » se coupe au lieu de déborder */
	}
	.page-contact .hero__inner {
		padding: 30px;
	}
}