.section-list .section-body-wrapper {
	padding-top: var(--space-4xl);
	padding-bottom: var(--space-4xl);
	position: relative;
}

.section-list .section-list__logo {
	display: flex;
	justify-content: center;
	margin-bottom: var(--space-3xl);

	.section-list__logo-img {
		max-width: 13.313rem;
	}
}

.section-list .section-list__content {
	display: flex;
	flex-direction: column;
	position: relative;
    z-index: 1;
}

.section-list .section-list__grid {
	display: flex;
	flex-direction: column;
	gap: var(--space-2xl);
}

.section-list .section-list__wysiwyg,
.section-list .section-list__grid-title {
	color: var(--color-sand-worm);
}

.section-list .section-list__content-image img {
	width: 100%;
}

.section-list__content-header,
.section-list__content-image {
	margin-bottom: var(--space-3xl);
}

.section-list__content-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--space-3xl);
}

.section-list__bg {
    width: 100%;
    height: 100%;
    position: absolute;
	top: 0;
	left: 0;
    z-index: 0;

	&:before {
		content: '';
        display: block;
		width: 100%;
		height: 100%;
		background-size: contain;
		background-position: top left;
		background-repeat: no-repeat;
	}

	&.glance:before {
		background-image: url('../../../assets/images/vertical-stripes.svg');
	}
}