.banner {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 200px;
	background-size: cover;
	background-position: center;

	.banner-content {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		height: 100%;
		max-width: calc(100% - 2.5rem);
		max-height: calc(100% - 2.5rem);
		transform: translate(-50%, -50%);
		background: rgba(255, 255, 255, 0.5);
		backdrop-filter: saturate(0.5);
	}

	.flex-row {
		align-items: center;
		padding: 1rem var(--side-padding, 1rem);
		height: 100%;
		i {
			color: var(--color-link-hover);
			font-size: calc(
				(var(--font-min__h1) * 1px) +
					(var(--font-max__h1) - var(--font-min__h1)) *
					(100vw - calc(var(--min-size) * 1px)) /
					(var(--max-size) - var(--min-size)) + 12px
			);
		}
		h1 {
			font-weight: 900;
			margin: 0;
			padding-top: 10px;
			line-height: 1;
			font-size: calc(
				(var(--font-min__h1) * 1px) +
					(var(--font-max__h1) - var(--font-min__h1)) *
					(100vw - calc(var(--min-size) * 1px)) /
					(var(--max-size) - var(--min-size)) + 2px
			);
		}
	}
}

@media screen and (min-width: 700px) {
	.banner {
		min-height: 250px;
	}
}
@media screen and (min-width: 1000px) {
	.banner {
		min-height: 300px;
	}
}
