.tag-body {
  background: radial-gradient(800px 600px at 40% -10%, #202020 0%, #0a0a0a 40%, #000 100%);
  color: #fff;
  margin: 0;
  font-family: system-ui, -apple-system, "Inter", Roboto, sans-serif;
}

.tag-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 12px;
}

.tag-title {
  margin: 0 0 6px;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  background: linear-gradient(90deg, #d4af37, #bfa181);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: .4px;
}

.tag-desc {
  color: #9a9a9a;
  font-size: 14px;
  line-height: 1.4;
}

.tag-grid-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px 24px;
}

.tag-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .tag-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tag-grid {
    grid-template-columns: 1fr;
  }
}

.tag-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  overflow: hidden;
  transition: all .22s ease;
}

.tag-link {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 16px 16px 14px;
}

.tag-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.tag-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .3px;
}

.tag-count {
  font-size: 12px;
  color: #9a9a9a;
}

.tag-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #bfa181;
  font-size: 13px;
  line-height: 1.3;
}

.tag-tease {
  color: #bfa181;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: calc(100% - 20px);
  font-weight: 500;
}

.tag-arrow {
  color: #d4af37;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}

.tag-card:hover,
.tag-card:focus-within {
  border-color: #d4af37;
  box-shadow: 0 0 24px rgba(212,175,55,.4);
  background: rgba(212,175,55,.07);
}