/* SerieAGoal 2.2.139 — media/content cards form a continuous editorial stack. */

/*
 * A photo is its own card, but when it touches another article section there
 * must be no artificial vertical gutter. This also overrides the 12px/9px
 * section spacing defined by the page bundle.
 */
.sg-article-main>.sg-article-story>.sg-article-section-card.is-media + .sg-article-section-card,
.sg-article-main>.sg-article-story>.sg-article-section-card:not(.is-media) + .sg-article-section-card.is-media{
  margin-top:0!important;
  border-top-left-radius:0!important;
  border-top-right-radius:0!important;
}

/* Remove only the INNER rounded corners from the card that precedes media/content. */
@supports selector(.sg-article-section-card:has(+ .sg-article-section-card)){
  .sg-article-main>.sg-article-story>.sg-article-section-card.is-media:has(+ .sg-article-section-card:not(.is-media)),
  .sg-article-main>.sg-article-story>.sg-article-section-card:not(.is-media):has(+ .sg-article-section-card.is-media){
    border-bottom-left-radius:0!important;
    border-bottom-right-radius:0!important;
  }
}

/* No phantom line/gap can be introduced by the zero-font media body. */
.sg-article-main>.sg-article-story>.sg-article-section-card.is-media{
  vertical-align:top;
}
