/* VARIABLES */
/* TYPOGRAPHY */
.block-content--type-images-grid .images-grid__list {
  counter-reset: images-grid;
}
.block-content--type-images-grid .images-grid__item {
  counter-increment: images-grid;
}
.block-content--type-images-grid .images-grid-card {
  position: relative;
  isolation: isolate;
  height: 100%;
  border-radius: 2.1875rem;
  background-color: #0f0f1a;
}
.block-content--type-images-grid .images-grid-card::before, .block-content--type-images-grid .images-grid-card::after {
  position: absolute;
  pointer-events: none;
}
.block-content--type-images-grid .images-grid-card::before {
  content: "";
  inset: 0;
  z-index: 1;
  opacity: 0.95;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0) 100%);
}
.block-content--type-images-grid .images-grid-card::after {
  content: counter(images-grid, decimal-leading-zero);
  top: 5%;
  inset-inline-end: 24px;
  z-index: 3;
  color: #bb99c7;
  text-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.55);
  font-size: 4.0625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 35.99875rem) {
  .block-content--type-images-grid .images-grid-card::after {
    font-size: 2.5rem;
  }
}
.block-content--type-images-grid .images-grid-card__content {
  z-index: 2;
  color: #fff;
}
.block-content--type-images-grid .images-grid-card__title {
  color: inherit;
}
.block-content--type-images-grid .images-grid-card__description {
  color: inherit;
}
.block-content--type-images-grid .images-grid-card__description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 35.99875rem) {
  .block-content--type-images-grid .images-grid-card__description {
    font-size: 1rem;
  }
}
@media (max-width: 47.99875rem) {
  .block-content--type-images-grid .images-grid-card__content {
    padding: 1.25rem;
  }
}
