.TeaserCard {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  justify-content: center;

  padding: var(--spacing-md);
  border-radius: 3px;
  background-color: #ffffff;
  transition: box-shadow 250ms ease-in-out;
  aspect-ratio: 1 / 1;
}

.TeaserCard:hover {
    box-shadow: 0 4px 124px -33px rgba(0, 0, 0, 0.25);
  }

.TeaserCard-icon {
  --iconColor: var(--clr-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 162px;
  border-radius: 5px;
  background-color: var(--clr-turkis);
  aspect-ratio: 1 / 1;
}

.TeaserCard-text {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 150%; /* 36px */
  text-align: center;
  letter-spacing: 0.045rem;
  color: var(--clr-grey);
}

.TeaserCard--green {
  flex-direction: row;
  gap: 5px;
  background-color: var(--clr-turkis);
}

.TeaserCard--green p {
    font-size: 1.5rem;
    -webkit-text-decoration: underline;
    text-decoration: underline;
    transition: text-underline-offset 250ms ease-in-out;
    text-underline-offset: 2px;
  }

.TeaserCard--green:hover p {
    text-underline-offset: 4px;
  }

.TeaserCard--green .TeaserCard-arrow {
    transform: translateX(0);
    transition: transform 250ms ease-in-out;
  }
