.dm-teaserCluster--ab_ac>.dm-groupHeadline {grid-area: hl;}
.dm-teaserCluster--ab_ac .dm-teaserCluster__moreChips {grid-area: more;}
.dm-teaserCluster--ab_ac .dm-slot--mobile:nth-of-type(1) {grid-area: slot;}
.dm-teaserCluster--ab_ac .dm-teaser:nth-of-type(1) {grid-area: a;}
.dm-teaserCluster--ab_ac .dm-teaser:nth-of-type(2) {grid-area: b;}
.dm-teaserCluster--ab_ac .dm-teaser:nth-of-type(3) {grid-area: c;}

.dm-teaserCluster--ab_ac {
  grid-template-areas:  "hl"
                        "a"
                        "slot"
                        "b"
                        "c"
                        "more"
                        ;
}

@media (min-width: 768px) {

  .dm-teaserCluster--ab_ac {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: min-content;
    grid-template-areas:
      "hl     hl    hl    "
      "a      a     b     "
      "a      a     c     "
      "more   more  more  "
      ;
  }
}



.dm-teaserCluster--ab_ac .dm-teaser:nth-of-type(3) .dm-figure {
  display: none;
}




@media (max-width: 767px) {
  .dm-teaserCluster--ab_ac .dm-teaser:first-of-type .dm-figure--teaser {
    border-radius: 0;
    margin-left: var(--negativeMobileMargin);
    margin-right: var(--negativeMobileMargin);
  }
  .dm-teaserCluster--ab_ac .dm-teaser:nth-of-type(1) .dm-teaser__intro,
  .dm-teaserCluster--ab_ac .dm-teaser:nth-of-type(3) .dm-teaser__intro {
    display: block;
  }
}

.dm-teaserCluster--ab_ac .dm-teaser:nth-of-type(1) .dm-teaser__headline {
  font-size: var(--teaserHeadlineSizeL);
}

@media (min-width: 768px) {
  .dm-teaserCluster--ab_ac .dm-teaser:nth-of-type(2) .dm-teaser__intro {
    display: none;
  }
  .dm-teaserCluster--ab_ac .dm-teaser:nth-of-type(3) .dm-figure {
    display: none;
  }

  /* the 2nd teaser get vertical design on desktop */
  .dm-teaserCluster--ab_ac .dm-teaser:nth-of-type(2) {
    font-size: var(--articleTextSize);
    grid-template-columns: 1.1rem min-content minmax(0, 2fr) 2rem;
    grid-template-rows: min-content min-content 0 min-content min-content min-content min-content;
    grid-template-areas:
      "anzeige  anzeige  anzeige  anzeige  "
      "figure   figure   figure   figure   "
      ".        .        .        .        "
      "over     over     over     date     "
      "hl       hl       hl       hl       "
      "intro    intro    intro    intro    "
      "author   author   author   social   "
  }


  /* vertical teaser mobile incl. icon */
  .dm-teaserCluster--ab_ac .dm-teaser:nth-of-type(2).dm-teaser--kplus,
  .dm-teaserCluster--ab_ac .dm-teaser:nth-of-type(2).dm-teaser--external {
    grid-template-areas:
      "anzeige  anzeige  anzeige  anzeige  "
      "figure   figure   figure   figure   "
      ".        .        .        .        "
      "icon     over     over     date     "
      "hl       hl       hl       hl       "
      "intro    intro    intro    intro    "
      "author   author   author   social   "
  }

  .dm-teaserCluster--ab_ac .dm-teaser:nth-of-type(2).dm-teaser--opinion {
    grid-template-areas:
      "anzeige  anzeige  anzeige  anzeige  "
      "figure   figure   figure   figure   "
      ".        .        .        .        "
      "over     over     over     date     "
      "hl       hl       hl       hl       "
      "portrait portrait intro    intro    "
      "portrait portrait author   social   "

  }


  .dm-teaserCluster--ab_ac .dm-teaser:nth-of-type(2).dm-teaser--kplus.dm-teaser--opinion {
    grid-template-areas:
      "anzeige  anzeige  anzeige  anzeige  "
      "figure   figure   figure   figure   "
      ".        .        .        .        "
      "icon     over     over     date     "
      "hl       hl       hl       hl       "
      "portrait portrait intro    intro    "
      "portrait portrait author   social   "
  }

}

