.comment-count {
    color: #aaa !important;
}

/* CSS */
.blog-post {
  margin-bottom: 30px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.post-wrapper {
  display: flex;
  align-items: start;
   height: 250px !important;
}

.blog-thumb {
  width: 400px;
  flex-shrink: 0;
}

.blog-thumb img {
  width: 100% !important;
  height: 250px !important; /* Khớp chiều cao với khung cha */
  object-fit: cover;
}

.down-content {
  padding: 20px;
  flex-grow: 1;
}

.post-info {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.post-info li {
  display: inline-block;
  margin-right: 20px;
}

.post-tags {
  list-style: none;
  padding: 0;
}

.post-tags li {
  display: inline-block;
  margin-right: 10px;
}
  /* Blog title */
.blog-posts .blog-post .down-content h4 {
  font-size: 15px;
  margin-bottom: 10px;
  margin-top: 50px;
  color: #2e7d70; /* cu 2a9d8f */
  transition: color 0.3s ease;
  line-height: 1.4;
}


  /* Responsive */
@media (max-width: 768px) {
  .post-wrapper {
    flex-direction: column;
    height: auto !important;
  }

  .blog-thumb {
    width: 100%;
  }

  .blog-thumb img {
    height: 200px !important; /* Chiều cao ảnh nhỏ hơn trên mobile */
  }

  .down-content {
    height: auto;
    overflow-y: visible;
    padding: 15px;
  }

  .down-content h4 {
    margin-top: 10px;
    font-size: 18px; /* Font size nhỏ hơn trên mobile */
  }

  .post-info {
    margin: 10px 0;
  }

  .post-info li {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .post-tags li {
    margin-bottom: 5px;
  }

  .blog-posts .blog-post .down-content h4 {
     margin-top: 5px !important;

}

.home-hero .hero-main {
  overflow: hidden;
  border-radius: 8px;
}
.home-hero .hero-image {
  display: block;
  height: 380px;
  object-fit: cover;
}
.home-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0));
  transition: all .25s ease;
}
.home-hero .hero-content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff;
}
.home-hero .hero-title {
  font-size: 1.6rem;
  line-height: 1.3;
  transition: color .2s ease;
}
.home-hero .hero-meta span {
  margin-right: 12px;
  font-size: .9rem;
  opacity: .9;
}
.home-hero .hero-main:hover .hero-title {
  color: #ff7f00;
}
.home-hero .hero-side .side-item {
  gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background-color .2s ease;
}
.home-hero .hero-side .side-thumb {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 6px;
}
.home-hero .hero-side .side-title {
  font-size: 1rem;
  color: #222;
  transition: color .2s ease;
}
.home-hero .hero-side .side-item:hover {
  background-color: rgba(255,127,0,0.12);
}
.home-hero .hero-side .side-item:hover .side-title {
  color: #ff7f00;
}
}


