.lists {
	width: 100%;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	/* align-items: flex-start; Wenn du willst, dass das Menü in der Länge nicht mit dem Content-Block mitwächst. Ich empfehle dir, *hier dann das padding einzufügen, damit es nicht mit dem letzten Strich endet. */
}

/*         Menu        */

.lists_menu {
	width: 20%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: var(--accent-three);
	border: 1px solid var(--main-accent);
	border-radius: 5px;
}

.lists_menu-head {
	min-height: 30px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	padding: 0 5px;
	box-sizing: border-box;
	background: var(--accent-two);
	color: var(--main-font-color);
}

.lists_menu-item {
	min-height: 25px;
  	width: 100%;
  	margin: 0 auto;
  	padding: 5px 20px;
  	display: flex;
  	align-items: center;
  	box-sizing: border-box;
  	border-bottom: 1px solid var(--main-accent);
}


/*         Content       */


.lists_content {
	width: 80%;
	box-sizing: border-box;
	background: var(--accent-three);
	line-height: 180%;
	border: 1px solid var(--main-accent);
	border-radius: 5px;
}

.lists_content-head {
	height: 50px;
	width: 100%;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	text-transform: uppercase;
	background: var(--accent-two);
	letter-spacing: 2px;
	word-spacing: 5px;
}

.lists_content-description {
	padding: 20px 40px;
	text-align: justify;
	line-height: 180%;
}

.lists_content-bit {
	padding: 0 40px 40px 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.lists_content-block {
	width: 45%;
	/* Wenn du drei Spalten willst, gib hier 30% an. Beachte, dass du diesen Wert je nach Breite des Forums und des Inhalts anpassen musst, um ein zufriedenstellendes Ergebnis zu erhalten. */
}

.lists_content-block h2 {
	text-align: center;
	background: var(--main-accent);
	font-weight: bold;
	font-size: 14px;
	padding: 10px;
	box-sizing: border-box;
	margin: 0;
	border-radius: 5px 5px 0 0;
}

.lists_content-item {
	margin-bottom: 5px;
	border: 3px solid var(--main-accent);
	border-top: none;
	border-radius: 0 0 5px 5px;
	height: 150px;
	overflow: auto;
	padding: 10px;
	box-sizing: border-box;
}