.lists {
            width: 100%;
            display: flex;
            gap: 20px;
            justify-content: space-between;
            align-items: flex-start; 
        }
        
        /*         Menu        */
        
        .lists_menu {
            width: 20%;
            display: flex;
            flex-direction: column;
            gap: 10px;
            background: var(--bg);
            align-items: flex-start;
			border: 1px solid var(--border);
           padding: 0px;
        padding-bottom: 10px; 
        }
        
        .lists_menu-head {
            height: 50px;
            width: 100%;
            background: var(--background2);
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            text-transform: uppercase;
			color: var(--navigation);
        }

.lists_menu-head a:link, 
.lists_menu-head a:visited,
.lists_menu-head a:hover {
  color: var(--navigation);
  text-decoration: none;
}
        
        .lists_menu-item {
            height: 35px;
            width: 90%;
            margin: 0 auto;
            padding: 10px;
            display: flex;
            align-items: center;
            box-sizing: border-box;
            border-bottom: 1px solid var(--border);
        }
        
        
        /*         Content       */
        
        
        .lists_content {
            width: 80%;
            box-sizing: border-box;
            background: var(--bg);
			border: 1px solid var(--border);
  padding: 0px;
        }
        
        .lists_content-head {
            height: 50px;
            width: 100%;
            background: var(--background2);
            font-size: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            text-transform: uppercase;
			color: var(--navigation);
        }
        
        .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;
        }

.list_mem {
background: var(--background2);
  border: 1px double var(--border);
  padding: 5px;
  text-transform: uppercase;
  font-weight: bold;
	color: var(--navigation);
}
		
		
		
		