:root {
  --ws-tags-brand: #005ca0;
  --ws-tags-brand-deep: #083d61;
  --ws-tags-text: #12212f;
  --ws-tags-muted: #657585;
  --ws-tags-border: #dce5ec;
  --ws-tags-surface: #fff;
  --ws-tags-bg: #f5f8fa;
}

.ws-native-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
}

.ws-native-tags-label {
  margin-right: 2px;
  color: #657585;
  font-size: 12px;
  letter-spacing: .08em;
}

.ws-native-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid #dbe4ec;
  border-radius: 999px;
  color: #083d61;
  background: #fff;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ws-native-tag:hover {
  border-color: #005ca0;
  color: #fff;
  background: #005ca0;
  transform: translateY(-1px);
}

.ws-native-tag:focus-visible {
  outline: 3px solid rgba(0, 92, 160, .2);
  outline-offset: 2px;
}

.ws-tags-page {
  color: var(--ws-tags-text);
  background: var(--ws-tags-bg);
  font-family: Inter, "HarmonyOS Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
}

.ws-tags-main {
  min-height: 65vh;
  padding-top: var(--ws-header-height, 88px);
  background: var(--ws-tags-bg);
}

.ws-tags-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.ws-tags-hero {
  padding: 70px 0 58px;
  border-bottom: 1px solid var(--ws-tags-border);
  background: var(--ws-tags-surface);
}

.ws-tags-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  color: var(--ws-tags-muted);
  font-size: 13px;
}

.ws-tags-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.ws-tags-breadcrumb a:hover {
  color: var(--ws-tags-brand);
}

.ws-tags-eyebrow {
  margin-bottom: 14px;
  color: var(--ws-tags-brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}

.ws-tags-hero h1 {
  margin: 0;
  color: var(--ws-tags-text);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.ws-tags-hero h1 span {
  color: var(--ws-tags-brand);
}

.ws-tags-hero p {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--ws-tags-muted);
  font-size: 17px;
  line-height: 1.8;
}

.ws-tags-results {
  padding: 64px 0 84px;
}

.ws-tags-list {
  display: grid;
  gap: 20px;
}

.ws-tag-result-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--ws-tags-border);
  border-radius: 18px;
  background: var(--ws-tags-surface);
  box-shadow: 0 12px 34px rgba(19, 43, 62, .055);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.ws-tag-result-card:hover {
  border-color: #c6d7e3;
  box-shadow: 0 18px 44px rgba(19, 43, 62, .09);
  transform: translateY(-2px);
}

.ws-tag-result-cover {
  display: block;
  min-height: 188px;
  overflow: hidden;
  background: #eaf1f5;
}

.ws-tag-result-cover img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: cover;
  transition: transform 350ms ease;
}

.ws-tag-result-card:hover .ws-tag-result-cover img {
  transform: scale(1.025);
}

.ws-tag-result-placeholder {
  display: grid;
  min-height: 188px;
  place-items: center;
  color: rgba(0, 92, 160, .5);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .22em;
}

.ws-tag-result-body {
  display: flex;
  min-width: 0;
  padding: 28px 32px;
  flex-direction: column;
  justify-content: center;
}

.ws-tag-result-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 11px;
  color: var(--ws-tags-muted);
  font-size: 12px;
}

.ws-tag-result-meta span {
  color: var(--ws-tags-brand);
  font-weight: 600;
}

.ws-tag-result-body h2 {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 27px);
  font-weight: 650;
  line-height: 1.4;
}

.ws-tag-result-body h2 a {
  color: var(--ws-tags-text);
  text-decoration: none;
}

.ws-tag-result-body h2 a:hover {
  color: var(--ws-tags-brand);
}

.ws-tag-result-body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 12px 0 0;
  color: var(--ws-tags-muted);
  font-size: 14px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ws-tag-result-link {
  align-self: flex-start;
  margin-top: 18px;
  color: var(--ws-tags-brand);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.ws-tag-result-link span {
  display: inline-block;
  transition: transform 180ms ease;
}

.ws-tag-result-link:hover span {
  transform: translateX(4px);
}

.ws-tags-pagination {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.ws-tags-pagination .pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ws-tags-pagination .pagination li a,
.ws-tags-pagination .pagination li span {
  display: grid;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  place-items: center;
  border: 1px solid var(--ws-tags-border);
  border-radius: 10px;
  color: var(--ws-tags-text);
  background: var(--ws-tags-surface);
  text-decoration: none;
}

.ws-tags-pagination .pagination li.active a,
.ws-tags-pagination .pagination li.active span,
.ws-tags-pagination .pagination li a:hover {
  border-color: var(--ws-tags-brand);
  color: #fff;
  background: var(--ws-tags-brand);
}

@media (max-width: 760px) {
  .ws-tags-main {
    padding-top: var(--ws-header-mobile-height, 68px);
  }

  .ws-tags-shell {
    width: min(100% - 30px, 680px);
  }

  .ws-tags-hero {
    padding: 42px 0 38px;
  }

  .ws-tags-breadcrumb {
    margin-bottom: 30px;
  }

  .ws-tags-hero p {
    font-size: 15px;
  }

  .ws-tags-results {
    padding: 38px 0 60px;
  }

  .ws-tag-result-card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .ws-tag-result-cover,
  .ws-tag-result-cover img,
  .ws-tag-result-placeholder {
    min-height: 190px;
    max-height: 230px;
  }

  .ws-tag-result-body {
    padding: 23px 22px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ws-tag-result-card,
  .ws-tag-result-cover img,
  .ws-tag-result-link span {
    transition: none;
  }
}
