.wc-wrap {
  max-width: var(--wc-max);
  margin: 0 auto;
  padding: 0 24px;
}

.wc-hero {
  background: linear-gradient(180deg, #fff 0%, #f6f6f8 100%);
  padding: 36px 0 0;
  text-align: center;
}

.wc-hero h1 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.wc-hero p {
  margin: 0 auto 28px;
  max-width: 520px;
  color: var(--wc-muted);
  font-size: 15px;
}

.wc-search {
  max-width: 560px;
  margin: 0 auto;
}

.wc-search-box {
  display: flex;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--wc-shadow);
}

.wc-search-box input {
  flex: 1;
  border: 0;
  outline: none;
  height: 48px;
  padding: 0 20px;
  font-size: 14px;
  background: transparent;
}

.wc-search-box button {
  width: 84px;
  border: 0;
  background: var(--wc-brand);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.wc-search-box button:hover {
  background: var(--wc-brand-hover);
}

.wc-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px 0 8px;
}

.wc-chip {
  height: 34px;
  padding: 0 14px;
  border: 1px solid #e7e7e7;
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  color: #525252;
  cursor: pointer;
  font-family: inherit;
}

.wc-chip:hover,
.wc-chip.is-active {
  border-color: var(--wc-brand);
  color: var(--wc-brand);
  background: var(--wc-brand-soft);
}

.wc-section {
  padding: 28px 0 8px;
}

.wc-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}

.wc-section-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.wc-section-head span {
  color: var(--wc-muted);
  font-size: 13px;
}

.wc-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 8px;
}

.wc-pager button {
  min-width: 32px;
  height: 32px;
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.wc-pager button.is-active,
.wc-pager button:hover {
  background: var(--wc-brand);
  border-color: var(--wc-brand);
  color: #fff;
}

.wc-empty {
  text-align: center;
  color: var(--wc-muted);
  padding: 48px 0;
}

@media (max-width: 640px) {
  .wc-hero h1 {
    font-size: 26px;
  }
}
