.category-teaser-wrapper {
  --category-teaser-wrapper-repeat: 2;
  display: grid;
  grid-template-columns: repeat(var(--category-teaser-wrapper-repeat), minmax(0, 1fr));
  grid-gap: 3rem;
  grid-gap: calc(3rem + 4vmax);
}
.category-teaser-wrapper .category-teaser-box {
  position: relative;
}
.category-teaser-wrapper .category-teaser-box .category-teaser-title {
  position: absolute;
  background: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  bottom: 0;
  right: 0;
  margin: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  font-size: 2em;
  font-size: 3.5vmin;
  font-family: "Roboto";
  line-height: 1.12;
  padding: 1rem;
}
.category-teaser-wrapper .category-teaser-box .category-teaser-thumbnail {
  aspect-ratio: 16/9;
}
.category-teaser-wrapper .category-teaser-box .category-teaser-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .category-teaser-wrapper {
    --category-teaser-wrapper-repeat: 1;
  }
}/*# sourceMappingURL=category-teaser.css.map */