.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.hero-image {
  padding: 20px;
}

.hero-image img {
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow:0px 2px 4px rgba(0, 0, 0, 0.5);
  /*box-shadow:
	0 0 0 2px rgba(125, 211, 252, 0.4),
	0 0 30px rgba(99, 102, 241, 0.5);*/
}

.hero-text {
  padding: 20px;
}

.hero-text h2 {
  margin-bottom: 18px;
  color: #7dd3fc;
}

.hero-text p {
  margin-bottom: 1.0em;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-layout {
	grid-template-columns: 1fr;
  }

  .hero-image {
	max-width: 420px;
	margin: 0 auto;
  }
}