.hero-shot {
  width: auto;
  max-width: min(76%, 430px);
  max-height: 620px;
  border-radius: 34px;
  filter: drop-shadow(0 32px 42px rgba(0, 0, 0, .34));
}

.records-shot {
  max-height: 500px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.security-card {
  grid-template-columns: minmax(220px, 270px) 1fr 1fr;
}

.security-shot {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  object-position: top;
  padding: 0;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 24px 54px rgba(23, 38, 58, .16);
}

@media (max-width: 1050px) {
  .security-card {
    grid-template-columns: minmax(190px, 230px) 1fr;
  }

  .security-shot {
    grid-row: 1 / 3;
  }

  .security-points {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .hero-shot {
    max-width: min(82%, 360px);
    max-height: 600px;
  }

  .security-card {
    grid-template-columns: 1fr;
  }

  .security-shot {
    width: min(100%, 300px);
    max-height: none;
    grid-row: auto;
    justify-self: center;
  }

  .security-points {
    grid-column: auto;
  }
}
