.hero-links-section {
  padding: 0 0 28px;
}

.hero-ql-below {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.hero-ql-below .hero-ql-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #334155;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

[data-theme="dark"] .hero-ql-below .hero-ql-item,
body[data-theme="dark"] .hero-ql-below .hero-ql-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
  color: #cbd5e1;
}

.hero-ql-below .hero-ql-item:hover {
  background: rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

[data-theme="dark"] .hero-ql-below .hero-ql-item:hover,
body[data-theme="dark"] .hero-ql-below .hero-ql-item:hover {
  background: rgba(255, 255, 255, 0.10);
}
