/* ===============================
   GLOBAL RESET FOR TRENDING
================================ */
.trending-page a,
.trending-page a:hover,
.trending-page a:visited {
  color: inherit !important;
  text-decoration: none !important;
}

/* ===============================
   Page Wrapper
================================ */
.trending-page {
  max-width: 1300px;
  margin: auto;
  padding: 40px 20px 60px;
}

/* Title */
.page-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 35px;
  color: #ffffff;
}

/* ===============================
   Grid (same as blog)
================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* ===============================
   Card
================================ */
.blog-card {
  background: #0f1420;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.45);
}

/* ===============================
   Image + Badge
================================ */
.blog-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badge */
.trend-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.95);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.trend-badge img {
  width: 16px;
  height: 16px;
}

/* ===============================
   Content
================================ */
.blog-content {
  padding: 16px 16px 18px;
  min-height: 120px;
}

.blog-content h3 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 14px;
  color: #b5b5b5;
  line-height: 1.5;
}

/* ===============================
   Pagination
================================ */
.pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination a {
  padding: 10px 16px;
  background: #181b22;
  color: #ffffff !important;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

/* Active & hover */
.pagination a.active,
.pagination a:hover {
  background: #7a1c1a;
  color: #ffffff !important;
}

/* Disabled feel (optional future use) */
.pagination a.disabled {
  opacity: 0.5;
  pointer-events: none;
}
