.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;
            gap: 10px;
            align-items: flex-start;
			
	background: radial-gradient(at 50% 30%, rgba(210, 179, 107, .10), rgba(0, 0, 0, 0)), linear-gradient(to bottom, rgba(18, 16, 14, .98), rgba(14, 13, 12, .98));
    border: 1px solid #3a372f;
    border-left-color: rgba(210, 179, 107, .22);
    border-right-color: rgba(210, 179, 107, .22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), inset 0 -1px 0 rgba(0, 0, 0, .55), 0 2px 4px rgba(0, 0, 0, .65);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .6);
        }
        
        .lists_menu-head {
            height: 50px;
            width: 100%;
    background: rgba(0, 0, 0, 0.35);
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .lists_menu-item {
            height: 25px;
            width: 90%;
            margin: 0 auto;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            box-sizing: border-box;
            border-bottom: 1px solid #b4b4b4;
        }
        
        
        /*         Content       */
        
        
        .lists_content {
            width: 80%;
            box-sizing: border-box;
    background: radial-gradient(at 50% 30%, rgba(210, 179, 107, .10), rgba(0, 0, 0, 0)), linear-gradient(to bottom, rgba(18, 16, 14, .98), rgba(14, 13, 12, .98));
    border: 1px solid #3a372f;
    border-left-color: rgba(210, 179, 107, .22);
    border-right-color: rgba(210, 179, 107, .22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), inset 0 -1px 0 rgba(0, 0, 0, .55), 0 2px 4px rgba(0, 0, 0, .65);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .6);
        }
        
        .lists_content-head {
            height: 50px;
            width: 100%;
            background: #b8b8b8;
            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 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-item {
            margin-bottom: 5px;
        }