.teaserset {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.teaserset .teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: calc(33% - 18px);
  text-align: center;
  padding: 30px;
  background-color: var(--colorBlue);
  color: var(--colorWhite);
  border-radius: 10px;
  box-shadow: 1px 6px 8px 4px rgba(0,0,0,0.20);
	-webkit-box-shadow: 1px 6px 8px 4px rgba(0,0,0,0.20);
	-moz-box-shadow: 1px 6px 8px 4px rgba(0,0,0,0.20);
	font-size: 20px;
	line-height: 28px;
}

.teaserset img{
  margin-bottom: 20px;
}

@media (max-width: 1199px){
  .teaserset .teaser h3{
    font-size: clamp(22px, 4vw, 26px);
    line-height: clamp(28px, 4vw, 36px);
  }
}

@media (max-width: 991px){
  .teaserset{
    flex-direction: column;
    align-items: center;
  }
  
  .teaserset .teaser{
    width: 75%;
  }
}

@media (max-width: 991px){
  .teaserset .teaser{
    width: 100%;
  }
}