/*!***************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../../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/latest-posts-slider/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * The following styles get applied both on the front of your site
 * and in the editor.
 *
 * Replace them with your own styles or remove the file completely.
 */
/**
 * Breakpoints & Media Queries
 */
/**
*  Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
 * Long content fade mixin
 *
 * Creates a fading overlay to signify that the content is longer
 * than the space allows.
 */
/**
 * Breakpoint mixins
 */
/**
 * Focus styles.
 */
/**
 * Applies editor left position to the selector passed as argument
 */
/**
 * Styles that are reused verbatim in a few places
 */
/**
 * Allows users to opt-out of animations via OS-level preferences.
 */
/**
 * Reset default styles for JavaScript UI based pages.
 * This is a WP-admin agnostic reset
 */
/**
 * Reset the WP Admin page styles for Gutenberg-like pages.
 */
.em-block-latest-posts-slider {
  /**
   * Hide the block if it has no posts.
   */
}
.em-block-latest-posts-slider, .em-block-latest-posts-slider__editor {
  --opacity-disabled: 0.25;
  --opacity-hover: 0.75;
  --slide-transition-duration: 0.5s;
  --slide-transition-timing-function: $ease-out-expo;
  --dot-color: #000;
  --control-transition-duration: 0.25s;
  --control-transition-timing-function: $ease-out-expo;
  --slider-offset: calc(
  	(100% - var(--align-default)) / 2 + var(--gutter)
  );
  position: relative;
}
.em-block-latest-posts-slider.show-overflow {
  max-width: unset;
  overflow: hidden;
  margin-right: calc(var(--gutter) * -1);
  margin-left: calc(var(--gutter) * -1);
  padding-left: clamp(var(--gutter), 50vw, var(--slider-offset));
  padding-right: clamp(var(--gutter), 50vw, var(--slider-offset));
}
.em-block-latest-posts-slider__slider {
  /**
   * Combat CLS by providing sane placeholder styles
   * while the slider is being created.
   */
  /**
   * Make the slider and slides freely overflow to create
   * a "full width" look for the slider.
   *
   * You can comment these out if the default
   * "boxed inside container" look is enough.
   */
}
.em-block-latest-posts-slider__slider:not(.is-created) {
  display: flex;
  gap: 15px;
}
@media (min-width: 960px) {
  .em-block-latest-posts-slider__slider:not(.is-created) {
    gap: 30px;
  }
}
.em-block-latest-posts-slider__slider:not(.is-created) > * {
  min-width: calc(100% - 0px);
  max-width: calc(100% - 0px);
}
@media (min-width: 600px) {
  .em-block-latest-posts-slider__slider:not(.is-created) > * {
    min-width: calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
  }
}
@media (min-width: 960px) {
  .em-block-latest-posts-slider__slider:not(.is-created) > * {
    min-width: calc(33.3333% - 20px);
    max-width: calc(33.3333% - 20px);
  }
}
.show-overflow .em-block-latest-posts-slider__slider, .show-overflow .em-block-latest-posts-slider__slider.keen-slider,
.show-overflow .em-block-latest-posts-slider__slider > * {
  overflow: visible;
  max-width: unset;
}
.show-overflow .em-block-latest-posts-slider__slider > * {
  opacity: var(--opacity-disabled);
  transition-property: opacity;
  transition-duration: var(--slide-transition-duration);
  transition-timing-function: var(--slide-transition-timing-function);
}
.show-overflow .em-block-latest-posts-slider__slider > *.is-active {
  opacity: 1;
}
.em-block-latest-posts-slider__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  min-height: 3.4375rem;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.em-block-latest-posts-slider__footer .button--outline {
  border-color: var(--color-gray-700);
}
.em-block-latest-posts-slider__controls {
  position: relative;
  margin-top: 1rem;
  height: 6rem;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.em-block-latest-posts-slider__arrows {
  font-size: 0;
  margin-left: auto;
}
.em-block-latest-posts-slider__arrows__prev, .em-block-latest-posts-slider__arrows__next {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: none;
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  transition-property: opacity;
  transition-duration: var(--control-transition-duration);
  transition-timing-function: var(--control-transition-timing-function);
}
.em-block-latest-posts-slider__arrows__prev:hover, .em-block-latest-posts-slider__arrows__next:hover {
  opacity: var(--opacity-hover);
}
.em-block-latest-posts-slider__arrows__prev[disabled], .em-block-latest-posts-slider__arrows__next[disabled] {
  opacity: var(--opacity-disabled);
}
.em-block-latest-posts-slider__arrows__prev {
  margin-right: 5px !important;
  background-image: url(arrow-left.444f4f8d.png);
}
.em-block-latest-posts-slider__arrows__next {
  background-image: url(arrow-right.1a2a2b7f.png);
}
.em-block-latest-posts-slider__dots {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-flow: row wrap;
  color: var(--dot-color);
}
@media (min-width: 600px) {
  .em-block-latest-posts-slider__dots {
    top: 50%;
  }
}
.em-block-latest-posts-slider__dots button,
.em-block-latest-posts-slider__dots span {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  background-color: currentColor;
  border-radius: 50%;
  margin: 3px;
  cursor: pointer;
  transition-property: opacity;
  transition-duration: var(--control-transition-duration);
  transition-timing-function: var(--control-transition-timing-function);
}
.em-block-latest-posts-slider__dots button:not(.is-active),
.em-block-latest-posts-slider__dots span:not(.is-active) {
  opacity: var(--opacity-disabled);
}
.em-block-latest-posts-slider:not(.has-posts) {
  display: none;
}

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