/* Homepage-specific: hero photo + operator card photos */

.hero {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(100deg, rgba(4,12,20,0.92) 0%, rgba(4,12,20,0.72) 32%, rgba(4,12,20,0.32) 58%, rgba(4,12,20,0.15) 100%),
    linear-gradient(0deg, rgba(4,12,20,0.55) 0%, rgba(4,12,20,0) 30%),
    url("../images/dramatic-arctic-landscape-with-massive-glaciers-calving-into-icy-waters-polar-bear-hunting_868783-113283.avif");
  background-size: cover;
  background-position: center 60%;
}
.hero .container { position: relative; z-index: 1; }

/* Operator card art: real expedition-scenery photography (not operator-owned marketing photos) */
.operator-card__image {
  position: relative;
  isolation: isolate;
}
.operator-card__art {
  width: 100%;
  aspect-ratio: 820 / 320;
  display: block;
  background-size: cover;
  background-position: center 55%;
}
.operator-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,12,20,0) 30%, rgba(4,12,20,0.55) 62%, rgba(4,12,20,0.92) 100%);
  z-index: 1;
}
.operator-card__caption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0.9rem;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.operator-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 2px 10px rgba(0,0,0,0.7);
}
.operator-card__ship {
  font-size: 0.84rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 2px 8px rgba(0,0,0,0.7);
}
