.topics__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.topic-tag {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--bg-dark);
  color: var(--text-white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: default;
  transition: all 0.3s ease;
}

.topic-tag:hover {
  background: var(--blue-electric);
  transform: translateY(-2px);
}

.topics__cta {
  text-align: center;
}

@media (max-width: 768px) {
  .topics__tags {
    gap: 8px;
  }

  .topic-tag {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}
