.art-expert-hero {
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  width: min(1180px, 90vw);
  padding-top: 20px;
}

.art-expert-badge {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 8px solid var(--white);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 55px rgba(16, 24, 32, .18);
  transform: rotate(-1.2deg);
}

.art-expert-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-expert-hero h1 {
  font-size: clamp(24px, 3.5vw, 46px);
}

.art-expert-hero__copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 17.5px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .art-expert-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    width: 88vw;
    padding-top: 16px;
  }

  .art-expert-badge {
    width: min(100%, 460px);
    justify-self: center;
    border-width: 6px;
    border-radius: 22px;
  }
}
