.how-studio {
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: #fbf8f1;
}

.how-studio figure {
  overflow: hidden;
  isolation: isolate;
  background: #063d83;
}

.how-studio figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 35, 77, .4), transparent 47%);
  border-radius: 24% 0 0 0 / 24% 0 0 0;
  pointer-events: none;
}

.how-studio figure::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: -95px;
  bottom: 165px;
  width: 290px;
  height: 72px;
  border: 22px solid var(--yellow);
  border-left: 0;
  border-bottom: 0;
  border-radius: 100% 100% 0 0;
  transform: rotate(15deg);
  pointer-events: none;
}

.how-studio figure img {
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  border-radius: 24% 0 0 0 / 24% 0 0 0;
}

.how-studio figcaption {
  z-index: 4;
  left: 58px;
  bottom: 430px;
  padding: 0;
  background: transparent;
  color: #fff;
  font: italic 2.15rem/1.05 Georgia, serif;
  transform: rotate(-8deg);
}

.how-studio figure small {
  position: absolute;
  z-index: 4;
  left: 42px;
  bottom: 82px;
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .18em;
}

.how-content {
  position: relative;
  padding: 48px max(32px, calc((100vw - 1440px) / 2)) 44px 58px;
}

.how-content .section-code {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .28em;
}

.how-content h2 {
  margin-top: 17px;
  max-width: 590px;
  font-size: clamp(3.25rem, 4.8vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.how-content h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 8px;
  margin-top: 13px;
  background: var(--coral);
}

.how-handwriting {
  position: absolute;
  right: 42px;
  top: 62px;
  margin: 0;
  color: #aab1c6;
  font: italic 1.7rem/1.05 Georgia, serif;
  text-align: center;
  transform: rotate(-7deg);
}

.steps-road {
  margin-top: 24px;
}

.steps-road article {
  grid-template-columns: 72px 76px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 0;
  border-bottom: 1px solid #d7d8dc;
}

.steps-road article > div {
  min-height: 50px;
  padding-left: 22px;
  border-left: 1px solid #d7d8dc;
}

.steps-road article > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 1.2rem;
}

.steps-road article > i {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 3px 12px rgba(14, 26, 55, .11);
}

.steps-road article > i svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps-road article:nth-child(2) > i svg circle,
.steps-road article:nth-child(3) > i svg circle {
  fill: currentColor;
  stroke: none;
}

.steps-road b {
  font-size: 1.08rem;
}

.steps-road p {
  margin-top: 7px;
  font-size: .9rem;
}

.steps-road strong {
  color: var(--blue);
  font-size: 1.12rem;
}

.price-note {
  display: grid;
  grid-template-columns: 74px 1fr 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 12px;
  background: var(--yellow);
  min-height: 104px;
}

.price-note > i {
  display: grid;
  place-items: center;
  padding-right: 16px;
  border-right: 1px solid rgba(14, 26, 55, .25);
}

.price-note svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2.6;
}

.price-note b {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: .02em;
}

.price-note span {
  padding-left: 28px;
  border-left: 1px solid rgba(14, 26, 55, .25);
  line-height: 1.45;
}

@media (max-width: 1050px) {
  .how-handwriting {
    display: none;
  }
}

@media (max-width: 800px) {
  .how-studio {
    grid-template-columns: 1fr;
  }

  .how-studio figure {
    min-height: 520px;
  }

  .how-studio figure img {
    height: 520px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 52% center;
    border-radius: 0 0 42% 0;
  }

  .how-studio figure::before {
    border-radius: 0 0 42% 0;
  }

  .how-studio figure::after {
    left: -125px;
    bottom: 36px;
  }

  .how-studio figcaption {
    left: 26px;
    bottom: 190px;
    font-size: 1.55rem;
  }

  .how-studio figure small {
    left: 22px;
    bottom: 26px;
    font-size: .57rem;
  }

  .how-content {
    padding: 62px 20px;
  }

  .how-content h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: 1.04;
  }

  .steps-road article {
    grid-template-columns: 52px 52px 1fr;
    gap: 11px;
  }

  .steps-road article > div {
    min-height: 44px;
    padding-left: 12px;
  }

  .steps-road article > span,
  .steps-road article > i {
    width: 48px;
    height: 48px;
  }

  .steps-road article > i svg {
    width: 29px;
    height: 29px;
  }

  .steps-road b {
    font-size: .95rem;
  }

  .steps-road p {
    font-size: .78rem;
  }

  .price-note {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .price-note > i {
    grid-row: 1 / 3;
  }

  .price-note span {
    padding: 10px 0 0;
    border-top: 1px solid rgba(14, 26, 55, .25);
    border-left: 0;
  }
}
