#angebote {
  border-bottom: 2px solid black;
}

#angebote .items {
  margin-left: -10px;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

#angebote .item {
  max-width: 50%;
}

#angebote .item a {
  display: flex;
  flex-direction: column;
  width: 240px;
  text-align: center;
  font-size: 1.1rem;
  text-transform: uppercase;
  gap: 10px;
  padding: 15px 10px;
  border: 1px solid transparent;
  margin-right: 10px;
}

#angebote .item img {
  width: 100%;
}

@media (max-width: 767px) {
  #angebote .item a {
    width: calc(100% - 10px);
    font-size: 0.9rem;
    margin-right: 0;
  }
}



#angebote .item a:hover {
  border: 1px solid black;
}

#angebote a {
  text-decoration: none;
  color: var(--color-dark);
}

#angebote h2 {
  margin-bottom: 0.5rem;
}
#angebote p {
  margin: 0 0 1rem;
}

