.page-fields > * {
  margin-bottom: 3rem;
}

.page-fields .field--type-image {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.page-fields .field--type-image .field__item {
  height: 100%;
  max-width: calc(25% - 1.125rem);
}
@media (max-width: 991.98px) {
  .page-fields .field--type-image .field__item {
    max-width: calc(50% - 0.75rem);
  }
}
.page-fields .field--type-image .field__item img {
  border-radius: 15px;
  transition: all 0.3s ease;
}
.page-fields .field--type-image .field__item img:hover {
  box-shadow: 0px 0px 10px grey;
}
