.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 */
  }
}

.post-short-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #0b0b0f;
}

.post-short-stage {
  --short-height: min(78vh, 720px);
  position: relative;
  height: var(--short-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(255, 223, 0, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.24)),
    #0b0b0f;
}

.post-short-media {
  position: relative;
  z-index: 1;
  height: var(--short-height);
  width: calc(var(--short-height) * 9 / 16);
  max-width: 100%;
  overflow: hidden;
  background: #000;
}

.post-short-media iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 100%;
  width: calc(var(--short-height) * 16 / 9);
  max-width: none;
  border: 0;
}

.post-short-top {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .6rem;
  pointer-events: none;
}

.post-short-top a,
.post-short-top button {
  pointer-events: auto;
}

.post-short-avatar {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 10px !important;
  border: 1px solid rgba(255,255,255,0.18);
  background: #111;
  flex: 0 0 auto;
}

.post-short-author-block {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.post-short-author {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.1;
}

.post-short-time {
  color: rgba(255,255,255,0.78);
  font-size: .82rem;
  line-height: 1.1;
}

.post-short-body {
  position: absolute;
  left: 1rem;
  right: 5.5rem;
  bottom: 1rem;
  z-index: 3;
  color: #fff;
  pointer-events: auto;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.post-short-title {
  margin: 0 0 .35rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
}

.post-short-caption {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: .92rem;
  line-height: 1.35;
}

.post-short-actions {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.post-short-actions form,
.post-short-actions > div {
  margin: 0;
}

.post-short-action {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-height: 48px;
  color: #fff;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.post-short-action i {
  display: block;
  width: 1.45rem;
  font-size: 1.45rem;
  line-height: 1;
  text-align: center;
}

.post-short-action .count {
  display: block;
  min-width: 1.5rem;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,0.9);
  margin-top: .2rem;
}

.post-short-gradient-top {
  position: absolute;
  inset: 0 0 auto 0;
  height: 140px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.58), rgba(0,0,0,0));
  pointer-events: none;
}

.post-short-gradient-bottom {
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.74));
  pointer-events: none;
}

@media (max-width: 768px) {
  .post-short-stage {
    --short-height: min(70vh, 640px);
  }

  .post-short-body {
    right: 4.75rem;
  }
}

