.sfc-section-about {
	--sfc-about-background-color: #111;
	--sfc-about-overlay-color: rgba(17, 17, 17, .78);
	--sfc-about-title-color: #fff;
	--sfc-about-text-color: #fff;
	--sfc-about-background-attachment: scroll;
	--sfc-about-background-image: none;
	--sfc-about-button-bg: #d71920;
	--sfc-about-button-text: #fff;
	--sfc-about-button-hover-bg: #fff;
	--sfc-about-button-hover-text: #111;
	position: relative;
	width: 100%;
	min-height: clamp(480px, 62svh, 700px);
	padding: 0;
	overflow: hidden;
	isolation: isolate;
	background-color: var(--sfc-about-background-color);
	background-image: var(--sfc-about-background-image, none);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: var(--sfc-about-background-attachment);
}

.sfc-about-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: auto;
	width: clamp(420px, 54vw, 900px);
	z-index: 0;
	background: var(--sfc-about-overlay-color);
	clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
	pointer-events: none;
}

.sfc-about-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: stretch;
	width: 100%;
	height: 100%;
	min-height: inherit;
}

.sfc-about-copy {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: clamp(420px, 54vw, 900px);
	max-width: 100%;
	margin-left: auto;
	height: 100%;
	min-height: inherit;
	padding: clamp(48px, 7vw, 90px) clamp(28px, 3vw, 56px) clamp(42px, 5vw, 68px) 22%;
	color: var(--sfc-about-text-color);
}

.sfc-about-title {
	flex: 0 0 auto;
	max-width: 100%;
	margin: 0 0 22px;
	color: var(--sfc-about-title-color);
	font-size: clamp(32px, 4.4vw, 64px);
	font-weight: 800;
	line-height: 1.05;
	text-wrap: balance;
}

.sfc-about-text {
	box-sizing: border-box;
	width: min(620px, 100%);
	max-width: 100%;
	min-height: 0;
	padding-right: 8px;
	overflow: visible;
	font-size: clamp(17px, 1.55vw, 23px);
	line-height: 1.55;
}

.sfc-about-text p {
	margin: 0 0 1em;
}

.sfc-about-text p:last-child {
	margin-bottom: 0;
}

.sfc-about-button-wrap {
	flex: 0 0 auto;
	margin-top: auto;
	padding-top: 28px;
}

.sfc-about-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	max-width: 100%;
	box-sizing: border-box;
	padding: 12px 26px;
	border: 2px solid transparent;
	border-radius: 2px;
	background: var(--sfc-about-button-bg);
	color: var(--sfc-about-button-text);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.sfc-about-button:hover,
.sfc-about-button:focus-visible {
	background: var(--sfc-about-button-hover-bg);
	color: var(--sfc-about-button-hover-text);
	border-color: var(--sfc-about-button-hover-bg);
}

.sfc-about-button:hover {
	transform: translateY(-1px);
}

.sfc-about-button:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

@media (max-width: 1100px) {
	.sfc-section-about {
		min-height: 520px;
	}

	.sfc-about-overlay {
		width: 72vw;
		clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
	}

	.sfc-about-copy {
		width: 72vw;
		max-width: 100%;
		padding-left: 22%;
		padding-right: 48px;
	}
}

@media (max-width: 900px) {
	.sfc-section-about {
		min-height: 500px;
	}

	.sfc-about-overlay {
		width: 82vw;
		clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
	}

	.sfc-about-copy {
		width: 82vw;
		max-width: 100%;
		padding: 48px 40px 42px 18%;
	}

	.sfc-about-title {
		font-size: clamp(30px, 6vw, 50px);
	}

	.sfc-about-text {
		font-size: 18px;
		line-height: 1.5;
	}
}

@media (max-width: 600px) {
	.sfc-section-about {
		min-height: 520px;
		background-position: center center;
	}

	.sfc-about-overlay {
		width: 94vw;
		clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
	}

	.sfc-about-copy {
		width: 94vw;
		max-width: 100%;
		min-height: 520px;
		margin-left: auto;
		padding: 38px 28px 32px 14%;
	}

	.sfc-about-title {
		margin-bottom: 16px;
		font-size: clamp(28px, 9vw, 40px);
	}

	.sfc-about-text {
		width: 100%;
		font-size: 16px;
		line-height: 1.45;
	}

	.sfc-about-button-wrap {
		padding-top: 22px;
	}

	.sfc-about-button {
		width: auto;
		max-width: 100%;
	}
}

@media (max-width: 380px) {
	.sfc-section-about,
	.sfc-about-copy {
		min-height: 540px;
	}

	.sfc-about-copy {
		padding-left: 14%;
		padding-right: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sfc-about-button {
		transition: none;
	}
}
