.hero-photo-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin-inline: auto;
  filter: drop-shadow(0 20px 25px rgba(9, 43, 102, .16));
}

.hero-photo-grid::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(12, 72, 183, .13), rgba(5, 122, 67, .12));
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, .9);
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(9, 43, 102, .1);
}

@media (max-width: 980px) {
  .hero-photo-grid {
    order: -1;
    width: min(100%, 520px);
  }
}
