.seo-text {
	--seo-text-body-collapsed: 310px;
	--seo-text-left-width: min(60.069vw, 865px);
	--seo-text-image-height: max(100vh, 800px);

	position: relative;
	overflow: clip;
	color: #e7e7e7;
	background: #000;
	margin-top: 30px;
	margin-bottom: 30px;
}

.seo-text__inner {
	display: flex;
	align-items: flex-start;
	max-width: none;
	padding-right: 0;
	padding-left: 0;
}

.seo-text__content {
	box-sizing: border-box;
	flex: 0 0 var(--seo-text-left-width);
	width: var(--seo-text-left-width);
	padding-left: 135px;
}

.seo-text__content > * {
	max-width: 505px;
}

.seo-text__more {
	display: none;
	align-items: center;
	gap: 8px;
	border: 0;
	padding: 0;
	color: #e7e7e7;
	font-family: inherit;
	font-weight: 300;
	font-size: 12px;
	line-height: normal;
	background: transparent;
	cursor: pointer;
}

.seo-text__more-icon {
	width: 14px;
	height: 14px;
	position: relative;
	flex: 0 0 14px;
}

.seo-text__more-icon:before {
	content: "";
	position: absolute;
	top: 3px;
	left: 5px;
	width: 5px;
	height: 5px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg);
}

.seo-text__more-icon:after {
	content: "";
	position: absolute;
	top: 2px;
	left: 7px;
	width: 1px;
	height: 10px;
	background: currentColor;
}

.seo-text__body {
	display: flex;
	min-height: var(--seo-text-image-height);
	flex-direction: column;
	justify-content: center;
	margin-top: 0;
	font-weight: 300;
	font-size: 14px;
	line-height: normal;
	color: #e7e7e7;
	transition: max-height .3s ease;
	padding-top: 100px;
	padding-bottom: 100px;
}

.seo-text__body > h2 {
	margin: 0;
	font-weight: 300;
	font-size: 36px;
	line-height: normal;
	text-transform: uppercase;
	color: #e7e7e7;
}

.seo-text__body p,
.seo-text__body h2,
.seo-text__body h3,
.seo-text__body h4,
.seo-text__body ul,
.seo-text__body ol {
	margin-top: 0;
}

.seo-text__body p {
	margin-bottom: 0;
}

.seo-text__body h2 + *,
.seo-text__body p + p,
.seo-text__body * + p,
.seo-text__body p + *,
.seo-text__body ul + *,
.seo-text__body ol + * {
	margin-top: 20px;
}

.seo-text__images {
	position: sticky;
	top: max(0px, calc((100vh - var(--seo-text-image-height)) / 2));
	flex: 1 1 auto;
	width: calc(100% - var(--seo-text-left-width));
	height: var(--seo-text-image-height);
	margin-left: auto;
	overflow: hidden;
}

.seo-text__image {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .45s ease, transform .7s ease;
	transform: scale(1.025);
}

.seo-text__image.is-active {
	z-index: 1;
	opacity: 1;
	transform: scale(1);
}

.seo-text__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 1441px) {
	.seo-text__content > * {
		max-width: 540px;
	}
}

@media (min-width: 1024px) and (max-width: 1439px) {
	.seo-text {
		--seo-text-left-width: 60.069vw;
	}
}

@media (max-width: 1023px) {
	.seo-text {
		--seo-text-body-collapsed: 284px;
		overflow: hidden;
	}

	.seo-text__inner {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		min-height: 0;
		padding-top: 0;
		padding-bottom: 0;
	}

	.seo-text__content {
		box-sizing: border-box;
		width: 100%;
		flex-basis: auto;
		margin-top: 0;
		padding: 30px 20px;
	}

	.seo-text__content > * {
		max-width: none;
	}

	.seo-text__text {
		overflow: hidden;
		transition: max-height .3s ease;
	}

	.seo-text.is-collapsible:not(.is-expanded) .seo-text__text {
		max-height: var(--seo-text-body-collapsed);
	}

	.seo-text__body {
		display: block;
		min-height: 0;
	}

	.seo-text__body + .seo-text__body {
		margin-top: 40px;
	}

	.seo-text__body > h2 {
		font-size: 20px;
		line-height: normal;
	}

	.seo-text.is-collapsible .seo-text__more {
		display: inline-flex;
		margin-top: 20px;
	}

	.seo-text.is-expanded .seo-text__more-icon {
		transform: rotate(180deg);
	}

	.seo-text__images {
		position: relative;
		width: 100%;
		height: 530px;
		margin-left: 0;
	}

	.seo-text__image {
		display: none;
		position: static;
		transform: none;
	}

	.seo-text__image[data-seo-text-image="0"] {
		display: block;
		opacity: 1;
		height: 100%;
	}

	.seo-text__image img {
		object-fit: cover;
	}
}

@media (prefers-reduced-motion: reduce) {
	.seo-text__image {
		transition: none;
		transform: none;
	}
}
