/* =========================================================================
   AJ Gallerie — compiled CSS
   ========================================================================= */

.aj-gallerie {
  --aj-gallerie-cols: 5;
  display: grid;
  grid-template-columns: repeat(var(--aj-gallerie-cols), minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.aj-gallerie *,
.aj-gallerie *::before,
.aj-gallerie *::after {
  box-sizing: border-box;
}

.aj-gallerie__item {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  background-color: #cccccc;
}

.aj-gallerie__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}
