.cross-content-teaser,
.card {
  display: flex;
  align-self: stretch;
  height: 100%;
  position: relative;
  transition: ease all 150ms;
}
.cross-content-teaser:hover,
.card:hover *{
  text-decoration: none;
}
.cross-content-teaser:hover .cross-content-teaser__date {
  color: var(--color-white);
}

.cross-content-teaser__content,
.card__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 20px;
  position: relative;
  height: 100%;
}

.cross-content-teaser__wrapper,
.card__content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: space-between;
  height: 100%;
  padding: 32px;
  gap: 1rem;
}

.cross-content-teaser__texts,
.card__texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;

}

.header--secondary .cross-content-teaser__texts,
.card-list--secondary .card__texts {
  color: var(--color-white);
}


.cross-content-teaser__date {
  color: var( --color-neutral--1);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  transition: ease all 150ms;
}

.header--secondary .cross-content-teaser__date {
  color: var(--color-white);
}

.cross-content-teaser__title,
.card__title {
  font-family: var(--font-title);
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 35.7px */
  text-transform: uppercase;
}

.view-display-id-blog .cross-content-teaser__title {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%; /* 24px */
  text-transform: unset;
}

.view-cross-content--product .cross-content-teaser__title {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 30.8px */
  text-transform: unset;
}

.cross-content-teaser__subtitle {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  align-self: stretch;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */

  max-width: 310px;
}

.cross-content-teaser__description,
.card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  align-self: stretch;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cross-content-teaser__link,
.card__link {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;

  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
}

.cross-content-teaser__link::after,
.card__link::after {
  content: '';
  background-image: url(../../images/icons/arrow--white.svg);
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  width: 54px;
  height: 54px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: ease all 150ms;
  border-radius: 15px;
  background-color: var(--color-primary--1);
}
.cross-content-teaser:hover .cross-content-teaser__link::after,
.card:hover .card__link::after {
  background-color: var(--color-white);
  background-image: url('../../images/icons/small-blue-arrow--right.svg');
}
.header--secondary .cross-content-teaser__link,
.card-list--secondary .card__link {
  color: var(--color-white);
}

.header--secondary .cross-content-teaser__link::after,
.card-list--secondary .card__link::after {
  background-color: var(--color-white);
  background-image: url(../../images/icons/arrow.svg);
}
.header--secondary .cross-content-teaser:hover .cross-content-teaser__link::after,
.card-list--secondary .card:hover .card__link::after {
  background-color: var(--color-primary--1);
  background-image: url(../../images/icons/arrow--white.svg);
}
@media all and (min-width:480px) {
  .cross-content-teaser__link::after,
  .card__link::after {
    right: 16px;
    bottom: 16px;
  }
}


@media all and (min-width:1600px) {
  .cross-content-teaser__wrapper,
  .card__content {
    padding: 64px;
  }
}
