#f{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  height: auto;
  background-color: #1C1C1C;

  padding-top: 20px;
  padding-right: 20vw;
  padding-left:  20vw;
  padding-bottom: 100px;

  justify-content: space-evenly;
  align-items: flex-start;
  margin-top: auto;
}


.f_box{
  display: flex;
  flex-direction: column;
  height: auto;
  margin-right: 0;          /* gap übernimmt den Abstand */
  flex: 1 1 120px;          /* <- ab ~220px geht’s in die nächste Zeile */
  min-width: 0;             /* hilft bei Flex-Overflow */
  width: fit-content;
}

.f_text{
    display: inline-block;
    color: #A3A3A3;
    margin-top: 12px;
    text-decoration: none;
    width: fit-content;
}

.f_text:hover{
    text-decoration: underline;
}

.f_h{
  font-size: 15px;
  margin-top: 16px;
  color: #A3A3A3;
  font-weight: 600;
  white-space: nowrap;      /* <- Überschrift bleibt 1-zeilig */
  width: fit-content;
}