.hero {
  background: var(--black);
}

.hero-comparison {
  width: min(100%, 580px);
  max-width: 580px;
  height: 570px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: center;
}

.hero-comparison::before {
  display: none;
}

.hero-comparison figure {
  position: relative;
  margin: 0;
  height: 510px;
  border-radius: 150px 150px 22px 22px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.hero-comparison .after-card {
  transform: translateY(28px);
  border-color: var(--green);
}

.hero-comparison img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.hero-comparison .before-card img {
  object-position: 57% center;
}

.hero-comparison .after-card img {
  object-position: center;
}

.hero-comparison figcaption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(8, 11, 9, 0.88);
  color: white;
  font: 800 12px "DM Sans", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-comparison .after-card figcaption {
  background: var(--green);
  color: #061107;
}

@media (max-width: 620px) {
  .hero-comparison {
    height: 475px;
    gap: 9px;
  }

  .hero-comparison figure {
    height: 430px;
    border-radius: 100px 100px 18px 18px;
  }

  .hero-comparison .after-card {
    transform: translateY(18px);
  }
}
