.dm-teaserCluster--ab_cd_ef .dm-slot--mobile:nth-of-type(1) {grid-area: slot;}
.dm-teaserCluster--ab_cd_ef .dm-teaser:nth-of-type(1) {grid-area: a;}
.dm-teaserCluster--ab_cd_ef .dm-teaser:nth-of-type(2) {grid-area: b;}
.dm-teaserCluster--ab_cd_ef .dm-teaser:nth-of-type(3) {grid-area: c;}
.dm-teaserCluster--ab_cd_ef .dm-teaser:nth-of-type(4) {grid-area: d;}
.dm-teaserCluster--ab_cd_ef .dm-teaser:nth-of-type(5) {grid-area: e;}
.dm-teaserCluster--ab_cd_ef .dm-teaser:nth-of-type(6) {grid-area: f;}
.dm-teaserCluster--ab_cd_ef .dm-teaserCluster__moreChips {grid-area: more;}
.dm-teaserCluster--ab_cd_ef .dm-groupHeadline {grid-area: hl;}

.dm-teaserCluster--ab_cd_ef {
  grid-template-areas:  "hl"
                        "a"
                        "b"
                        "c"
                        "slot"
                        "d"
                        "e"
                        "f"
                        "more"
                        ;
}

@media (min-width: 768px) {

  .dm-teaserCluster--ab_cd_ef {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hl     hl  "
      "a      b   "
      "c      d   "
      "e      f   "
      "more   more"
      ;
  }
}


@media (min-width: 768px) {

  /* 2. teaser gets vertical design on desktop */
  .dm-teaserCluster--ab_cd_ef .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_cd_ef .dm-teaser:nth-of-type(2).dm-teaser--kplus,
  .dm-teaserCluster--ab_cd_ef .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_cd_ef .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_cd_ef .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   "
  }

}

