.CardList:not(.swiper-wrapper) .ImageTextCard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 10px;
}

@media screen and (min-width: 769px) {

.CardList:not(.swiper-wrapper) .ImageTextCard {
    margin: 0 10px 10px;
}
  }

.CardList.swiper-wrapper .ImageTextCard {
  align-self: stretch;
  height: auto;
}

.ImageTextCard {
  position: relative;
  border-radius: 15px;
  background-color: #ffffff;

  .Picture img {
    border-radius: 15px 15px 0 0;
  }
}

a.ImageTextCard {
  transition: box-shadow 0.2s;
}

a.ImageTextCard:hover {
    box-shadow: 5px 5px 20px 1px rgba(0, 0, 0, 0.3);
  }

.ImageTextCard-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 15px 25px;
}

.ImageTextCard-headline {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 1.625rem;
  font-weight: 500;
  -webkit-hyphens: auto;
          hyphens: auto;
  line-height: 2.125rem;
  text-align: center;
  word-break: break-word;
  color: var(--clr-primary);
}

.ImageTextCard-headline .capitalize {
    text-transform: none;
    text-transform: initial;
  }

.ImageTextCard-text {
  margin-top: 10px;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  word-break: break-word;
  color: var(--font-clr-primary);
}

.ImageTextCard-text span {
    display: block;
  }
