/* Chuẩn hoá card bài viết dạng nhỏ trên mobile.
   Dùng ở widget "Bài viết liên quan" trên toàn website. */
@media (max-width: 767px) {
  .related-posts {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .related-posts > li {
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
  }

  .post-item-small {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .post-item-small .left {
    flex: 0 0 118px;
    width: 118px;
    height: 74px;
    margin-bottom: 0;
  }

  .post-item-small .left a,
  .post-item-small .left img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .post-item-small .left img {
    aspect-ratio: auto;
    object-fit: cover;
  }

  .post-item-small .right {
    flex: 1 1 auto;
    min-width: 0;
    padding-left: 0;
  }

  .post-item-small .title {
    padding: 0 0 5px;
    font-size: 14px;
    line-height: 20px;
    text-transform: none;
  }

  .post-item-small .small-post-meta {
    padding: 0;
    font-size: 12px;
    line-height: 18px;
  }
}
