/* =============================================================================
   Blogs Highlight – "Bài viết nổi bật" vertical list
   BEM: .bh, .bh__heading, .bh__list, .bh__item,
        .bh__thumb, .bh__body, .bh__meta, .bh__title
   ============================================================================= */
.blog-single .large-9.col {
  flex: 1;
}

.blog-single .post-sidebar.large-3.col {
  min-width: 370px;
}
.blog-single .entry-header-text {
  text-align: left;
  padding: 0;
}
.blog-single .entry-header-text .entry-divider {
  display: none;
}

/* ── Section wrapper ─────────────────────────────────────────────────────── */
.bh {
  background: #fafae8;
  border-radius: 20px;
  padding: 28px 24px 24px;
  width: 100%;
  font-family: inherit;
  box-sizing: border-box;
}

/* ── Section heading ─────────────────────────────────────────────────────── */
.bh__heading {
  margin: 0 0 22px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  color: #434343;
  text-align: center;
  letter-spacing: -0.01em;
}

/* ── List reset ──────────────────────────────────────────────────────────── */
.bh__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Single item ─────────────────────────────────────────────────────────── */
.bh__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: background 0.2s ease;
}

.bh__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bh__item:first-child {
  padding-top: 0;
}

/* ── Thumbnail ───────────────────────────────────────────────────────────── */
.bh__thumb-link {
  flex-shrink: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
}

.bh__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.bh__item:hover .bh__thumb {
  transform: scale(1.06);
}

.bh__thumb--placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0c8 0%, #d0d0b0 100%);
}

/* ── Text body ───────────────────────────────────────────────────────────── */
.bh__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

/* Meta: author — date */
.bh__meta {
  margin: 0;
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.bh__author,
.bh__date,
.bh__sep {
  color: #202124;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}

/* Title */
.bh__title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #202124;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bh__title a {
  color: #202124 !important;
  text-decoration: none;
}

.bh__title a:hover {
  color: #0073aa;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .bh {
    padding: 20px 16px 16px;
    border-radius: 14px;
  }

  .bh__thumb-link {
    width: 64px;
    height: 64px;
  }

  .bh__title {
    font-size: 13px;
  }
}
