.me-profile-page {
  padding-top: 16px;
  padding-bottom: 110px;
}

body.modal-open {
  overflow: hidden;
}

.me-owner-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 10px;
}

.me-owner-bar span,
.me-owner-bar a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.me-owner-bar span {
  color: var(--success-text);
  font-weight: 750;
}

.me-owner-bar a {
  margin-left: auto;
  color: var(--text);
}

.me-profile-hero {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.me-profile-cover {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.me-profile-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 13, 18, 0.82), transparent 56%, rgba(15, 13, 18, 0.5));
  pointer-events: none;
}

.me-profile-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(0.72) contrast(1.04);
}

.me-cover-edit {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  background: rgba(18, 16, 22, 0.7);
  backdrop-filter: blur(10px);
}

.me-profile-identity {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: end;
  gap: 17px;
  padding: 0 20px 17px;
  border-bottom: 1px solid var(--line);
}

.me-profile-avatar {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin-top: -40px;
  border: 5px solid var(--surface);
  border-radius: 50%;
  background: #b22d69;
  color: #fff;
  font-size: 28px;
  font-weight: 850;
}

.me-profile-copy {
  min-width: 0;
  padding-top: 14px;
}

.me-profile-copy > div:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}

.me-profile-copy > div:first-child svg {
  color: var(--primary);
}

.me-profile-copy h1,
.me-profile-copy p {
  margin: 0;
}

.me-profile-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
}

.me-profile-copy p {
  max-width: 680px;
  margin-top: 8px;
  color: #d8d3dc;
  font-size: 13px;
}

.me-profile-copy .me-profile-handle {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.me-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 10px;
}

.me-profile-meta span,
.me-profile-meta a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 10px;
}

.me-profile-meta a:hover {
  color: var(--text);
}

.me-profile-actions {
  display: flex;
  gap: 7px;
  padding-bottom: 2px;
}

.me-profile-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.me-profile-stats > div {
  display: grid;
  gap: 3px;
  padding: 12px 18px;
  border-right: 1px solid var(--line);
}

.me-profile-stats > div:last-child {
  border-right: 0;
}

.me-profile-stats dd,
.me-profile-stats dt {
  margin: 0;
}

.me-profile-stats dd {
  font-size: 19px;
  font-weight: 800;
}

.me-profile-stats dt {
  color: var(--muted);
  font-size: 10px;
}

.me-create-section {
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--line);
}

.me-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
}

.me-section-title h2,
.me-section-title p {
  margin: 0;
}

.me-section-title h2 {
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
}

.me-section-title > span,
.me-section-title > div > p:last-child:not(.eyebrow) {
  color: var(--muted);
  font-size: 10px;
}

.me-create-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.me-create-item {
  min-width: 0;
  min-height: 80px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease;
}

.me-create-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--surface-2);
}

.me-create-item > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(219, 55, 119, 0.14);
  color: #ff9bc8;
}

.me-create-item.is-companion > span { background: rgba(72, 157, 211, 0.14); color: #91d3ff; }
.me-create-item.is-image > span { background: rgba(87, 183, 131, 0.14); color: #91ddb4; }
.me-create-item.is-video > span { background: rgba(225, 154, 59, 0.14); color: #f2c27e; }
.me-create-item.is-audio > span { background: rgba(163, 117, 219, 0.14); color: #cda7f7; }

.me-create-item strong,
.me-create-item small {
  display: block;
}

.me-create-item strong {
  overflow-wrap: anywhere;
  font-size: 11px;
}

.me-create-item small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.me-create-item > svg {
  color: var(--muted);
}

.me-profile-tabs {
  display: flex;
  gap: 5px;
  margin: 20px 0 24px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.me-profile-tabs button {
  position: relative;
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0 13px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.me-profile-tabs button::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -1px;
  left: 10px;
  height: 2px;
  background: transparent;
}

.me-profile-tabs button:hover,
.me-profile-tabs button.is-active {
  color: var(--text);
}

.me-profile-tabs button.is-active::after {
  background: var(--primary);
}

.me-content-panel[hidden] {
  display: none;
}

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

.me-featured-work {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.me-featured-work > a:first-child {
  position: absolute;
  inset: 0;
}

.me-featured-work > a:first-child::after {
  content: "";
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(11, 9, 15, 0.98) 82%);
}

.me-featured-work > a:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.me-kind,
.me-share-type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ffadd2;
  font-size: 9px;
  font-weight: 800;
}

.me-featured-work > .me-kind {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 2;
  padding: 5px 7px;
  border-radius: 4px;
  background: rgba(13, 11, 18, 0.74);
  backdrop-filter: blur(10px);
}

.me-kind.is-companion { color: #9ed7ff; }
.me-kind.is-image { color: #96dfb8; }

.me-work-copy {
  position: absolute;
  right: 16px;
  bottom: 54px;
  left: 16px;
  z-index: 2;
}

.me-work-copy h3,
.me-work-copy p {
  margin: 0;
}

.me-work-copy h3 {
  font-size: 20px;
}

.me-work-copy h3 a {
  color: #fff;
}

.me-work-copy p {
  max-width: 520px;
  margin-top: 5px;
  color: #d8d2dc;
  font-size: 11px;
  line-height: 1.45;
}

.me-work-copy small {
  display: block;
  margin-top: 8px;
  color: #ffb3d4;
  font-size: 9px;
  font-weight: 750;
}

.me-manage-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 6px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 12, 17, 0.9);
  backdrop-filter: blur(12px);
}

.me-manage-strip button:not(.icon-button),
.me-manage-strip a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #c7c1cb;
  font: inherit;
  font-size: 9px;
  cursor: pointer;
}

.me-manage-strip button:hover,
.me-manage-strip a:hover {
  color: #fff;
}

.me-manage-strip .icon-button {
  margin-left: auto;
}

.me-shared-title {
  margin-top: 34px;
}

.me-share-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.me-share-grid.is-full {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.me-share-item {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.me-share-item > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 15px 15px 54px;
  color: var(--text);
}

.me-share-item blockquote {
  margin: auto 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.45;
}

.me-share-item small {
  color: var(--muted);
  font-size: 9px;
}

.me-share-item.is-media > img,
.me-share-item.is-media > video {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.me-share-item.is-media::after {
  content: "";
  position: absolute;
  inset: 38% 0 42px;
  background: linear-gradient(transparent, rgba(10, 9, 12, 0.94));
  pointer-events: none;
}

.me-share-item.is-media > .me-share-type {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 7px;
  border-radius: 4px;
  background: rgba(12, 10, 15, 0.72);
  color: #fff;
  backdrop-filter: blur(10px);
}

.me-share-item.is-media > div:not(.me-manage-strip) {
  position: absolute;
  right: 13px;
  bottom: 55px;
  left: 13px;
  z-index: 2;
}

.me-share-item.is-media h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.me-library-list {
  display: grid;
  gap: 7px;
}

.me-library-list > article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.me-library-list img {
  width: 58px;
  height: 68px;
  border-radius: 4px;
  object-fit: cover;
}

.me-library-list h3,
.me-library-list p {
  margin: 0;
}

.me-library-list h3 {
  margin-top: 4px;
  font-size: 13px;
}

.me-library-list p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.me-library-list [data-visibility-cycle] {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border: 0;
  border-radius: 4px;
  background: var(--surface-2);
  color: var(--muted);
  font: inherit;
  font-size: 9px;
  cursor: pointer;
}

.me-inline-actions {
  display: flex;
  gap: 6px;
}

.me-saved-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.me-saved-grid a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text);
}

.me-saved-grid img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.me-saved-grid div {
  padding: 10px;
}

.me-saved-grid span {
  color: var(--primary);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.me-saved-grid h3,
.me-saved-grid p {
  margin: 0;
}

.me-saved-grid h3 {
  margin-top: 4px;
  font-size: 13px;
}

.me-saved-grid p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.me-studio-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(7, 6, 9, 0.78);
  backdrop-filter: blur(8px);
}

.me-studio-modal[hidden] {
  display: none;
}

.me-studio-dialog {
  width: min(100%, 470px);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #17141a;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.me-studio-head {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.me-studio-head h2,
.me-studio-head p,
.me-studio-dialog > p {
  margin: 0;
}

.me-studio-head h2 {
  margin-top: 4px;
  font-size: 18px;
}

.me-studio-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(219, 55, 119, 0.14);
  color: #ff9bc8;
}

.me-studio-dialog > p {
  margin-top: 16px;
  color: #d0cad4;
  font-size: 11px;
  line-height: 1.5;
}

.me-studio-source {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.me-studio-source select {
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-size: 11px;
  text-transform: none;
}

.me-studio-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 10px;
  border-radius: 5px;
  background: var(--bg);
  font-size: 10px;
}

.me-studio-summary span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--success-text);
}

.me-studio-actions {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  margin-top: 18px;
}

.me-mode-switch {
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, minmax(108px, 1fr));
  gap: 3px;
  margin: 12px 0 18px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.me-mode-switch button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}

.me-mode-switch button:hover {
  color: var(--text);
}

.me-mode-switch button.is-active {
  background: var(--surface-3);
  color: var(--text);
}

[data-me-mode-panel][hidden],
.creator-workspace-panel[hidden] {
  display: none;
}

.creator-workspace {
  padding-bottom: 52px;
}

.creator-workspace-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--line);
}

.creator-workspace-heading h1,
.creator-workspace-heading p {
  margin: 0;
}

.creator-workspace-heading h1 {
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.creator-workspace-heading p:not(.eyebrow) {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.creator-status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.creator-status-strip > div {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 10px;
  padding: 13px 15px;
  border-right: 1px solid var(--line);
}

.creator-status-strip > div:last-child {
  border-right: 0;
}

.creator-status-strip dt,
.creator-status-strip dd,
.creator-status-strip small {
  margin: 0;
}

.creator-status-strip dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.creator-status-strip dd {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  font-size: 23px;
  font-weight: 800;
}

.creator-status-strip small {
  color: #c9c3ce;
  font-size: 9px;
}

.creator-status-strip .is-attention dd {
  color: var(--gold);
}

.creator-workspace-tabs {
  display: flex;
  gap: 4px;
  margin-top: 21px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.creator-workspace-tabs button {
  position: relative;
  min-height: 43px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}

.creator-workspace-tabs button::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: -1px;
  left: 11px;
  height: 2px;
  background: transparent;
}

.creator-workspace-tabs button:hover,
.creator-workspace-tabs button.is-active {
  color: var(--text);
}

.creator-workspace-tabs button.is-active::after {
  background: var(--primary);
}

.creator-workspace-tabs button span,
.creator-filter-row button span {
  min-width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 8px;
}

.creator-workspace-content {
  padding-top: 23px;
}

.creator-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.creator-panel-heading h2,
.creator-panel-heading p {
  margin: 0;
}

.creator-panel-heading h2 {
  margin-top: 4px;
  font-size: 16px;
}

.creator-featured-draft {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.creator-featured-draft > img {
  width: 82px;
  height: 104px;
  border-radius: 5px;
  object-fit: cover;
  object-position: top;
}

.creator-work-copy h3,
.creator-work-copy p {
  margin: 0;
}

.creator-work-copy h3 {
  margin-top: 6px;
  font-size: 17px;
}

.creator-work-copy p {
  margin-top: 5px;
  color: #d3ced8;
  font-size: 10px;
}

.creator-work-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 9px;
}

.creator-state {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #c8c2cd;
  font-size: 9px;
  font-weight: 800;
}

.creator-state.is-draft { color: #c8c2cd; }
.creator-state.is-review { color: #8bcfff; }
.creator-state.is-live { color: var(--success-text); }
.creator-state.is-attention { color: #f2c27e; }

.creator-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.creator-progress > span {
  width: min(220px, 46%);
  height: 4px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--surface-3);
}

.creator-progress i {
  height: 100%;
  display: block;
  background: var(--primary);
}

.creator-progress small {
  color: var(--muted);
  font-size: 9px;
}

.creator-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  margin-top: 30px;
}

.creator-overview-section {
  min-width: 0;
}

.creator-attention-row,
.creator-feedback-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(242, 193, 92, 0.34);
  border-radius: 7px;
  background: rgba(242, 193, 92, 0.05);
}

.creator-attention-row > span,
.creator-feedback-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(242, 193, 92, 0.12);
  color: #f2c27e;
}

.creator-attention-row strong,
.creator-attention-row p,
.creator-attention-row small,
.creator-feedback-row h3,
.creator-feedback-row p,
.creator-feedback-row small {
  margin: 0;
}

.creator-attention-row strong {
  font-size: 11px;
}

.creator-attention-row p,
.creator-feedback-row p {
  margin-top: 3px;
  color: #d6d0da;
  font-size: 9px;
  line-height: 1.45;
}

.creator-attention-row small,
.creator-feedback-row small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
}

.creator-performance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.creator-performance > div {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 14px 10px;
  border-right: 1px solid var(--line);
}

.creator-performance > div:last-child {
  border-right: 0;
}

.creator-performance strong {
  font-size: 16px;
}

.creator-performance span {
  color: var(--muted);
  font-size: 8px;
}

.creator-filter-row {
  display: flex;
  gap: 5px;
  margin-bottom: 13px;
  overflow-x: auto;
}

.creator-filter-row button {
  min-height: 30px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 9px;
  cursor: pointer;
}

.creator-filter-row button.is-active,
.creator-filter-row button:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--surface-2);
  color: var(--text);
}

.creator-work-list {
  display: grid;
  gap: 7px;
}

.creator-work-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto 34px;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.creator-work-row > img {
  width: 58px;
  height: 68px;
  border-radius: 4px;
  object-fit: cover;
  object-position: top;
}

.creator-work-row h3,
.creator-work-row p {
  margin: 0;
}

.creator-work-row h3 {
  margin-top: 5px;
  font-size: 13px;
}

.creator-work-row p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.creator-separate-banner {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.creator-separate-banner svg {
  color: #8bcfff;
}

.creator-separate-banner p {
  margin: 0;
  font-size: 9px;
}

.creator-feedback-count {
  color: #f2c27e;
  font-size: 9px;
  font-weight: 800;
}

.creator-feedback-row {
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: start;
  padding: 14px;
}

.creator-feedback-row h3 {
  margin-top: 7px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .me-create-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .me-share-grid.is-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creator-status-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creator-status-strip > div:nth-child(2) {
    border-right: 0;
  }

  .creator-status-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .creator-overview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .me-profile-cover {
    height: 145px;
  }

  .me-profile-identity {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 12px;
    padding: 0 13px 14px;
  }

  .me-profile-avatar {
    width: 80px;
    height: 80px;
    margin-top: -28px;
    border-width: 4px;
    font-size: 21px;
  }

  .me-profile-copy {
    padding-top: 9px;
  }

  .me-profile-copy h1 {
    font-size: 23px;
  }

  .me-profile-actions {
    grid-column: 1 / -1;
  }

  .me-profile-actions .button {
    flex: 1;
  }

  .me-profile-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .me-profile-stats > div:nth-child(2) {
    border-right: 0;
  }

  .me-profile-stats > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .me-create-grid,
  .me-featured-grid,
  .me-share-grid,
  .me-share-grid.is-full,
  .me-saved-grid {
    grid-template-columns: 1fr;
  }

  .me-featured-work {
    min-height: 340px;
  }

  .me-section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .me-section-title > .button,
  .me-section-title > .me-inline-actions {
    width: 100%;
  }

  .me-inline-actions .button {
    flex: 1;
  }

  .me-library-list > article {
    grid-template-columns: 52px minmax(0, 1fr) auto;
  }

  .me-library-list img {
    width: 52px;
    height: 62px;
  }

  .me-library-list > article > .button {
    grid-column: 2 / -1;
    justify-self: end;
  }

  .creator-workspace-heading,
  .creator-panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .creator-workspace-heading > .button,
  .creator-panel-heading > .button {
    width: 100%;
  }

  .creator-featured-draft {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .creator-featured-draft > img {
    width: 72px;
    height: 92px;
  }

  .creator-featured-draft > .button {
    grid-column: 1 / -1;
  }

  .creator-progress {
    align-items: flex-start;
    flex-direction: column;
  }

  .creator-progress > span {
    width: 100%;
  }

  .creator-work-row {
    grid-template-columns: 52px minmax(0, 1fr) 34px;
  }

  .creator-work-row > img {
    width: 52px;
    height: 62px;
  }

  .creator-work-row > .button {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .creator-work-row > .icon-button {
    grid-column: 3;
    grid-row: 1;
  }

  .creator-feedback-row {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .creator-feedback-row > .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 460px) {
  .me-owner-bar span {
    max-width: 58%;
  }

  .me-profile-meta span:nth-child(2) {
    display: none;
  }

  .me-profile-actions .icon-button {
    flex: 0 0 42px;
  }

  .me-create-grid {
    gap: 6px;
  }

  .me-mode-switch {
    width: 100%;
  }

  .creator-status-strip {
    grid-template-columns: 1fr;
  }

  .creator-status-strip > div,
  .creator-status-strip > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .creator-status-strip > div:last-child {
    border-bottom: 0;
  }

  .creator-performance {
    grid-template-columns: 1fr;
  }

  .creator-performance > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .creator-performance > div:last-child {
    border-bottom: 0;
  }
}
