/*
 * Blog listing cards — same cover crop as admin .workflow-file-thumb
 * Blog article page — full original uploaded image
 */

.workflow-file-thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f1f3f5;
}

.workflow-file-thumb > img,
.workflow-file-thumb > video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 0;
}

/* Blog listing (/blog) — fixed frame + clickable image */
.blog.blog-page .blog-box .blog-images {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.blog.blog-page .blog-box .blog-images .workflow-file-thumb {
  width: 100%;
  height: 0;
  padding-bottom: 67.5%;
  overflow: hidden;
}

.blog.blog-page .blog-image-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog.blog-page .blog-image-link:hover {
  opacity: 0.92;
}

.blog.blog-page .blog-box .blog-images .date {
  z-index: 3;
}

/* Blog article page — show full uploaded image at natural proportions */
.blog.blog-details .blog-box .blog-images.blog-detail-image-wrap {
  position: relative;
  width: 100%;
  height: auto;
  max-height: none;
  overflow: visible;
}

.blog.blog-details .blog-detail-featured {
  position: static;
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border: 0;
}

.blog.blog-details .blog-box .blog-images .date {
  z-index: 3;
}

/* Homepage news slider — compact cropped frame */
.single-blog .workflow-file-thumb {
  width: 100%;
  height: 0;
  padding-bottom: 67.5%;
  overflow: hidden;
}

@media (max-width: 575px) {
  .blog.blog-page .blog-box .blog-images .workflow-file-thumb,
  .single-blog .workflow-file-thumb {
    padding-bottom: 75%;
  }
}
