/* Container */
.wptb-tags {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

/* Heading */
.wptb-title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}

/* List reset + horizontal flow */
.wptb-tag-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px 10px;
}
.wptb-tag-item {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Pill tag */
.wptb-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid #e5e7eb;          /* light grey border */
  background: #f3f4f6;                /* light grey background */
  color: inherit;
  line-height: 1;
  font-size: 14px;
  transition: transform .12s ease, background-color .12s ease, border-color .12s ease, box-shadow .12s ease;
  box-shadow: 0 1px 1px rgba(0,0,0,.04);
}
.wptb-tag:hover {
  transform: translateY(-1px);
  background: #eef1f5;
  border-color: #d9dde4;
  box-shadow: 0 3px 8px rgba(0,0,0,.08);
}
.wptb-tag:focus-visible {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(59,130,246,.4);
}

/* Responsive */
@media (max-width: 480px) {
  .wptb-title { font-size: 22px; }
  .wptb-tag { font-size: 13px; padding: 7px 12px; }
}
