@media screen and (max-width: 600px) {
    #angeboteGrid {

    }

    .angebotcard {
        width: 100% !important;
    }
}

#angeboteGrid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4vw;
  margin: 3vh 3vw;
}


.angebotcard {
  width: calc(33% - 4vw - 4vw);
  height: 37vh;

  padding: 2vh 2vw;

  background-color: white !important;
  color: black;

  position: relative;
}

.angebotcard img {
  width: 100%;

  object-fit: cover;
}

.angebotcard .title {
  font-size: 1.3em;
  text-align: center;
}

.angebotcard .description {
  text-align: center;
  font-size: 0.7em;
  overflow: hidden;
}

.angebotcard button {
  left: 50%;
  bottom: -10px;
  min-width: fit-content;
}
