
/* V225 - News listing images: full image visible, no text/content cropped.
   Scoped only to .v194-news-page. */

body:not(.admin-layout) .v194-news-page img{
  max-width:100%!important;
}

/* Featured article image + standard news cards */
body:not(.admin-layout) .v194-news-page .v194-featured img,
body:not(.admin-layout) .v194-news-page .v194-news-grid img,
body:not(.admin-layout) .v194-news-page .news-card img,
body:not(.admin-layout) .v194-news-page article img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  object-position:center center!important;
  display:block!important;
}

/* Keep image frames tidy and let the complete source image fit inside. */
body:not(.admin-layout) .v194-news-page .v194-featured-media,
body:not(.admin-layout) .v194-news-page .v194-news-media,
body:not(.admin-layout) .v194-news-page .news-card-image,
body:not(.admin-layout) .v194-news-page article figure{
  overflow:hidden!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  box-sizing:border-box!important;
}

/* Desktop: balanced frame, but never crop the image. */
@media(min-width:992px){
  body:not(.admin-layout) .v194-news-page .v194-news-grid .v194-news-media,
  body:not(.admin-layout) .v194-news-page .v194-news-grid .news-card-image,
  body:not(.admin-layout) .v194-news-page .v194-news-grid article figure{
    aspect-ratio:16/10!important;
  }
}

/* Mobile/tablet: preserve full image and readability. */
@media(max-width:991px){
  body:not(.admin-layout) .v194-news-page .v194-featured img,
  body:not(.admin-layout) .v194-news-page .v194-news-grid img,
  body:not(.admin-layout) .v194-news-page .news-card img,
  body:not(.admin-layout) .v194-news-page article img{
    object-fit:contain!important;
    object-position:center!important;
  }
}
