/* Original good-hands composition. This section has no scroll controller. */
.good-hands {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
  background: #fdfbf9;
}

.good-hands__scene {
  position: relative;
  width: 100%;
  padding-top: 25vh;
  background: #fdfbf9;
}

.good-hands__ruling,
.good-hands__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.good-hands__ruling {
  user-select: none;
}

.good-hands__desktop-lines span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(141, 113, 90, 0.1);
}

.good-hands__mobile-lines {
  display: none;
}

.good-hands__art {
  position: relative;
  display: block;
  width: 100%;
}

.good-hands__art img {
  display: block;
  width: 100%;
  height: auto;
}

.good-hands__overlay {
  z-index: 2;
}

.good-hands__title {
  position: absolute;
  top: 28%;
  right: 18%;
  width: 5.5241em;
  margin: 0;
  color: #2b1a07;
  font-family: "Dioni Doodle Serif", serif;
  font-size: clamp(28px, 3.65vw, 40px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
}

.good-hands__scribble {
  position: absolute;
  bottom: 30%;
  left: 20%;
  width: clamp(95px, 8.89vw, 160px);
  height: auto;
}

@media (min-width: 1024px) and (max-width: 1279.98px) {
  .good-hands__scribble {
    bottom: 18%;
    width: 120px;
  }
}

@media (max-width: 1023.98px) {
  .good-hands__title {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .good-hands__scribble {
    bottom: 23%;
    left: 10%;
    width: 140px;
  }
}

@media (max-width: 767.98px) {
  .good-hands__desktop-lines {
    display: none;
  }

  .good-hands__mobile-lines {
    display: flex;
    justify-content: space-between;
    height: 100%;
  }

  .good-hands__mobile-lines span {
    width: 1px;
    height: 100%;
    background: rgba(141, 113, 90, 0.1);
  }

  .good-hands__title {
    top: 21%;
  }

  .good-hands__scribble {
    bottom: 18%;
    left: 16%;
    width: 105px;
  }
}
