.hero aside {
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transition: transform 0.35s ease;
}
.hero aside:hover .hero-photo {
  transform: scale(1.025);
}
.photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(4, 6, 7, 0.96) 90%);
}
.hero aside .big15 {
  right: 10px;
  top: 12px;
  left: auto;
  bottom: auto;
  font-size: 5rem;
  color: var(--l);
  text-shadow: 0 3px 14px #000;
}
.hero aside .od {
  position: absolute;
  left: 18px;
  bottom: 70px;
  font-size: 3.4rem;
  line-height: 0.8;
  color: var(--l);
  text-shadow: 0 3px 14px #000;
  border-bottom: 5px solid var(--l);
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo {
    transition: none;
  }
}
