  .auth-card--compact {
    max-width: 860px;
  }
}

@media (max-width: 767px) {
  .auth-panel {
    padding: 30px 22px;
  }

  .auth-row--login {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .auth-note--login {
    font-size: 15px;
  }

  .auth-signup--login .auth-signup-actions {
    flex-direction: column;
  }

  .auth-form--reset .auth-field,
  .auth-reset-copy,
  .auth-reset-divider,
  .auth-reset-footnote {
    max-width: 100%;
  }
}

.artist-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
  color: #c7c7c7;
}

.artist-overall-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.artist-overall-rating__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #f5c400;
  color: #111;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.artist-overall-rating__votes {
  color: #555;
  font-size: 13px;
  font-weight: 600;
}

.artist-rating--overall .artist-rating-star {
  font-size: 18px;
}

.artist-rating-star {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  color: inherit;
  cursor: pointer;
  flex: 0 0 auto;
  transition: color 0.2s ease, transform 0.2s ease;
}

.artist-rating-star:disabled {
  cursor: default;
  opacity: 0.6;
}

.artist-rating-star.is-active {
  color: #f5c400;
}

.artist-rating-star.is-hover {
  color: #f5c400;
  transform: translateY(-1px) scale(1.08);
}

.artist-rating:not(.is-readonly) .artist-rating-star:hover {
  transform: translateY(-1px) scale(1.08);
}

.artist-rating.is-readonly .artist-rating-star {
  cursor: default;
}

.artist-rating-clear {
  appearance: none;
  border: 1px solid #d4d4d4;
  background: #fff;
  padding: 0;
  margin-left: 0;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  font-size: 11px;
  line-height: 16px;
  color: #7c7c7c;
  cursor: pointer;
  max-width: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transition: color 0.2s ease, opacity 0.2s ease, max-width 0.2s ease, margin-left 0.2s ease;
}

.artist-rating.can-clear:hover .artist-rating-clear,
.artist-rating.can-clear:focus-within .artist-rating-clear,
.artist-rating.can-clear.is-clear-visible .artist-rating-clear {
  margin-left: 4px;
  max-width: 18px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.artist-rating-clear:hover {
  color: #4f4f4f;
  border-color: #bcbcbc;
}

.artist-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

.artist-gallery-modal.is-open {
  display: flex;
}

.artist-gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.artist-gallery-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  background: #111;
  border-radius: 16px;
  padding: 24px;
  display: grid;
  gap: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.artist-gallery-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #ffffff;
  border: none;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.artist-rating--modal .artist-rating-clear {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #d4d4d4;
}

.artist-rating--modal .artist-rating-clear:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.artist-gallery-modal__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}

.artist-gallery-modal__image {
  max-height: 70vh;
  width: auto;
  max-width: 100%;
  border-radius: 12px;
}

.artist-gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.artist-gallery-modal__prev {
  left: 18px;
}

.artist-gallery-modal__next {
  right: 18px;
}

@media (max-width: 768px) {
  .artist-gallery-modal__panel {
    padding: 18px;
  }

  .artist-gallery-modal__nav {
    width: 38px;
    height: 38px;
  }
}

.property-tabs-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.property-tabs-nav {
  width: max-content;
  min-width: 100%;
  flex-wrap: nowrap;
  gap: clamp(0.25rem, 1.2vw, 2.25rem);
}

.property-tabs-nav .tab-btn {
  white-space: nowrap;
  padding: 1.5rem clamp(0.45rem, 0.9vw, 1.25rem);
}

@media (max-width: 767px) {
  .property-tabs-scroll.property-tabs-scroll--touch {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
  }

  .property-tabs-scroll.property-tabs-scroll--touch .property-tabs-nav {
    width: max-content;
    min-width: 100%;
    flex-wrap: nowrap;
  }

  .property-tabs-scroll.property-tabs-scroll--touch .tab-btn {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

.property-tabs-nav .tab-btn {
  color: #111827;
  transition: color 0.2s ease;
}

.property-tabs-nav .tab-btn svg {
  width: 32px;
  height: 32px;
  color: #111827;
  transition: color 0.2s ease;
}

.property-tabs-nav .tab-btn[aria-selected="true"] svg,
.property-tabs-nav .tab-btn:hover svg,
.property-tabs-nav .tab-btn:focus-visible svg {
  color: #6d28d9;
}

.property-tabs-nav .tab-btn[aria-selected="true"],
.property-tabs-nav .tab-btn:hover,
.property-tabs-nav .tab-btn:focus-visible {
  color: #6d28d9;
}

.property-tabs-nav .tab-btn[aria-selected="true"] .tab-underline {
  background-color: #6d28d9 !important;
}

.tooltip {
  z-index: 10000;
  max-width: min(340px, calc(100vw - 16px));
  white-space: normal;
}
