.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: 22%;
            display: flex;
            flex-direction: column;
            gap: 10px;
            background: var(--hintergrund2);
            align-items: flex-start;
            /* padding-bottom: 10px; * Hier nutzen, wenn du nicht willst, dass das Menü dieselbe Länge hat wie der Content-Block. */
        }
        
        .lists_menu-head {
            height: 50px;
            width: 100%;
            background: var(--hintergrund2);
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .lists_menu-item {
            height: 25px;
            width: 95%;
            margin: 0 auto;
            padding: 10px 10px;
            display: flex;
            align-items: center;
            box-sizing: border-box;
            border-bottom: 1px solid var(--akzent2);
        }
        
        
        /*         Content       */
        
        
        .lists_content {
            width: 78%;
            box-sizing: border-box;
            background: var(--hintergrund2);
        }
        
        .lists_content-head {
            height: 50px;
            width: 100%;
            background: var(--hintergrund2);
            font-size: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .lists_content-description {
            padding: 20px 40px;
            text-align: justify;
            line-height: 180%;
        }
        
        .lists_content-bit {
            padding: 0 20px 30px 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px;
        }
        
        .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;
    border-bottom:0px;
    padding:3px;
    font-size:20pt;
}
        
        .lists_content-item {
            margin-bottom: 5px;
            font-size: 12pt;
        }

.listhead1{
	font-family:var(--font-headline1);
	text-align:center;
	font-size:26px;
	border-bottom:1px solid var(--akzent2);
}

.listhead2{
	font-family:var(--font-headline1);
	text-align:center;
	font-size:20px;
	background-color: var(--akzent2);
	color:var(--font-color1);
}