/* styling for the glossy main artist page */

/* ============================================================================
   LAPTOP SCREENS - 13" to 15" with 1080p resolution at various DPI scales
   1920x1080 @ 1.5x = 1280px effective width (common for 14" laptops)
   We scale down the entire page to make it look like zooming out 10%
   ============================================================================ */

/* Target high-DPI laptop screens (14" 1080p with 1.5x scaling) */
@media (min-width: 1024px) and (max-width: 1440px) {
  /* Scale the entire main page content by ~90% (10% zoom out effect) */
  main.page {
    zoom: 0.9;
    transform-origin: top center;
  }
}

/* Alternative approach for browsers that don't support zoom */
@supports not (zoom: 0.9) {
  @media (min-width: 1024px) and (max-width: 1440px) {
    main.page {
      transform: scale(0.9);
      transform-origin: top center;
      width: 111.11%; /* Compensate for scale to prevent side margins */
      margin-left: -5.55%;
    }
  }
}

.artistpage-gallery-container {
  width: 100%;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
  position: relative;
}

.artistpage-gallery {
  --columns-to-show: 2;
  height: 100%;
  gap: 90px;
  display: grid;
  grid-auto-columns: calc(100% / var(--columns-to-show));
  grid-auto-flow: column;
}

@media only screen and (min-width: 640px) {
  .artistpage-gallery {
    --columns-to-show: 3;
  }
}

@media only screen and (min-width: 1024px) {
  .artistpage-gallery {
    --columns-to-show: 4;
  }
}

@media only screen and (min-width: 1200px) {
  .artistpage-gallery {
    --columns-to-show: 5;
  }
}

.artistpage-gallery-button-container {
  position: relative;

  &:hover > .artistpage-gallery-button {
    opacity: 1;
  }
}

.artistpage-gallery-button {
  position: absolute;
  bottom: var(--minim);
  right: var(--minim);
  opacity: 0;
  transition: opacity 100ms ease-in-out;
  font-family: var(--font-sans);
  letter-spacing: 0.08em;
}

.artistpage-grid-container {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(200px, 1fr) 420px;
}

@media (min-width: 1200px) {
  .artistpage-grid-container {
    gap: 56px;
    grid-template-columns: minmax(200px, 1fr) 420px;
  }
}

@media (max-width: 900px) {
  .artistpage-grid-container {
    grid-template-columns: 1fr;
  }
}

.artistpage-main-container {
  display: flex;
  flex-direction: column;
}

.artistpage-title-container {
  margin-top: 40px;
}

.artistpage-title {
  color: var(--mb);
  text-align: center;
  font-family: var(--font-serif);
  font-size: 42px;
  font-style: normal;
  font-weight: 440;
  line-height: 46px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

@media (min-width: 1200px) {
  .artistpage-title {
    font-size: 44px;
    line-height: 48px;
  }
}

.artistpage-details-container {
  padding: 0;
  border-bottom: 1px solid var(--grey-300);
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: var(--minim);
  justify-content: center;
  align-items: center;
}

.artistpage-tags {
  line-height: 1.5;
}

.artistpage-tag-label {
  font-weight: 500;
}

.artistpage-tag {
  font-family: var(--font-sans);
  display: inline-block;
  padding: 0 var(--quaver);
  background-color: rgb(from var(--ib) r g b / 0.4);
  border-radius: var(--quaver);
  color: var(--shw);
  line-height: 1.2;
}

.artistpage-about-container {
  padding: 28px 0px;
  border-top: 1.5px solid var(--mb-70);
}

.artistpage-location-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
}

.artistpage-qna-container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--minim);
}

.artistpage-qna-question {
  font-style: italic;
  margin: 0;
}

.artistpage-qna-answer {
  margin-bottom: var(--minim);
}

@media only screen and (min-width: 640px) {
  .artistpage-details-container {
    grid-template-columns: 1fr 1fr;
  }

  .artistpage-qna-container {
    grid-template-columns: 1fr 2fr;
    row-gap: var(--minim);
    column-gap: var(--minim);
  }

  .artistpage-qna-answer {
    margin-bottom: 0;
  }
}

/* Specific styling for the h4 in atelier page - exclude commission-active, commission-quick, and commission-insights */
.commission-display
  .responsive-heading:not(.commission-active .responsive-heading):not(
    .commission-quick .responsive-heading
  ):not(.commission-insights .responsive-heading):not(
    .commission-details-timeline .responsive-heading
  ):not(.commission-details-video .responsive-heading) {
  margin-top: 14px;
}

.artist-card-portrait {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  align-self: center;
}

@media (min-width: 1200px) {
  .artist-card-portrait {
    width: 90px;
    height: 90px;
  }
}

.artistpage-heading-sub {
  margin-top: 0px;
  margin-bottom: 28px;
  color: var(--mb);
  font-family: var(--font-sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 540;
  line-height: 26px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artistpage-text {
  color: var(--mb);
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0.02em;
  white-space: pre-line;
  margin: 0px;
}

.artistpage-error {
  color: red !important;
  font-weight: 600 !important;
}

.artistpage-location {
  color: var(--mb);
  font-family: var(--font-sans);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.56px;
}

.artistpage-heading-sub-par {
  color: var(--mb);
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 540;
  line-height: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Commission Info Section - Single column layout */
.artistpage-commission-info {
  border-top: 1.5px solid var(--mb-70);
  display: flex;
  flex-direction: column;
  padding: 28px 0px;
}

.artistpage-commission-types-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.artistpage-commission-types-list li {
  margin: 0;
}

.artistpage-commission-types-list li::marker {
  font-size: 10px;
}

/* Biography Section Styling */
.artistpage-biography-section {
  padding: 28px 0;
  border-top: 1.5px solid var(--mb-70);
}

.artistpage-biography-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.artistpage-biography-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
}

.artistpage-biography-label {
  color: var(--mb);
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.artistpage-biography-value {
  color: var(--mb);
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.02em;
  margin: 0;
}

.artistpage-biography-education-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Responsive adjustments for biography section */
@media (max-width: 640px) {
  .artistpage-biography-row {
    grid-template-columns: 100px 1fr;
    gap: 24px;
  }
}

/* Exhibition Section Styling */
.artistpage-exhibition-section {
  padding: 28px 0;
  border-top: 1.5px solid var(--mb-70);
}

.artistpage-exhibition-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.artistpage-exhibition-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
}

.artistpage-exhibition-year {
  color: var(--mb);
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.artistpage-exhibition-name {
  color: black;
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0.02em;
  margin: 0;
  white-space: pre-line;
}

/* Responsive adjustments for exhibition section */
@media (max-width: 640px) {
  .artistpage-exhibition-row {
    grid-template-columns: 80px 1fr;
    gap: 24px;
  }
}

.quote-message {
  color: var(--dc-greys-900);
  opacity: 0.8;
  font-style: italic;

  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 540;
  line-height: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px 0;
}

.quote-author {
  font-size: 12px;
  font-weight: 440;
}

/* ==========================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE
   ========================================== */

/* Title container responsive adjustments */
@media (max-width: 768px) {
  .artistpage-title-container .stack.row.center {
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 16px;
    flex-wrap: wrap;
  }

  .artistpage-title-container .stack.row.center .artist-card-portrait {
    width: 56px;
    height: 56px;
  }

  .artistpage-title-container .stack.row.center .button.outline {
    margin-left: auto;
  }
}

/* Tablet adjustments (768px - 1024px) */
@media (max-width: 1024px) {
  .artistpage-grid-container {
    gap: 40px;
    grid-template-columns: 1fr 420px;
  }

  .artistpage-title {
    font-size: 40px;
    line-height: 44px;
  }

  .artist-card-portrait {
    width: 80px;
    height: 80px;
  }
}

/* Mobile adjustments (768px and below) */
@media (max-width: 768px) {
  .artistpage-grid-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .artistpage-title-container {
    margin-top: 32px;
  }

  .artistpage-title {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.03em;
  }

  .artist-card-portrait {
    width: 72px;
    height: 72px;
  }

  .artistpage-heading-sub {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .artistpage-text {
    font-size: 15px;
    line-height: 22px;
  }

  .artistpage-about-container,
  .artistpage-commission-info,
  .artistpage-biography-section,
  .artistpage-exhibition-section {
    padding: 24px 0;
  }

  .artistpage-location-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .artistpage-biography-row,
  .artistpage-exhibition-row {
    grid-template-columns: 100px 1fr;
    gap: 20px;
  }

  .artistpage-commission-types-list {
    padding-left: 18px;
  }

  /* Commission form adjustments */
  form.form {
    width: 100%;
  }
}

/* Commission column wrapper */
.commission-column {
  display: flex;
  flex-direction: column;
}

/* Secure Process Info Box - standalone component */
.secure-process-box {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--mb);
  border-radius: 3px;
  background: transparent;
}

.secure-process-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.secure-process-icon {
  width: 15px;
  height: 19px;
  flex-shrink: 0;
}

.secure-process-title {
  margin: 0;
  color: var(--mb);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 540;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.secure-process-text {
  margin: 0;
  color: var(--mb);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.02em;
}

/* Small mobile adjustments (480px and below) */
@media (max-width: 480px) {
  .secure-process-box {
    padding: 16px;
    margin-top: 20px;
  }

  .secure-process-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .secure-process-icon {
    width: 13px;
    height: 16px;
  }

  .secure-process-title {
    font-size: 11px;
    line-height: 18px;
  }

  .secure-process-text {
    font-size: 10px;
    line-height: 16px;
  }
  .artistpage-title-container {
    margin-top: 24px;
  }

  .artistpage-title {
    font-size: 26px;
    line-height: 30px;
  }

  .artist-card-portrait {
    width: 64px;
    height: 64px;
  }

  .artistpage-heading-sub {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
  }

  .artistpage-heading-sub-par {
    font-size: 13px;
    line-height: 18px;
  }

  .artistpage-text {
    font-size: 14px;
    line-height: 20px;
  }

  .artistpage-biography-label,
  .artistpage-exhibition-year {
    font-size: 12px;
  }

  .artistpage-biography-value,
  .artistpage-exhibition-name {
    font-size: 13px;
  }

  .artistpage-biography-row,
  .artistpage-exhibition-row {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }

  .artistpage-biography-education-list {
    gap: 16px;
  }

  .artistpage-exhibition-list {
    gap: 16px;
  }

  /* Edit button sizing */
  .artistpage-title-container .button.outline {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Ensure proper stacking order on mobile - tabs before commission box */
@media (max-width: 900px) {
  .artistpage-main-container {
    order: 1;
  }

  .commission-column {
    order: 2;
  }
}

/* Gallery single item centering fix */
@media (max-width: 640px) {
  .artistpage-gallery.single-item {
    justify-content: center;
  }

  .artistpage-gallery.single-item .artwork-card {
    flex: 0 0 85%;
    max-width: 400px;
  }
}

/* ============================================================================
   LIGHTBOX OVERLAY STYLES
   ============================================================================ */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: var(--shw);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 400ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay.active .lightbox-content {
  opacity: 1;
  transform: scale(1);
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 95vw;
  height: 90vh;
  max-width: 95vw;
  max-height: 90vh;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 400ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 10;
  transition: opacity 200ms ease;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-close img {
  width: 24px;
  height: 24px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 10;
  transition: opacity 200ms ease;
}

.lightbox-nav:hover {
  opacity: 0.7;
}

.lightbox-nav--prev {
  left: 24px;
}

.lightbox-nav--next {
  right: 24px;
}

.lightbox-arrow {
  width: 24px;
  height: 24px;
}

.lightbox-image-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  border-radius: 5px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 5px;
  transition: transform 200ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-info {
  margin-top: 32px;
  text-align: center;
  color: var(--mb);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox-title {
  color: #000;
  text-align: center;
  font-family: "Bodoni Moda";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
  margin: 0;
  max-width: 700px;
  text-transform: uppercase;
}

.lightbox-year {
  color: #000;
  text-align: center;
  font-family: "Bodoni Moda";
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
  margin: 0;
}

.lightbox-description {
  color: #000;
  text-align: center;
  font-family: "Bodoni Moda";
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
  margin: 0;
  max-width: 700px;
}

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--mb);
  opacity: 0.6;
  letter-spacing: 0.1em;
  z-index: 10;
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-nav--prev {
    left: 12px;
  }

  .lightbox-nav--next {
    right: 12px;
  }

  .lightbox-arrow {
    width: 20px;
    height: 20px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .lightbox-title {
    font-size: 16px;
  }

  .lightbox-image {
    max-width: 90vw;
    max-height: 70vh;
  }
}

/* Artwork card button reset for lightbox trigger */
.artwork-card {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.artwork-card:focus {
  outline: 2px solid var(--mb);
  outline-offset: 2px;
}

/* ============================================================================
   LIGHTBOX ZOOM SLIDER
   ============================================================================ */

.lightbox-zoom-slider {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  padding: 12px 16px;
}

.lightbox-zoom-btn {
  background: none;
  border: none;
  padding: 0px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 200ms ease;
}

.lightbox-zoom-btn:hover {
  opacity: 0.7;
}

.lightbox-zoom-icon--minus {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.lightbox-zoom-icon--plus {
  width: 20px;
  height: 20px;
}

.lightbox-slider {
  width: 120px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.lightbox-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--mb);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 150ms ease;
}

.lightbox-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.lightbox-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--mb);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  transition: transform 150ms ease;
}

.lightbox-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
}

.lightbox-image[data-zoomed="true"] {
  max-width: none;
  max-height: none;
}

/* Mobile bottom navigation bar */
.lightbox-mobile-nav {
  display: none;
  position: fixed;
  bottom: 110px;
  left: 0;
  right: 0;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 100;
}

.lightbox-mobile-nav-btn {
  background: transparent;
  border: none;
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--mb);
  cursor: pointer;
  transition: opacity 200ms ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lightbox-mobile-nav-btn:hover {
  opacity: 0.7;
}

/* Bottom navigation arrows (mobile only) */
.lightbox-nav-bottom {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.lightbox-arrow-bottom {
  width: 20px;
  height: 20px;
}

/* Mobile zoom slider adjustments */
@media (max-width: 768px) {
  .lightbox-content {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    padding: 80px 16px 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.98);
    transition:
      opacity 350ms cubic-bezier(0.4, 0, 0.2, 1),
      transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .lightbox-overlay.active .lightbox-content {
    opacity: 1;
    transform: scale(1);
  }

  .lightbox-image-wrapper {
    touch-action: pan-y pinch-zoom;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    flex: 0 1 auto;
    max-height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    touch-action: pan-y pinch-zoom;
    object-fit: contain;
  }

  .lightbox-zoom-slider {
    position: fixed;
    bottom: 70px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    padding: 10px 16px;
    gap: 10px;
    z-index: 100;
  }

  .lightbox-slider {
    width: 120px;
    height: 4px;
  }

  .lightbox-slider::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
  }

  .lightbox-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
  }

  .lightbox-zoom-icon--minus {
    width: 20px;
    height: 20px;
  }

  .lightbox-zoom-icon--plus {
    width: 24px;
    height: 24px;
  }

  .lightbox-info {
    flex: 0 0 auto;
    margin-top: 20px;
    padding: 0 16px;
    text-align: center;
    max-width: 100%;
    gap: 8px;
  }

  .lightbox-title {
    font-size: 17px;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.6px;
  }

  .lightbox-description {
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
    max-width: 100%;
    letter-spacing: 0.6px;
  }

  .lightbox-year {
    font-size: 15px;
    margin: 0;
    letter-spacing: 0.6px;
  }

  .lightbox-counter {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    z-index: 100;
  }

  /* Show mobile top navigation */
  .lightbox-mobile-nav {
    display: flex;
  }

  /* Hide side navigation arrows on mobile */
  .lightbox-nav {
    display: none;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
  }
}

/* Compact tabs for artist page */
.artistpage-main-container .tab-bar {
  justify-content: space-between;
  margin: 16px 0;
}

.artistpage-main-container .tab-link {
  font-size: 12px;
  padding: 0;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

@media only screen and (min-width: 900px) {
  .artistpage-main-container .tab-link {
    font-size: 13px;
    padding: 0;
  }
}

@media (max-width: 640px) {
  .artistpage-main-container .tab-bar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .artistpage-main-container .tab-link {
    font-size: 11px;
    padding: 0;
    letter-spacing: 0.04em;
  }
}
