.angebot {
  padding: 120px 0;
}
.angebot .angebot__title {
  margin-bottom: 90px;
}
.angebot .angebot-content {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 64px 32px;
}
.angebot .angebot-card {
  flex: 1 300px;
  display: flex;
  flex-direction: column;
}
.angebot .angebot-card__header {
  margin-bottom: 8px;
}
.angebot .angebot-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 250px;
  height: 100vh;
  margin-bottom: 20px;
  overflow: hidden;
}
.angebot .angebot-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.angebot .angebot-card__title {
  color: var(--highlight);
  font-size: 22px;
  font-weight: bold;
  letter-spacing: -0.22px;
  line-height: 150%;
}
.angebot .angebot-card__text p {
  font-size: 16px;
  line-height: 150%;
}
.angebot .angebot-card__footer {
  margin-top: 10px;
}
.angebot .angebot-opts {
  margin-top: 32px;
}
@media screen and (max-width: 1440px) {
  .angebot {
    padding: 90px 0;
  }
}
@media screen and (max-width: 1023px) {
  .angebot {
    padding: 70px 0;
  }
  .angebot .angebot__title {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 767px) {
  .angebot {
    padding: 50px 0;
  }
}