/**
 * Picture Text
 */

 .picture-text__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  margin: auto;
  justify-items: center;
}

.picture-text__content {
  background: white;
  padding: 1rem 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 380px;
  z-index: 1;
}

.picture-text__image img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media all and (min-width: 1000px) {
  .picture-text__wrapper {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
  .picture-text__image img {
    transform: translateX(-70px);
  }
}