/* ========== SECTION TITLE ========== */
.section-title {
  color: #294a70;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  margin: 5px 0 22px;
}

/* ========== SLIDER ========== */
#heroSlider {
  margin-bottom: 22px;
  border: 1px solid #e0e0e0;
}

#heroSlider .carousel-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
  width: 40px;
}

#heroSlider .carousel-indicators [data-bs-target] {
  background-color: #f4a024;
}

/* ========== VIEW ALL BUTTON ========== */
.btn-view-all {
  display: inline-block;
  background-color: #294a70;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 28px;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.2s;
}

.btn-view-all:hover {
  background-color: #f4a024;
  color: #fff;
}

/* ========== POST GRID ========== */
#posts-grid .post-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding-bottom: 12px;
  height: 100%;
}

#posts-grid .post-card a.thumb-link {
  display: block;
  overflow: hidden;
}

#posts-grid .post-card img.post-thumb {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

#posts-grid .post-card:hover img.post-thumb {
  transform: scale(1.03);
}

#posts-grid .post-card h4 {
  font-size: 13.5px;
  margin: 10px 10px 6px;
  line-height: 1.4;
}

#posts-grid .post-card h4 a {
  color: #294a70;
  text-decoration: none;
}

#posts-grid .post-card h4 a:hover {
  color: #f4a024;
}

#posts-grid .post-date {
  display: block;
  font-size: 12px;
  color: #999;
  margin: 0 10px;
}
