/* Media slot geometry — user uploads must not drive layout (Anastacia / personal runtime). */
.hero {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.hero__copy,
.hero__visual {
  min-width: 0;
  max-width: 100%;
}

.hero__visual {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 100%;
}

.hero__visual img,
.hero__visual > img,
figure.hero__visual img,
[data-live-src="hero_main_url"] {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: var(--hero-object-position, 50% 50%);
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}
