/* ==========================================================================
   Slider.
   ========================================================================== */
.slider {
  position: relative;
  margin-bottom: var(--space-xl);
}

/* ==========================================================================
   Pager.
   ========================================================================== */
.splide__pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  z-index: 5;
  left: 0;
  right: var(--gutter-m);
  bottom: var(--space-xl);
  margin: 0;

  button {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .5);
    box-sizing: border-box;
    transform: scale(1);
    transition: .2s;
    opacity: 1;

    &.is-active {
      cursor: default;
      transform: inherit;
    }

    &.is-active,
    &:not(.is-active):focus,
    &:not(.is-active):hover {
      opacity: 1;
      background-color: var(--color-fg-primary);
    }
  }
}

/* ==========================================================================
   Homepage.
   ========================================================================== */
.slider--primary {
  /* Responsive.
     ========================================================================== */
  @media screen and (max-width: 80em) {
    margin-bottom: 0;
  }
}
