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

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

@media (min-width: 768px) {

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


/* teasers 4,5 get a vertical layout on desktop */
@media (min-width: 768px) {

  .dm-teaserCluster--channelmix .dm-teaser:nth-of-type(4),
  .dm-teaserCluster--channelmix .dm-teaser:nth-of-type(5) {
    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--channelmix .dm-teaser:nth-of-type(4).dm-teaser--kplus,
  .dm-teaserCluster--channelmix .dm-teaser:nth-of-type(5).dm-teaser--kplus,
  .dm-teaserCluster--channelmix .dm-teaser:nth-of-type(4).dm-teaser--external,
  .dm-teaserCluster--channelmix .dm-teaser:nth-of-type(5).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--channelmix .dm-teaser:nth-of-type(4).dm-teaser--opinion,
  .dm-teaserCluster--channelmix .dm-teaser:nth-of-type(5).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--channelmix .dm-teaser:nth-of-type(4).dm-teaser--kplus.dm-teaser--opinion,
  .dm-teaserCluster--channelmix .dm-teaser:nth-of-type(5).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   "
  }

}

