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


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

@media (min-width: 768px) {

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


@media (max-width: 767px) {
  .dm-teaserCluster--abc .dm-teaser:nth-of-type(2) .dm-figure,
  .dm-teaserCluster--abc .dm-teaser:nth-of-type(3) .dm-figure {
    display: none;
  }

  .dm-teaserCluster--abc .dm-teaser:nth-of-type(1) .dm-teaser__intro,
  .dm-teaserCluster--abc .dm-teaser:nth-of-type(3) .dm-teaser__intro {
    display: block;
  }
}