/* FIX: Force Blog Hero Image to Reserve Space on Desktop */
@media only screen and (min-width: 1024px) {
  /* Targets the first image inside the main blog content area */
  .sc-content img:first-of-type, 
  .blog-entry img:first-of-type {
      min-height: 450px !important; /* Forces the browser to keep this space open */
      width: 100%;       /* Ensures it spans the full width */
      height: auto;      /* Maintains aspect ratio */
      display: block;    /* Prevents inline spacing issues */
      background-color: #f4f4f4; /* Adds a subtle grey placeholder while loading */
  }
}