.formations-home-content {
	--formations-ink: #f5f7f8;
	--formations-muted: #a5adb2;
	--formations-line: #3a4044;
	--formations-surface: #181818;
	--formations-accent: #00a3e0;
	--formations-accent-dark: #0079aa;
	--formations-soft: rgba(0, 163, 224, .12);
	--formations-metal: #c9d0d4;
	position: relative;
	left: 50%;
	width: min(1180px, calc(100vw - 32px));
	margin: 26px 0 40px;
	color: var(--formations-ink);
	font-family: "Questrial", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	transform: translateX(-50%);
}

.formations-home-content *,
.formations-home-content *::before,
.formations-home-content *::after {
	box-sizing: border-box;
}

.formations-home-content h1,
.formations-home-content h2,
.formations-home-content h3,
.formations-home-content p {
	margin-top: 0;
}

.formations-home-content a {
	text-decoration: none;
}

.formations-home-content__hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
	min-height: 500px;
	overflow: hidden;
	border: 1px solid var(--formations-line);
	border-radius: 26px;
	background:
		radial-gradient(circle at 78% 20%, rgba(0, 163, 224, .88) 0 10%, transparent 11%),
		radial-gradient(circle at 88% 28%, rgba(255, 255, 255, .11) 0 20%, transparent 21%),
		linear-gradient(145deg, #121212 0%, #171b1d 58%, #003e59 100%);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .4);
}

.formations-home-content__hero::after {
	content: "";
	position: absolute;
	right: -120px;
	bottom: -170px;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 50%;
	box-shadow: 0 0 0 52px rgba(255, 255, 255, .04), 0 0 0 104px rgba(255, 255, 255, .025);
}

.formations-home-content__hero-copy,
.formations-home-content__hero-visual {
	position: relative;
	z-index: 1;
}

.formations-home-content__hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(38px, 6vw, 76px);
}

.formations-home-content__eyebrow {
	margin-bottom: 12px;
	color: #71d8ff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.formations-home-content__hero h1 {
	max-width: 680px;
	margin-bottom: 20px;
	color: #fff;
	font-size: clamp(40px, 5vw, 66px);
	font-weight: 700;
	line-height: 1.03;
	letter-spacing: -.04em;
}

.formations-home-content__hero-copy > p:not(.formations-home-content__eyebrow) {
	max-width: 610px;
	margin-bottom: 27px;
	color: rgba(255, 255, 255, .74);
	font-size: 18px;
	line-height: 1.65;
}

.formations-home-content__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
}

.formations-home-content__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: 9px;
	font-weight: 700;
	transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.formations-home-content__button:hover,
.formations-home-content__button:focus {
	transform: translateY(-1px);
}

.formations-home-content__button.is-primary {
	background: var(--formations-accent);
	color: #071116 !important;
}

.formations-home-content__button.is-primary:hover,
.formations-home-content__button.is-primary:focus {
	background: #71d8ff;
}

.formations-home-content__button.is-secondary {
	border-color: rgba(255, 255, 255, .22);
	background: rgba(255, 255, 255, .06);
	color: #fff !important;
}

.formations-home-content__button.is-secondary:hover,
.formations-home-content__button.is-secondary:focus {
	border-color: var(--formations-accent);
	color: #71d8ff !important;
}

.formations-home-content__hero-visual {
	display: grid;
	place-items: center;
	padding: 42px;
}

.formations-home-content__hero-visual img {
	width: min(330px, 88%);
	filter: drop-shadow(0 24px 30px rgba(0, 0, 0, .44));
}

.formations-home-content__section {
	padding: 70px 0 10px;
}

.formations-home-content__heading {
	max-width: 720px;
	margin: 0 auto 30px;
	text-align: center;
}

.formations-home-content__heading .formations-home-content__eyebrow {
	color: var(--formations-accent);
}

.formations-home-content__heading h2,
.formations-home-content__private-copy h2 {
	margin-bottom: 13px;
	color: var(--formations-ink);
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.08;
	letter-spacing: -.035em;
}

.formations-home-content__heading p,
.formations-home-content__private-copy > p:not(.formations-home-content__eyebrow) {
	color: var(--formations-muted);
	font-size: 17px;
	line-height: 1.65;
}

.formations-home-content__courses {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.formations-home-content__course {
	display: flex;
	flex-direction: column;
	min-height: 260px;
	padding: 26px;
	border: 1px solid var(--formations-line);
	border-radius: 16px;
	background: var(--formations-surface);
	box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
	transition: border-color .2s ease, transform .2s ease;
}

.formations-home-content__course:hover {
	border-color: #287b9b;
	transform: translateY(-2px);
}

.formations-home-content__course-index {
	margin-bottom: 24px;
	color: var(--formations-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.formations-home-content__course h3 {
	margin-bottom: 12px;
	color: var(--formations-ink);
	font-size: 28px;
	line-height: 1.18;
}

.formations-home-content__course p {
	margin-bottom: 22px;
	color: var(--formations-muted);
	line-height: 1.6;
}

.formations-home-content__course .formations-home-content__button {
	width: fit-content;
	margin-top: auto;
}

.formations-home-content__private {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
	align-items: center;
	gap: 36px;
	margin-top: 70px;
	padding: clamp(28px, 5vw, 54px);
	border: 1px solid var(--formations-line);
	border-radius: 20px;
	background: linear-gradient(135deg, #181818, #003e59);
	box-shadow: 0 18px 48px rgba(0, 0, 0, .3);
}

.formations-home-content__private-copy > p:not(.formations-home-content__eyebrow) {
	margin-bottom: 23px;
}

.formations-home-content__private-features {
	display: grid;
	gap: 11px;
}

.formations-home-content__private-feature {
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 9px;
	background: rgba(255, 255, 255, .05);
	color: rgba(255, 255, 255, .86);
	font-size: 14px;
}

@media (max-width: 860px) {
	.formations-home-content__hero,
	.formations-home-content__private {
		grid-template-columns: 1fr;
	}

	.formations-home-content__hero-visual {
		min-height: 260px;
		padding-top: 0;
	}

	.formations-home-content__courses {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	.formations-home-content {
		width: min(100vw - 20px, 1180px);
	}

	.formations-home-content__hero {
		border-radius: 18px;
	}

	.formations-home-content__hero-copy {
		padding: 30px 22px;
	}

	.formations-home-content__hero h1 {
		font-size: 39px;
	}

	.formations-home-content__section {
		padding-top: 52px;
	}
}
