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

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

@media (min-width: 768px) {

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


@media (min-width: 768px) {

  .dm-teaserCluster--abc_def .dm-teaser__headline {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    font-size: var(--teaserHeadlineSizeS);
  }

/* ==========================================
    every teaser: mobil-Darstellung auf Desktop
   ========================================== */

  .dm-teaserCluster--abc_def .dm-teaser .dm-teaser__intro {
    display: none;
  }

  .dm-teaserCluster--abc_def .dm-teaser .dm-figure--teaser .dm-figure__image.dm-figure__image--aspect340x191 {
    display: none;
  }

  .dm-teaserCluster--abc_def .dm-teaser .dm-figure--teaser .dm-figure__image.dm-figure__image--aspect1x1 {
    display: block;
  }

   .dm-teaserCluster--abc_def .dm-teaser {
    grid-template-columns: 1.1rem min-content 4.3fr 1fr 0 minmax(0, 5fr);
    grid-template-rows: min-content min-content min-content 1fr;
    grid-template-areas:
      "date       date      date     date    date   anzeige   "
      "over       over      over     over    over   over      "
      "hl         hl        hl       hl      .      figure    "
      "author     author    author   social  .      figure    "
  }

  /* incl. icon */
  .dm-teaserCluster--abc_def .dm-teaser.dm-teaser--kplus,
  .dm-teaserCluster--abc_def .dm-teaser.dm-teaser--external {
    grid-template-areas:
      "date       date      date     date    date   anzeige   "
      "icon       over      over     over    over   over      "
      "hl         hl        hl       hl      .      figure    "
      "author     author    author   social  .      figure    "
  }

  /* opinion */
  .dm-teaserCluster--abc_def .dm-teaser.dm-teaser--opinion {
    grid-template-areas:
      "date       date      date     date    date   anzeige   "
      "over       over      over     over    over   over      "
      "hl         hl        hl       hl      .      figure    "
      "portrait   portrait  author   social  .      figure    "
  }

  /* opinion & icon*/
  .dm-teaserCluster--abc_def .dm-teaser.dm-teaser--opinion.dm-teaser--kplus {
    grid-template-areas:
      "date       date      date     date    date   anzeige   "
      "icon       over      over     over    over   over      "
      "hl         hl        hl       hl      .      figure    "
      "portrait   portrait  author   social  .      figure    "
  }
}

