.creator-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 64px;
}

.creator-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 28px;
}

.creator-topbar .system-label {
  margin: 0;
}

.creator-back {
  color: var(--green);
  text-decoration: none;
}

.creator-back:hover,
.creator-back:focus-visible,
.creator-item-link:hover,
.creator-item-link:focus-visible {
  text-decoration: underline;
}

.creator-heading {
  margin-bottom: 20px;
}

.creator-heading h1 {
  font-size: 1.6rem;
}

.creator-tabs {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}

.creator-tab {
  min-height: 42px;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 0 2px;
  color: var(--muted);
  background: transparent;
}

.creator-tab:hover,
.creator-tab:focus-visible,
.creator-tab.is-active {
  border-bottom-color: var(--green);
  color: var(--text);
}

.creator-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.creator-section-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.creator-availability {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.creator-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 4px;
  padding: 7px 14px;
  color: #07110d;
  background: var(--green);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.creator-action:hover,
.creator-action:focus-visible {
  background: #a9ffe0;
}

.creator-filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.creator-filter-row input {
  width: min(340px, 100%);
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 7px 11px;
  color: var(--text);
  background: var(--panel);
}

.creator-filter-row output {
  color: var(--muted);
  font-size: 0.82rem;
}

.creator-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 14px;
}

.creator-item,
.creator-stamp {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.creator-item-visual {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111c20;
}

.creator-item-visual::before {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--item-color);
  box-shadow: 0 0 30px var(--item-color);
}

.creator-item-visual:has(img)::before {
  display: none;
}

.creator-item-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.creator-item-content {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 170px;
  padding: 14px;
}

.creator-item-label {
  color: var(--amber);
  font-size: 0.76rem;
}

.creator-item-content h3 {
  margin: 0;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.creator-item-description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.creator-item-link {
  justify-self: start;
  align-self: end;
  margin-top: auto;
  color: var(--green);
  font-size: 0.88rem;
  text-decoration: none;
}

.creator-subheading {
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.creator-stamp-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr));
  gap: 12px;
}

.creator-stamp {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 12px;
}

.creator-stamp-visual {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--amber);
  background: #0b0d11;
  font-size: 1.25rem;
}

.creator-stamp-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.creator-stamp h4 {
  min-width: 0;
  margin: 0;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.creator-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px 0;
  color: var(--muted);
}

@media (max-width: 600px) {
  .creator-shell {
    width: min(100% - 24px, 1160px);
    padding-top: 14px;
  }

  .creator-topbar {
    padding-bottom: 22px;
  }

  .creator-section-header {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }
}
