/* [project]/src/components/entity/entity-page.css [app-client] (css) */
.entity-page {
  --app: var(--background);
  --surface: color-mix(in srgb, var(--foreground) 4%, transparent);
  --surface-2: color-mix(in srgb, var(--foreground) 7%, transparent);
  --surface-hover: color-mix(in srgb, var(--foreground) 6%, transparent);
  --line: color-mix(in srgb, var(--foreground) 7%, transparent);
  --line-2: color-mix(in srgb, var(--foreground) 13%, transparent);
  --ink: var(--foreground);
  --ink-2: color-mix(in srgb, var(--foreground) 58%, transparent);
  --ink-3: color-mix(in srgb, var(--foreground) 40%, transparent);
  --ink-4: color-mix(in srgb, var(--foreground) 28%, transparent);
  --sage: #13c167;
  --sage-line: #13c16766;
  --sage-bg: #13c1671f;
  --white-btn: #efeee8;
  color: var(--ink);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 4px;
}

.entity-page .lb-back {
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--ink-2);
  font: inherit;
  cursor: pointer;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding: 7px 12px;
  font-size: 11px;
  display: inline-flex;
}

.entity-page .lb-back:hover {
  color: var(--ink);
}

.entity-page .hero {
  padding: 8px 4px 36px;
  position: relative;
}

.entity-page .hero-actions {
  z-index: 2;
  gap: 8px;
  display: flex;
  position: absolute;
  top: 0;
  right: 4px;
}

.entity-page .abtn {
  font: inherit;
  cursor: pointer;
  border: 1px solid var(--wx-glass-line);
  background: var(--wx-glass-bg);
  -webkit-backdrop-filter: var(--wx-glass-filter);
  backdrop-filter: var(--wx-glass-filter);
  color: var(--ink);
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  font-size: 12px;
  display: inline-flex;
}

[data-theme="light"] .entity-page .abtn {
  background: #ffffff8c;
}

.entity-page .abtn:hover {
  border-color: var(--ink-3);
}

.entity-page .abtn.on {
  border-color: var(--sage-line);
  color: var(--sage);
  background: var(--sage-bg);
}

.entity-page .hero-body {
  align-items: flex-start;
  gap: 36px;
  padding-top: 44px;
  display: flex;
}

.entity-page .hero-img {
  aspect-ratio: 1;
  border: 1px solid var(--line-2);
  background-color: #1a1916;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  flex: none;
  place-items: center;
  width: clamp(238px, 25.5vw, 391px);
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 48px -20px #000;
}

.entity-page .hero-img:after {
  content: "";
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  position: absolute;
  inset: 0;
}

.entity-page .hero-img .wm {
  letter-spacing: -1px;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(48px, 9vw, 72px);
  font-weight: 700;
}

.entity-page .hero-img-edit {
  z-index: 2;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.entity-page .hero-info {
  flex: 1;
  min-width: 0;
  padding-top: 6px;
}

.entity-page .hero-cta-flow {
  justify-content: flex-start;
  margin-top: 20px;
  display: flex;
}

.entity-page .hero-cta-flow .shop-cta {
  position: static;
}

.entity-page .kicker {
  font-family: var(--font-data);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 600;
}

.entity-page .h-name {
  font-family: var(--font-pixel);
  letter-spacing: -1px;
  color: var(--ink);
  margin: 6px 0 0;
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 400;
  line-height: .98;
}

.entity-page.profile-page .hero-img {
  width: clamp(101px, 10.8375vw, 166px);
}

.entity-page.profile-page .h-name {
  font-size: clamp(1.989rem, 5.355vw, 4.59rem);
}

.entity-page .h-genres {
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
  display: flex;
}

.entity-page .chip {
  letter-spacing: .06em;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  white-space: nowrap;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 9.5px;
}

.entity-page .bio {
  color: var(--ink-2);
  white-space: pre-line;
  max-width: 78ch;
  margin-top: 16px;
  font-size: 12.5px;
  font-style: italic;
  line-height: 1.75;
}

.entity-page .bio .more {
  color: var(--wx-green-dim);
  cursor: pointer;
  font-style: normal;
}

.entity-page .photo-row {
  flex-wrap: wrap;
  gap: 8px;
  max-width: 78ch;
  margin-top: 14px;
  display: flex;
}

.entity-page .photo-row img {
  object-fit: cover;
  border-radius: var(--wx-radius);
  border: 1px solid var(--line);
  background: var(--line-2);
  width: auto;
  max-width: 140px;
  height: 84px;
}

.entity-page .stats-row {
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  padding-top: 18px;
  display: flex;
}

.entity-page .stats {
  gap: 40px;
  display: flex;
}

.entity-page .st .n {
  font-variant-numeric: tabular-nums;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-data);
}

.entity-page .st .l {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 3px;
  font-size: 9px;
}

.entity-page button.st {
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

.entity-page button.st:hover .n {
  color: var(--sage);
}

.entity-page button.st:hover .l {
  color: var(--ink-3);
}

.entity-page .mutuals {
  align-items: center;
  gap: 10px;
  display: flex;
}

.entity-page .av-stack {
  display: flex;
}

.entity-page .av-stack .av {
  border: 2px solid var(--app);
  cursor: pointer;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  margin-right: -9px;
  padding: 0;
  transition: transform .15s;
  position: relative;
}

.entity-page .av-stack .av:hover {
  z-index: 2;
  transform: scale(1.18);
}

.entity-page .mutuals .mt {
  color: var(--ink-2);
  font-size: 11px;
}

.entity-page .mutuals .mt b {
  color: var(--ink);
}

.entity-page .shop-cta {
  font: inherit;
  cursor: pointer;
  border: 1px solid var(--sage-line);
  background: var(--sage-bg);
  color: var(--sage);
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  font-size: 12px;
  display: inline-flex;
  position: absolute;
  bottom: 12px;
  right: 4px;
}

.entity-page .shop-cta:hover {
  border-color: var(--sage);
  color: #9dbf8c;
}

.entity-page .section {
  border-top: 1px solid var(--line);
  margin: 0 0 16px;
  padding-top: 22px;
}

.entity-page .section-head {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 18px;
  display: flex;
}

.entity-page .section-head .more {
  color: var(--ink-4);
  cursor: pointer;
  font-size: 10px;
}

.entity-page .section-head .more:hover {
  color: var(--wx-green-dim);
}

.entity-page .section-count {
  color: var(--ink-4);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  font-family: var(--font-data);
  margin-top: 6px;
}

.entity-page .seg {
  border: 1px solid var(--line-2);
  border-radius: 999px;
  display: inline-flex;
  overflow: hidden;
}

.entity-page .seg button {
  font: inherit;
  letter-spacing: .04em;
  color: var(--ink-3);
  cursor: pointer;
  background: none;
  border: 0;
  padding: 5px 11px;
  font-size: 10px;
}

.entity-page .seg button.on {
  background: var(--surface-2);
  color: var(--ink);
}

.entity-page .sec-more {
  letter-spacing: .03em;
  width: fit-content;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
  background: var(--surface);
  cursor: pointer;
  border-radius: 999px;
  margin-top: 18px;
  margin-left: auto;
  padding: 9px 18px;
  font-size: 12px;
  transition: all .15s;
}

.entity-page .sec-more:hover {
  color: var(--sage);
  border-color: var(--sage);
}

.entity-page .sec-scroll {
  overscroll-behavior-y: auto;
  max-height: 820px;
  overflow-y: auto;
}

.entity-page .sec-scroll::-webkit-scrollbar {
  width: 8px;
}

.entity-page .sec-scroll::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: var(--wx-radius);
}

.entity-page .sec-scroll::-webkit-scrollbar-track {
  background: none;
}

.entity-page .claim-prompt {
  font: inherit;
  color: var(--ink-3);
  text-underline-offset: 3px;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--line-2);
  text-decoration-color: var(--line-2);
  cursor: pointer;
  background: none;
  border: 0;
  align-self: center;
  padding: 0;
  font-size: 12px;
}

.entity-page .claim-prompt:hover {
  color: var(--sage);
  -webkit-text-decoration-color: var(--sage);
  text-decoration-color: var(--sage);
}

@media (max-width: 620px) {
  .entity-page .hero-body {
    flex-direction: column;
    gap: 20px;
    padding-top: 52px;
  }

  .entity-page .hero-img {
    width: clamp(187px, 51vw, 272px);
  }

  .entity-page.profile-page .hero-img {
    width: clamp(79.5px, 21.675vw, 115.5px);
  }

  .entity-page .shop-cta {
    margin-top: 16px;
    position: static;
  }

  .entity-page .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .entity-page .stats {
    gap: 26px;
  }
}

/*# sourceMappingURL=src_components_entity_entity-page_0j.vgyo.css.map*/