
/*!****************************************************************!*\
  !*** ../src/elements/revealable-images/revealable-images.scss ***!
  \****************************************************************/
.revealable-images .revealable-images-grid {
  --cols-xs: 12;
  --cols-s: 6;
}
.revealable-images .revealable-images-grid:has(> *:nth-child(5)) {
  --cols-xl: 4;
}

.revealable-image {
  --gradient-start: 0rem;
  --gradient-stop: 6rem;
  min-height: 240px;
}
@media (min-width: 540px) {
  .revealable-image {
    min-height: 330px;
  }
}
@media (min-width: 768px) {
  .revealable-image {
    min-height: 350px;
  }
}
@media (min-width: 992px) {
  .revealable-image {
    min-height: 380px;
  }
}
@media (min-width: 1200px) {
  .revealable-image {
    min-height: 400px;
  }
}
@media (min-width: 1400px) {
  .revealable-image {
    min-height: 460px;
  }
}
.revealable-images.banner .revealable-image {
  min-height: 200px;
}
@media (min-width: 540px) {
  .revealable-images.banner .revealable-image {
    min-height: 220px;
  }
}
@media (min-width: 768px) {
  .revealable-images.banner .revealable-image {
    min-height: 240px;
  }
}
@media (min-width: 992px) {
  .revealable-images.banner .revealable-image {
    min-height: 280px;
  }
}
@media (min-width: 1200px) {
  .revealable-images.banner .revealable-image {
    min-height: 320px;
  }
}
@media (min-width: 1400px) {
  .revealable-images.banner .revealable-image {
    min-height: 260px;
  }
}
@media (min-width: 1600px) {
  .revealable-images.banner .revealable-image {
    min-height: 300px;
  }
}
@media (min-width: 1900px) {
  .revealable-images.banner .revealable-image {
    min-height: 340px;
  }
}

.revealable-images.large-text .revealable-image {
  --gradient-start: 3rem;
  --gradient-stop: calc(50% - 3rem);
}
.revealable-images.large-text .revealable-image .revealable-image-title h4 {
  font-size: 24px;
  line-height: 1.175;
  font-weight: 500;
}
@media (min-width: 540px) {
  .revealable-images.large-text .revealable-image .revealable-image-title h4 {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .revealable-images.large-text .revealable-image .revealable-image-title h4 {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .revealable-images.large-text .revealable-image .revealable-image-title h4 {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  .revealable-images.large-text .revealable-image .revealable-image-title h4 {
    font-size: 32px;
  }
}

.revealable-images:not(.large-text) .revealable-image .revealable-image-title h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}

.revealable-image {
  position: relative;
  background-image: var(--background-image);
  background-size: cover;
  background-position: center;
  display: flex;
}
@media (min-resolution: 2dppx) {
  .revealable-image {
    background-image: var(--background-image-2x);
  }
}
.revealable-image .reveal-excerpt {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 30px;
  color: var(--color-white);
}
.revealable-image .reveal-excerpt.enabled .revealable-image-title {
  margin-top: 0;
}
@media (max-width: 991px) and (hover: none), (max-width: 991px) and (pointer: coarse) {
  .revealable-image .reveal-excerpt.enabled .reveal-content {
    margin-bottom: -1rem;
  }
}
.revealable-image .reveal-excerpt.enabled .reveal-title-row {
  align-items: flex-end;
}
@media (min-width: 768px) {
  .revealable-image .reveal-excerpt {
    padding: 40px;
  }
}
.revealable-image .reveal-excerpt {
  --background-color-rgb: 0 0 0;
  --background-opacity: 65%;
}
.revealable-image .reveal-excerpt::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 200%;
  background-image: linear-gradient(to top, rgb(var(--background-color-rgb)/var(--background-opacity)) calc(50% + var(--gradient-start)), rgb(var(--background-color-rgb)/0%) calc(50% + var(--gradient-stop)));
}
body:not(.not-initialized) .revealable-image .reveal-excerpt::after {
  transition: transform var(--animation-speed);
}

body.no-js .revealable-image .reveal-excerpt::after {
  transform: translateY(calc(-1 * var(--excerpt-height)));
}

@media (hover: hover) and (pointer: fine) {
  .revealable-image .reveal-excerpt:hover::after {
    transform: translateY(calc(-1 * var(--excerpt-height)));
  }
}
@media (hover: none), (pointer: coarse) {
  .revealable-image .reveal-excerpt.force-reveal::after {
    transform: translateY(calc(-1 * var(--excerpt-height)));
  }
}
.revealable-image .reveal-excerpt {
  height: 100%;
}
.revealable-image .reveal-content {
  z-index: 1;
}
.revealable-image .revealable-image-title {
  margin-top: 0.5rem;
}
.revealable-image .revealable-image-content {
  padding-top: 1rem;
}
.revealable-image .revealable-image-category {
  font-size: var(--small-font-size);
  font-weight: bold;
}

.revealable-images-overlay {
  background-color: rgba(220, 220, 220, 0.95);
  position: fixed;
  z-index: 100;
  left: 0;
  top: var(--admin-bar-height, 0);
  bottom: 0;
  width: 100%;
  user-select: none;
}
.revealable-images-overlay .content {
  text-align: center;
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIiB4bWw6c3BhY2U9InByZXNlcnZlIj48cGF0aCBmaWxsPSIjMjMzODgxIiBkPSJNNzMgNTBjMC0xMi43LTEwLjMtMjMtMjMtMjNTMjcgMzcuMyAyNyA1MG0zLjkgMGMwLTEwLjUgOC41LTE5LjEgMTkuMS0xOS4xUzY5LjEgMzkuNSA2OS4xIDUwIj48YW5pbWF0ZVRyYW5zZm9ybSBhdHRyaWJ1dGVOYW1lPSJ0cmFuc2Zvcm0iIGF0dHJpYnV0ZVR5cGU9IlhNTCIgdHlwZT0icm90YXRlIiBkdXI9IjFzIiBmcm9tPSIwIDUwIDUwIiB0bz0iMzYwIDUwIDUwIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIvPjwvcGF0aD48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100px 100px;
}
.revealable-images-overlay .content img {
  --padding: 40px;
  --additional-padding-bottom: 0px;
  animation: gallery-image-reveal linear 0.3s;
  border: 5px solid #fff;
  max-height: calc(100% - var(--padding) - var(--additional-padding-bottom) - var(--admin-bar-height));
  max-width: calc(100% - var(--padding));
  margin-top: calc(-1 * var(--admin-bar-height) - var(--additional-padding-bottom));
  width: auto;
  height: auto;
  flex-shrink: 0;
  flex-grow: 0;
  transition: opacity 200ms;
}
.revealable-images-overlay .content img.with-caption {
  --additional-padding-bottom: 24px;
}

.revealable-images-control {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  font: inherit;
  line-height: 1;
  letter-spacing: inherit;
  word-spacing: inherit;
  white-space: nowrap;
  background: none;
  color: inherit;
  text-align: left;
  background-color: #efefef;
  position: absolute;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  transition: background-color ease 200ms;
  color: #233881;
}
.revealable-images-control:disabled {
  background-color: #E1E2E0;
  color: rgb(186.75, 189.025, 184.475);
  cursor: default;
}
.revealable-images-control:not(:disabled):hover {
  background-color: rgb(251.75, 251.75, 251.75);
}
.revealable-images-control:not(:disabled):active {
  background-color: rgb(226.25, 226.25, 226.25);
}
.revealable-images-control svg {
  width: calc(100% - 1.4em);
  height: auto;
}
.revealable-images-control.control-close {
  right: 1rem;
  top: 1rem;
}

/*# sourceMappingURL=css-wpce--revealable-images.css.map*/