
/* V226 - Tighten news list image frame.
   Goal: remove the extra empty band around images while keeping the entire image visible. */

body:not(.admin-layout) .v194-news-page .v194-news-grid article,
body:not(.admin-layout) .v194-news-page .news-card{
  overflow:hidden!important;
}

/* Remove fixed/aspect-ratio frame that creates blank bands. */
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,
body:not(.admin-layout) .v194-news-page .v194-featured-media{
  width:100%!important;
  height:auto!important;
  min-height:0!important;
  max-height:none!important;
  aspect-ratio:auto!important;
  padding:0!important;
  margin:0!important;
  overflow:hidden!important;
  display:block!important;
  line-height:0!important;
  background:transparent!important;
}

/* Let the image define the frame height:
   full width, natural height, no cropping, no blank top/bottom band. */
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;
  max-width:100%!important;
  height:auto!important;
  min-height:0!important;
  max-height:none!important;
  object-fit:contain!important;
  object-position:center!important;
  display:block!important;
  margin:0!important;
  padding:0!important;
}

/* Avoid any inherited spacer between image and card body. */
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 + *{
  margin-top:0!important;
}

/* Keep rounded top corners on the image itself. */
body:not(.admin-layout) .v194-news-page .v194-news-grid article>figure:first-child,
body:not(.admin-layout) .v194-news-page .v194-news-grid .news-card-image:first-child,
body:not(.admin-layout) .v194-news-page .v194-news-grid .v194-news-media:first-child{
  border-radius:14px 14px 0 0!important;
}

/* Mobile follows the same natural-height image rule. */
@media(max-width:991px){
  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{
    height:auto!important;
    aspect-ratio:auto!important;
  }
}
