/* =============================================================================
   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 heading ─────────────────────────────────────────────────────── */
.bh__heading {
  margin: 0 0 22px;
  text-align: center;
  background: #F1FAFF;
  padding: 12px;
  border-radius: 8px;
}

.bh__heading span {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  background: linear-gradient(321.04deg, #0200B9 22.36%, #020207 77.64%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── 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;
  border: 1px solid #E4E4E4;
  border-radius: 24px;
  padding: 4px;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0px 4px 10px 0px #0000001A;
}

.bh__item:last-child {
  margin-bottom: 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;
  border-radius: 22px;
  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;
  }
}
