.share-btn i {
  color: #b89c01; /* or your preferred neon yellow */
  text-shadow: 0 0 5px rgba(255, 217, 0, 0.8),
               0 0 10px rgba(255, 217, 0, 0.6),
               0 0 20px rgba(255, 217, 0, 0.4);
  transition: transform 0.2s ease, text-shadow 0.3s ease;
}

.share-btn:hover i {
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(255, 217, 0, 1),
               0 0 20px rgba(255, 217, 0, 0.8),
               0 0 30px rgba(255, 217, 0, 0.6);
}


.post-meta {
  font-size: 0.8rem;      /* make it smaller */
  color: #aaa;            /* optional softer color */
  font-weight: 400;       /* optional */
}

/* #comments ul li:hover {
  background-color: rgba(255,255,255,0.02);
}
#comments .bi-trash {
  font-size: 0.85rem;
} */

/* Active page (current page) */
.pagination .page-item.active .page-link {
    background-color: #FFDF00 !important;
    border-color: #FFDF00 !important;
    color: #000 !important;       /* dark text so it's readable */
    font-weight: 600;
}

/* Normal page link */
.pagination .page-link {
    background-color: #313131;
    border: 1px solid rgba(255,255,255,0.1);
    color: #FFDF00 !important;
}

/* Hover state */
.pagination .page-link:hover {
    background-color: rgba(255,223,0,0.15);
    border-color: #FFDF00;
    color: #FFDF00;
}

/* Disabled buttons (prev/next when unavailable) */
.pagination .page-item.disabled .page-link {
    color: rgba(255,255,255,0.3) !important;
    border-color: rgba(255,255,255,0.1) !important;
    background: #313131;
}


/* Keep pagination above the fixed bottom mobile menu */
@media (max-width: 768px) {
  .gh-pagination {
    margin-bottom: 5rem;  /* tweak until it's above your bottom menu */
  }
}
