/* ============================================
   Artisan Mirror Layout - Prototype
   Mirrors key product-page blocks left<->right
   so the layout differs from the reference site.
   Fonts, colors, menu, and content unchanged.
   Desktop only - mobile stays stacked/unchanged.
   ============================================ */

/* Hero image must fit within one screen below the header. Keep --az in
   the calculation so the viewport math stays explicit. 122px ~= header. */
@media (min-width: 1024px) {
  .vib-collection-detail-page__intro,
  .vib-collection-detail-hero {
    height: calc((100vh - 122px) / var(--az)) !important;
    min-height: 0 !important;
  }

  /* Static product pages receive the shared cloned header at runtime.
     Remove their legacy header so the hero starts below one bar only. */
  body[data-artisan-static-product] > .artisan-clone-header + .site-header {
    display: none !important;
  }
  body[data-artisan-static-product] main > .hero {
    height: calc(100vh - 66px) !important;
    min-height: 0 !important;
  }
  body[data-artisan-static-product] main > .hero .hero-media img {
    height: 100% !important;
    min-height: 0 !important;
  }
}

/* 0. Shared viewport scale. Keep this neutral so collection pages match
      the homepage and the existing var(--az) calculations remain valid. */
:root { --az: 1; }
@media (min-width: 1024px) {
  :root { --az: 1; }
  body { zoom: 1; }
}

/* ARTISUN INNOVATION logo: two-line wordmark. Cap its height and give
   the header row enough room so the second line never spills below the
   bar into the content. */
img.artisan-new-logo {
  height: 50px !important;
  width: auto !important;
  max-height: 50px !important;
  object-fit: contain;
  display: block;
}
/* the topbar is position:static, so growing it just pushes content down.
   Give it room for the larger two-line logo and center everything. */
@media (min-width: 1024px) {
  .vib-topbar {
    height: auto !important;
    min-height: 66px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .vib-topbar > .vib-container {
    align-items: center !important;
    min-height: 0 !important;
  }
}
.vib-topbar__logo {
  display: flex !important;
  align-items: center !important;
  height: auto !important;
  min-height: 0 !important;
}

@media (min-width: 1024px) {

  /* 1. Hero: floating info panel (title / application / CTA)
        moves from the RIGHT edge to the LEFT edge */
  .vib-collection-detail-page__panel-wrapper {
    left: 0 !important;
    right: auto !important;
  }

  /* 2. Technical info block: description text moves RIGHT,
        specs accordion (Finishes / LED / Control) moves LEFT */
  .vib-technical-info-section .vib-container > .vib-technical-info-section__info {
    grid-column: 4 !important;
    grid-row: 1;
  }
  .vib-technical-info-section .vib-container > .vib-technical-info-section__specs {
    grid-column: 2 !important;
    grid-row: 1;
  }

  /* 3. Meet-the-designer: mirror the content row if it is a flex row */
  .vib-meet-the-designer__content {
    flex-direction: row-reverse !important;
  }

  /* 4. Inspirational Book: mirror the section -
        text moves LEFT, images move RIGHT (was images left / text right) */
  .vib-inspirational-book-section__content {
    grid-template-columns: 4fr 1fr 7fr !important;
  }
  .vib-inspirational-book-section__content > .vib-inspirational-book-section__paragraphs {
    grid-column: 1 !important;
    grid-row: 1;
  }
  .vib-inspirational-book-section__content > .vib-inspirational-book-section__slider {
    grid-column: 3 !important;
    grid-row: 1;
  }

  /* 4b. Thumbnails: two vertical columns become one horizontal strip
         BELOW the main image */
  .vib-inspirational-book {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 14px;
  }
  .vib-inspirational-book__thumbnails > div,
  .vib-inspirational-book__thumbnails > div > div {
    display: flex !important;
    flex-direction: row !important;
    flex: 0 0 auto !important;
    width: auto !important;
    gap: 12px !important;
    justify-content: flex-start !important;
  }
  .vib-inspirational-book__nav-item {
    width: 96px !important;
    flex: 0 0 auto !important;
  }
  .vib-inspirational-book__nav-item img {
    width: 100% !important;
    height: 72px !important;
    object-fit: cover;
  }
}

/* 5. FAQ section ("Here to support your process.")
      - keep only the first 3 questions
      - restructure: title left column, questions right as cards */
.vib-faqs-accordion > .vib-mobile-nav__item:nth-child(n+4) {
  display: none !important;
}
@media (min-width: 1024px) {
  .vib-faqs-section > .vib-container {
    display: grid !important;
    grid-template-columns: 1fr 1.6fr;
    column-gap: 4rem;
    align-items: start;
  }
  .vib-faqs-section__title {
    grid-column: 1;
  }
  .vib-faqs-section__content {
    grid-column: 2;
  }
}
.vib-faqs-accordion > .vib-mobile-nav__item {
  border: 1px solid #e2e0dc;
  background: #faf9f7;
  padding: 6px 22px;
  margin-bottom: 14px;
}

/* 5b. Meet the Designer: remove the link and the quote line in front
       of it (the quote now lives in the scatter gallery text panel) */
.vib-meet-the-designer {
  display: none !important;
}

/* 6. Product family selector: compact two-column card
      (was a tall stacked block ~1000px high) */
@media (min-width: 1024px) {
  .artisan-family-selector {
    grid-template-columns: 1fr 1fr !important;
    align-items: stretch !important; /* two equal-height boxes */
    gap: 22px !important;
    width: min(720px, calc(100% - 48px)) !important;
    max-width: 720px !important;
    margin: 48px auto !important;
    padding: 0 !important;
    border-top: none !important;
  }
  /* left box: image, elongated */
  /* left box: image absolutely positioned so its aspect ratio does not
     inflate the row height; box height comes from min-height + stretch */
  .artisan-family-media {
    min-height: 430px !important; /* portrait: taller than the ~335px box width */
    max-height: none !important;
    height: auto !important;
    position: relative !important;
    overflow: hidden;
    border: 1px solid #e4dfd8;
  }
  .artisan-family-media img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important; /* beat the base page's min-height:520px */
    max-height: none !important;
    object-fit: cover;
    display: block;
  }
  /* right box: matching framed card, compact contents */
  .artisan-family-content {
    border: 1px solid #e4dfd8;
    background: #faf9f7;
    padding: 16px 22px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
  .artisan-family-kicker { margin: 0 !important; }
  .artisan-family-title { margin: 0 !important; font-size: 24px !important; line-height: 1.1 !important; }
  .artisan-family-content > p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 !important;
    font-size: 13px !important;
  }
  .artisan-family-chips {
    gap: 10px !important;
    margin-top: 2px;
  }
  .artisan-family-chip {
    padding: 6px 14px !important;
    font-size: 12px !important;
  }
}

/* Our own Info modal: a compact centered card (not full screen) with a
   visible header + close (X) and a scrollable body. Sizes divided by the
   page zoom so they map to real on-screen pixels. */
.artisan-info-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.artisan-info-modal__box {
  background: #fff;
  width: calc(660px / var(--az));
  max-width: 92%;
  max-height: calc(82vh / var(--az));
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}
.artisan-info-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid #e4dfd8;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #171717;
  flex: 0 0 auto;
}
.artisan-info-modal__close {
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #171717;
  padding: 0 4px;
}
.artisan-info-modal__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 22px;
}
/* the cloned technical block stacks (description then Electrical section) */
.artisan-info-modal__body .artisan-modal-tech {
  display: block !important;
  width: 100% !important;
}
.artisan-info-modal__body .artisan-modal-tech > * {
  grid-column: auto !important;
  width: 100% !important;
  margin: 0 0 22px !important;
}
.artisan-info-modal__body .artisan-modal-tech [class*="accordion__content"],
.artisan-info-modal__body .artisan-modal-tech [role="region"] {
  display: block !important;
}

/* Project quotation panel. A quiet explanation on the left and a single
   square action on the right keep the product page free from checkout UI. */
.artisan-quote {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 384px;
  gap: 80px;
  align-items: center;
  width: min(1106px, calc(100% - 48px));
  margin: 88px auto;
  padding: 44px 0;
  border-top: 1px solid rgba(23, 33, 30, 0.2);
  border-bottom: 1px solid rgba(23, 33, 30, 0.2);
  background: transparent;
  color: #17211e;
}
.artisan-quote__copy { max-width: 480px; }
.artisan-quote-typewriter {
  display: inline;
  min-height: 2.32em;
}
.artisan-quote-typewriter__cursor {
  display: inline-block;
  margin-left: 4px;
  color: #9a4829;
  font-weight: 300;
  animation: artisan-quote-cursor 0.9s steps(1, end) infinite;
}
@keyframes artisan-quote-cursor {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}
.artisan-quote__eyebrow {
  margin: 0 0 14px;
  color: #9a4829;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1.2;
}
.artisan-quote h2 {
  margin: 0;
  color: #17211e;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.16;
  min-height: 2.32em;
}
.artisan-quote__copy > p:not(.artisan-quote__eyebrow):not(.artisan-quote__product) {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(23, 33, 30, 0.74);
  font-size: 16px;
  line-height: 1.5;
}
.artisan-quote__product {
  margin: 18px 0 0;
  color: #9a4829;
  font-size: 12px;
  line-height: 1.35;
}
.artisan-quote__tile {
  --artisan-quote-rotate-x: 0deg;
  --artisan-quote-rotate-y: 0deg;
  width: 100%;
  display: flex;
  position: relative;
  min-height: 450px;
  box-sizing: border-box;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 16px;
  background: rgba(151, 191, 176, 0.42);
  -webkit-backdrop-filter: blur(22px) saturate(1.08);
  backdrop-filter: blur(22px) saturate(1.08);
  padding: 30px;
  transform: perspective(900px) rotateX(var(--artisan-quote-rotate-x)) rotateY(var(--artisan-quote-rotate-y)) translateY(0);
  transform-style: preserve-3d;
  transition: transform 0.28s ease-out;
  will-change: transform;
}
.artisan-quote__tile::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 10px;
  content: "";
  pointer-events: none;
  transform: translateZ(8px);
}
.artisan-quote__table-title {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: #17211e;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  transform: translateZ(14px);
}
.artisan-quote__table-title::after { display: none; }
.artisan-quote__tile::after {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #9a4829;
  content: "PROJECT PRICING";
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}
.artisan-quote__form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
  padding: 0;
  border: 0;
  border-radius: 4px;
  transform: translateZ(10px);
}
.artisan-quote__form > label {
  display: grid;
  gap: 8px;
  color: #17211e;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}
.artisan-quote__field-label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 20px;
}
.artisan-quote__field-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(29, 61, 53, 0.5);
  border-radius: 50%;
  color: #1d3d35;
  font-size: 10px;
  line-height: 1;
  text-transform: none;
}
.artisan-quote select,
.artisan-quote input {
  width: 100%;
  min-height: 46px;
  box-sizing: border-box;
  border: 1px solid rgba(29, 61, 53, 0.32);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  color: #17211e;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 11px 12px;
  text-transform: none;
}
.artisan-quote select:focus,
.artisan-quote input:focus,
.artisan-quote button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.artisan-quote__stepper {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  min-height: 46px;
  border: 1px solid rgba(29, 61, 53, 0.32);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
}
.artisan-quote__stepper input {
  min-width: 0;
  border: 0;
  border-left: 1px solid rgba(29, 61, 53, 0.2);
  border-right: 1px solid rgba(29, 61, 53, 0.2);
  text-align: center;
  padding-right: 4px;
}
.artisan-quote__stepper button {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #17211e;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}
.artisan-quote__stepper button:hover { color: #9a4829; }
.artisan-quote__action {
  grid-column: 1 / -1;
  display: block;
  margin-top: 8px;
}
.artisan-quote__submit {
  width: 100%;
  min-height: 48px;
  border: 1px solid #9a4829;
  border-radius: 0;
  background: #9a4829;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0;
  padding: 0 26px;
}
.artisan-quote__submit:hover {
  background: #fff;
  border-color: #fff;
  color: #1d3d35;
}
.artisan-quote__notice {
  min-height: 1.4em;
  margin: 0;
  color: #17211e;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 12px;
}

/* Request Quote choice dialog: retain the product-page context while giving
   the visitor a clear choice between adding another item and sending a brief. */
.artisan-quote-choice {
  position: fixed;
  inset: 0;
  z-index: 100100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(14, 25, 22, 0.46);
}
.artisan-quote-choice__box {
  width: min(460px, 100%);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: #1d3d35;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 34px;
}
.artisan-quote-choice__eyebrow {
  margin: 0 0 14px;
  color: #d59269;
  font-size: 11px;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-transform: uppercase;
}
.artisan-quote-choice h2 {
  margin: 0;
  color: #fff;
  font-size: 31px;
  font-weight: 300;
  line-height: 1.12;
}
.artisan-quote-choice__product {
  margin: 14px 0 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}
.artisan-quote-choice__copy {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}
.artisan-quote-choice__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.artisan-quote-choice__actions button,
.artisan-quote-choice__review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.7px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}
.artisan-quote-choice__review {
  border-color: #fff;
  background: #fff;
  color: #1d3d35;
}
.artisan-quote-choice__actions button:hover { border-color: #fff; }
.artisan-quote-choice__review:hover { background: transparent; color: #fff; }
.artisan-quote-choice__actions button:focus-visible,
.artisan-quote-choice__review:focus-visible { outline: 2px solid #d59269; outline-offset: 3px; }

@media (max-width: 900px) {
  .artisan-quote { grid-template-columns: minmax(0, 1fr) 300px; gap: 52px; }
}
@media (max-width: 640px) {
  .artisan-quote {
    width: calc(100% - 32px);
    margin: 56px auto;
    padding: 30px 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .artisan-quote__tile { max-width: 300px; min-height: 0; }
  .artisan-quote h2 { font-size: 28px; }
  .artisan-quote__form { grid-template-columns: 1fr; }
  .artisan-quote__action { display: block; }
  .artisan-quote__submit { width: 100%; }
  .artisan-quote__notice { margin-top: 14px; }
  .artisan-quote-choice__box { padding: 28px 22px; }
  .artisan-quote-choice__actions { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .artisan-quote__tile {
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
  .artisan-quote-typewriter__cursor {
    animation: none !important;
    opacity: 1;
  }
}

/* 6b. Features row: make the 3 side-by-side product images more
       elongated (~12% taller). Was ratio 3:4 (1.333), now 2:3 (1.5). */
@media (min-width: 1024px) {
  /* padding-bottom sets a definite box height (150% of width vs the
     native ~133%), making the frame ~12% taller; the image is absolutely
     positioned to cover it reliably */
  .vib-collection-features-section .vib-cms-media {
    height: 0 !important;
    padding-bottom: 150% !important;
    position: relative !important;
    overflow: hidden;
  }
  .vib-collection-features-section .vib-cms-media picture,
  .vib-collection-features-section .vib-cms-media img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* 7. Scatter-scroll gallery
      Replaces the Inspirational Book display with a scroll-locked
      slider: the stage pins while images wipe in pairs (left wipes
      up, right wipes down), then scroll releases. The whole effect
      is container-width (same width as the 3 feature cards above),
      never full-bleed; the page sides stay empty. */
.artisan-scatter {
  position: relative;
  height: calc(var(--steps, 2) * (100vh / var(--az)));
  min-height: calc(100vh / var(--az));
}
.artisan-scatter__stage {
  position: sticky;
  top: 0;
  height: calc(100vh / var(--az));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}
.artisan-scatter__track {
  position: relative;
  width: min(1106px, calc(100% - 48px));
  /* full-height frames like the reference project; divided by the page
     zoom so the pinned stage still fits the real viewport exactly */
  height: calc(100vh / var(--az));
  overflow: hidden;
}
.artisan-scatter__stack {
  position: absolute;
  top: 0;
  height: 100%;
  width: calc(50% - 5px);
  overflow: hidden;
}
.artisan-scatter__stack--left { left: 0; }
.artisan-scatter__stack--right { right: 0; }
.artisan-scatter__frame {
  position: absolute;
  inset: 0;
  z-index: var(--z, 1);
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}
.artisan-scatter__frame[data-side="right"] { clip-path: inset(0 0 100% 0); }
.artisan-scatter__frame.is-active,
.artisan-scatter__frame.is-past { clip-path: inset(0 0 0 0); }
.artisan-scatter__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* leftover single image: text panel shown beside it */
.artisan-scatter__text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: #faf9f7;
  border: 1px solid #e4dfd8;
  padding: 10%;
  text-align: center;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.35;
  color: #171717;
}
.artisan-scatter__text cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.55;
}

/* 8. Support row: the "by your side" image and the FAQ block sit
      side by side instead of stacked full-width sections */
@media (min-width: 1024px) {
  .artisan-support-row {
    display: grid;
    grid-template-columns: 1fr 1.45fr; /* wide, tidy question column */
    gap: 48px;
    align-items: stretch; /* questions column matches the image height */
    width: min(1106px, calc(100% - 48px));
    margin: 48px auto;
  }
  .artisan-support-row .vib-professional-area-section__wrapper,
  .artisan-support-row .vib-professional-area-section__link,
  .artisan-support-row .vib-professional-area-section__link a,
  .artisan-support-row .vib-professional-area-section .vib-cms-media {
    height: 100%;
    display: block;
  }
  /* questions fill the full column height, evenly spread */
  .artisan-support-row .vib-faqs-section > .vib-container {
    height: 100%;
  }
  .artisan-support-row .vib-faqs-section__content {
    display: flex;
    flex-direction: column;
    height: calc(100% - 66px); /* minus title */
  }
  .artisan-support-row .vib-faqs-accordion {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* slim cards, centered against the image */
    gap: 18px;
  }
  .artisan-support-row .vib-faqs-accordion > .vib-mobile-nav__item {
    margin-bottom: 0;
    flex: 0 0 auto; /* card hugs its single question line */
  }
  .artisan-support-row .vib-professional-area-section,
  .artisan-support-row .vib-faqs-section {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }
  .artisan-support-row .vib-container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }
  /* inside the row the FAQ stacks: small title above the cards */
  .artisan-support-row .vib-faqs-section > .vib-container {
    display: block !important;
  }
  .artisan-support-row .vib-faqs-section__title {
    display: block;
    font-size: 30px !important;
    line-height: 1.15;
    margin-bottom: 26px;
    text-indent: 0 !important;
  }
  .artisan-support-row .vib-professional-area-section img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
  }
  /* hide the old 4-block support text overlay; keep only the media
     with its "by your side" caption */
  .artisan-support-row .vib-professional-area-section__content-desktop,
  .artisan-support-row .vib-professional-area-section__content-mobile {
    display: none !important;
  }
  /* drop the note + Services link under the questions */
  .artisan-support-row .vib-faqs-section__disclaimer {
    display: none !important;
  }
  /* keep the question cards comfortable in the wide column */
  .artisan-support-row .vib-faqs-accordion > .vib-mobile-nav__item {
    padding: 10px 26px;
  }
}
.artisan-scatter__rail {
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 40;
  width: 120px;
  height: 2px;
  background: rgba(23, 23, 23, 0.15);
  overflow: hidden;
}
.artisan-scatter__rail-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: #171717;
  transform: scaleX(0);
  transform-origin: left;
}
@media (max-width: 1023px) {
  .artisan-scatter__stack {
    width: 100%;
    height: calc(50% - 5px);
  }
  .artisan-scatter__stack--left { top: 0; }
  .artisan-scatter__stack--right { top: auto; bottom: 0; right: auto; left: 0; }
}
