.lists {
  width: 100%;
  display: flex;
  flex-direction: column;  
  gap: 20px;
}
        
        /*         Menu        */
        
        .lists_menu {
            width: 20%;
            display: flex;
            flex-direction: column;
            gap: 10px;
            background: #181f24;
            align-items: flex-start; 
        }
        
        .lists_menu-head {
            height: 50px;
            width: 100%;
            background: #282f33;
            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: 100%;
            box-sizing: border-box;
            background: #252525;
        }
        
        .lists_content-head {
            height: 50px;
            width: 100%;
            background: #100f0e;
            font-size: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            text-transform: uppercase;
        }
      
	.lists_content-description {
 		 display: flex;
 		 justify-content: center;
		 flex-wrap: wrap;
		 gap: 15px;
	 	 padding: 20px 0;
	}

	.lists_content-description a {
 		display: inline-block;
  		padding: 10px 24px;
  		color: #d8d8d8;
  		text-decoration: none;
  		font-weight: 500;
  		letter-spacing: 0.3px;
  		border: 2px solid #100f0e;
  		transition: all 0.3s ease;
	}

	.lists_content-description a:hover {
 		background: #100f0e;
  		border-color: #100f0e;
  		color: #fff;
 		transform: translateY(-2px);
	}

        
        .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;
        } 