/* --- Archive / Homepage (merged with old Trending) --- */
.custom-home-post .home-post-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  overflow: hidden; /* helps in case images float */
}

/* Thumbnail */
.home-post-thumbnail img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0; /* prevent shrinking */
}

@media (max-width: 600px) {
  .home-post-thumbnail img {
    width: 40px;
    height: 40px;
  }
}

/* Category (TRENDING + category name) */
.home-post-category {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 4px;
}

.home-post-category .trending-label {
  color: #d32f2f; /* red for TRENDING */
  font-weight: bold;
  text-transform: uppercase;
}

.home-post-category .category-name {
  color: #000; /* keep category black */
  text-transform: capitalize; /* category as-is */
  font-weight: bold;
}

/* Title */
.home-post-title {
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
  font-size: clamp(16px, 4vw, 20px); /* responsive scaling */
}

.home-post-title a {
  color: #003366;
  text-decoration: none;
}

.home-post-title a:hover {
  text-decoration: underline;
}

/* Separator */
.home-post-separator {
  border: none;
  border-bottom: 1px solid #ddd;
  margin: 15px 0;
}

/* Load More button */
#load-more {
  display: inline-block;
  padding: 10px 20px;
  background: #003366;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  width: 100%; /* expand full width */
  text-align: center;
}

#load-more:hover {
  background: #0055a5;
}
