.at-gallery-wrapper {
  position: relative;
  /* background-color: var(--at-common-black, #1e1e1e); */
}
.at-gallery-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0) 80%,
    rgba(0, 0, 0, 0.9) 100%
  );
}
.at-gallery-item-wrapper,
.at-gallery-item {
  background-color: transparent;
}
.at-gallery-item {
  box-shadow: 0 10px 34px rgba(255, 255, 255, 0.07);
  transition: box-shadow 0.35s ease;
}
.at-gallery-item:hover {
  box-shadow: 0 14px 44px rgba(255, 255, 255, 0.2);
}
