.hero {
  background-color: var(--white);
  overflow: hidden;
  padding-top: var(--space-xl);
}

@media (min-width: 768px) {
  .hero {
    padding-top: var(--space-2xl);
  }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    min-height: 500px;
  }
}

.hero__content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero__content {
    text-align: left;
  }
}

.hero__content .overline {
  margin-bottom: var(--space-md);
}

.hero__heading {
  color: var(--navy-dark);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero__subheading {
  font-size: var(--text-lg);
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

@media (max-width: 1023px) {
  .hero__subheading {
    margin-inline: auto;
  }
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

@media (max-width: 1023px) {
  .hero__actions {
    justify-content: center;
  }
}

.hero__media {
  display: flex;
  justify-content: center;
}

.hero__media img {
  max-height: 500px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.hero__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: var(--cream);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
}

.hero__placeholder svg {
  width: 80px;
  height: 80px;
}
