/* Manual overrides on top of main.css (compiled from styles/main.scss) */

/* Fix: sidebar "Nieuws" thumbnails had no width/height constraint, so an
   image with a srcset/sizes attribute (e.g. an image also used in post
   content) could render at full intrinsic size instead of the intended
   90x50 thumb. height:auto alone was not reliable here, so both
   dimensions are fixed explicitly. */
.nieuws_sidebar .nieuws_item_side img {
  width: 90px;
  height: 50px;
  object-fit: cover;
}
