.sh__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.sh__image {
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  background: #dde4df;
  overflow: hidden;
}

@media (min-width: 768px) {
  .sh__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.sh__image {
  background-size: cover;
  background-position: center;
  position: relative;
}

.sh__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 18, 0.15);
  mix-blend-mode: multiply;
  border-radius: 12px;
}
