.block-teaser-list-v1 {
  padding: 6rem 0;
}
.teasers-container .teaser {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.teasers-container .teaser img {
  height: 21.438rem;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.teasers-container .teaser .teaser-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.teasers-container .teaser .teaser-content * {
  margin-bottom: 0;
}

/* Responsive */
@media only screen and (max-width: 1199px) {
  .block-teaser-list-v1 .teasers-wrapper {
      padding: 0;
  }
  .teasers-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0 1.5rem;
  }
  .teasers-container .row {
    flex-wrap: nowrap;
  }
  .teasers-container .col-teaser {
    width: calc(17.25rem + 2rem);
  }
}

@media only screen and (max-width: 991px) {
  .block-teaser-list-v1 {
    padding: 4rem 0;
  }
  .block-teaser-list-v1 .header-wrapper .subheader {
    font-size: var(--font-size-h4);
    line-height: var(--line-height-h4);
    letter-spacing: 0.008rem;
  }
  .teasers-container .col-teaser {
    width: calc(17.25rem + 1.5rem);
  }
  .teasers-container .teaser img {
    height: 24.688rem;
  }
  .teasers-container .teaser .teaser-content p {
    font-size: var(--font-size-h6);
    line-height: var(--line-height-h6);
  }
}

@media only screen and (max-width: 575px) {
  .teasers-container {
    padding: 0 1rem;
  }
}