/* ============ listing.css — صفحات لیستی (سرودها، ویدئوها) ============ */

.listing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 4px;
}
.listing-header__title {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.listing-header__title i {
  font-size: 1.2rem;
  color: var(--neon-red, #ff2d2d);
  filter: drop-shadow(0 0 6px rgba(255, 45, 45, 0.4));
}
.listing-header__count {
  font-size: 0.88rem;
  color: var(--muted-foreground, #a8a29e);
  padding: 6px 16px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
}

@media (max-width: 680px) {
  .listing-header__title {
    font-size: 1.2rem;
  }
  .listing-header__count {
    font-size: 0.78rem;
    padding: 4px 12px;
  }
}
