/*!**************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/@wordpress/scripts/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/gallery/style.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * Gallery Block Frontend Styles
 *
 * Styles for the gallery block on the frontend.
 *
 * @package RecyclingIndustry
 */
/**
 * SCSS Variables
 *
 * WordPress design tokens mapped to SCSS variables
 * All values come from theme.json and can be used in SCSS
 *
 * @package RecyclingIndustry
 */
/* ==========================================================================
   Colors
   ========================================================================== */
/* ==========================================================================
   Typography
   ========================================================================== */
/* ==========================================================================
   Spacing
   ========================================================================== */
/* ==========================================================================
   Breakpoints
   ========================================================================== */
/* ==========================================================================
   Layout
   ========================================================================== */
/* ==========================================================================
   Border Radius
   ========================================================================== */
/* ==========================================================================
   Transitions
   ========================================================================== */
/* ==========================================================================
   Z-index Scale
   ========================================================================== */
/* ==========================================================================
   CSS Custom Properties (Global Variables)
   ========================================================================== */
:root {
  /* Typography */
  --ri-line-height-small: 1.4;
  --ri-line-height-medium: 1.5;
  --ri-line-height-large: 1.6;
  --ri-font-weight-thin: 100;
  --ri-font-weight-extra-light: 200;
  --ri-font-weight-light: 300;
  --ri-font-weight-regular: 400;
  --ri-font-weight-medium: 500;
  --ri-font-weight-semi-bold: 600;
  --ri-font-weight-bold: 700;
  --ri-font-weight-black: 800;
  /* Breakpoints */
  --ri-breakpoint-mobile: 350px;
  --ri-breakpoint-tablet: 600px;
  --ri-breakpoint-desktop: 782px;
  --ri-breakpoint-large: 1200px;
  --ri-breakpoint-wide: 1600px;
  /* Border Radius */
  --ri-border-radius-small: 0.625em;
  --ri-border-radius-medium: 1.2em;
  --ri-border-radius-large: 1.8em;
  --ri-border-radius-x-large: 2.2rem;
  /* Transitions */
  --ri-transition-fast: 0.2s ease;
  --ri-transition-medium: 0.3s ease;
  --ri-transition-slow: 0.5s ease-in-out;
  /* Z-index Scale */
  --ri-z-index-base: 1;
  --ri-z-index-dropdown: 100;
  --ri-z-index-sticky: 200;
  --ri-z-index-fixed: 300;
  --ri-z-index-modal-backdrop: 400;
  --ri-z-index-modal: 500;
  --ri-z-index-popover: 600;
  --ri-z-index-tooltip: 700;
}
@media (max-width: 599px) {
  :root {
    --wp--preset--spacing--20: 0.34rem;
    --wp--preset--spacing--30: 0.57rem;
    --wp--preset--spacing--40: 0.8rem;
    --wp--preset--spacing--50: 1.2rem;
    --wp--preset--spacing--60: 2rem;
    --wp--preset--spacing--70: 2.5rem;
    --wp--preset--spacing--80: 3rem;
  }
}
.ri-gallery {
  --ri-gallery-columns: 3;
  --ri-gallery-rows: 5;
  --ri-gallery-gap: 16px;
  --ri-gallery-img-border-radius: 0;
  --ri-gallery-aspect-ratio: 1;
  --ri-gallery-margin: 0 0 0 0;
  --ri-gallery-padding: 0 0 0 0;
  --gap: clamp(calc(var(--ri-gallery-gap, 16px) - 6px), 2vw, var(--ri-gallery-gap, 16px));
  margin: var(--ri-gallery-margin, 0);
  padding: var(--ri-gallery-padding, 0);
}
.ri-gallery__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--ri-gallery-img-border-radius, 0);
  margin: 0;
  cursor: pointer;
}
.ri-gallery__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.ri-gallery__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ri-gallery__type--simple .ri-gallery__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(var(--ri-gallery-columns, 3), 1fr);
  gap: var(--gap, 16px);
}
.ri-gallery__type--simple .ri-gallery__image-wrapper {
  aspect-ratio: var(--ri-gallery-aspect-ratio, 1);
}
.ri-gallery__type--custom {
  gap: var(--gap);
  justify-self: center;
  align-self: center;
  margin: auto 0;
  display: grid;
  grid-template-columns: 2.8fr 1fr;
  aspect-ratio: var(--ri-gallery-aspect-ratio);
}
@media (max-width: 599px) {
  .ri-gallery__type--custom {
    grid-template-columns: 1fr;
    grid-template-rows: 2.8fr 1fr;
    aspect-ratio: 16/12;
  }
}
.ri-gallery__type--custom .ri-gallery__preview {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: black;
  position: relative;
}
.ri-gallery__type--custom .ri-gallery__preview .ri-gallery__image-wrapper {
  width: 100%;
  height: 100%;
}
.ri-gallery__type--custom .ri-gallery__preview .ri-gallery__image-wrapper > * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.ri-gallery__type--custom .ri-gallery__thumbnails {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: inherit;
  overflow-y: auto;
}
.ri-gallery__type--custom .ri-gallery__thumbnails .ri-gallery__image-wrapper > * {
  -o-object-fit: cover;
     object-fit: cover;
}
.ri-gallery__type--custom .ri-gallery__thumbnails::-webkit-scrollbar {
  display: none;
}
.ri-gallery__type--custom .ri-gallery__thumbnails .ri-gallery__image-wrapper {
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.2s ease-in-out;
}
.ri-gallery__type--custom .ri-gallery__thumbnails .ri-gallery__image-wrapper:hover {
  opacity: 1;
}
.ri-gallery__type--custom .ri-gallery__thumbnails .ri-gallery__image-wrapper.is-active {
  opacity: 1;
}
@media (max-width: 599px) {
  .ri-gallery__type--custom .ri-gallery__thumbnails {
    flex-direction: row;
  }
}
.ri-gallery__type--custom .ri-gallery__thumbnails .ri-gallery__image-wrapper {
  flex: 1 0 calc((100% - (var(--ri-gallery-rows) - 1) * var(--gap)) / var(--ri-gallery-rows));
  width: 100%;
}
.ri-gallery .play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: transparent;
}
.ri-gallery .play-button__play-icon {
  position: relative;
  display: block;
  width: 60px;
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.ri-gallery .play-button__play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #fff;
}
.ri-gallery .play-button__play-icon--youtube {
  background-color: #ff0000;
  border-radius: 12px;
}
.ri-gallery .play-button__play-icon--youtube:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}
.ri-gallery .play-button__play-icon--video {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #fff;
  border-radius: 50%;
  backdrop-filter: blur(4px);
}
.ri-gallery .play-button__play-icon--video::after {
  left: 55%;
}
.ri-gallery .play-button__play-icon--video:hover {
  background-color: #007bff;
  border-color: #007bff;
}
.ri-gallery-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
}
.ri-gallery-loader-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #f0f0f0;
  border-top-color: #2271b1;
  border-radius: 50%;
  animation: ri-gallery-spinner 0.8s linear infinite;
}
@keyframes ri-gallery-spinner {
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=style-index.css.map*/