.market-teaser {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 372px;
  min-height: 442px;
  background: var(--color-neutral--4);
  border-radius: 3px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.10);
}
.market-teaser__content {
  display: flex;
  flex-direction: column;
}
.market-teaser__text {
  padding: 16px 16px 32px 16px;
  gap: 4px;
}
.market-teaser__text p {
  margin: 0;
}
.market-teaser__text p:first-child {
  font-size: 24px;
  font-family: var(--font-europa);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.market-teaser__cta {
  display: flex;
  position: relative;
  width: 61px;
  height: 75px;
  border-radius: 60px 0px 0px 0px;
  background: var(--color-primary--1);
  align-self: end;
  justify-content: center;
  align-items: center;
}
.market-teaser__cta::before {
  content: '';
  background-image: url("../../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 27px;
  height: 27px;
  display: block;
  top: 7px;
  position: relative;
}
