:root {
  --black: #0d0d0d;
  --muted: #9a9796;
  --elevated: #f2f1f0;
  --border: rgba(0, 0, 0, 0.1);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-text: rgba(255, 255, 255, 0.6);
  --nav-surface: rgba(252, 251, 250, 0.88);
  --nav-surface-solid: #fcfbfa;
  --nav-border: rgba(13, 13, 13, 0.07);
  --nav-text: rgba(13, 13, 13, 0.78);
  --nav-muted: rgba(13, 13, 13, 0.48);
  --font-cosmos: "Cosmos Oracle", "Neue Haas Unica", "Helvetica Neue", Arial, sans-serif;
  --font-haas: "Neue Haas Unica", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 0;
  min-height: 100%;
  background: #ffffff;
  color: var(--black);
  font-family: var(--font-cosmos);
  font-synthesis-weight: none;
  font-weight: 400;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
}

b,
strong {
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  color: inherit;
  font: inherit;
}

img {
  display: block;
}

.profile-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #ffffff;
  border-radius: 24px;
}

.profile-page.is-profile-loading {
  visibility: hidden;
}

.hero {
  --hero-radius: 32px;

  position: relative;
  width: calc(100% - 24px);
  height: clamp(416px, calc((100vw - 24px) * 0.338984), 656px);
  min-height: 416px;
  margin: 12px 12px 4px;
  overflow: hidden;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--hero-radius);
  box-shadow: 0 6px 44px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.03);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-tone {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3) 10%, rgba(0, 0, 0, 0) 55%);
}

.hero-progressive-blur {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 62%;
  overflow: hidden;
  border-radius: 0 0 var(--hero-radius) var(--hero-radius);
  clip-path: inset(0 round 0 0 var(--hero-radius) var(--hero-radius));
  pointer-events: none;
}

.hero-progressive-blur::before,
.hero-progressive-blur::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-progressive-blur::before {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  -webkit-mask-image: linear-gradient(
    to top,
    #000000 0%,
    rgba(0, 0, 0, 0.86) 28%,
    rgba(0, 0, 0, 0.38) 62%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to top,
    #000000 0%,
    rgba(0, 0, 0, 0.86) 28%,
    rgba(0, 0, 0, 0.38) 62%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-progressive-blur::after {
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.46) 30%,
    rgba(0, 0, 0, 0.22) 72%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.46) 30%,
    rgba(0, 0, 0, 0.22) 72%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-shade {
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: inherit;
  clip-path: inset(0 round var(--hero-radius));
  pointer-events: none;
}

.hero-shade-bottom {
  bottom: 0;
  height: 84%;
  border-radius: 0 0 var(--hero-radius) var(--hero-radius);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0) 81.185%);
}

.hero-shade-top {
  top: 0;
  height: 172px;
  border-radius: var(--hero-radius) var(--hero-radius) 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.47) 0%, rgba(0, 0, 0, 0) 81.185%);
}

.hero-content {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: min(481px, 48vw);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.verified-row {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 24px;
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
}

.verified-row img {
  width: 24px;
  height: 24px;
}

.wordmark-wrap {
  position: relative;
  align-self: flex-start;
  width: min(385px, 100%);
  height: 84px;
}

.wordmark {
  position: absolute;
  top: 22px;
  left: 0;
  display: block;
  width: min(336.648px, 100%);
  height: 39.5px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.brand-title {
  position: absolute;
  top: 18px;
  left: 0;
  display: none;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-page.is-text-logo .wordmark {
  display: none;
}

.profile-page.is-text-logo .brand-title {
  display: block;
}

.brand-description {
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 20px;
}

.brand-more {
  display: none;
}

.hero-actions {
  display: flex;
  gap: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  cursor: pointer;
}

.button-follow {
  width: 90px;
  background: #ffffff;
  color: var(--black);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}

.icon-button {
  width: 48px;
  padding: 0;
  background: rgba(255, 255, 255, 0.16);
}

.icon-button img {
  width: 19px;
  height: 19px;
}

.overflow-button {
  gap: 3px;
}

.overflow-button img {
  width: 4px;
  height: 4px;
}

.mobile-top-actions {
  display: none;
}

.social-stats {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-shrink: 0;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.avatar-stack {
  display: flex;
  isolation: isolate;
}

.stack-avatar {
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: -6px;
  overflow: hidden;
  border-radius: 16px;
}

.stack-avatar:first-child {
  margin-left: 0;
}

.stack-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.stat-block p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

.stat-block span {
  color: rgba(255, 255, 255, 0.6);
}

.desktop-nav {
  position: fixed;
  top: 8px;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 102px;
  padding: 24px 32px;
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 54px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 54px;
}

.cosmos-button,
.nav-pills,
.search-island,
.nav-right {
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 60px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.desktop-nav.nav-on-light .cosmos-button,
.desktop-nav.nav-on-light .nav-pills,
.desktop-nav.nav-on-light .search-island,
.desktop-nav.nav-on-light .nav-right {
  border-color: var(--nav-border);
  background: var(--nav-surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 6px 60px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.04);
}

.cosmos-button {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
}

.cosmos-button img {
  width: 24px;
  height: 24px;
}

.desktop-nav.nav-on-light .cosmos-button img {
  filter: brightness(0);
  opacity: 0.58;
}

.nav-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 54px;
  padding: 6px 14px;
}

.nav-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 32px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap;
}

.nav-pills a.active {
  font-weight: 500;
}

.desktop-nav.nav-on-light .nav-pills a {
  color: var(--nav-muted);
}

.desktop-nav.nav-on-light .nav-pills a.active {
  color: var(--nav-text);
}

.search-island {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(414px, 42vw);
  height: 54px;
  padding: 8px 20px 8px 8px;
  transform: translateX(-50%);
}

.search-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 38px;
  padding: 0 12px 0 8px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.desktop-nav.nav-on-light .search-chip {
  border-color: rgba(13, 13, 13, 0.04);
  background: rgba(13, 13, 13, 0.08);
  color: var(--nav-text);
}

.search-avatar {
  position: relative;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 299px;
  background: #000000;
}

.search-avatar img,
.search-avatar span {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 299px;
}

.search-avatar span {
  background: #000000;
}

.search-avatar.is-custom-profile img:not(.profile-image-target),
.search-avatar.is-custom-profile span {
  display: none;
}

.search-placeholder {
  min-width: 0;
  margin-left: 8px;
  margin-right: auto;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-nav.nav-on-light .search-placeholder {
  color: var(--nav-muted);
}

.search-icons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.search-icons > img {
  width: 24px;
  height: 24px;
}

.desktop-nav.nav-on-light .search-icons > img {
  filter: brightness(0);
  opacity: 0.48;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px;
  padding: 6px 20px 6px 12px;
}

.small-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: transparent;
}

.small-icon img {
  width: 18px;
  height: 18px;
}

.desktop-nav.nav-on-light .small-icon {
  border-color: rgba(13, 13, 13, 0.07);
}

.desktop-nav.nav-on-light .small-icon img {
  filter: brightness(0);
  opacity: 0.62;
}

.create-button {
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--black);
  font-size: 14px;
  line-height: 18px;
}

.desktop-nav.nav-on-light .create-button {
  background: var(--nav-surface-solid);
  box-shadow: 0 0 0 0.5px rgba(13, 13, 13, 0.06);
}

.cluster-stack {
  position: relative;
  width: 42px;
  height: 34px;
}

.cluster-stack img {
  position: absolute;
  object-fit: cover;
}

.cluster-one {
  right: 1px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  transform: rotate(4deg);
}

.cluster-two {
  left: 8.5px;
  top: 4px;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  transform: rotate(2deg);
}

.cluster-three {
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  transform: rotate(-3deg);
}

.nav-avatar {
  position: relative;
  width: 34px;
  height: 34px;
}

.nav-avatar img {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 999px;
}

.menu-button {
  display: grid;
  place-items: center;
  width: 14px;
  height: 34px;
  padding: 0;
  background: transparent;
}

.menu-button img {
  width: 14px;
  height: 11px;
}

.desktop-nav.nav-on-light .menu-button img {
  filter: brightness(0);
  opacity: 0.48;
}

.tabs {
  display: flex;
  align-items: center;
  height: 100px;
  padding: 33px 32px;
}

.tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 32px;
  color: var(--muted);
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap;
}

.tabs .selected {
  background: var(--elevated);
  color: var(--black);
  font-weight: 500;
}

.section {
  width: 100%;
  padding: 0 32px;
}

.section + .section {
  margin-top: 56px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  height: 34px;
}

.section h2,
.section-header h2 {
  margin: 0;
  font-family: var(--font-cosmos);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--black);
  font-family: var(--font-haas);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-top: 20px;
}

.feature-card {
  position: relative;
  aspect-ratio: 448 / 260;
  min-height: 180px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.card-fade {
  position: absolute;
  inset: -0.5px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.53) 0%, rgba(0, 0, 0, 0) 50%);
}

.feature-copy {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  color: #ffffff;
}

.feature-copy h3 {
  margin: 0;
  overflow: hidden;
  font-family: var(--font-cosmos);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature-copy p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-haas);
  font-size: 14px;
  line-height: 18px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
  margin-top: 20px;
  padding-bottom: 32px;
}

.masonry-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.masonry-column img,
.stacked-image {
  width: 100%;
  overflow: hidden;
  object-fit: cover;
}

.stacked-image {
  position: relative;
  display: block;
}

.stacked-image img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.h-298 { aspect-ratio: 125.6667 / 150; }
.h-326 { height: 326px; }
.h-315 { aspect-ratio: 123 / 155; }
.h-284 { height: 284px; }
.h-291 { height: 291px; }
.h-232 { aspect-ratio: 228 / 212; }
.h-308 { height: 308px; }
.h-351 { height: 351.406px; }
.h-365 { aspect-ratio: 125.6667 / 184; }
.h-281 { aspect-ratio: 125.6667 / 141.5132; }
.h-373 { aspect-ratio: 123 / 184; }
.h-324 { height: 324px; }
.h-300 { height: 300px; }

.masonry-grid.masonry-grid-columns-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.masonry-grid.masonry-grid-columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.masonry-grid.masonry-grid-columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.masonry-grid.masonry-grid-columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.masonry-grid.masonry-grid-columns-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.editor-shell[hidden] {
  display: none;
}

.editor-shell {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
}

.editor-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.24);
  cursor: default;
}

.edit-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(440px, calc(100vw - 32px));
  height: calc(100vh - 24px);
  margin: 12px;
  overflow: hidden;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: 20px;
  background: #fcfbfa;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.editor-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.editor-kicker {
  margin: 0 0 6px;
  color: rgba(13, 13, 13, 0.46);
  font-size: 12px;
  line-height: 16px;
}

.editor-header h2 {
  margin: 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.editor-close,
.editor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: var(--black);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.editor-button-secondary {
  width: 100%;
  margin-top: 12px;
}

.editor-form {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 0 20px 20px;
  scroll-padding-bottom: 32px;
}

.editor-section {
  padding: 20px 0;
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.editor-section h3 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.editor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.editor-field,
.editor-file {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: rgba(13, 13, 13, 0.62);
  font-size: 12px;
  line-height: 16px;
}

.editor-field:first-child,
.editor-file:first-child {
  margin-top: 0;
}

.editor-field input,
.editor-field textarea {
  width: 100%;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: 10px;
  background: #ffffff;
  color: var(--black);
  font: inherit;
  font-size: 14px;
  line-height: 18px;
  scroll-margin-bottom: 32px;
}

.editor-field input {
  height: 40px;
  padding: 0 12px;
}

.editor-field textarea {
  min-height: 92px;
  padding: 10px 12px;
  resize: vertical;
}

.editor-file input {
  width: 100%;
  color: var(--black);
  font-size: 13px;
  line-height: 18px;
  scroll-margin-bottom: 32px;
}

.editor-status {
  min-height: 16px;
  margin: 8px 0 0;
  color: rgba(13, 13, 13, 0.52);
  font-size: 12px;
  line-height: 16px;
}

.editor-status.is-error {
  color: #b42318;
}

.editor-status.is-success {
  color: #147a3d;
}

.editor-repeater {
  display: grid;
  gap: 14px;
}

.editor-repeater-compact {
  gap: 12px;
}

.editor-inline-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.editor-inline-actions p {
  margin: 0;
  color: rgba(13, 13, 13, 0.52);
  font-size: 12px;
  line-height: 16px;
}

.editor-link-button {
  padding: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.editor-item {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(13, 13, 13, 0.08);
}

.editor-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.editor-item-title {
  margin: 0;
  color: rgba(13, 13, 13, 0.72);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.editor-actions {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(13, 13, 13, 0.08);
  background: #fcfbfa;
}

.editor-button-primary {
  flex: 1;
  border-color: var(--black);
  background: var(--black);
  color: #ffffff;
}

body.editor-open {
  overflow: hidden;
}

.admin-login-shell {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 16px;
  background: #fcfbfa;
}

.admin-login-shell[hidden] {
  display: none;
}

.admin-login-card {
  width: min(360px, 100%);
  padding: 24px;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

.admin-login-card h1 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
}

.admin-login-card .editor-button {
  width: 100%;
  margin-top: 16px;
}

.admin-tools {
  position: sticky;
  top: 0;
  z-index: 2;
  margin-right: -20px;
  margin-left: -20px;
  padding-right: 20px;
  padding-left: 20px;
  background: #fcfbfa;
}

.editor-field select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: 10px;
  background: #ffffff;
  color: var(--black);
  font: inherit;
  font-size: 14px;
  line-height: 18px;
}

.admin-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.admin-actions .editor-link-button {
  justify-self: start;
  color: #b42318;
}

@media (min-width: 1800px) {
  .section,
  .tabs,
  .desktop-nav {
    padding-right: 40px;
    padding-left: 40px;
  }

  .masonry-grid {
    gap: 40px;
  }
}

@media (max-width: 1180px) {
  .nav-pills {
    display: none;
  }

  .desktop-nav {
    padding-right: 24px;
    padding-left: 24px;
  }

  .search-island {
    width: min(350px, 36vw);
    padding-right: 16px;
  }

  .brand-block {
    width: min(481px, 58vw);
  }

  .nav-right {
    gap: 6px;
    padding-right: 14px;
    padding-left: 10px;
  }
}

@media (max-width: 900px) {
  .profile-page {
    border-radius: 0;
  }

  .hero {
    --hero-radius: 24px;

    width: calc(100% - 16px);
    height: 496px;
    margin: 8px 8px 0;
  }

  .desktop-nav {
    top: 8px;
    height: auto;
    padding: 16px;
  }

  .nav-inner {
    justify-content: center;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .search-island {
    position: relative;
    left: auto;
    width: min(414px, 100%);
    transform: none;
  }

  .hero-content {
    right: 24px;
    bottom: 24px;
    left: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-block {
    width: min(481px, 100%);
  }

  .social-stats {
    align-self: flex-end;
  }

  .hero-actions {
    gap: 16px;
  }

  .tabs,
  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .masonry-grid,
  .masonry-grid.masonry-grid-columns-3,
  .masonry-grid.masonry-grid-columns-4,
  .masonry-grid.masonry-grid-columns-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .masonry-grid.masonry-grid-columns-1 {
    grid-template-columns: 1fr;
  }

  .masonry-column {
    gap: 20px;
  }
}

@media (max-width: 560px) {
  body {
    background: #ffffff;
  }

  .profile-page {
    min-height: 100vh;
    border-radius: 0;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-top-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    left: 20px;
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .mobile-glass-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    pointer-events: auto;
  }

  .mobile-back-button::before {
    content: "";
    width: 10px;
    height: 10px;
    border-bottom: 1.8px solid #ffffff;
    border-left: 1.8px solid #ffffff;
    transform: translateX(2px) rotate(45deg);
  }

  .mobile-search-button::before {
    content: "";
    width: 13px;
    height: 13px;
    border: 1.8px solid #ffffff;
    border-radius: 50%;
    transform: translate(-1px, -1px);
  }

  .mobile-search-button::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 1.8px;
    border-radius: 999px;
    background: #ffffff;
    transform: translate(6px, 6px) rotate(45deg);
  }

  .hero {
    --hero-radius: 32px;

    width: calc(100% - 8px);
    height: clamp(520px, calc((100vw - 8px) * 1.5195), 585px);
    min-height: 0;
    margin: 4px auto 20px;
    border-radius: 32px;
  }

  .hero-tone {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.3) 10%, rgba(0, 0, 0, 0) 55%);
  }

  .hero-progressive-blur {
    height: 58%;
  }

  .hero-content {
    right: 0;
    bottom: 0;
    left: 0;
    gap: 32px;
    padding: 20px;
  }

  .brand-block {
    gap: 32px;
    width: 100%;
  }

  .brand-copy {
    position: relative;
    gap: 12px;
  }

  .verified-row {
    height: 18px;
    font-size: 14px;
    line-height: 18px;
  }

  .verified-row img {
    width: 18px;
    height: 18px;
  }

  .edit-panel {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    margin: 8px;
    border-radius: 16px;
  }

  .editor-header,
  .editor-form {
    padding-right: 16px;
    padding-left: 16px;
  }

  .editor-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .editor-actions {
    padding-right: 16px;
    padding-left: 16px;
  }

  .wordmark-wrap {
    width: min(241px, 72vw);
    height: 39px;
  }

  .wordmark {
    top: 4px;
    width: 100%;
    height: 28px;
  }

  .brand-title {
    top: 3px;
    font-size: 28px;
    line-height: 32px;
  }

  .brand-description {
    display: block;
    height: 36px;
    overflow: hidden;
    font-size: 14px;
    line-height: 18px;
  }

  .brand-description::before {
    content: none;
  }

  .bio-line {
    display: block;
    overflow: hidden;
    white-space: nowrap;
  }

  .bio-line-2 {
    width: calc(100% - 86px);
  }

  .brand-more {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    height: 18px;
    padding: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    background: transparent;
    cursor: pointer;
  }

  .hero-actions {
    width: 100%;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .button {
    height: 40px;
  }

  .button-follow {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    font-size: 14px;
  }

  .icon-button,
  .overflow-button {
    display: inline-flex;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }

  .icon-button img {
    width: 18px;
    height: 18px;
  }

  .overflow-button img {
    display: block;
    width: 4px;
    height: 4px;
  }

  .social-stats {
    display: none;
  }

  .tabs {
    position: relative;
    height: 34px;
    padding: 0 16px;
    overflow-x: auto;
    border-bottom: 0.5px solid rgba(110, 106, 105, 0.18);
    gap: 0;
  }

  .tabs a {
    position: relative;
    height: 34px;
    padding: 0 15px;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
  }

  .tabs a:first-child {
    padding-left: 0;
  }

  .tabs .selected {
    background: transparent;
    color: var(--black);
  }

  .tabs .selected::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 0;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--black);
  }

  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .featured-section {
    padding-top: 32px;
  }

  .section + .section {
    margin-top: 32px;
  }

  .section-header {
    align-items: center;
    height: 18px;
  }

  .outline-pill {
    height: 18px;
    padding: 0;
    border: 0;
    color: var(--muted);
    font-weight: 500;
  }

  .featured-grid {
    display: flex;
    gap: 8px;
    width: calc(100% + 16px);
    margin-top: 16px;
    overflow-x: auto;
    padding-right: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .featured-grid::-webkit-scrollbar,
  .tabs::-webkit-scrollbar {
    display: none;
  }

  .feature-card {
    flex: 0 0 calc(100vw - 42px);
    width: calc(100vw - 42px);
    height: 204px;
    min-height: 0;
    aspect-ratio: auto;
    scroll-snap-align: start;
  }

  .masonry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
    padding-bottom: 0;
  }

  .masonry-grid.masonry-grid-columns-1,
  .masonry-grid.masonry-grid-columns-2,
  .masonry-grid.masonry-grid-columns-3,
  .masonry-grid.masonry-grid-columns-4,
  .masonry-grid.masonry-grid-columns-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .masonry-column {
    gap: 12px;
  }

  .masonry-column img,
  .stacked-image {
    border-radius: 0;
  }

  .h-298,
  .h-326,
  .h-315,
  .h-284,
  .h-291,
  .h-232,
  .h-308,
  .h-351,
  .h-365,
  .h-281,
  .h-373,
  .h-324,
  .h-300 {
    height: auto;
  }

  .h-298,
  .h-326 {
    aspect-ratio: 125.6667 / 150;
  }

  .h-315 {
    aspect-ratio: 125.6667 / 181;
  }

  .h-284 {
    aspect-ratio: 125.6667 / 107;
  }

  .h-291,
  .h-373 {
    aspect-ratio: 125.6667 / 184;
  }

  .h-232 {
    aspect-ratio: 123 / 137;
  }

  .h-308 {
    aspect-ratio: 125.6667 / 156.9912;
  }

  .h-351 {
    aspect-ratio: 125.6667 / 141.5132;
  }

  .h-365 {
    aspect-ratio: 125.6667 / 155.5171;
  }

  .h-281 {
    aspect-ratio: 123 / 140;
  }

  .h-324 {
    aspect-ratio: 123 / 161;
  }

  .h-300 {
    aspect-ratio: 123 / 184;
  }

}
