.operations {
  background:
    radial-gradient(circle at 82% 15%, rgba(142, 182, 208, 0.13), transparent 32%),
    var(--deep);
  color: #fff;
  display: grid;
  grid-template-columns: 20% minmax(270px, 0.72fr) minmax(430px, 1.28fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  overflow: hidden;
}

.operations-copy {
  grid-column: 2;
  max-width: 480px;
}

.operations h2 {
  font-size: clamp(42px, 5vw, 71px);
  font-weight: 300;
}

.operations h2 em {
  color: #a9cbe0;
}

.operations-copy > p:last-child {
  color: #9cafbb;
  max-width: 440px;
  font-size: 15px;
  line-height: 1.8;
}

.operations-media {
  grid-column: 3;
  margin: 0;
  position: relative;
  background: #020b20;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.operations-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.operations-media video {
  width: 100%;
  aspect-ratio: 20 / 11;
  object-fit: cover;
  background: #020b20;
}

.operations-media figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  color: #e5edf2;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.operations-media figcaption span {
  font: 600 12px var(--font-display);
}

.operations-media figcaption small {
  color: #8fa7b6;
  font: 500 8px var(--font-body);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

@media (width <= 900px) {
  .operations {
    display: block;
  }

  .operations-copy {
    max-width: 650px;
    margin-bottom: 46px;
  }

  .operations-media {
    max-width: 820px;
  }
}

@media (width <= 600px) {
  .hero {
    min-height: 930px;
    padding-bottom: 350px;
  }

  .operations-copy {
    margin-bottom: 32px;
  }

  .operations-media figcaption {
    padding: 13px 14px;
  }

  .operations-media figcaption small {
    letter-spacing: 0.12em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .operations-media video {
    animation: none;
  }
}
