/* ===== FIX ẢNH BỊ VỠ TRONG BÀI VIẾT ===== */
.post-single img,
.post-single .hero,
.post-single .content-html img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

/* Nếu ảnh có style/attr ép kích thước */
.post-single .content-html img[width],
.post-single .content-html img[height]{
  width: auto !important;
  height: auto !important;
}

/* Canh đẹp ảnh hero đầu bài */
.post-single .hero{
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  object-fit: cover;
}

/* Video/iframe embed không tràn */
.post-single iframe,
.post-single video{
  max-width: 100%;
}

/* Tránh nội dung dài làm tràn layout */
.post-single .content-html{
  overflow-wrap: anywhere;
}

.post-single figure{
  margin: 16px 0;
}

.post-single figcaption{
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
  text-align: center;
}