/* [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;
  }
}

/* [project]/src/components/profile/profile-layout.css [app-client] (css) */
.entity-page .profile-tabbar {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 22px;
  display: flex;
}

.entity-page .profile-tabs {
  flex-wrap: wrap;
  align-items: baseline;
  gap: 26px;
  display: flex;
}

.entity-page .profile-tab {
  font: inherit;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-4);
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0 0 7px;
  font-size: 14px;
  font-weight: 600;
  transition: color .15s;
  position: relative;
}

.entity-page .profile-tab:hover {
  color: var(--ink-2);
}

.entity-page .profile-tab.on {
  color: var(--ink);
}

.entity-page .profile-tab.on:after {
  content: "";
  background: var(--sage);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.entity-page .profile-tab.empty {
  color: var(--ink-4);
  opacity: .62;
  font-style: italic;
}

.entity-page .profile-tab-count {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  color: var(--ink-4);
  text-transform: none;
  letter-spacing: 0;
  margin-left: 7px;
  font-size: 11px;
  font-weight: 400;
}

.entity-page .profile-empty {
  color: var(--ink-3);
  padding: 40px 4px;
  font-size: 12.5px;
  line-height: 1.7;
}

.entity-page .profile-empty a, .entity-page .profile-empty button {
  color: var(--sage);
  text-underline-offset: 3px;
  cursor: pointer;
  font: inherit;
  background: none;
  border: 0;
  padding: 0;
  text-decoration: underline;
}

.entity-page .profile-bento-panel {
  border: 1px solid var(--wx-glass-line);
  border-radius: var(--wx-radius);
  background: var(--wx-glass-bg);
  min-width: 0;
  min-height: 560px;
  -webkit-backdrop-filter: var(--wx-glass-filter);
  backdrop-filter: var(--wx-glass-filter);
  box-shadow: var(--wx-glass-shadow);
  padding: 20px;
  overflow: visible;
}

html[data-theme="light"] .entity-page.profile-page .profile-bento-panel {
  border-color: var(--wx-glass-line);
  background: var(--wx-glass-bg);
  -webkit-backdrop-filter: var(--wx-glass-filter);
  backdrop-filter: var(--wx-glass-filter);
  box-shadow: var(--wx-glass-shadow);
}

.entity-page .profile-bento-head {
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  display: flex;
}

.profile-bento-eyebrow {
  font-family: var(--font-data);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: color-mix(in srgb, var(--foreground) 36%, transparent);
  font-size: 10.35px;
}

.profile-bento-count {
  font-family: var(--font-data);
  color: color-mix(in srgb, var(--foreground) 68%, transparent);
  margin-top: 4px;
  font-size: 12px;
}

.entity-page .profile-bento-action {
  color: var(--sage);
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
  font-size: 12.65px;
  display: inline-flex;
}

.entity-page .profile-bento-action:hover {
  color: #9dbf8c;
}

.entity-page .profile-bento-body {
  min-width: 0;
}

.profile-search-field {
  border: 1px solid color-mix(in srgb, var(--foreground) 11%, transparent);
  border-radius: var(--wx-radius);
  background: color-mix(in srgb, var(--foreground) 3.5%, transparent);
  width: min(100%, 330px);
  height: 38px;
  color: color-mix(in srgb, var(--foreground) 32%, transparent);
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.profile-search-field > svg {
  pointer-events: none;
  position: absolute;
  left: 12px;
}

.profile-search-field input {
  width: 100%;
  height: 100%;
  color: var(--foreground);
  font: inherit;
  background: none;
  border: 0;
  outline: 0;
  padding: 0 34px;
  font-size: 12px;
}

.profile-search-field input::placeholder {
  color: color-mix(in srgb, var(--foreground) 30%, transparent);
}

.profile-search-field button {
  width: 24px;
  height: 24px;
  color: color-mix(in srgb, var(--foreground) 36%, transparent);
  cursor: pointer;
  background: none;
  border: 0;
  place-items: center;
  padding: 0;
  display: grid;
  position: absolute;
  right: 8px;
}

.profile-search-field button:hover {
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
}

.entity-page .profile-listing-tools {
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  display: flex;
}

.entity-page .profile-listing-tools .profile-search-field {
  flex: 260px;
  width: auto;
  margin-bottom: 0;
}

.entity-page .profile-listing-sort {
  border: 1px solid color-mix(in srgb, var(--foreground) 11%, transparent);
  border-radius: var(--wx-radius);
  background: color-mix(in srgb, var(--foreground) 3.5%, transparent);
  flex: none;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 10px;
  display: flex;
}

.entity-page .profile-listing-sort > span {
  font-family: var(--font-data);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: color-mix(in srgb, var(--foreground) 32%, transparent);
  font-size: 9px;
}

.entity-page .profile-listing-sort select {
  min-width: 116px;
  color: color-mix(in srgb, var(--foreground) 72%, transparent);
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  outline: 0;
  font-size: 11px;
}

.entity-page .profile-listing-preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
  display: grid;
}

.entity-page .profile-listing-preview-list {
  display: grid;
}

.entity-page .profile-listing-preview-list.is-scrollable {
  overscroll-behavior: contain;
  scrollbar-width: thin;
  max-height: 520px;
  overflow-y: auto;
}

.entity-page .profile-listing-preview-row {
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--foreground) 7%, transparent);
  width: 100%;
  min-width: 0;
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
  background: none;
  grid-template-columns: 52px minmax(0, 1fr) auto minmax(64px, auto);
  align-items: center;
  gap: 14px;
  padding: 10px 6px;
  transition: background-color .16s;
  display: grid;
}

.entity-page .profile-listing-preview-row:first-child {
  border-top: 1px solid color-mix(in srgb, var(--foreground) 7%, transparent);
}

.entity-page .profile-listing-preview-row:hover {
  background: color-mix(in srgb, var(--foreground) 3.5%, transparent);
}

.entity-page .profile-listing-preview-row:focus-visible {
  outline-offset: -1px;
  outline: 1px solid #13c167a6;
}

.entity-page .profile-listing-preview-cover {
  border-radius: var(--wx-radius);
  background: color-mix(in srgb, var(--foreground) 5%, transparent);
  width: 52px;
  height: 52px;
  color: color-mix(in srgb, var(--foreground) 18%, transparent);
  place-items: center;
  display: grid;
  position: relative;
  overflow: hidden;
}

.entity-page .profile-listing-preview-cover img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.entity-page .profile-listing-preview-cover > svg {
  width: 22px;
  height: 22px;
}

.entity-page .profile-listing-preview-cover.is-playing {
  outline: 1px solid var(--wx-green);
  outline-offset: -1px;
}

.entity-page .profile-listing-preview-cover.is-playing img {
  filter: brightness(.62);
}

.entity-page .profile-listing-preview-play {
  opacity: 0;
  pointer-events: none;
  border-radius: 999px;
  transition: opacity .16s, background-color .16s;
  top: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  bottom: auto !important;
  left: 50% !important;
}

.entity-page .profile-listing-preview-cover:hover .profile-listing-preview-play, .entity-page .profile-listing-preview-cover:focus-within .profile-listing-preview-play {
  opacity: 1;
  pointer-events: auto;
}

.entity-page .profile-listing-preview-copy {
  gap: 3px;
  min-width: 0;
  display: grid;
}

.entity-page .profile-listing-preview-copy strong {
  color: color-mix(in srgb, var(--foreground) 90%, transparent);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  overflow: hidden;
}

.entity-page .profile-listing-preview-copy > span {
  color: color-mix(in srgb, var(--foreground) 43%, transparent);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  line-height: 1.25;
  overflow: hidden;
}

.entity-page .profile-listing-preview-grade {
  justify-content: flex-end;
  display: flex;
}

.entity-page .profile-listing-preview-actions {
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 86px;
  display: flex;
}

.entity-page .profile-listing-preview-price {
  min-width: 64px;
  color: color-mix(in srgb, var(--foreground) 90%, transparent);
  font-family: var(--font-data);
  text-align: right;
  font-size: 12px;
  font-weight: 600;
}

.entity-page .profile-listing-show-more {
  border: 1px solid color-mix(in srgb, var(--foreground) 12%, transparent);
  border-radius: var(--wx-radius);
  background: color-mix(in srgb, var(--foreground) 3.5%, transparent);
  width: 100%;
  color: color-mix(in srgb, var(--foreground) 58%, transparent);
  font: inherit;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 10px 14px;
  font-size: 11px;
  transition: border-color .16s, color .16s, background-color .16s;
  display: flex;
}

.entity-page .profile-listing-show-more:hover {
  color: var(--sage);
  background: #13c16714;
  border-color: #13c16780;
}

.entity-page .profile-listing-show-more:disabled {
  cursor: wait;
  opacity: .55;
}

.entity-page .profile-crate-preview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  display: grid;
}

.entity-page .profile-block:not([data-profile-size="large"]) .profile-crate-preview > :nth-child(n+3) {
  display: none;
}

.entity-page .profile-block[data-profile-size="large"] .profile-crate-preview {
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  gap: 16px;
  padding: 0 2px 14px;
  display: flex;
  overflow-x: auto;
}

.entity-page .profile-block[data-profile-size="large"] .profile-crate-preview > * {
  scroll-snap-align: start;
  flex: 0 0 clamp(280px, 20vw, 390px);
}

.entity-page .profile-crate-preview-card {
  min-width: 0;
  position: relative;
}

.entity-page .profile-crate-preview-card.is-curated:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  border-radius: var(--wx-radius);
  background: #13c16709;
  border: 1px solid #9dbf8c2e;
  position: absolute;
  inset: -8px;
}

.entity-page .profile-crate-preview-card > button {
  z-index: 1;
  position: relative;
}

.entity-page .profile-bento-panel.profile-bento-panel--compact {
  min-height: 270px;
}

.profile-preview-empty {
  border: 1px solid color-mix(in srgb, var(--foreground) 7%, transparent);
  min-height: 210px;
  color: color-mix(in srgb, var(--foreground) 34%, transparent);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  display: flex;
}

.profile-crate-status {
  z-index: 8;
  border-radius: var(--wx-radius);
  color: #ffffff7a;
  font-family: var(--font-data);
  text-transform: uppercase;
  letter-spacing: .08em;
  background: #0a0a0ccc;
  border: 1px solid #ffffff1f;
  padding: 4px 7px;
  font-size: 8px;
  position: absolute;
  top: 0;
  left: 4px;
}

.profile-crate-status.listed {
  color: #9dbf8c;
  border-color: #13c16759;
}

.profile-crate-status.curated {
  color: #a8c49a;
  background: #101812d6;
  border-color: #9dbf8c6b;
  align-items: center;
  gap: 5px;
  display: inline-flex;
}

.profile-browser-modal {
  z-index: 300;
  position: fixed;
  inset: 0;
}

.profile-browser-backdrop {
  -webkit-backdrop-filter: blur(26px);
  backdrop-filter: blur(26px);
  cursor: default;
  background: #050608a8;
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.profile-browser-sheet {
  border: 1px solid color-mix(in srgb, var(--foreground) 12%, transparent);
  border-radius: var(--wx-radius);
  background: color-mix(in srgb, var(--background) 78%, transparent);
  color: var(--foreground);
  flex-direction: column;
  display: flex;
  position: absolute;
  inset: 18px;
  overflow: hidden;
  box-shadow: 0 30px 100px #00000080;
}

.profile-browser-head {
  border-bottom: 1px solid color-mix(in srgb, var(--foreground) 8%, transparent);
  flex: none;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 28px 20px;
  display: flex;
}

.profile-browser-seller {
  color: var(--sage);
  font-family: var(--font-data);
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 10px;
  text-decoration: none;
  display: inline-flex;
}

.profile-browser-seller:hover {
  color: #9dbf8c;
  text-underline-offset: 3px;
  text-decoration: underline;
}

.profile-browser-head h2 {
  letter-spacing: 0;
  margin: 4px 0 1px;
  font-size: 28px;
  font-weight: 500;
}

.profile-browser-head span {
  font-family: var(--font-data);
  color: color-mix(in srgb, var(--foreground) 38%, transparent);
  font-size: 10px;
}

.profile-browser-close {
  border: 1px solid color-mix(in srgb, var(--foreground) 14%, transparent);
  background: color-mix(in srgb, var(--foreground) 5%, transparent);
  width: 34px;
  height: 34px;
  color: color-mix(in srgb, var(--foreground) 70%, transparent);
  cursor: pointer;
  border-radius: 50%;
  place-items: center;
  padding: 0;
  display: grid;
}

.profile-browser-close:hover {
  color: var(--foreground);
  background: color-mix(in srgb, var(--foreground) 9%, transparent);
}

.profile-browser-content {
  overscroll-behavior: contain;
  flex: 1;
  min-height: 0;
  padding: 24px 28px 48px;
  overflow-y: auto;
}

.profile-crates-modal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 32px 18px;
  display: grid;
}

.profile-curated-crates {
  border-radius: var(--wx-radius);
  background: #5b744f13;
  border: 1px solid #9dbf8c33;
  margin: -4px -8px 28px;
  padding: 22px 20px 26px;
}

.profile-crate-section-head {
  color: #a8c49a;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  display: flex;
}

.profile-crate-section-head h3 {
  color: var(--foreground);
  letter-spacing: 0;
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 500;
}

.profile-crate-section-head--plain {
  color: color-mix(in srgb, var(--foreground) 45%, transparent);
  margin: 4px 0 20px;
}

.profile-curated-card {
  position: relative;
}

.profile-crates-modal-grid--curated {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-genre-chip {
  border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
  background: color-mix(in srgb, var(--foreground) 3.5%, transparent);
  color: color-mix(in srgb, var(--foreground) 46%, transparent);
  font: inherit;
  cursor: pointer;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 9px;
}

.profile-genre-chip:hover, .profile-genre-chip.on {
  color: #9dbf8c;
  background: #13c1671a;
  border-color: #13c16766;
}

@media (max-width: 900px) {
  .profile-crates-modal-grid, .profile-crates-modal-grid--curated {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .entity-page .profile-bento-panel {
    min-height: 0;
    padding: 16px;
  }

  .entity-page .profile-listing-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .entity-page .profile-listing-tools .profile-search-field {
    flex-basis: 38px;
    width: 100%;
  }

  .entity-page .profile-listing-sort {
    justify-content: space-between;
    width: 100%;
  }

  .entity-page .profile-listing-preview-grid {
    gap: 20px 12px;
  }

  .entity-page .profile-listing-preview-row {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 11px;
    padding-inline: 2px;
  }

  .entity-page .profile-listing-preview-cover {
    width: 46px;
    height: 46px;
  }

  .entity-page .profile-listing-preview-grade {
    display: none;
  }

  .entity-page .profile-listing-preview-price {
    min-width: 58px;
    font-size: 11px;
  }

  .entity-page .profile-crate-preview {
    grid-template-columns: 1fr;
  }

  .profile-browser-sheet {
    border-radius: var(--wx-radius);
    border: 0;
    inset: 0;
  }

  .profile-browser-head {
    padding: 18px 16px;
  }

  .profile-browser-content {
    padding: 18px 16px 36px;
  }

  .profile-crates-modal-grid {
    grid-template-columns: 1fr;
  }

  .profile-curated-crates {
    margin-inline: 0;
    padding: 18px 14px 22px;
  }
}

.entity-page .profile-flow {
  width: 100%;
  min-width: 0;
  display: block;
  position: relative;
}

.entity-page .profile-grid {
  width: 100%;
  transition: height .18s;
  position: relative;
}

.entity-page .profile-grid > .react-grid-item {
  transition: transform .18s, width .18s, height .18s;
}

.entity-page .profile-grid > .react-grid-item.react-draggable-dragging {
  z-index: 20;
  will-change: transform;
  transition: none;
}

.entity-page .profile-grid > .react-grid-placeholder {
  z-index: 10;
  border-radius: var(--wx-radius);
  opacity: 1;
  pointer-events: none;
  background: #13c1671f;
  border: 1px solid #9dbf8cb8;
  transition-duration: 80ms;
}

.entity-page .profile-grid-item-shell {
  min-width: 0;
  overflow: visible;
}

.entity-page .profile-grid-item-measure {
  width: 100%;
  min-width: 0;
}

.entity-page .profile-block {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.entity-page .profile-add-component-anchor {
  z-index: 5;
  transition: left .18s, top .18s, width .18s, height .18s;
  position: absolute;
}

.entity-page .profile-add-component-anchor .profile-add-component {
  width: 100%;
  height: 100%;
  margin: 0;
}

.entity-page .profile-add-component {
  border: 1px dashed color-mix(in srgb, var(--foreground) 14%, transparent);
  border-radius: var(--wx-radius);
  background: color-mix(in srgb, var(--foreground) 1.5%, transparent);
  width: min(100%, 50% - 8px);
  min-height: 176px;
  margin: 16px 0 0 auto;
  transition: border-color .16s, background-color .16s;
  position: relative;
  overflow: hidden;
}

.entity-page .profile-add-component:hover, .entity-page .profile-add-component.open {
  background: #13c16709;
  border-color: #13c16770;
}

.entity-page .profile-add-component-trigger {
  width: 100%;
  height: 100%;
  min-height: inherit;
  color: color-mix(in srgb, var(--foreground) 42%, transparent);
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  display: flex;
}

.entity-page .profile-add-component-trigger:hover {
  color: #9dbf8c;
}

.entity-page .profile-add-component-plus {
  border: 1px solid color-mix(in srgb, var(--foreground) 20%, transparent);
  background: color-mix(in srgb, var(--foreground) 3.5%, transparent);
  border-radius: 50%;
  place-items: center;
  width: 42px;
  height: 42px;
  display: grid;
}

.entity-page .profile-add-component-trigger:hover .profile-add-component-plus {
  background: #13c16717;
  border-color: #13c1678c;
}

.entity-page .profile-component-selector {
  height: 100%;
  padding: 16px;
  overflow-y: auto;
}

.entity-page .profile-component-selector-head {
  color: color-mix(in srgb, var(--foreground) 70%, transparent);
  font-family: var(--font-data);
  text-transform: uppercase;
  letter-spacing: .14em;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  display: flex;
}

.entity-page .profile-component-selector-head button {
  width: 28px;
  height: 28px;
  color: color-mix(in srgb, var(--foreground) 38%, transparent);
  cursor: pointer;
  background: none;
  border: 0;
  place-items: center;
  display: grid;
}

.entity-page .profile-component-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 12px;
  display: grid;
}

.entity-page .profile-component-options > button {
  border: 1px solid color-mix(in srgb, var(--foreground) 9%, transparent);
  border-radius: var(--wx-radius);
  background: color-mix(in srgb, var(--foreground) 2.5%, transparent);
  min-height: 42px;
  color: color-mix(in srgb, var(--foreground) 72%, transparent);
  font: inherit;
  text-align: left;
  cursor: pointer;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  font-size: 12px;
  display: grid;
}

.entity-page .profile-component-options > button:hover {
  color: #9dbf8c;
  border-color: #13c1676b;
}

.entity-page .profile-component-options small {
  color: color-mix(in srgb, var(--foreground) 30%, transparent);
  font-family: var(--font-data);
  text-transform: uppercase;
  font-size: 8px;
}

.entity-page .profile-component-options-empty {
  text-align: center;
  color: color-mix(in srgb, var(--foreground) 30%, transparent);
  padding: 28px 8px;
  font-size: 11px;
}

.entity-page .profile-component-category-label {
  font-family: var(--font-data);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: color-mix(in srgb, var(--foreground) 30%, transparent);
  grid-column: 1 / -1;
  font-size: 8px;
}

.entity-page .profile-component-setup {
  gap: 8px;
  margin-top: 12px;
  display: grid;
}

.entity-page .profile-component-setup input, .entity-page .profile-component-setup textarea {
  border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
  border-radius: var(--wx-radius);
  background: color-mix(in srgb, var(--foreground) 2.5%, transparent);
  width: 100%;
  min-width: 0;
  color: var(--foreground);
  font: inherit;
  outline: none;
  padding: 9px 10px;
  font-size: 11px;
}

.entity-page .profile-component-setup input:focus, .entity-page .profile-component-setup textarea:focus {
  border-color: #13c16780;
}

.entity-page .profile-component-setup textarea {
  resize: vertical;
}

.entity-page .profile-component-setup-back {
  color: color-mix(in srgb, var(--foreground) 42%, transparent);
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  justify-self: start;
  padding: 0;
  font-size: 10px;
}

.entity-page .profile-component-setup-back:hover {
  color: #9dbf8c;
}

.entity-page .profile-component-setup-add {
  color: #9dbf8c;
  min-height: 36px;
  font: inherit;
  cursor: pointer;
  background: #13c16717;
  border: 1px solid #13c1676b;
  font-size: 11px;
}

.entity-page .profile-component-setup-add:hover {
  background: #13c16726;
}

.entity-page .profile-component-setup-error {
  color: #d58080;
  font-size: 10px;
}

.entity-page .profile-component-setup-row {
  border: 1px solid color-mix(in srgb, var(--foreground) 7%, transparent);
  gap: 6px;
  padding: 9px;
  display: grid;
  position: relative;
}

.entity-page .profile-component-setup-row > button {
  background: color-mix(in srgb, var(--background) 75%, transparent);
  width: 24px;
  height: 24px;
  color: color-mix(in srgb, var(--foreground) 40%, transparent);
  cursor: pointer;
  border: 0;
  place-items: center;
  display: grid;
  position: absolute;
  top: 5px;
  right: 5px;
}

.entity-page .profile-component-setup-row > button:hover {
  color: #d58080;
}

.entity-page .profile-component-setup-more {
  color: color-mix(in srgb, var(--foreground) 44%, transparent);
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  justify-self: start;
  align-items: center;
  gap: 5px;
  padding: 2px 0;
  font-size: 10px;
  display: inline-flex;
}

.entity-page .profile-component-setup-more:hover {
  color: #9dbf8c;
}

.entity-page .profile-component-wishlist-seed {
  color: #9dbf8c;
  min-height: 36px;
  font: inherit;
  cursor: pointer;
  background: #13c16712;
  border: 1px solid #13c1675c;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  display: inline-flex;
}

.entity-page .profile-component-wishlist-seed:hover {
  background: #13c16721;
}

.entity-page .profile-component-wishlist-seed:disabled {
  cursor: wait;
  opacity: .55;
}

@media (max-width: 900px) {
  .entity-page .profile-add-component {
    width: 100%;
  }
}

.entity-page .profile-embed {
  aspect-ratio: 16 / 9;
  border-radius: var(--wx-radius);
  border: 1px solid var(--line);
  background: #0000004d;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.entity-page .profile-embed[data-ratio="square"] {
  aspect-ratio: 1;
}

.entity-page .profile-embed iframe {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

@media (max-width: 620px) {
  .entity-page .profile-add-component {
    min-height: 150px;
  }

  .entity-page .profile-component-options {
    grid-template-columns: 1fr;
  }

  .entity-page .profile-tabs {
    gap: 18px;
  }

  .entity-page .profile-tab {
    font-size: 12.5px;
  }
}

.entity-page .profile-block.editable {
  position: relative;
}

.entity-page .profile-block.editable:after {
  content: "";
  border-radius: var(--wx-radius);
  pointer-events: none;
  border: 1px dashed #0000;
  transition: border-color .15s;
  position: absolute;
  inset: -6px -10px;
}

.entity-page .profile-block.editable:hover:after {
  border-color: #13c16759;
}

.entity-page .profile-grid > .react-grid-item.react-draggable-dragging .profile-block {
  opacity: .82;
}

.entity-page .profile-grid > .react-grid-item.react-draggable-dragging .profile-block:after {
  border-color: var(--sage);
}

.entity-page .block-grip {
  z-index: 6;
  border-radius: var(--wx-radius);
  border: 1px solid var(--wx-glass-line);
  background: var(--wx-glass-bg);
  width: 24px;
  height: 24px;
  -webkit-backdrop-filter: var(--wx-glass-filter);
  backdrop-filter: var(--wx-glass-filter);
  color: var(--ink-3);
  cursor: grab;
  opacity: 0;
  touch-action: none;
  place-items: center;
  transition: opacity .15s, color .15s;
  display: grid;
  position: absolute;
  top: -6px;
  left: -30px;
}

.entity-page .profile-block.editable:hover .block-grip, .entity-page .block-grip:focus-visible {
  opacity: 1;
}

.entity-page .block-grip:hover {
  color: var(--ink);
}

.entity-page .block-grip:active {
  cursor: grabbing;
}

.entity-page .block-remove {
  z-index: 7;
  border: 1px solid var(--line-2);
  background: color-mix(in srgb, var(--background) 82%, transparent);
  width: 24px;
  height: 24px;
  color: var(--ink-3);
  cursor: pointer;
  opacity: 0;
  border-radius: 50%;
  place-items: center;
  transition: opacity .15s, color .15s, border-color .15s;
  display: grid;
  position: absolute;
  top: -6px;
  right: 8px;
}

.entity-page .profile-block.editable:hover .block-remove, .entity-page .block-remove:focus-visible {
  opacity: 1;
}

.entity-page .block-remove:hover {
  color: #d58080;
  border-color: #c05a5a73;
}

.entity-page .block-width-controls {
  z-index: 7;
  border: 1px solid var(--line-2);
  border-radius: var(--wx-radius);
  background: color-mix(in srgb, var(--background) 82%, transparent);
  opacity: 0;
  transition: opacity .15s, border-color .15s;
  display: flex;
  position: absolute;
  top: -6px;
  right: 8px;
  overflow: hidden;
}

.entity-page .block-width-controls.has-remove {
  right: 40px;
}

.entity-page .block-width-controls button {
  border: 0;
  border-right: 1px solid var(--line-2);
  width: 23px;
  height: 23px;
  color: var(--ink-3);
  cursor: pointer;
  background: none;
  place-items: center;
  padding: 0;
  display: grid;
}

.entity-page .block-width-controls button:last-child {
  border-right: 0;
}

.entity-page .block-width-controls button:hover {
  color: var(--ink);
}

.entity-page .block-width-controls button.active {
  color: var(--sage);
  background: #13c16729;
}

.entity-page .block-control-divider {
  background: var(--line-2);
  align-self: stretch;
  width: 1px;
}

.entity-page .profile-block.editable:hover .block-width-controls, .entity-page .block-width-controls:focus-within {
  opacity: 1;
}

.entity-page .profile-collection-feature {
  border-top: 1px solid color-mix(in srgb, var(--foreground) 8%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--foreground) 8%, transparent);
  background: radial-gradient(ellipse 42% 78% at 52% 48%, color-mix(in srgb, var(--foreground) 14%, transparent), color-mix(in srgb, var(--foreground) 4%, transparent) 55%, transparent 78%);
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  min-height: 390px;
  display: grid;
  overflow: hidden;
}

.entity-page .profile-collection-feature-copy {
  flex-direction: column;
  justify-content: center;
  padding: 34px 24px;
  display: flex;
}

.entity-page .profile-collection-feature-kicker {
  font-family: var(--font-pixel);
  text-transform: uppercase;
  color: color-mix(in srgb, var(--foreground) 82%, transparent);
  font-size: 14px;
}

.entity-page .profile-collection-feature-stats {
  flex-wrap: wrap;
  gap: 42px;
  margin-top: 54px;
  display: flex;
}

.entity-page .profile-collection-feature-stats div {
  gap: 8px;
  display: grid;
}

.entity-page .profile-collection-feature-stats strong {
  font-family: var(--font-data);
  color: var(--foreground);
  font-size: 26px;
  font-weight: 600;
}

.entity-page .profile-collection-feature-stats span {
  font-family: var(--font-data);
  text-transform: uppercase;
  color: color-mix(in srgb, var(--foreground) 42%, transparent);
  font-size: 10px;
}

.entity-page .profile-collection-feature-copy p {
  color: color-mix(in srgb, var(--foreground) 78%, transparent);
  margin-top: 32px;
  font-size: 14px;
}

.entity-page .profile-collection-feature-copy > button {
  border: 1px solid color-mix(in srgb, var(--foreground) 18%, transparent);
  width: fit-content;
  font-family: var(--font-data);
  text-transform: uppercase;
  color: color-mix(in srgb, var(--foreground) 84%, transparent);
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 11px 14px;
  font-size: 11px;
  display: inline-flex;
}

.entity-page .profile-collection-feature-copy > button:hover {
  color: var(--sage);
  border-color: #13c1678c;
}

.entity-page .profile-collection-feature-wheel {
  justify-content: center;
  align-items: flex-end;
  padding-top: 46px;
  display: flex;
}

.entity-page .profile-block:not([data-profile-size="large"]) .profile-collection-feature {
  grid-template-columns: 1fr;
  min-height: 0;
}

.entity-page .profile-block:not([data-profile-size="large"]) .profile-collection-feature-stats {
  gap: 24px;
  margin-top: 30px;
}

.entity-page .profile-block:not([data-profile-size="large"]) .profile-collection-feature-wheel {
  min-height: 280px;
  padding-top: 0;
}

.entity-page .profile-block[data-profile-size="small"] .profile-listing-preview-grid, .entity-page .profile-block[data-profile-size="small"] .profile-crate-preview {
  grid-template-columns: 1fr;
}

.entity-page .profile-record-rail {
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  gap: 16px;
  padding: 4px 2px 16px;
  display: flex;
  overflow-x: auto;
}

.entity-page .profile-record-rail > * {
  scroll-snap-align: start;
  flex: 0 0 clamp(180px, 21vw, 280px);
}

.entity-page .profile-spine-carousel {
  border-top: 1px solid color-mix(in srgb, var(--foreground) 8%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--foreground) 8%, transparent);
  overflow: hidden;
}

.entity-page .profile-spine-carousel-head {
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 24px 0;
  display: flex;
}

.entity-page .profile-spine-carousel-head div {
  gap: 7px;
  display: grid;
}

.entity-page .profile-spine-carousel-head span {
  font-family: var(--font-data);
  text-transform: uppercase;
  color: color-mix(in srgb, var(--foreground) 62%, transparent);
  font-size: 12.65px;
}

.entity-page .profile-spine-carousel-head small {
  font-family: var(--font-data);
  color: color-mix(in srgb, var(--foreground) 34%, transparent);
  font-size: 11.5px;
}

.entity-page .profile-crate-rail {
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  gap: 18px;
  padding: 0 2px 12px;
  display: flex;
  overflow-x: auto;
}

.entity-page .profile-crate-rail > * {
  scroll-snap-align: start;
  flex: 0 0 clamp(260px, 32vw, 430px);
  min-width: 0;
}

.entity-page .profile-hero-curated {
  border-top: 1px solid var(--line);
  min-width: 0;
  margin-top: 22px;
  padding-top: 16px;
}

.entity-page .profile-hero-curated-head {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  display: flex;
}

.entity-page .profile-hero-curated-head > span {
  color: var(--sage);
  font-family: var(--font-data);
  letter-spacing: .16em;
  text-transform: uppercase;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
}

.entity-page .profile-hero-curated-head svg {
  width: 14px;
  height: 14px;
}

.entity-page .profile-hero-curated-head button {
  cursor: pointer;
  color: var(--ink-4);
  font-family: var(--font-data);
  letter-spacing: .05em;
  text-transform: uppercase;
  background: none;
  border: 0;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  display: inline-flex;
}

.entity-page .profile-hero-curated-head button:hover {
  color: var(--sage);
}

.entity-page .profile-hero-curated-head button svg {
  width: 12px;
  height: 12px;
}

.entity-page .profile-hero-curated-rail {
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: color-mix(in srgb, var(--foreground) 18%, transparent) transparent;
  scrollbar-width: thin;
  gap: 16px;
  max-width: 100%;
  padding: 2px 18px 12px 2px;
  display: flex;
  overflow-x: auto;
}

.entity-page .profile-hero-curated-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(230px, 27vw, 300px);
  min-width: 0;
  position: relative;
}

.entity-page .profile-likes-panel {
  background: radial-gradient(circle at 88% 0%, #e87a9b1f, transparent 42%),
    color-mix(in srgb, var(--background) 46%, transparent);
  overflow: hidden;
}

.entity-page .profile-likes-panel .profile-bento-eyebrow {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.entity-page .profile-likes-panel .profile-bento-eyebrow svg {
  color: #e87a9b;
  fill: currentColor;
  width: 11px;
  height: 11px;
}

.entity-page .profile-likes-stack {
  gap: 18px;
  display: grid;
}

.entity-page .profile-likes-section {
  gap: 8px;
  min-width: 0;
  display: grid;
}

.entity-page .profile-likes-section-head {
  color: color-mix(in srgb, var(--foreground) 42%, transparent);
  font: 8px var(--font-data);
  letter-spacing: .12em;
  text-transform: uppercase;
  align-items: center;
  gap: 6px;
  display: flex;
}

.entity-page .profile-likes-section-head svg {
  color: #d96f91;
  width: 10px;
  height: 10px;
}

.entity-page .profile-likes-section-head span {
  color: color-mix(in srgb, var(--foreground) 30%, transparent);
  margin-left: auto;
}

.entity-page .profile-likes-records {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  display: grid;
}

.entity-page .profile-likes-tracks, .entity-page .profile-likes-crates {
  gap: 7px;
  display: grid;
}

.entity-page .profile-like-card {
  border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
  border-radius: var(--wx-radius);
  background: color-mix(in srgb, var(--background) 38%, transparent);
  min-width: 0;
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
  grid-template-columns: 68px minmax(0, 1fr);
  padding: 0;
  transition: transform .2s, border-color .2s, background .2s;
  display: grid;
  overflow: hidden;
}

.entity-page .profile-like-card:hover {
  background: color-mix(in srgb, var(--background) 54%, transparent);
  border-color: #e87a9b52;
  transform: translateY(-2px);
}

.entity-page .profile-like-card--record {
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 118px;
}

.entity-page .profile-like-card--record .profile-like-copy {
  padding: 13px 14px;
}

.entity-page .profile-like-card--record .profile-like-copy strong {
  font-size: 13px;
}

.entity-page .profile-like-card--track {
  border-radius: var(--wx-radius);
  background: color-mix(in srgb, var(--background) 28%, transparent);
  grid-template-columns: 52px minmax(0, 1fr);
  min-height: 52px;
}

.entity-page .profile-like-card--track:hover {
  transform: translateX(2px);
}

.entity-page .profile-like-card--track .profile-like-copy {
  padding: 6px 10px;
}

.entity-page .profile-like-card--track .profile-like-copy small {
  margin-bottom: 2px;
}

.entity-page .profile-like-card--track .profile-like-copy strong {
  font-size: 10.5px;
}

.entity-page .profile-like-card--track .profile-like-copy > span {
  margin-top: 2px;
}

.entity-page .profile-like-card--track .profile-like-copy i {
  color: color-mix(in srgb, var(--foreground) 55%, transparent);
  font-style: normal;
}

.entity-page .profile-like-card--track .profile-like-kind {
  width: 17px;
  height: 17px;
  bottom: 4px;
  right: 4px;
}

.entity-page .profile-like-cover {
  aspect-ratio: 1;
  background: color-mix(in srgb, var(--foreground) 5%, transparent);
  position: relative;
}

.entity-page .profile-like-cover > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.entity-page .profile-like-cover > svg {
  width: 20px;
  height: 20px;
  color: var(--ink-4);
  margin: auto;
  position: absolute;
  inset: 0;
}

.entity-page .profile-like-kind {
  border: 1px solid var(--wx-glass-line);
  background: var(--wx-glass-bg);
  color: #f0a0b8;
  width: 20px;
  height: 20px;
  -webkit-backdrop-filter: var(--wx-glass-filter);
  backdrop-filter: var(--wx-glass-filter);
  border-radius: 50%;
  place-items: center;
  display: grid;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.entity-page .profile-like-kind svg {
  width: 10px;
  height: 10px;
}

.entity-page .profile-like-copy {
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 9px 10px;
  display: flex;
}

.entity-page .profile-like-copy small {
  color: #d96f91;
  font: 8px var(--font-data);
  letter-spacing: .08em;
  text-transform: uppercase;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
  display: inline-flex;
}

.entity-page .profile-like-copy small svg {
  width: 10px;
  height: 10px;
}

.entity-page .profile-like-copy strong {
  color: var(--foreground);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  overflow: hidden;
}

.entity-page .profile-like-copy > span {
  color: var(--ink-4);
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 3px;
  font-size: 9px;
  overflow: hidden;
}

.entity-page .profile-like-card--crate {
  grid-column: span 2;
  grid-template-columns: 102px minmax(0, 1fr);
}

.entity-page .profile-like-crate-covers {
  aspect-ratio: 2;
  background: color-mix(in srgb, var(--foreground) 5%, transparent);
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  overflow: hidden;
}

.entity-page .profile-like-crate-covers img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.entity-page .profile-like-crate-covers > span {
  place-items: center;
  display: grid;
}

.entity-page .profile-like-crate-covers svg {
  width: 12px;
  height: 12px;
  color: var(--ink-4);
}

.entity-page .profile-likes-empty {
  border: 1px dashed color-mix(in srgb, var(--foreground) 10%, transparent);
  min-height: 170px;
  color: var(--ink-4);
  font: 10px var(--font-data);
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}

.entity-page .profile-likes-empty svg {
  color: #e87a9b;
  width: 16px;
  height: 16px;
}

.profile-likes-modal-content .profile-likes-stack {
  gap: 28px;
}

.profile-likes-modal-content .profile-likes-records {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.profile-likes-modal-content .profile-likes-tracks, .profile-likes-modal-content .profile-likes-crates {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.profile-likes-modal-content .profile-like-card--crate {
  grid-column: auto;
}

html[data-theme="light"] .entity-page.profile-page .profile-like-card {
  border-color: var(--wx-glass-line);
  background: var(--wx-glass-bg);
  -webkit-backdrop-filter: var(--wx-glass-filter);
  backdrop-filter: var(--wx-glass-filter);
  box-shadow: var(--wx-glass-shadow);
}

html[data-theme="light"] .entity-page.profile-page .profile-like-card:hover {
  background: linear-gradient(135deg, #ffffff47, #f4f5fa12);
  border-color: #e87a9b52;
}

@media (max-width: 620px) {
  .entity-page .profile-likes-records {
    grid-template-columns: 1fr;
  }

  .entity-page .profile-like-card--crate {
    grid-column: auto;
  }

  .entity-page .profile-hero-curated {
    margin-top: 18px;
  }

  .entity-page .profile-hero-curated-card {
    flex-basis: min(78vw, 280px);
  }
}

@media (max-width: 760px) {
  .entity-page .profile-collection-feature {
    grid-template-columns: 1fr;
  }

  .entity-page .profile-collection-feature-stats {
    gap: 24px;
    margin-top: 30px;
  }

  .entity-page .profile-collection-feature-wheel {
    min-height: 300px;
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  .entity-page .block-grip {
    top: -28px;
    left: -4px;
  }

  .entity-page .block-width-controls {
    display: none;
  }
}

.profile-drawer {
  z-index: 200;
  pointer-events: none;
  width: min(420px, 100vw);
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
}

.profile-drawer-panel {
  pointer-events: auto;
  overscroll-behavior: contain;
  border-left: 1px solid color-mix(in srgb, var(--foreground) 12%, transparent);
  background: var(--wx-glass-bg);
  width: 100%;
  -webkit-backdrop-filter: var(--wx-glass-filter);
  backdrop-filter: var(--wx-glass-filter);
  box-shadow: var(--wx-glass-shadow);
  flex-direction: column;
  display: flex;
  overflow-y: auto;
}

@media (max-width: 620px) {
  .profile-drawer {
    width: 100vw;
  }
}

/*# sourceMappingURL=src_components_0-cl~z~._.css.map*/