.split > div {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split .image-panel {
  padding: 0;
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.image-panel:hover img {
  transform: scale(1.025);
}

@media (max-width: 950px) {
  .split > div,
  .image-panel img {
    min-height: 340px;
  }
}

.legal-page {
  max-width: 900px;
  margin: 36px auto 0;
  padding: clamp(34px, 6vw, 76px);
  background: #fff;
  border-top: 4px solid var(--gold);
  box-shadow: 0 22px 65px #0e251b12;
}

.legal-page h1 {
  color: var(--green);
  margin-bottom: 20px;
}

.legal-page h2 {
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 750;
  line-height: 1.35;
  margin: 42px 0 10px;
  color: var(--green);
}

.legal-page p,
.legal-page address {
  color: var(--muted);
  font-style: normal;
}

.legal-page a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page .legal-lead {
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 720px;
}

.legal-page .legal-updated {
  margin-top: 52px;
  padding-top: 18px;
  border-top: 1px solid #ded9cd;
  font-size: .9rem;
}
