.work-process {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .work-process {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2rem;
  }

  .work-process__steps {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
    row-gap: 0.85rem;
  }

  .work-process__lead {
    max-width: none;
  }
}

.work-process__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid #eaecf0;
  background: #fff;
}

@media (min-width: 640px) {
  .work-process__copy {
    padding: 2rem 2.25rem;
  }
}

.work-process__eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ff7a00;
}

.work-process__title {
  margin-top: 0.65rem;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #101828;
}

@media (min-width: 640px) {
  .work-process__title {
    font-size: 2rem;
  }
}

.work-process__lead {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475467;
  max-width: 34rem;
}

.work-process__steps {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.85rem;
}

.work-process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.work-process__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: #0b1e3a;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

.work-process__step-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #101828;
}

.work-process__step-text {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #667085;
}

.work-process__cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  border-radius: 999px;
  background: #0b1e3a;
  color: #fff;
  padding: 0.7rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.work-process__cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.work-process__visual {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid #eaecf0;
  background: #f2f4f7;
  min-height: 16rem;
}

@media (min-width: 1024px) {
  .work-process__visual {
    min-height: 0;
  }
}

.work-process__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 1024px) {
  .work-process__visual,
  .work-process__img {
    min-height: 100%;
  }
}
