.tags-grid-wrapper {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.tag-tile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000a8;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 400;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.tag-tile:hover {
  background-color: #a29bfea3;
  transform: translateY(-3px);
}

.tag-name {
  font-size: 1.1rem;
}

.tag-count {
  font-size: 1.0rem;
  font-weight: 600;
  color: #e217e3;
}