.image-text__wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.image-text__image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.image-text.right .image-text__wrapper {
  flex-direction: row-reverse;
}

.image-text.left .image-text__wrapper {
  flex-direction: row;
}

@media (max-width: 768px) {
  .image-text__wrapper {
    flex-direction: column;
  }
}
