/*
 * Original Design Specifications
 * Target: > 1800px
 * Test Resolution: 1920 x 1080
 */
:root {
  --single-news-featured-image-border-radius: 1.4rem;
  --single-news-featured-image-max-width: 120rem;
}

/*
 * 2XL Media Query (1536px)
 * Target: 1799px > 1536px
 * Test Resolution: 1536 x 864
 */
@media screen and (max-width: 1799px) {
  :root {
    --single-news-featured-image-max-width: 110rem;
  }
}

/*
 * XL Media Query (1280px)
 * Target: 1535px > 1280px
 * Test Resolution: 1280 x 720
 */
@media screen and (max-width: 1535px) {
  :root {
    --single-news-featured-image-max-width: 100rem;
  }
}

/*
 * L Media Query (1024px)
 * Target: 1279px > 1024px
 * Test Resolution: 1024 x 768
 */
@media screen and (max-width: 1279px) {
  :root {
    --single-news-featured-image-max-width: 90rem;
  }
}

.single-news-featured-image {
  margin: 0 auto;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--single-news-featured-image-border-radius);
  max-width: var(--single-news-featured-image-max-width);
}

.single-news-featured-image-container + .single-news-content {
  margin-top: calc(var(--layout-gap-basis) * 1.5);
}
