/* assets/css/trending.css */
.trending-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  margin-top: 0.1rem;
  color: #035c79;
  font-family: 'Inter', sans-serif; /* Tidak wajib — cukup warisan dari global */
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trending-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.trending-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.trending-item-content {
  flex: 1;
  min-width: 0;
}

.trending-meta {
  font-size: 0.8125rem;
  color: #666;
  margin-bottom: 0.25rem;
  font-family: inherit; /* Warisi dari body */
}

.trending-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.trending-title a {
  color: #222222;
  text-decoration: none;
}

.trending-title a:hover {
  color: #05525f;
}

.trending-empty {
  color: #777;
  font-style: italic;
}

/* ===== Load More & Show Less Button — Versi Seragam & Soft ===== */
.load-more-container {
  text-align: center;
  margin: 20px 0 30px;
}

.load-more-btn,
.show-less-btn {
  background: white;
  color: #0198f5 !important;
  border: 2px solid #0198f5;
  padding: 8px 20px;
  border-radius: 30px; /* oval, lebih elegan dari 24px */
  cursor: pointer;
  font-size: 0.9375rem; /* = 15px, sesuai trending */
  font-weight: 600;
  font-family: inherit;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
  margin: 0 5px;
}

.load-more-btn:hover:not(:disabled),
.show-less-btn:hover {
  background: #0198f5;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(1, 152, 245, 0.2);
}

.load-more-btn:disabled {
  background: #f5f5f5;
  border-color: #ccc;
  color: #999 !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.show-less-btn {
  display: none;
}

/* Responsif: pastikan rapi di HP */
@media (max-width: 600px) {
  .load-more-btn,
  .show-less-btn {
    padding: 10px 18px;
    font-size: 1rem;
    margin: 0 4px;
  }
}
/* ====== RESPONSIVE ====== */
@media (max-width: 600px) {
  .trending-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
}