.storageGallery {
  width: 100%;
  padding: 35px 20px;
  background:
    linear-gradient(rgba(0, 166, 225, 0.82), rgba(0, 166, 225, 0.82)),
    url("/assets/images/nutricos_banner/banner_03.png") center / cover no-repeat;
  border-top: 6px solid #f5d224;
}

.storageGallery .storageGallery__overlay {
  width: 100%;
}

.storageGallery .storageGallery__container {
  max-width: 1330px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 130px;
  align-items: center;
}

.storageGallery .storageGallery__item {
  width: 100%;
  height: 330px;
  overflow: hidden;
  border-radius: 22px;
}

.storageGallery .storageGallery__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.storageGallery .storageGallery__item:hover .storageGallery__image {
  transform: scale(1.04);
}

/* =========================
   Tablet
========================= */

@media (max-width: 1199.98px) {
  .storageGallery .storageGallery__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .storageGallery__item {
    height: 320px;
  }
}

/* =========================
   Mobile
========================= */

@media (min-width: 0px) and (max-width: 575.98px) {
  .storageGallery {
    padding: 25px 15px;
  }

  .storageGallery .storageGallery__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .storageGallery .storageGallery__item {
    height: 330px;
    max-width: 320px;
    margin: 0 auto;
  }
}
