/* 标签页导航 */
.tag-tabs {
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  position: sticky;
  top: 3.5rem;
  z-index: 40;
}

.tag-tabs-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tag-tabs-inner::-webkit-scrollbar {
  display: none;
}

.tag-tab {
  flex-shrink: 0;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #4b5563;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}

.tag-tab:hover {
  color: #e11d48;
  border-color: #fecdd3;
  background: #fff1f2;
}

.tag-tab.is-active {
  color: #fff;
  background: #e11d48;
  border-color: #e11d48;
}

.home-tag-tabs {
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.home-tag-tabs .tag-tabs-inner {
  padding: 0.625rem 1rem;
}

@media (min-width: 768px) {
  .home-tag-tabs .tag-tabs-inner {
    padding: 0.75rem 1.5rem;
  }
}
