.wahl-lm__items {
	background-color: var(--brand-primary);
	min-height: 500px;
	position: relative;
	color: white;
	border-bottom: 15px solid rgb(246, 141, 58);
	display: flex;
	align-items: center;
}

.wahl-lm__items a {
	color: #fff;
}

.wahl-lm__items--inner {
	margin: 0 auto;
	display: flex;
	flex-flow: row nowrap;
	flex-basis: 85vw;
	justify-content: space-between;
}

.wahl-lm__items::after {
	left: 0;
	top: 25px;
}

.wahl-lm__items::before,
.wahl-lm__items::after {
	position: absolute;
	background-color: rgba(255,255,255,0.1);
	content: "";
	height: 25px;
	width: 25px;
}

.wahl-lm__items::before {
	left: 25px;
	top: 0;
}

.wahl-lm__item {
	display: flex;
  	flex-flow: row nowrap;
	z-index: 5;
	gap: 40px;
}

.wahl-lm__edit {
	color: white;
	width: fit-content;
}

.wahl-lm__button {
	position: relative;
    font-weight: 700;
    color: #fff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    width: fit-content;
    border: 1px solid #fff;
    padding: 8px 45px 8px 15px;
    border-radius: 3px;
	transition: all 300ms ease;
}

.wahl-lm__button:hover {
	background-color: rgba(255,255,255,0.3);
	transition: all 300ms ease;
	color: #fff;
	text-decoration: none;
}

.wahl-lm__button::before {
	background: url('img/arrow-right.svg') no-repeat center center / contain transparent;
    width: 16px;
    height: 20px;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
    -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(80deg) brightness(102%) contrast(104%);
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(80deg) brightness(102%) contrast(104%);
}

.wahl-lm__title {
	font-weight: bold;
	font-size: 30px;
}

.wahl-lm__body {
	font-size: large;
	flex: 1 1 auto;
	max-width: 225px;
}

.wahl-lm__icon {
	position: relative;
	font-size: 60px;
	margin-top: 15px;
}

.wahl-lm__icon::after {
	position: absolute;
	background-color: rgba(255,255,255,0.1);
	content: "";
	height: 50px;
	width: 50px;
	left: -10px;
	top: 0px;
}

.wahl-lm__logomark {
	position: absolute;
	content: "";
	bottom: 0px;
	right: 10px;
	max-height: 95%;
	overflow: hidden;
	width: 13vw;
}

.wahl-lm__logomark > img {
	object-fit: contain
}

.wahl-lm__content {
	display: flex;
  	flex-flow: column nowrap;
}

@media (max-width: 1135px) {
	.wahl-lm__items--inner {
		flex-direction: column;
		gap: 50px;
	}

	.wahl-lm__logomark {
		width: 53vw;
	}

	.wahl-lm__body {
		max-width: unset;
	}

	.wahl-lm__content {
		flex-grow: 1;
	}

	.wahl-lm__icon {
		min-width: 75px
	}	
}