:root {
  --gear-ink: #171c20;
  --gear-muted: rgba(23, 28, 32, .62);
  --gear-line: rgba(23, 28, 32, .14);
  --gear-paper: rgba(245, 248, 249, .76);
  --gear-solid: #eef2f3;
  --gear-accent: #df5e71;
}

.page-gear [hidden] {
  display: none !important;
}

.gear-page,
.gear-page button,
.gear-page input,
.gear-page textarea,
.gear-page select,
.gear-dialog,
.gear-dialog button,
.gear-dialog input,
.gear-dialog textarea,
.gear-dialog select {
  font-family: "Space Grotesk", "Noto Sans SC", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.gear-page {
  width: min(1320px, calc(100vw - 64px));
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  padding: 118px 0 96px;
  color: var(--gear-ink);
}

.gear-mast {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  min-height: 250px;
  padding: 28px 0 26px;
  border-bottom: 1px solid var(--gear-line);
}

.gear-back {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--gear-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.gear-back:hover {
  color: var(--gear-ink);
}

.gear-mast h1 {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, .95);
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 760;
  line-height: .86;
}

.gear-mast__copy > p:last-child {
  max-width: 580px;
  margin: 20px 0 0;
  color: var(--gear-muted);
  font-size: 15px;
  line-height: 1.55;
}

.gear-mast__actions,
.gear-detail__toolbar,
.gear-form__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gear-button,
.gear-detail__toolbar button,
.gear-load-more {
  min-height: 44px;
  padding: 0 16px;
  color: #f5f7f7;
  background: var(--gear-ink);
  border: 1px solid var(--gear-ink);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease);
}

.gear-button--quiet,
.gear-detail__toolbar button:first-child {
  color: var(--gear-ink);
  background: rgba(255, 255, 255, .28);
  border-color: var(--gear-line);
}

.gear-button:hover,
.gear-detail__toolbar button:hover,
.gear-load-more:hover {
  transform: translateY(-2px);
}

.gear-button:active,
.gear-detail__toolbar button:active,
.gear-load-more:active,
.gear-profile-card:active,
.gear-item__edit:active {
  transform: translateY(1px);
}

.gear-directory {
  padding-top: 30px;
}

.gear-directory__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: end;
  margin-bottom: 16px;
}

.gear-directory__bar span,
.gear-search > span {
  color: var(--gear-muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.gear-directory__bar h2 {
  margin: 5px 0 0;
  font-size: 26px;
  line-height: 1;
}

.gear-search {
  display: grid;
  gap: 7px;
}

.gear-search input,
.gear-form input,
.gear-form textarea,
.gear-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--gear-ink);
  background: rgba(255, 255, 255, .48);
  border: 1px solid var(--gear-line);
  border-radius: 5px;
  outline: none;
}

.gear-search input:focus,
.gear-form input:focus,
.gear-form textarea:focus,
.gear-form select:focus {
  border-color: var(--gear-ink);
  box-shadow: 0 0 0 3px rgba(23, 28, 32, .1);
}

.gear-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gear-profile-card,
.gear-profile-skeleton {
  min-width: 0;
  min-height: 330px;
  overflow: hidden;
  background: var(--gear-paper);
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(31, 43, 51, .08), inset 0 1px 0 rgba(255, 255, 255, .32);
  backdrop-filter: blur(12px);
}

.gear-profile-card {
  position: relative;
  display: grid;
  grid-template-rows: 138px auto auto minmax(64px, 1fr);
  padding: 0;
  color: inherit;
  text-align: left;
  transition: transform 220ms var(--snap), box-shadow 220ms var(--ease);
}

.gear-profile-card__open {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.gear-profile-card__open:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .72);
  outline-offset: -4px;
}

.gear-profile-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(31, 43, 51, .12), inset 0 1px 0 rgba(255, 255, 255, .38);
}

.gear-profile-card__cover {
  position: relative;
  overflow: hidden;
  background: #8998a2;
}

.gear-profile-card__cover img,
.gear-detail-cover img,
.gear-item__media img,
.gear-avatar img,
.gear-cover-picker__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gear-profile-card__cover::after,
.gear-detail-cover::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(18, 23, 27, .28));
  content: "";
  pointer-events: none;
}

.gear-profile-card__identity {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  padding: 0 16px;
  transform: translateY(-15px);
}

.gear-avatar {
  display: grid;
  width: 54px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--gear-ink);
  border: 3px solid var(--gear-solid);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 850;
  text-transform: uppercase;
}

.gear-profile-card__copy,
.gear-profile-card__copy > strong,
.gear-profile-card__handle {
  min-width: 0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-profile-card__copy > strong {
  font-size: 16px;
}

.gear-profile-card__meta,
.gear-profile-card__identity em {
  color: var(--gear-muted);
  font-size: 11px;
  font-style: normal;
}

.gear-profile-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  margin-top: 2px;
  overflow: hidden;
  line-height: 18px;
  white-space: nowrap;
}

.gear-profile-card__handle {
  flex: 0 1 auto;
}

.gear-profile-card__separator {
  flex: 0 0 auto;
  opacity: .6;
}

.gear-profile-card__meta .gear-country-display {
  display: inline-flex;
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
}

.gear-profile-card__meta .gear-country-display span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-profile-card__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-content: start;
  padding: 0 16px 16px;
}

.gear-profile-card__item {
  min-width: 0;
  padding: 10px;
  background: rgba(255, 255, 255, .36);
  border: 1px solid var(--gear-line);
  border-radius: 5px;
}

.gear-profile-card__item span,
.gear-profile-card__item strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-profile-card__item span {
  color: var(--gear-muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.gear-profile-card__item strong {
  margin-top: 3px;
  font-size: 12px;
}

.gear-profile-card__items--empty {
  grid-template-columns: 1fr;
  color: var(--gear-muted);
  font-size: 12px;
}

.gear-profile-card__music {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  gap: 10px;
  align-self: end;
  align-items: center;
  min-width: 0;
  margin: 0 16px 16px;
  padding: 8px 10px;
  color: inherit;
  background: rgba(255, 255, 255, .22);
  border: 1px solid var(--gear-line);
  border-radius: 5px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.gear-profile-card__music:hover,
.gear-profile-card__music:focus-visible,
.gear-profile-card__music.is-playing {
  background: rgba(255, 255, 255, .34);
  border-color: rgba(255, 255, 255, .36);
}

.gear-profile-card__music:active {
  transform: scale(.99);
}

.gear-profile-card__music.has-error {
  border-color: #c84f45;
}

.gear-profile-card__music-cover {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  color: #fff;
  background: #354352;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 850;
}

.gear-profile-card__music-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gear-profile-card__music-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.gear-profile-card__music-copy > span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--gear-muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.gear-profile-card__music-copy b,
.gear-profile-card__music-copy i,
.gear-profile-card__music-copy strong,
.gear-profile-card__music-copy em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-profile-card__music-copy b,
.gear-profile-card__music-copy i,
.gear-profile-card__music-copy em {
  font-style: normal;
}

.gear-profile-card__music-copy strong {
  font-size: 11px;
}

.gear-profile-card__music-copy em {
  color: var(--gear-muted);
  font-size: 9px;
}

.gear-profile-card__music-play {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--gear-solid);
  background: var(--gear-ink);
  border-radius: 50%;
  font-size: 9px;
  transition: transform 160ms ease;
}

.gear-profile-card__music.is-playing .gear-profile-card__music-play {
  transform: scale(1.06);
}

.gear-profile-card__spotify-host,
.gear-profile-card__music > iframe,
.gear-profile-card__music audio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: .001;
  pointer-events: none;
}

.gear-profile-skeleton {
  display: grid;
  grid-template-rows: 138px 62px 1fr;
  gap: 12px;
  padding-bottom: 16px;
}

.gear-profile-skeleton i,
.gear-profile-skeleton span,
.gear-profile-skeleton b {
  display: block;
  background: rgba(255, 255, 255, .4);
  animation: gear-pulse 1.2s ease-in-out infinite alternate;
}

.gear-profile-skeleton span {
  width: 58%;
  margin-left: 16px;
  border-radius: 5px;
}

.gear-profile-skeleton b {
  width: calc(100% - 32px);
  margin-left: 16px;
  border-radius: 5px;
}

@keyframes gear-pulse {
  to { opacity: .46; }
}

.gear-empty {
  display: grid;
  min-height: 240px;
  place-items: center;
  align-content: center;
  gap: 5px;
  color: var(--gear-muted);
  border: 1px dashed var(--gear-line);
  border-radius: 6px;
  text-align: center;
}

.gear-empty strong {
  color: var(--gear-ink);
  font-size: 18px;
}

.gear-load-more {
  display: block;
  margin: 24px auto 0;
}

.gear-detail {
  padding-top: 24px;
}

.gear-detail__toolbar {
  justify-content: space-between;
  margin-bottom: 14px;
}

.gear-detail-cover {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #8998a2;
  border-radius: 6px 6px 0 0;
}

.gear-detail-head {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding: 0 28px 28px;
  background: var(--gear-paper);
  border: 1px solid rgba(255, 255, 255, .48);
  border-top: 0;
  border-radius: 0 0 6px 6px;
}

.gear-detail-head .gear-avatar {
  width: 112px;
  border-width: 5px;
  transform: translateY(-26px);
}

.gear-detail-head__copy {
  padding-top: 20px;
}

.gear-detail-head__copy h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.gear-detail-head__handle,
.gear-detail-head__meta {
  color: var(--gear-muted);
  font-size: 11px;
  font-weight: 700;
}

.gear-detail-head__copy p {
  max-width: 680px;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.gear-detail-head__meta {
  display: grid;
  gap: 4px;
  padding-bottom: 2px;
  text-align: right;
}

.gear-items-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 34px 0 14px;
}

.gear-items-head h3 {
  margin: 0;
  font-size: 24px;
}

.gear-items-head button {
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  background: var(--gear-ink);
  border: 1px solid var(--gear-ink);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.gear-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gear-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--gear-paper);
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 6px;
}

.gear-item__media {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, .8);
  background: #7e8d97;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.gear-item__body {
  padding: 14px;
}

.gear-item__top,
.gear-item__rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--gear-muted);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.gear-item__rating {
  color: var(--gear-accent);
}

.gear-item h4 {
  margin: 13px 0 0;
  font-size: 18px;
  line-height: 1.05;
}

.gear-item h4 span {
  display: block;
  margin-bottom: 3px;
  color: var(--gear-muted);
  font-size: 10px;
  text-transform: uppercase;
}

.gear-item__details {
  min-height: 38px;
  margin: 9px 0 0;
  color: var(--gear-muted);
  font-size: 11px;
  line-height: 1.45;
}

.gear-item__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.gear-item__facts span {
  max-width: 100%;
  padding: 4px 7px;
  overflow: hidden;
  color: var(--gear-muted);
  background: rgba(255, 255, 255, .38);
  border: 1px solid var(--gear-line);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-item__edit {
  width: 100%;
  min-height: 38px;
  margin-top: 13px;
  color: var(--gear-ink);
  background: transparent;
  border: 1px solid var(--gear-line);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.gear-items-empty {
  grid-column: 1 / -1;
  min-height: 180px;
  padding: 36px;
  color: var(--gear-muted);
  border: 1px dashed var(--gear-line);
  border-radius: 6px;
  text-align: center;
}

.gear-dialog {
  width: min(520px, calc(100vw - 24px));
  max-height: min(820px, calc(100svh - 32px));
  padding: 20px;
  overflow-y: auto;
  color: var(--gear-ink);
  background: var(--gear-solid);
  border: 1px solid rgba(23, 28, 32, .2);
  border-radius: 6px;
  box-shadow: 0 28px 90px rgba(23, 28, 32, .28);
}

.gear-dialog--wide {
  width: min(640px, calc(100vw - 24px));
}

.gear-dialog--gear {
  width: min(820px, calc(100vw - 24px));
  padding: 0;
}

.gear-dialog--gear .gear-dialog__head {
  position: sticky;
  z-index: 3;
  top: -1px;
  margin: 0;
  padding: 18px 20px;
  background: color-mix(in srgb, var(--gear-solid) 94%, transparent);
  border-bottom: 1px solid var(--gear-line);
  backdrop-filter: blur(12px);
}

.gear-dialog--gear .gear-form {
  gap: 0;
}

.gear-dialog::backdrop {
  background: rgba(20, 25, 29, .58);
  backdrop-filter: blur(8px);
}

.gear-dialog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.gear-dialog__head span,
.gear-form label > span,
.gear-file > span {
  color: var(--gear-muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.gear-dialog__head h2 {
  margin: 4px 0 0;
  font-size: 25px;
}

.gear-dialog__head > button {
  padding: 7px 0;
  color: var(--gear-muted);
  background: transparent;
  border: 0;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.gear-share-dialog {
  width: min(540px, calc(100vw - 24px));
  max-height: min(860px, calc(100svh - 24px));
  padding: 0;
  overflow-x: hidden;
  color: #15191d;
  background: #fff;
  border-color: rgba(24, 30, 35, .16);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(17, 24, 29, .34);
}

.gear-share-dialog__close {
  position: absolute;
  z-index: 5;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #1b2228;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(24, 30, 35, .12);
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(21, 28, 34, .1);
  backdrop-filter: blur(10px);
}

.gear-share-dialog__close svg,
.gear-share-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.gear-share-cover {
  position: relative;
  display: grid;
  place-items: center;
  height: 176px;
  overflow: hidden;
  color: rgba(22, 29, 34, .44);
  background: #e9ecee;
  border-bottom: 1px solid rgba(24, 30, 35, .08);
}

.gear-share-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gear-share-cover span {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 850;
}

.gear-share-cover.has-image span {
  display: none;
}

.gear-share-profile {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 250px;
  padding: 64px 42px 0;
  text-align: center;
}

.gear-share-avatar {
  position: absolute;
  top: 0;
  left: 50%;
  width: 106px;
  margin: 0;
  color: #fff;
  background: #20262b;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(21, 35, 48, .18);
  transform: translate(-50%, -50%);
}

.gear-share-identity h2 {
  max-width: 400px;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 30px;
  line-height: 1.1;
}

.gear-share-identity p {
  margin: 6px 0 0;
  color: #89919a;
  font-size: 12px;
  font-weight: 650;
}

.gear-share-bio {
  max-width: 390px;
  margin: 14px 0 0;
  color: #3f474e;
  font-size: 13px;
  line-height: 1.55;
}

.gear-share-location {
  margin: 12px 0 0;
  color: #6f7880;
  font-size: 11px;
  font-weight: 750;
}

.gear-share-gear-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  width: min(390px, 100%);
  margin-top: 30px;
  text-align: left;
}

.gear-share-gear {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.gear-share-gear > span {
  display: grid;
  place-items: center;
  color: #687079;
}

.gear-share-gear svg,
.gear-share-meta svg,
.gear-share-music > svg,
.gear-share-music__cover > svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.gear-share-gear p {
  display: grid;
  min-width: 0;
  margin: 0;
}

.gear-share-gear small {
  overflow: hidden;
  color: #8c9298;
  font-size: 9px;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.gear-share-gear strong {
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.25;
}

.gear-share-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: #92989d;
  font-size: 11px;
  text-align: center;
}

.gear-share-settings {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin-top: 30px;
  padding: 18px 0;
  border-top: 1px solid #e3e6e8;
  border-bottom: 1px solid #e3e6e8;
}

.gear-share-settings div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 0 8px;
}

.gear-share-settings span {
  color: #8c9298;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.gear-share-settings strong {
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
}

.gear-share-games {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 0;
  text-align: left;
}

.gear-share-games > span {
  color: #8c9298;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.gear-share-games > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.gear-share-games b {
  padding: 4px 7px;
  background: #f0f2f3;
  border-radius: 4px;
  font-size: 9px;
}

.gear-share-music {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 14px 0;
  color: #20262b;
  border-top: 1px solid #e3e6e8;
  text-align: left;
  text-decoration: none;
}

.gear-share-music__cover {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  overflow: hidden;
  color: #fff;
  background: #282e33;
  border-radius: 6px;
}

.gear-share-music__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gear-share-music__copy {
  display: grid;
  min-width: 0;
}

.gear-share-music__copy :is(strong, em) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-share-music__copy small {
  color: #8c9298;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.gear-share-music__copy strong {
  margin-top: 2px;
  font-size: 11px;
}

.gear-share-music__copy em {
  margin-top: 2px;
  color: #727a81;
  font-size: 9px;
  font-style: normal;
}

.gear-share-music > svg {
  width: 17px;
  height: 17px;
  color: #858c92;
}

.gear-share-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  width: calc(100% + 84px);
  margin: 4px -42px 0;
  padding: 16px 20px;
  color: #7b8389;
  background: #f5f6f7;
  border-top: 1px solid #e2e5e7;
}

.gear-share-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.gear-share-meta svg {
  width: 15px;
  height: 15px;
}

.gear-share-meta b {
  font-size: 10px;
  font-weight: 700;
}

.gear-share-location::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  background: #8b939a;
  border-radius: 50% 50% 50% 0;
  content: "";
  transform: rotate(-45deg);
}

.gear-share-actions {
  padding: 18px 24px 16px;
  background: #eef0f2;
  border-top: 1px solid #e2e5e7;
}

.gear-share-actions header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.gear-share-actions header span {
  color: #9aa1a7;
  font-size: 9px;
  font-weight: 850;
}

.gear-share-actions h3 {
  margin: 0;
  font-size: 16px;
}

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

.gear-share-grid > :is(button, a) {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  padding: 0;
  overflow-wrap: anywhere;
  color: #242a2f;
  background: transparent;
  border: 0;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.gear-share-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #242a2f;
  background: #fff;
  border: 1px solid #d9dde0;
  border-radius: 8px;
  box-shadow: 0 5px 16px rgba(21, 28, 34, .06);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.gear-share-icon--x {
  font-size: 21px;
  font-weight: 850;
}

.gear-share-grid > :is(button, a):hover .gear-share-icon {
  border-color: #979fa5;
  box-shadow: 0 7px 20px rgba(21, 28, 34, .11);
  transform: translateY(-2px);
}

.gear-share-grid > button.is-copied .gear-share-icon {
  color: #fff;
  background: #17724a;
  border-color: #17724a;
}

.gear-share-url {
  margin: 18px 0 0;
  overflow: hidden;
  color: #8b9298;
  font-size: 9px;
  font-weight: 650;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-segmented {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-bottom: 16px;
  padding: 4px;
  background: rgba(23, 28, 32, .07);
  border-radius: 6px;
}

.gear-segmented button {
  min-height: 38px;
  color: var(--gear-muted);
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.gear-segmented button.is-active {
  color: var(--gear-ink);
  background: rgba(255, 255, 255, .72);
}

.gear-form {
  display: grid;
  gap: 14px;
}

.gear-form__section {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--gear-line);
}

.gear-form__section--last {
  border-bottom: 0;
}

.gear-field-label,
.gear-form label > span,
.gear-file > span {
  color: var(--gear-muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.gear-form label > span small {
  margin-left: 5px;
  font-size: 9px;
  font-weight: 650;
  text-transform: none;
}

.gear-catalog-field {
  background: rgba(255, 255, 255, .18);
}

.gear-catalog-search {
  position: relative;
  min-width: 0;
}

.gear-catalog-results {
  position: absolute;
  z-index: 8;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  max-height: 350px;
  padding: 5px;
  overflow-y: auto;
  color: var(--gear-ink);
  background: var(--gear-solid);
  border: 1px solid var(--gear-line);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(23, 32, 42, .18);
}

.gear-catalog-result {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 11px;
  width: 100%;
  min-height: 62px;
  padding: 6px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 4px;
  text-align: left;
  cursor: pointer;
}

.gear-catalog-result:hover,
.gear-catalog-result.is-active {
  background: rgba(23, 32, 42, .08);
}

.gear-catalog-result__image {
  display: grid;
  width: 54px;
  height: 50px;
  overflow: hidden;
  place-items: center;
  color: var(--gear-muted);
  background: rgba(255, 255, 255, .62);
  border: 1px solid var(--gear-line);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 800;
}

.gear-catalog-result__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gear-catalog-result__copy {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 3px;
}

.gear-catalog-result__copy strong {
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.35;
}

.gear-catalog-result__copy small {
  color: var(--gear-muted);
  font-size: 10px;
}

.gear-catalog-results__empty {
  margin: 0;
  padding: 18px 12px;
  color: var(--gear-muted);
  font-size: 11px;
  text-align: center;
}

.gear-choice-grid {
  display: grid;
  gap: 8px;
}

.gear-choice-grid--category {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gear-choice-grid--status {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gear-choice-grid label {
  display: block;
  min-width: 0;
}

.gear-choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.gear-choice-grid label > span {
  display: grid;
  min-height: 48px;
  padding: 8px;
  place-items: center;
  color: var(--gear-muted);
  background: rgba(255, 255, 255, .3);
  border: 1px solid var(--gear-line);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: none;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.gear-choice-grid--status label > span {
  min-height: 40px;
  place-items: center start;
  padding-left: 28px;
  text-align: left;
}

.gear-choice-grid--status label > span::before {
  position: absolute;
  width: 10px;
  height: 10px;
  margin-left: -18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.gear-choice-grid input:checked + span {
  color: var(--gear-ink);
  background: rgba(255, 255, 255, .7);
  border-color: var(--gear-ink);
  box-shadow: inset 0 -2px 0 var(--gear-ink);
}

.gear-choice-grid--status input:checked + span::before {
  background: var(--gear-ink);
  box-shadow: inset 0 0 0 2px var(--gear-solid);
}

.gear-choice-grid input:focus-visible + span {
  outline: 3px solid rgba(23, 28, 32, .24);
  outline-offset: 2px;
}

.gear-brand-model {
  align-items: start;
}

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

.gear-form label {
  display: grid;
  gap: 7px;
}

.gear-form textarea {
  min-height: 104px;
  resize: vertical;
}

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

.gear-file input {
  padding: 8px;
}

.gear-item-image-field__layout {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.gear-item-image-field__preview {
  display: grid;
  width: 148px;
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  padding: 12px;
  color: var(--gear-muted);
  background: rgba(255, 255, 255, .5);
  border: 1px solid var(--gear-line);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.4;
  text-align: center;
}

.gear-item-image-field__preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gear-item-image-field__copy {
  display: grid;
  justify-items: start;
  gap: 12px;
  min-width: 0;
}

.gear-item-image-field__copy > strong {
  max-width: 52ch;
  color: var(--gear-ink);
  font-size: 12px;
  line-height: 1.45;
}

.gear-item-image-upload {
  position: relative;
  display: inline-flex !important;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  color: var(--gear-solid);
  background: var(--gear-ink);
  border: 1px solid var(--gear-ink);
  border-radius: 5px;
  cursor: pointer;
}

.gear-item-image-upload > span {
  color: inherit;
  font-size: 10px;
  text-transform: none;
}

.gear-item-image-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.gear-item-image-upload:focus-within {
  outline: 3px solid color-mix(in srgb, var(--gear-ink) 24%, transparent);
  outline-offset: 2px;
}

.gear-item-image-field__copy .gear-check {
  gap: 8px;
}

.gear-item-image-field__copy .gear-check > span {
  color: var(--gear-muted);
  font-size: 10px;
  text-transform: none;
}

.gear-avatar-picker {
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  padding: 10px;
  border: 1px solid var(--gear-line);
  cursor: pointer;
}

.gear-avatar-picker__preview {
  grid-row: 1 / span 2;
  width: 72px;
  aspect-ratio: 1;
  overflow: hidden;
  background: #8998a2;
  border: 1px solid var(--gear-line);
  border-radius: 50%;
}

.gear-avatar-picker__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gear-avatar-picker__copy strong,
.gear-avatar-picker__copy em {
  display: block;
}

.gear-avatar-picker__copy strong {
  color: var(--gear-ink);
  font-size: 12px;
}

.gear-avatar-picker__copy em {
  margin-top: 4px;
  color: var(--gear-muted);
  font-size: 10px;
  font-style: normal;
}

.gear-avatar-picker input {
  grid-column: 2;
  min-width: 0;
  padding: 7px;
}

.gear-cover-picker__preview {
  display: block;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  background: #8998a2;
  border: 1px solid var(--gear-line);
  border-radius: 5px;
}

.gear-check {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: start;
}

.gear-check input {
  width: 17px;
  min-height: 17px;
  margin: 0;
}

.gear-form__submit,
.gear-form__delete {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.gear-form__submit {
  color: #fff;
  background: var(--gear-ink);
  border: 1px solid var(--gear-ink);
}

.gear-form__delete {
  color: #9c2638;
  background: transparent;
  border: 1px solid rgba(156, 38, 56, .28);
}

.gear-form__actions {
  justify-content: flex-end;
  padding: 0 20px 20px;
}

.gear-form__error {
  margin: 0;
  padding: 10px 12px;
  color: #8d1f31;
  background: rgba(205, 51, 76, .08);
  border: 1px solid rgba(141, 31, 49, .2);
  border-radius: 5px;
  font-size: 12px;
}

.gear-toast {
  position: fixed;
  z-index: 260;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 15px;
  color: #fff;
  background: var(--gear-ink);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 750;
  box-shadow: 0 16px 44px rgba(23, 28, 32, .24);
}

.gear-page button:focus-visible,
.gear-page a:focus-visible,
.gear-page input:focus-visible,
.gear-page textarea:focus-visible,
.gear-page select:focus-visible,
.gear-dialog button:focus-visible,
.gear-dialog input:focus-visible,
.gear-dialog textarea:focus-visible,
.gear-dialog select:focus-visible {
  outline: 3px solid rgba(23, 28, 32, .34);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .gear-page {
    width: min(100% - 24px, 900px);
    padding-top: 108px;
  }

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

  .gear-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .gear-page {
    width: calc(100% - 20px);
    padding: 96px 0 64px;
  }

  .gear-mast {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
  }

  .gear-back {
    margin-bottom: 28px;
  }

  .gear-mast h1 {
    font-size: 48px;
  }

  .gear-mast__actions,
  .gear-button {
    width: 100%;
  }

  .gear-directory__bar,
  .gear-profile-grid,
  .gear-detail-head,
  .gear-items,
  .gear-form__pair {
    grid-template-columns: 1fr;
  }

  .gear-detail-cover {
    min-height: 180px;
  }

  .gear-detail-head {
    gap: 0;
    padding: 0 16px 20px;
  }

  .gear-detail-head .gear-avatar {
    width: 84px;
  }

  .gear-detail-head__copy {
    padding-top: 0;
  }

  .gear-detail-head__meta {
    margin-top: 16px;
    text-align: left;
  }

  .gear-dialog,
  .gear-dialog--wide,
  .gear-dialog--gear {
    width: 100vw;
    max-width: none;
    height: 100svh;
    max-height: none;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .gear-choice-grid--category {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gear-choice-grid--status,
  .gear-spec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gear-form__section {
    padding: 16px;
  }

  .gear-dialog--gear .gear-dialog__head {
    padding: 15px 16px;
  }

  .gear-dialog--gear .gear-form__actions {
    padding: 0 16px 24px;
  }

  .gear-profile-card__music {
    grid-template-columns: 40px minmax(0, 1fr) 28px;
    margin: 0 14px 14px;
  }

  .gear-profile-card__music-cover {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-color-scheme: dark) {
  body.template-page.page-ootd.page-gear {
    color: #e7ecee;
    background: #171d21;
  }

  body.template-page.page-ootd.page-gear .site-header {
    background: rgba(23, 29, 33, .86);
    border-bottom-color: rgba(255, 255, 255, .1);
  }

  body.template-page.page-ootd.page-gear .site-header :is(.nav-button, .mode-button, .icon-button) {
    color: #e7ecee;
  }

  body.template-page.page-ootd.page-gear .site-footer {
    color: rgba(231, 236, 238, .62);
    border-top-color: rgba(255, 255, 255, .1);
  }

  .gear-page {
    --gear-ink: #e7ecee;
    --gear-muted: rgba(231, 236, 238, .62);
    --gear-line: rgba(231, 236, 238, .16);
    --gear-paper: rgba(32, 40, 45, .76);
    --gear-solid: #20282d;
  }

  .gear-button,
  .gear-items-head button,
  .gear-form__submit,
  .gear-toast {
    color: #171c20;
    background: #e7ecee;
    border-color: #e7ecee;
  }

  .gear-search input,
  .gear-form input,
  .gear-form textarea,
  .gear-form select,
  .gear-profile-card__item {
    color: #e7ecee;
    background: rgba(255, 255, 255, .06);
  }

  .gear-dialog {
    --gear-ink: #e7ecee;
    --gear-muted: rgba(231, 236, 238, .62);
    --gear-line: rgba(231, 236, 238, .16);
    --gear-solid: #20282d;
    color: #e7ecee;
    background: #20282d;
  }

  .gear-segmented button.is-active {
    background: rgba(255, 255, 255, .1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gear-button,
  .gear-detail__toolbar button,
  .gear-load-more,
  .gear-profile-card {
    transition: none;
  }

  .gear-profile-skeleton i,
  .gear-profile-skeleton span,
  .gear-profile-skeleton b {
    animation: none;
  }
}

/* Public profile presentation, aligned to the compact competitive-profile reference. */
body.gear-profile-open {
  color: #f1f1f1;
  background: #121314;
}

body.gear-profile-open .site-header {
  color: rgba(255, 255, 255, .78);
  background: rgba(18, 19, 20, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(18px);
}

body.gear-profile-open .site-header :is(.nav-button, .mode-button, .icon-button) {
  color: inherit;
}

body.gear-profile-open .site-footer {
  color: rgba(255, 255, 255, .5);
  border-top-color: rgba(255, 255, 255, .08);
}

body.gear-profile-open .gear-page {
  --gear-ink: #f1f1f1;
  --gear-muted: rgba(255, 255, 255, .54);
  --gear-line: rgba(255, 255, 255, .28);
  --gear-paper: rgba(255, 255, 255, .025);
  --gear-solid: #1b1c1e;
  width: min(1220px, calc(100vw - 48px));
  padding-top: 92px;
}

body.gear-profile-open .gear-mast {
  display: none;
}

body.gear-profile-open .gear-detail {
  padding-top: 18px;
}

body.gear-profile-open .gear-detail__toolbar {
  width: min(1220px, 100%);
  margin: 0 auto 12px;
}

body.gear-profile-open .gear-detail__toolbar button {
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, .68);
  background: transparent;
  border-color: rgba(255, 255, 255, .2);
  border-radius: 0;
}

.gear-kova-profile {
  display: block;
  padding-bottom: 108px;
}

.gear-kova-hero {
  width: min(1220px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .7);
  background: #232426;
}

.gear-kova-cover {
  position: relative;
  height: clamp(190px, 20vw, 260px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .14), transparent 44%),
    #303235;
}

.gear-kova-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
}

.gear-kova-cover::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to bottom, transparent, rgba(20, 21, 22, .46));
  content: "";
}

.gear-kova-identity {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 88px;
  padding: 12px 18px 12px 128px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.gear-kova-avatar {
  position: absolute;
  width: 104px;
  margin-left: -114px;
  border: 4px solid #202123;
  border-radius: 50%;
  transform: translateY(-38px);
}

.gear-kova-identity__copy {
  min-width: 0;
}

.gear-kova-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.gear-kova-name h2 {
  margin: 0;
  color: #f5f5f5;
  font-size: 22px;
  line-height: 1;
}

.gear-kova-name > span {
  color: #d8b849;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.gear-kova-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 8px;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
}

.gear-kova-meta span + span::before {
  margin: 0 8px;
  content: "/";
  opacity: .46;
}

.gear-kova-identity__copy > p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.45;
}

.gear-kova-socials {
  display: flex;
  gap: 8px;
}

.gear-kova-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .54);
  font-size: 9px;
  font-weight: 850;
}

.gear-kova-socials a:hover {
  color: #141516;
  background: #f1f1f1;
}

.gear-kova-hero blockquote {
  margin: 0;
  padding: 16px 20px;
  color: rgba(255, 255, 255, .5);
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 12px;
  font-style: italic;
}

.gear-kova-section {
  width: min(760px, calc(100% - 32px));
  margin: 58px auto 0;
  scroll-margin-top: 100px;
}

.gear-kova-section > h3,
.gear-kova-section__head h3 {
  margin: 0 0 28px;
  color: #f2f2f2;
  font-size: 25px;
  font-weight: 760;
  line-height: 1;
  text-align: center;
  text-transform: lowercase;
}

.gear-kova-section > h3::after,
.gear-kova-section__head h3::after {
  display: block;
  width: 42px;
  height: 1px;
  margin: 12px auto 0;
  background: rgba(255, 255, 255, .34);
  content: "";
}

.gear-kova-section__head {
  position: relative;
}

.gear-kova-section__head > button {
  position: absolute;
  top: -5px;
  right: 0;
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, .72);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .34);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.gear-kova-games {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gear-kova-games > span {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #f1f1f1;
  border: 1px solid rgba(255, 255, 255, .72);
}

.gear-kova-games b {
  font-size: 11px;
}

.gear-kova-games em {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  width: max-content;
  max-width: 140px;
  padding: 4px 6px;
  color: #161718;
  background: #f1f1f1;
  font-size: 9px;
  font-style: normal;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -3px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.gear-kova-games > span:hover em {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.gear-profile-open .gear-items {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.gear-profile-open .gear-item {
  background: rgba(255, 255, 255, .025);
  border-color: rgba(255, 255, 255, .72);
  border-radius: 0;
}

body.gear-profile-open .gear-item__media {
  color: rgba(255, 255, 255, .62);
  background: #242628;
}

body.gear-profile-open .gear-item__body {
  color: #f1f1f1;
}

body.gear-profile-open .gear-item__facts span {
  color: rgba(255, 255, 255, .58);
  background: transparent;
  border-color: rgba(255, 255, 255, .16);
  border-radius: 0;
}

body.gear-profile-open .gear-item__edit {
  color: rgba(255, 255, 255, .7);
  border-color: rgba(255, 255, 255, .28);
  border-radius: 0;
}

.gear-kova-settings {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gear-kova-settings > div {
  display: grid;
  min-height: 94px;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .72);
  text-align: center;
}

.gear-kova-settings span {
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.gear-kova-settings strong {
  color: #f1f1f1;
  font-size: 14px;
}

.gear-kova-activity {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gear-kova-activity a {
  display: grid;
  min-width: 0;
  min-height: 118px;
  align-content: space-between;
  gap: 8px;
  padding: 13px;
  color: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .54);
  font-size: 10px;
}

.gear-kova-activity strong {
  overflow: hidden;
  color: #f1f1f1;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-kova-activity em {
  font-style: normal;
}

.gear-kova-music {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: min(430px, 100%);
  margin: 0 auto;
  padding: 10px;
  color: #f1f1f1;
  border: 1px solid rgba(255, 255, 255, .54);
}

.gear-kova-music__art {
  display: grid;
  width: 62px;
  aspect-ratio: 1;
  place-items: center;
  color: #171819;
  background: #d7d7d7;
  font-size: 24px;
}

.gear-kova-music strong,
.gear-kova-music em {
  display: block;
}

.gear-kova-music em {
  margin-top: 5px;
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
  font-style: normal;
}

.gear-kova-comments form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.gear-kova-comments textarea {
  min-height: 54px;
  padding: 13px;
  color: #f1f1f1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 0;
  resize: vertical;
}

.gear-kova-comments form button {
  min-width: 76px;
  color: #161718;
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
  font-size: 11px;
  font-weight: 800;
}

.gear-kova-comments form button:disabled {
  opacity: .36;
}

.gear-kova-comments form > span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .44);
  font-size: 10px;
}

.gear-kova-comment-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.gear-kova-comment {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.gear-avatar--comment {
  width: 40px;
  border: 0;
  border-radius: 50%;
}

.gear-kova-comment strong,
.gear-kova-comment time {
  font-size: 10px;
}

.gear-kova-comment time {
  margin-left: 8px;
  color: rgba(255, 255, 255, .4);
}

.gear-kova-comment p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.5;
}

.gear-kova-empty {
  margin: 0;
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
  text-align: center;
}

.gear-kova-dock {
  position: fixed;
  z-index: 210;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(390px, calc(100vw - 24px));
  padding: 4px;
  background: rgba(27, 28, 30, .88);
  border: 1px solid rgba(255, 255, 255, .36);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .34);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.gear-kova-dock button {
  min-height: 38px;
  color: rgba(255, 255, 255, .56);
  background: transparent;
  border: 0;
  font-size: 10px;
  font-weight: 750;
}

.gear-kova-dock button:hover,
.gear-kova-dock button:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

body.gear-profile-open .gear-dialog {
  --gear-ink: #ededed;
  --gear-muted: rgba(255, 255, 255, .58);
  --gear-line: rgba(255, 255, 255, .16);
  --gear-solid: #202124;
  color: #ededed;
  background: #202124;
}

@media (max-width: 760px) {
  body.gear-profile-open .gear-page {
    width: calc(100% - 20px);
    padding-top: 96px;
  }

  .gear-kova-cover {
    height: 168px;
  }

  .gear-kova-identity {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 14px 14px 94px;
  }

  .gear-kova-avatar {
    width: 76px;
    margin-left: -84px;
    transform: translateY(-28px);
  }

  .gear-kova-socials {
    align-self: end;
    justify-content: flex-end;
  }

  .gear-kova-section {
    width: 100%;
    margin-top: 48px;
  }

  body.gear-profile-open .gear-items,
  .gear-kova-activity {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gear-kova-settings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .gear-kova-hero {
    width: calc(100% + 20px);
    margin-left: -10px;
    border-right: 0;
    border-left: 0;
  }

  .gear-kova-name {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .gear-kova-identity {
    grid-template-columns: minmax(0, 1fr);
  }

  .gear-kova-socials {
    grid-column: 1;
    justify-content: flex-start;
  }

  .gear-kova-meta span + span::before {
    margin: 0 6px;
  }

  .gear-kova-section__head > button {
    position: static;
    display: block;
    margin: -14px auto 18px;
  }

  body.gear-profile-open .gear-items,
  .gear-kova-activity {
    grid-template-columns: 1fr;
  }

  .gear-kova-comments form {
    grid-template-columns: 1fr;
  }

  .gear-kova-comments form button {
    min-height: 42px;
  }
}

/* Social profile redesign: light profile sheet within the Hachiware site shell. */
body.template-page.page-ootd.page-gear.gear-profile-open {
  color: #17202a;
  background: #b8c5ce;
}

body.gear-profile-open .site-header {
  color: #17202a;
  background: rgba(250, 251, 252, .92);
  border-bottom: 1px solid rgba(23, 32, 42, .08);
  backdrop-filter: blur(18px);
}

body.gear-profile-open .site-header :is(.nav-button, .mode-button, .icon-button) {
  color: inherit;
}

body.gear-profile-open .site-footer {
  color: #6e7884;
  background: #f7f9fb;
  border-top-color: rgba(23, 32, 42, .08);
}

body.gear-profile-open .gear-page {
  --gear-ink: #17202a;
  --gear-muted: #6e7884;
  --gear-line: #dce2e8;
  --gear-paper: #fff;
  --gear-solid: #fff;
  width: min(1180px, calc(100vw - 48px));
  padding-top: 112px;
}

body.gear-profile-open .gear-detail {
  padding-top: 12px;
}

body.gear-profile-open .gear-detail__toolbar {
  position: relative;
  z-index: 4;
  width: min(1180px, 100%);
  margin: 0 auto 10px;
}

body.gear-profile-open .gear-detail__toolbar button {
  min-height: 36px;
  padding: 0 14px;
  color: #475464;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(23, 32, 42, .1);
  border-radius: 18px;
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

body.gear-profile-open .gear-detail__toolbar [data-gear-edit-profile] {
  display: none;
}

.gear-kova-profile {
  padding-bottom: 72px;
}

.gear-kova-hero {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: visible;
  background: transparent;
  border: 0;
}

.gear-kova-cover {
  position: relative;
  height: clamp(220px, 24vw, 310px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(218, 232, 244, .68), rgba(148, 174, 196, .38)),
    #b8c6d2;
  border-radius: 8px 8px 0 0;
}

.gear-kova-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.02);
}

.gear-kova-cover::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(to bottom, transparent, rgba(15, 27, 39, .14));
  content: "";
}

.gear-kova-sheet {
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 88px 40px 0;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 18px 50px rgba(31, 47, 61, .09);
}

.gear-kova-avatar {
  position: absolute;
  top: 0;
  left: 50%;
  width: 136px;
  margin: 0;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(21, 35, 48, .18);
  transform: translate(-50%, -50%);
}

.gear-kova-name {
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
}

.gear-kova-name > span {
  color: #1975d2;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.gear-kova-name h2 {
  max-width: min(680px, 100%);
  margin: 0;
  overflow-wrap: anywhere;
  color: #101820;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: 0;
}

.gear-kova-name p {
  margin: 0;
  color: #8a949f;
  font-size: 13px;
  font-weight: 650;
}

.gear-kova-bio {
  max-width: 640px;
  margin: 18px 0 0;
  color: #354252;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.gear-kova-location {
  margin: 10px 0 0;
  color: #778390;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.gear-kova-location::before {
  margin-right: 6px;
  color: #1975d2;
  content: "@";
}

.gear-kova-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.gear-kova-action {
  min-height: 42px;
  padding: 0 20px;
  color: #334152;
  background: #f2f5f7;
  border: 1px solid #e1e6eb;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
}

.gear-kova-action:hover {
  border-color: #b8c3cd;
  background: #e9eef2;
}

.gear-kova-action--primary {
  color: #fff;
  background: #1975d2;
  border-color: #1975d2;
}

.gear-kova-action--primary:hover {
  background: #135fae;
  border-color: #135fae;
}

.gear-kova-socials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 8px;
  width: min(680px, 100%);
  margin-top: 14px;
}

.gear-kova-socials a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
  height: auto;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  justify-items: stretch;
  gap: 10px;
  padding: 9px 12px;
  color: #314153;
  background: #f7f9fb;
  border: 1px solid #d9e0e6;
  border-radius: 6px;
  transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.gear-kova-socials a > span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.gear-kova-socials strong {
  overflow: hidden;
  color: #1f2d3c;
  font-size: 11px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-kova-socials small {
  color: #7c8894;
  font-size: 9px;
  font-weight: 700;
}

.gear-kova-socials b {
  color: #1975d2;
  font-size: 15px;
  font-weight: 700;
}

.gear-kova-socials a:hover {
  background: #f0f6fb;
  border-color: #8fb7dc;
  transform: translateY(-1px);
}

.gear-kova-socials a:focus-visible {
  outline: 2px solid #1975d2;
  outline-offset: 2px;
}

.gear-kova-socials a:active {
  transform: translateY(1px);
}

.gear-kova-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(680px, 100%);
  margin-top: 28px;
  padding: 20px 0;
  border-top: 1px solid #edf0f3;
}

.gear-verified {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-left: 7px;
  place-items: center;
  color: #fff;
  background: #27715e;
  border-radius: 50%;
  font-size: 11px;
  vertical-align: 7px;
}

.gear-kova-section__head > a {
  color: #1975d2;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.gear-achievement-list {
  display: grid;
  gap: 8px;
}

.gear-achievement-list article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(120px, .8fr);
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 10px 13px;
  background: #fff;
  border: 1px solid #e1e6eb;
  border-radius: 6px;
}

.gear-achievement-list span,
.gear-achievement-list p {
  color: #84909b;
  font-size: 10px;
}

.gear-achievement-list strong {
  font-size: 12px;
}

.gear-achievement-list p {
  margin: 0;
  text-align: right;
}

.gear-kovaak-profile-link {
  display: inline-block;
  margin-bottom: 12px;
  color: #1975d2;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.gear-kovaak-score-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gear-kovaak-score-list > :is(a, div) {
  display: grid;
  min-width: 0;
  gap: 6px;
  padding: 15px;
  color: #17202a;
  background: #fff;
  border: 1px solid #e1e6eb;
  border-radius: 6px;
  text-decoration: none;
}

.gear-kovaak-score-list span,
.gear-kovaak-score-list small {
  overflow: hidden;
  color: #84909b;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-kovaak-score-list strong {
  color: #1975d2;
  font-size: 22px;
}

.gear-profile-analytics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 160px)) minmax(0, 1fr);
  gap: 1px;
  margin: 18px 0;
  overflow: hidden;
  background: #dce3e8;
  border: 1px solid #dce3e8;
  border-radius: 6px;
}

.gear-profile-analytics > :is(div, a) {
  display: grid;
  min-height: 74px;
  align-content: center;
  gap: 4px;
  padding: 12px 16px;
  background: #fff;
}

.gear-profile-analytics span {
  color: #84909b;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.gear-profile-analytics strong {
  color: #1975d2;
  font-size: 22px;
}

.gear-profile-analytics > a {
  justify-content: end;
  color: #1975d2;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.gear-item__review-points {
  display: grid;
  gap: 6px;
  margin: 10px 0;
}

.gear-item__review-points span {
  display: grid;
  gap: 2px;
  padding: 7px 8px;
  color: #586570;
  background: #eef7f3;
  border-left: 2px solid #27715e;
  font-size: 9px;
  line-height: 1.4;
}

.gear-item__review-points span:last-child {
  background: #fbf0f2;
  border-left-color: #d65369;
}

.gear-item__review-points strong {
  color: #17202a;
  font-size: 8px;
  text-transform: uppercase;
}

.gear-profile-subeditor {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, .34);
  border: 1px solid rgba(23, 28, 32, .12);
  border-radius: 6px;
}

.gear-profile-subeditor + .gear-profile-subeditor {
  margin-top: 14px;
}

.gear-profile-subeditor__head,
.gear-structured-row > header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.gear-profile-subeditor__head > strong,
.gear-structured-row > header strong {
  font-size: 11px;
}

.gear-profile-subeditor__head > button,
.gear-structured-row > header button {
  min-height: 32px;
  padding: 0 10px;
  color: #17202a;
  background: #fff;
  border: 1px solid rgba(23, 28, 32, .14);
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
}

.gear-structured-row {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(23, 28, 32, .1);
  border-radius: 6px;
}

.gear-structured-row + .gear-structured-row {
  margin-top: 9px;
}

.gear-structured-row > header button {
  width: 30px;
  padding: 0;
  font-size: 18px;
}

@media (max-width: 760px) {
  .gear-kova-stats {
    grid-template-columns: repeat(5, minmax(64px, 1fr));
    overflow-x: auto;
  }

  .gear-achievement-list article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gear-achievement-list p {
    text-align: left;
  }

  .gear-kovaak-score-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gear-profile-analytics > a {
    grid-column: 1 / -1;
    justify-content: start;
    min-height: 48px;
  }
}

.gear-kova-stats > button {
  display: grid;
  gap: 4px;
  justify-items: center;
  align-content: center;
  min-width: 0;
  min-height: 54px;
  padding: 0 10px;
  color: inherit;
  background: transparent;
  border: 0;
  border-right: 1px solid #edf0f3;
  border-radius: 0;
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.gear-kova-stats > button:last-child {
  border-right: 0;
}

.gear-kova-stats > button:hover {
  background: #f3f8fc;
}

.gear-kova-stats > button:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid #1975d2;
  outline-offset: -2px;
}

.gear-kova-stats > button:active {
  transform: translateY(1px);
}

.gear-kova-stats strong {
  color: #1975d2;
  font-size: 24px;
  line-height: 1;
}

.gear-kova-stats span {
  max-width: 100%;
  color: #8a949f;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.gear-kova-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(620px, 100%);
  border-top: 1px solid #edf0f3;
}

.gear-kova-tabs button {
  position: relative;
  min-height: 50px;
  color: #7b8792;
  background: transparent;
  border: 0;
  font-size: 10px;
  font-weight: 800;
}

.gear-kova-tabs button:first-child {
  color: #1975d2;
}

.gear-kova-tabs button:first-child::after {
  position: absolute;
  right: 24%;
  bottom: 0;
  left: 24%;
  height: 3px;
  background: #1975d2;
  content: "";
}

.gear-kova-tabs button:hover {
  color: #17202a;
  background: #f8fafb;
}

.gear-kova-content {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 54px;
  background: #f8fafb;
  box-shadow: 0 22px 50px rgba(31, 47, 61, .07);
}

.gear-kova-section {
  width: 100%;
  margin: 0;
  padding: 38px 0;
  scroll-margin-top: 96px;
  border-top: 1px solid #e3e8ed;
}

.gear-kova-section--gear {
  border-top: 0;
}

.gear-kova-section__head {
  position: static;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.gear-kova-section__head > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.gear-kova-section__head > div > span {
  color: #1975d2;
  font-size: 10px;
  font-weight: 850;
}

.gear-kova-section > h3,
.gear-kova-section__head h3 {
  margin: 0;
  color: #17202a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  text-transform: none;
}

.gear-kova-section > h3::after,
.gear-kova-section__head h3::after {
  display: none;
}

.gear-kova-section__head > button {
  position: static;
  min-height: 36px;
  padding: 0 14px;
  color: #1975d2;
  background: #fff;
  border: 1px solid #cfd9e2;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  text-transform: none;
}

body.gear-profile-open .gear-items {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 14px;
}

body.gear-profile-open .gear-item {
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.gear-profile-open .gear-item__media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  color: #76828e;
  background: #edf1f5;
  border: 1px solid #e1e6eb;
  border-radius: 7px;
  text-transform: none;
}

.gear-item__visual {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

body.gear-profile-open .gear-item__visual > img {
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: contain;
}

.gear-item__placeholder {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #8995a1;
}

.gear-item__placeholder b {
  display: grid;
  width: 70px;
  aspect-ratio: 1;
  place-items: center;
  color: #fff;
  background: #cbd5de;
  border-radius: 50%;
  font-size: 22px;
}

.gear-item__placeholder em {
  max-width: 150px;
  overflow: hidden;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-item__category {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  max-width: calc(100% - 46px);
  padding: 7px 10px;
  overflow: hidden;
  color: #fff;
  background: #152743;
  border-radius: 0 6px 0 7px;
  font-size: 9px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-item__info {
  position: absolute;
  z-index: 6;
  top: 8px;
  left: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  place-items: center;
  color: #152743;
  background: #fff;
  border: 1px solid #d8e0e7;
  border-radius: 6px;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 3px 10px rgba(28, 44, 59, .08);
}

.gear-item__info:hover,
.gear-item__info:focus-visible {
  color: #fff;
  background: #1975d2;
  border-color: #1975d2;
}

.gear-item__details-panel {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 48px 14px 14px;
  overflow-y: auto;
  color: #314050;
  background: rgba(255, 255, 255, .97);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.gear-item.is-details-open .gear-item__details-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.gear-item__panel-status {
  justify-self: end;
  color: #1975d2;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.gear-item__detail-list {
  display: grid;
  gap: 6px;
}

.gear-item__detail-list > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e6ebef;
}

.gear-item__detail-list em {
  color: #8a949e;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.gear-item__detail-list strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #243344;
  font-size: 10px;
  text-align: right;
}

.gear-item__details-panel > p {
  margin: 0;
  color: #65717d;
  font-size: 10px;
  line-height: 1.45;
}

body.gear-profile-open .gear-item__body {
  min-height: 54px;
  padding: 11px 0 0;
  color: #17202a;
}

body.gear-profile-open .gear-item h4 {
  margin: 0;
  overflow-wrap: anywhere;
  color: #1d2c3e;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

body.gear-profile-open .gear-item h4 span,
body.gear-profile-open .gear-item h4 strong {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
  text-transform: none;
}

body.gear-profile-open .gear-item h4 span::after {
  content: " ";
}

body.gear-profile-open .gear-item__rating {
  margin-top: auto;
  color: #1975d2;
}

body.gear-profile-open .gear-item__rating span {
  color: #77838f;
}

body.gear-profile-open .gear-item__edit {
  min-height: 34px;
  margin-top: 2px;
  color: #1975d2;
  background: #f7fafc;
  border-color: #d6dfe7;
  border-radius: 4px;
}

.gear-item__panel-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 2px;
}

body.gear-profile-open .gear-item__panel-actions .gear-item__edit,
body.gear-profile-open .gear-item__panel-actions .gear-item__delete {
  width: 100%;
  min-height: 34px;
  margin: 0;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

body.gear-profile-open .gear-item__panel-actions .gear-item__delete {
  color: #9c2638;
  background: #fff8f9;
  border: 1px solid #e8c9cf;
}

body.gear-profile-open .gear-item__panel-actions :is(.gear-item__edit, .gear-item__delete):active {
  transform: translateY(1px);
}

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

.gear-kova-games {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 9px;
}

.gear-kova-games > span {
  position: relative;
  display: flex;
  width: auto;
  height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: #384554;
  background: #fff;
  border: 1px solid #dce3e9;
  border-radius: 5px;
}

.gear-kova-games b {
  color: #1975d2;
  font-size: 10px;
}

.gear-kova-games em {
  position: static;
  width: auto;
  max-width: 140px;
  padding: 0;
  overflow: hidden;
  color: #4d5a68;
  background: transparent;
  font-size: 10px;
  font-style: normal;
  opacity: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: none;
}

.gear-kova-games > span:hover em {
  opacity: 1;
  transform: none;
}

.gear-kova-settings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
}

.gear-kova-settings > div {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid #e3e8ed;
  text-align: left;
}

.gear-kova-settings span {
  color: #8a949f;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.gear-kova-settings strong {
  color: #263443;
  font-size: 12px;
}

.gear-kova-activity {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.gear-kova-activity a {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  min-height: 50px;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #8a949f;
  border: 0;
  border-bottom: 1px solid #e3e8ed;
  font-size: 9px;
}

.gear-kova-activity strong {
  min-width: 0;
  overflow: hidden;
  color: #293746;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-kova-activity em {
  font-style: normal;
  white-space: nowrap;
}

.gear-kova-music {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #253342;
  border: 0;
}

.gear-kova-music__art {
  display: grid;
  width: 50px;
  aspect-ratio: 1;
  place-items: center;
  color: #fff;
  background: #1975d2;
  border-radius: 5px;
  font-size: 19px;
}

.gear-kova-music em {
  margin-top: 4px;
  color: #8a949f;
}

.gear-kova-section--music {
  overflow: hidden;
}

.gear-music-player {
  width: 100%;
  color: #253342;
}

.gear-music-stage {
  position: relative;
  width: 100%;
  height: 282px;
  overflow: hidden;
}

.gear-music-card {
  position: absolute;
  top: 30px;
  left: 50%;
  display: grid;
  grid-template-rows: 170px 54px;
  width: 170px;
  min-height: 224px;
  padding: 0;
  overflow: hidden;
  color: #253342;
  background: #fff;
  border: 1px solid #d9e0e6;
  border-radius: 7px;
  box-shadow: 0 15px 30px rgba(31, 47, 61, .13);
  cursor: pointer;
  opacity: .78;
  transition: transform 280ms ease, opacity 280ms ease, box-shadow 280ms ease;
}

.gear-music-card[data-music-position="-2"] {
  transform: translateX(calc(-50% - 250px)) translateY(20px) scale(.78);
}

.gear-music-card[data-music-position="-1"] {
  transform: translateX(calc(-50% - 132px)) translateY(10px) scale(.9);
}

.gear-music-card[data-music-position="0"] {
  transform: translateX(-50%) scale(1);
}

.gear-music-card[data-music-position="1"] {
  transform: translateX(calc(-50% + 132px)) translateY(10px) scale(.9);
}

.gear-music-card[data-music-position="2"] {
  transform: translateX(calc(-50% + 250px)) translateY(20px) scale(.78);
}

.gear-music-card.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.gear-music-card.is-active {
  opacity: 1;
  box-shadow: 0 20px 38px rgba(31, 47, 61, .2);
}

.gear-music-card:focus-visible {
  outline: 3px solid rgba(25, 117, 210, .36);
  outline-offset: 3px;
}

.gear-music-card__cover {
  position: relative;
  display: grid;
  width: 100%;
  height: 170px;
  overflow: hidden;
  place-items: center;
  color: #fff;
  background: #354352;
  font-size: 28px;
  font-weight: 850;
}

.gear-music-card__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gear-music-card__caption {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 2px;
  padding: 7px 10px;
  text-align: center;
}

.gear-music-card__caption strong,
.gear-music-card__caption em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-music-card__caption strong {
  font-size: 11px;
}

.gear-music-card__caption em {
  color: #8a949f;
  font-size: 9px;
  font-style: normal;
}

.gear-music-controls {
  display: grid;
  grid-template-columns: 34px 42px 34px 48px minmax(0, 1fr);
  gap: 7px;
  width: min(760px, 100%);
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 14px;
  align-items: center;
  background: #eef2f5;
  border: 1px solid #dfe5ea;
  border-radius: 7px;
  box-shadow: 0 10px 26px rgba(31, 47, 61, .08);
}

.gear-music-controls > button {
  display: grid;
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  place-items: center;
  color: #253342;
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 10px;
  cursor: pointer;
}

.gear-music-controls > button:hover,
.gear-music-controls > button:focus-visible {
  color: #fff;
  background: #1975d2;
  outline: none;
}

.gear-music-controls > .gear-music-controls__play {
  width: 42px;
  height: 42px;
  color: #fff;
  background: #17202a;
  font-size: 14px;
}

.gear-music-controls__cover {
  display: grid;
  width: 48px;
  height: 48px;
  overflow: hidden;
  place-items: center;
  color: #fff;
  background: #354352;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 850;
}

.gear-music-controls__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gear-music-controls__copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.gear-music-controls__copy > strong,
.gear-music-controls__copy > em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-music-controls__copy > strong {
  font-size: 11px;
}

.gear-music-controls__copy > em {
  color: #788490;
  font-size: 9px;
  font-style: normal;
}

.gear-music-controls__copy > span {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.gear-music-controls__copy input[type="range"] {
  width: 100%;
  height: 14px;
  min-height: 14px;
  padding: 0;
  accent-color: #1975d2;
}

.gear-music-controls__copy small {
  color: #8a949f;
  font-size: 8px;
  white-space: nowrap;
}

.gear-music-controls > p {
  grid-column: 5;
  margin: 1px 0 0;
  color: #b42318;
  font-size: 9px;
}

.gear-music-player audio {
  display: none;
}

.gear-spotify-player {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 10px;
  width: min(760px, 100%);
  min-height: 188px;
  margin: 0 auto;
  align-items: center;
}

.gear-spotify-player[hidden] {
  display: none;
}

.gear-spotify-player iframe {
  display: block;
  width: 100%;
  height: 152px;
  min-width: 0;
  border: 0;
  border-radius: 7px;
  background: #17202a;
}

.gear-spotify-player > button {
  display: grid;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  place-items: center;
  color: #253342;
  background: #eef2f5;
  border: 1px solid #dfe5ea;
  border-radius: 50%;
  font-size: 9px;
  cursor: pointer;
}

.gear-spotify-player > button:hover,
.gear-spotify-player > button:focus-visible {
  color: #fff;
  background: #1975d2;
  border-color: #1975d2;
  outline: none;
}

.gear-spotify-player > a {
  grid-column: 2;
  justify-self: center;
  color: #536170;
  font-size: 10px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gear-kova-quote {
  padding: 34px 0;
  border-top: 1px solid #e3e8ed;
  text-align: center;
}

.gear-kova-quote > span {
  color: #1975d2;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.gear-kova-quote blockquote {
  max-width: 660px;
  margin: 12px auto;
  color: #263443;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
}

.gear-kova-quote small {
  color: #919ba4;
  font-size: 9px;
}

.gear-kova-comments form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.gear-kova-comments textarea {
  min-height: 54px;
  padding: 13px;
  color: #17202a;
  background: #fff;
  border: 1px solid #d9e0e6;
  border-radius: 5px;
}

.gear-kova-comments form button {
  min-width: 78px;
  color: #fff;
  background: #1975d2;
  border: 1px solid #1975d2;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
}

.gear-kova-comments form > span {
  grid-column: 1 / -1;
  color: #8a949f;
  font-size: 10px;
}

.gear-kova-comment-list {
  display: grid;
  gap: 0;
  margin-top: 14px;
}

.gear-kova-comment {
  border-bottom: 1px solid #e3e8ed;
}

.gear-kova-comment strong {
  color: #253342;
}

.gear-kova-comment time {
  color: #96a0aa;
}

.gear-kova-comment p {
  color: #566370;
}

.gear-kova-empty {
  color: #89949f;
  text-align: left;
}

.gear-items-empty {
  color: #7b8793;
  background: rgba(255, 255, 255, .55);
  border-color: #ced7df;
}

body.gear-profile-open .gear-dialog {
  --gear-ink: #17202a;
  --gear-muted: #6e7884;
  --gear-line: #dce2e8;
  --gear-solid: #fff;
  color-scheme: light;
  color: #17202a;
  background: #fff;
}

body.gear-profile-open .gear-dialog .gear-form :is(input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="hidden"]), textarea, select) {
  color: #17202a;
  background: #fff;
  border-color: #cbd5df;
}

body.gear-profile-open .gear-dialog .gear-form :is(input, textarea)::placeholder {
  color: #74808c;
  opacity: 1;
}

body.gear-profile-open .gear-dialog .gear-form select option {
  color: #17202a;
  background: #fff;
}

body.gear-profile-open .gear-dialog .gear-form select:disabled {
  color: #65717d;
  background: #edf1f4;
  opacity: 1;
}

body.gear-profile-open .gear-dialog .gear-catalog-results {
  color: #17202a;
  background: #fff;
  border-color: #cbd5df;
}

.gear-profile-editor {
  width: min(840px, calc(100vw - 24px));
  max-height: min(900px, calc(100svh - 24px));
  padding: 0;
  border-radius: 8px;
}

.gear-profile-editor .gear-dialog__head {
  position: sticky;
  z-index: 4;
  top: 0;
  margin: 0;
  padding: 18px 22px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid #e1e6eb;
  backdrop-filter: blur(14px);
}

.gear-profile-form {
  gap: 0;
}

.gear-profile-media-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 14px;
  padding: 22px;
  background: #f3f6f8;
}

.gear-profile-media {
  position: relative;
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
  padding: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce2e8;
  border-radius: 6px;
  cursor: pointer;
}

.gear-profile-media > span:first-child {
  color: #6e7884;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.gear-profile-media .gear-avatar-picker__preview {
  grid-row: auto;
  width: 100%;
  aspect-ratio: 1;
  border: 0;
  border-radius: 5px;
}

.gear-profile-media .gear-cover-picker__preview {
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 5px;
}

.gear-profile-media :is(.gear-avatar-picker__preview, .gear-cover-picker__preview) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gear-profile-media .gear-avatar-picker__copy strong {
  font-size: 11px;
}

.gear-profile-media input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  overflow: hidden;
  opacity: 0;
}

.gear-profile-form__group {
  display: grid;
  gap: 14px;
  padding: 24px 22px;
  border-top: 1px solid #e3e8ed;
}

.gear-profile-form__title {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.gear-profile-form__title span {
  color: #1975d2;
  font-size: 9px;
  font-weight: 850;
}

.gear-profile-form__title strong {
  color: #253342;
  font-size: 14px;
}

.gear-country-select {
  position: relative;
  display: block;
}

.gear-country-select > img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 12px;
  width: 24px;
  height: 18px;
  object-fit: cover;
  border: 1px solid rgba(38, 53, 68, .14);
  border-radius: 2px;
  transform: translateY(-50%);
  pointer-events: none;
}

.gear-country-select > select {
  padding-left: 46px;
}

.gear-country-select > img[hidden] + select {
  padding-left: 12px;
}

.gear-country-display {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
}

.gear-country-display img {
  flex: 0 0 auto;
  width: 20px;
  height: 15px;
  object-fit: cover;
  border: 1px solid rgba(38, 53, 68, .14);
  border-radius: 2px;
}

.gear-game-picker-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.gear-game-picker {
  position: relative;
  min-width: 0;
}

.gear-game-picker__control {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 46px;
  padding: 7px 10px;
  background: #fff;
  border: 1px solid #cbd5df;
  border-radius: 5px;
}

.gear-game-picker__control:focus-within {
  border-color: #1975d2;
  box-shadow: 0 0 0 3px rgba(25, 117, 210, .12);
}

.gear-game-picker__control input[type="search"] {
  flex: 1 1 210px;
  width: auto;
  min-width: 140px;
  min-height: 30px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.gear-game-picker__control input[type="search"]:focus {
  box-shadow: none;
}

.gear-game-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  min-height: 30px;
  padding: 5px 7px 5px 10px;
  color: #263544;
  background: #edf4fa;
  border: 1px solid #c8dced;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
}

.gear-game-chip span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-game-chip b {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  color: #64788a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.gear-game-chip:hover {
  border-color: #9bbbd5;
}

.gear-game-chip:hover b {
  color: #b42318;
}

.gear-game-picker__results {
  position: absolute;
  z-index: 8;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  max-height: 250px;
  padding: 5px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #cbd5df;
  border-radius: 5px;
  box-shadow: 0 14px 34px rgba(27, 42, 57, .16);
}

.gear-game-picker__result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  color: #263544;
  background: transparent;
  border: 0;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 750;
  text-align: left;
}

.gear-game-picker__result:hover,
.gear-game-picker__result.is-active {
  color: #115da5;
  background: #edf5fb;
}

.gear-game-picker__result small {
  flex: 0 0 auto;
  color: #71808e;
  font-size: 9px;
  font-weight: 750;
}

.gear-game-picker__limit {
  margin: 0;
  padding: 10px;
  color: #71808e;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.gear-music-editor-list {
  display: grid;
  gap: 12px;
}

.gear-music-editor-row {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: #f7f9fa;
  border: 1px solid #dce2e8;
  border-radius: 6px;
}

.gear-music-editor-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gear-music-editor-row__head strong {
  min-width: 0;
  overflow: hidden;
  color: #253342;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gear-music-editor-row__head button {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  min-height: 28px;
  padding: 0;
  place-items: center;
  color: #697581;
  background: #fff;
  border: 1px solid #cfd8e0;
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
}

.gear-music-editor-row__head button:hover {
  color: #fff;
  background: #b42318;
  border-color: #b42318;
}

.gear-music-recognition-status {
  min-height: 15px;
  margin: -6px 0 0;
  color: #64717d;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.gear-music-recognition-status[data-state="loading"] {
  color: #1975d2;
}

.gear-music-recognition-status[data-state="success"] {
  color: #25704a;
}

.gear-music-recognition-status[data-state="error"] {
  color: #b42318;
}

.gear-music-editor-add {
  width: 100%;
  min-height: 42px;
  color: #1975d2;
  background: #fff;
  border: 1px dashed #9db7cf;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 800;
}

.gear-music-editor-add:hover {
  background: #f0f6fb;
  border-style: solid;
}

.gear-music-editor-add:disabled {
  color: #96a0aa;
  background: #f2f4f6;
  border-color: #dce2e8;
  cursor: not-allowed;
}

.gear-music-editor-empty {
  margin: 0;
  padding: 18px;
  color: #7b8793;
  background: #f7f9fa;
  border: 1px solid #dce2e8;
  border-radius: 6px;
  font-size: 11px;
  text-align: center;
}

.gear-profile-form__visibility {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 20px 22px;
  background: #f3f6f8;
}

.gear-profile-form__visibility .gear-check {
  padding: 10px;
  background: #fff;
  border: 1px solid #dce2e8;
  border-radius: 5px;
}

.gear-profile-form > .gear-form__error {
  margin: 16px 22px 0;
}

.gear-profile-form__submit {
  position: sticky;
  z-index: 3;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  padding: 14px 22px;
  background: rgba(255, 255, 255, .94);
  border-top: 1px solid #e1e6eb;
  backdrop-filter: blur(14px);
}

.gear-profile-form__submit .gear-form__submit {
  width: min(240px, 100%);
  background: #1975d2;
}

@media (max-width: 800px) {
  body.gear-profile-open .gear-page {
    width: calc(100% - 20px);
    padding-top: 88px;
  }

  .gear-kova-cover {
    height: clamp(220px, 48vw, 330px);
  }

  .gear-kova-sheet,
  .gear-kova-content {
    width: 100%;
  }

  .gear-kova-sheet {
    padding-right: 24px;
    padding-left: 24px;
  }

  .gear-kova-content {
    padding-right: 24px;
    padding-left: 24px;
  }

  body.gear-profile-open .gear-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gear-kova-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .gear-share-dialog {
    width: calc(100vw - 16px);
    height: fit-content;
    max-height: calc(100svh - 16px);
    margin: auto;
    border: 1px solid rgba(24, 30, 35, .16);
    border-radius: 8px;
  }

  .gear-share-cover {
    height: 136px;
  }

  .gear-share-profile {
    min-height: 224px;
    padding: 58px 22px 0;
  }

  .gear-share-avatar {
    width: 92px;
    border-width: 4px;
  }

  .gear-share-identity h2 {
    font-size: 25px;
  }

  .gear-share-gear-list {
    gap: 14px 18px;
    margin-top: 24px;
  }

  .gear-share-settings {
    margin-top: 24px;
  }

  .gear-share-settings div {
    padding: 0 4px;
  }

  .gear-share-settings span {
    font-size: 8px;
  }

  .gear-share-settings strong {
    font-size: 11px;
  }

  .gear-share-meta {
    width: calc(100% + 44px);
    margin-right: -22px;
    margin-left: -22px;
    gap: 12px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .gear-share-actions {
    padding: 20px 14px 16px;
  }

  .gear-share-grid {
    gap: 7px;
  }

  .gear-share-icon {
    width: 44px;
    height: 44px;
  }

  .gear-item-image-field__layout {
    grid-template-columns: 1fr;
  }

  .gear-item-image-field__preview {
    width: min(148px, 100%);
  }

  body.gear-profile-open .gear-page {
    width: 100%;
  }

  body.gear-profile-open .gear-detail__toolbar {
    padding: 0 10px;
  }

  .gear-kova-hero {
    width: 100%;
  }

  .gear-kova-cover {
    height: min(62vw, 250px);
    border-radius: 0;
  }

  .gear-kova-sheet {
    width: 100%;
    margin-top: 0;
    padding: 72px 16px 0;
    border-radius: 0;
  }

  .gear-kova-avatar {
    width: 108px;
    border-width: 4px;
  }

  .gear-kova-name h2 {
    font-size: 29px;
  }

  .gear-kova-bio {
    margin-top: 14px;
    font-size: 13px;
  }

  .gear-kova-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin-top: 18px;
  }

  .gear-kova-actions .gear-kova-action {
    min-width: 0;
    padding: 0 8px;
    font-size: 10px;
  }

  .gear-kova-actions .gear-kova-action:only-child {
    grid-column: 2;
  }

  .gear-kova-stats {
    margin-top: 22px;
    padding: 17px 0;
  }

  .gear-kova-stats strong {
    font-size: 20px;
  }

  .gear-kova-stats span {
    font-size: 9px;
  }

  .gear-kova-content {
    width: 100%;
    padding: 0 16px 42px;
  }

  .gear-kova-section {
    padding: 30px 0;
  }

  .gear-kova-section__head {
    align-items: center;
  }

  body.gear-profile-open .gear-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 10px;
  }

  .gear-kova-settings {
    grid-template-columns: 1fr;
  }

  .gear-kova-activity a {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .gear-kova-activity em {
    grid-column: 2;
  }

  .gear-music-stage {
    height: 244px;
  }

  .gear-music-card {
    top: 22px;
    grid-template-rows: 146px 48px;
    width: 146px;
    min-height: 194px;
  }

  .gear-music-card__cover {
    height: 146px;
  }

  .gear-music-card[data-music-position="-2"] {
    transform: translateX(calc(-50% - 190px)) translateY(18px) scale(.76);
  }

  .gear-music-card[data-music-position="-1"] {
    transform: translateX(calc(-50% - 105px)) translateY(8px) scale(.88);
  }

  .gear-music-card[data-music-position="1"] {
    transform: translateX(calc(-50% + 105px)) translateY(8px) scale(.88);
  }

  .gear-music-card[data-music-position="2"] {
    transform: translateX(calc(-50% + 190px)) translateY(18px) scale(.76);
  }

  .gear-music-controls {
    grid-template-columns: 32px 40px 32px minmax(0, 1fr);
    gap: 5px;
    padding: 9px 10px;
  }

  .gear-music-controls > button {
    width: 32px;
    height: 32px;
    min-height: 32px;
  }

  .gear-music-controls > .gear-music-controls__play {
    width: 40px;
    height: 40px;
  }

  .gear-music-controls__cover {
    display: none;
  }

  .gear-music-controls > p {
    grid-column: 4;
  }

  .gear-music-controls__copy > span {
    grid-template-columns: 1fr;
  }

  .gear-music-controls__copy small {
    display: none;
  }

  .gear-spotify-player {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 6px;
    min-height: 196px;
  }

  .gear-spotify-player > button {
    width: 32px;
    height: 32px;
    min-height: 32px;
  }

  .gear-spotify-player iframe {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gear-spotify-player > button:first-of-type {
    grid-column: 1;
    grid-row: 2;
  }

  .gear-spotify-player > button:last-of-type {
    grid-column: 3;
    grid-row: 2;
  }

  .gear-spotify-player > a {
    grid-column: 2;
    grid-row: 2;
  }

  .gear-kova-comments form {
    grid-template-columns: 1fr;
  }

  .gear-kova-comments form button {
    min-height: 42px;
  }

  .gear-profile-editor {
    width: 100vw;
    max-width: 100vw;
    max-height: 100svh;
    height: 100svh;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .gear-profile-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
  }

  .gear-profile-media {
    padding: 8px;
  }

  .gear-profile-media .gear-avatar-picker__copy em {
    display: none;
  }

  .gear-profile-form__group {
    padding: 22px 16px;
  }

  .gear-profile-form__group .gear-form__pair {
    grid-template-columns: 1fr;
  }

  .gear-music-editor-row {
    padding: 13px;
  }

  .gear-profile-form__visibility {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .gear-profile-form__submit {
    padding: 12px 16px max(12px, env(safe-area-inset-bottom));
  }

  .gear-profile-form__submit .gear-form__submit {
    width: 100%;
  }
}

@media (max-width: 360px) {
  body.gear-profile-open .gear-items {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gear-music-card,
  .gear-kova-socials a {
    transition: none;
  }
}
