.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;
background: #c8caca;
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: 35px;
width: 100%;
background: #3081a6;
color: #d0d3d3;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
text-transform: uppercase;
}

.lists_content-block h2{height: 35px;
width: 100%;
background: #3081a6;
color: #d0d3d3;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
text-transform: uppercase;
}

.lists_menu-head a{
background: #3081a6;
color: #d0d3d3;
}


.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 #3081a6;
font-size: 13pt;
font-family: 'Playfair Display', serif;
        }

.lists_menu-item a {
font-family: 'Playfair Display', serif;
        }
        
        
        /*         Content       */
        
        
.lists_content {
width: 80%;
box-sizing: border-box;
background: #c8caca;
        }
        
.lists_content-head {
height: 50px;
width: 100%;
background: #3081a6;
color: #d0d3d3;
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 0px 20px 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
        padding: 0 20px 19px 20px;}
        
.lists_content-block {
        width: 438px;    
        /* 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;}