/**
* Block Name: teaser_aktion
*/
section.teaser_aktion .content {
    height: 441px;
  }
  
  section.teaser_aktion .awy_card {
    display: flex;
    flex-direction: row;
    gap: 23px;
    padding: 23px;
    border-radius: var(--radius-medium);
    height: 100%;
  }
  
  section.teaser_aktion .awy_card .img_wrapper {
    flex-shrink: 0;
    flex-basis: 50%;
  }
  
  section.teaser_aktion .awy_card .img_wrapper img {
    border-radius: var(--radius-small);
  }
  
  section.teaser_aktion .awy_card .text_content {
    gap: 15px;
    flex-basis: 50%;
  }
  
  section.teaser_aktion .excerpt_wrapper p {
    position: relative;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 1.2rem;
  }
  
  section.teaser_aktion .excerpt_wrapper p:first-of-type {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  
  section.teaser_aktion .excerpt_wrapper p:nth-of-type(2) {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  section.teaser_aktion .excerpt_wrapper p + p + p {
    display: none;
  }
  
  section.teaser_aktion .excerpt_wrapper.has-mask {
    -webkit-mask-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 1) 100%
    );
    mask-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 1) 100%
    );
  }
  
  @media (max-width: 992px) {
    section.teaser_aktion .content {
      height: 100%;
    }
  
    section.teaser_aktion .awy_card {
      flex-direction: column;
    }
  }
  