.lists_content-block h2 {
text-transform: uppercase;
  font-size: 15px;
  border-left: 5px solid var(--circle-color);
  padding-left: 5px;
}

.lists {
            width: 100%;
            display: flex;
            gap: 5px;
            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: var(--container-background);
            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 {
            min-height: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 0 5px;
  box-sizing: border-box;
  background-color: var(--light);
  letter-spacing: 1px;
  font-size: 10px;
        }
        
        .lists_menu-item {
            min-height: 25px;
  width: 90%;
  margin: 0 auto;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 1px solid var(--body-background);
  text-transform: uppercase;
  font-size: 10px;
        }
        
        
        /*         Content       */
        
        
        .lists_content {
            width: 80%;
            box-sizing: border-box;
			
        }
.lists_content1 {  
	  width: 80%;
            box-sizing: border-box;
padding: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
	background: var(--container-background);}

        .lists_content-head {
            height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 10px solid var(--light);
  padding: 20px;
  font-family: var(--mainfont);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  flex-wrap: wrap;
  margin-bottom: 5px;
        }
        
        .lists_content-description {
          
            text-align: justify;
            line-height: 180%;
        }
        
        .lists_content-bit {    
            padding: 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
			
           background: var(--container-background);
        }
        
        .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;
  font-size: 10px;
  text-transform: uppercase;
  line-height: 130%;
  padding-left: 10px;
        }

.lists_headline {
	font-family: 'arsenica_trialmedium';
	font-size: 50px;
	font-weight: bold;
	letter-spacing: 13px;
	color: var(--headline-color);
	text-transform: uppercase;
	text-align: center;
}

.lists_subline {
	font-size: 12px;
	color: var(--font-color);
	text-transform: none;
	font-family: 'Playfair Display';
	letter-spacing: 3px;
	font-weight: 500;
	text-align: center;
	margin-top: -10px;
	margin-bottom: 40px;
}