.wsb-geschichte-item {
    margin-right: 50%;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column-reverse;
}
.wsb-geschichte-frontend:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
	border-right: 4px dotted #FED100;
}
.wsb-geschichte-item:after {
    content: '';
    position: relative;
    width: 25px;
    height: 25px;
    background-color: #3F4646;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 1px #BEC3C4;
    z-index: 1;
    left: calc(100% - 10.5px);
    top: 47.5px;
}
.wsb-geschichte-beschreibung-wrapper {
    margin: 1rem 6.625rem 0 0;
}
.wsb-geschichte-beschreibung {
	font-size: 24px;
	color: #3F4646;
}
.wsb-geschichte-bild img {
    max-width: 100%;
}
.wsb-geschichte-jahr {
    font-size: 44px;
    font-weight: bold;
	color: #7D8B8D;
	border-bottom: solid 1px #3F4646;
	padding-bottom: 1.125rem;
}

/* Jedes zweite Element umkehren */
.wsb-geschichte-item:nth-child(even) {
    flex-direction: column-reverse;
    margin-left: 50%;
    margin-right: 0;
	&:after {
		left: calc(0% - 10.5px);
	}
	.wsb-geschichte-beschreibung {
		text-align: end;
	}
}

.wsb-geschichte-item:nth-child(even) .wsb-geschichte-beschreibung-wrapper {
    margin: 1rem 0 0 6.625rem;
}

.wsb-geschichte-item:nth-child(even) .wsb-geschichte-jahr {
	text-align: end;
}

.wsb-geschichte-item:nth-child(even) .wsb-geschichte-jahr-wrapper:before {
    left: auto;
    right: 8%;
}
/* mobile */
@media (max-width: 600px ) {
	.wsb-geschichte-frontend:after {
		left: 0%;
	}
	.wsb-geschichte-item {
		flex-direction: column-reverse;
		margin-left: 0% !important;
		margin-right: 0 !important;
		&:after {
			left: calc(0% - 10.5px);
		}
		.wsb-geschichte-beschreibung-wrapper {
			margin: 10px 0 0 0 !important;
		}
		.wsb-geschichte-beschreibung {
			text-align: start !important;
			padding-left: 2rem;
			font-size: 16px;
		}
		 .wsb-geschichte-jahr {
			text-align: start !important;
			 padding-left: 2rem;
		}
	}
	
}


/* ----- Navigation ----- */
.wsb-jahr-navigation {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    ul {
        display: flex;
        gap: 1rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }
	li:before {
		content: none !important;
		background: none !important;
	}
	a {
		font-size: 26px;
		color: #3F4546;
		&:hover, &:active {
			font-weight: 600;
			text-decoration: underline;
			color: #3F4546;
		}
	}
}
/* mobile */
@media (max-width: 600px ) {
	.wsb-jahr-navigation {
		a {
			font-size: 20px;
		}
	}
}