/*
  Minor visual adjustments for consistent blog card imagery.
  Keep this file small and only for overrides.
*/

/* Home page (blog card style2) */
.blog-card.style2 .blog-thumb img,
.blog-card.style2 .blog-thumb picture img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Blog listing (news-standard layout) */
.news-standard-items .news-thumb img,
.news-standard-items .news-thumb picture img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (max-width: 767.98px) {
  .blog-card.style2 .blog-thumb img,
  .news-standard-items .news-thumb img {
    height: 220px;
  }
}

/* Blog detail (featured image + HTML content) */
.kadoo-detail-thumb img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

@media (max-width: 767.98px) {
  .kadoo-detail-thumb img {
    height: 260px;
  }
}

/* Ensure HTML coming from DB is responsive */
.blog-post-details .post-content img,
.blog-post-details .post-content iframe,
.blog-post-details .post-content video {
  max-width: 100%;
}

.blog-post-details .post-content img {
  height: auto;
}
