/* Keep the Entrepreneur Center image close to square and focused on Carlton, the screen, and attendees. */
.intro {
  align-items: start;
}

.intro > img {
  width: 100%;
  height: clamp(350px, 30vw, 480px);
  max-height: none;
  object-fit: cover;
  object-position: 62% center;
  background: var(--cream);
}

@media (max-width: 650px) {
  .intro > img {
    height: calc(100vw - 2.5rem);
  }
}
