.mittagsmenue-wrapper {
  margin: 30px 0;
}

.menue-tag {
  margin-bottom: 40px;
  text-align: center;
}

.menue-tag h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  color: rgb(1 52 102);
  font-size: 30px;
}

.menue-tag hr {
  border-top: 1px solid red;
}

.menue-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  text-align: center;
}

.menue-row.single {
  justify-content: center;
}

.menue-box {
  /* flex: 0 0 calc(33.333% - 14px); */
  flex: 0 0 calc(24.9% - 14px);
  padding: 20px;
  border-radius: 6px;
  box-sizing: border-box;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
}

/* Tablet: 2 Boxen pro Zeile */
@media (max-width: 1024px) {
  .menue-box {
    flex: 0 0 calc(50% - 10px);
  }
}

/* Smartphone: 1 Box pro Zeile */
@media (max-width: 768px) {
  .menue-box {
    flex: 0 0 100%;
  }
}