.banner {
	height: max(100svh, 667px);
	color: white;
	position: relative;
}

.banner__fixed {
	position: absolute;
	top: 0;
	left: 0;
	width: fit-content;
	z-index: 10;
	padding: 2rem 0;
	display: flex;
}

.banner__content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 0 var(--pad) var(--hamburger-content-safe-height);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	border-bottom-left-radius: 2rem;
	border-bottom-right-radius: 2rem;
	overflow: hidden;
}

.banner__content > picture,
.banner__content > picture > img,
.banner__content > video {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	z-index: 0;
}

.banner__content.overlay > picture::after,
.banner__content.overlay > video::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: rgb(0, 0, 0, 0.2);
}

.banner__content > video {
	pointer-events: none;
	z-index: 1;
}

.banner__content > .heading-wrapper,
.banner__content > .heading {
	z-index: 5;
}

.banner--mentions-legales::before,
.banner--4xx::before {
	content: '';
	display: block;
	position: absolute;
	aspect-ratio: 5/6;
	height: 320px;
	top: 50%;
	right: 0;
	transform: translate(50%, -50%) rotate(-45deg);
}

.banner--mentions-legales::before {
	background: url(../../images/kb/kb-sungold-graduate.webp) no-repeat center / contain;
}

.banner--4xx::before {
	background: url(../../images/kb/kb-green-glasses.webp) no-repeat center / contain;
}

@media screen and (min-width: 768px) {

	.banner__fixed {
		width: 100%;
		gap: 1.5em;
	}

	.banner--mentions-legales::before,
	.banner--4xx::before {
		height: min(632px, 50%);
	}
}