.lists {
	background: #151515;
	width: 100%;
	color: #E0F2F7;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	border-radius: 10px;
}

/*         Menu        */
        
        .lists_menu {
            width: 20%;
            display: flex;
            flex-direction: column;
            gap: 10px;
            background: #151515;
            align-items: flex-start;
border-radius: 10px;
        /* padding-bottom: 10px; * Hier nutzen, wenn du nicht willst, dass das Menü dieselbe Länge hat wie der Content-Block. */
}

.lists_menu-head {
	background: #151515;
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	border-radius: 10px;
	font-weight: bold;
}

.lists_menu-item {
	background: #151515;
	width: 90%;
	height: 25px;
	margin: 0 auto;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
border-radius: 10px;
	border-bottom: 1px solid #E0F2F7;
}

/*         Content       */
        
        
        .lists_content {
            width: 80%;
            box-sizing: border-box;
            background: #151515;
border-radius: 10px;
}

.lists_content-head {
	background: #151515;
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	border-radius: 10px;
	font-size: 30px;
	font-weight: bold;
}

.lists_content-description {
	background: #151515;
	padding: 20px 40px;
	text-align: justify;
	line-height: 180%;
border-radius: 10px;
}

.lists_content-bit {
	background: #151515;
	padding: 0 40px 40px 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
border-radius: 10px;
}

.lists_content-block {
	background: #151515;
	width: 45%;
border-radius: 10px;
}

.lists_content-item {
	background: #151515;
	margin-bottom: 5px;
border-radius: 10px;
}


		