/* 애니메이션 정의 */
@-webkit-keyframes spinAround {
  from { -webkit-transform: rotate(0); transform: rotate(0); }
  to { -webkit-transform: rotate(359deg); transform: rotate(359deg); }
}
@keyframes spinAround {
  from { -webkit-transform: rotate(0); transform: rotate(0); }
  to { -webkit-transform: rotate(359deg); transform: rotate(359deg); }
}

/* 슬라이더 기본 스타일 */
.slider {
  position: relative;
  width: 100%;
}

.slider-container {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  overflow: hidden;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  min-height: 100%;
  
  &.is-vertical { flex-direction: column; }
  
  .slider-item {
    flex: none;
    
    .image.is-covered img {
      -o-object-fit: cover;
      object-fit: cover;
      -o-object-position: center center;
      object-position: center center;
      height: 100%;
      width: 100%;
    }
    
    .video-container {
      height: 0;
      padding-bottom: 0;
      padding-top: 56.25%;
      margin: 0;
      position: relative;
      
      &.is-1by1, &.is-square { padding-top: 100%; }
      &.is-4by3 { padding-top: 75%; }
      &.is-21by9 { padding-top: 42.857143%; }
      
      embed, iframe, object {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
      }
    }
  }
}

/* 네비게이션 버튼 스타일 */
.slider-navigation-next, .slider-navigation-previous {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 42px;
  height: 42px;
  background: #fff center center no-repeat;
  background-size: 20px 20px;
  border: 1px solid #fff;
  border-radius: 25091983px;
  box-shadow: 0 2px 5px #3232321a;
  top: 50%;
  margin-top: -20px;
  left: 0;
  cursor: pointer;
  transition: opacity .3s, transform .3s, -webkit-transform .3s;
  
  &:hover { transform: scale(1.2); }
  
  &.is-hidden { display: none; opacity: 0; }
  
  svg { width: 25%; }
}

.slider-navigation-next {
  left: auto;
  right: 0;
}

/* 페이지네이션 스타일 */
.slider-pagination {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .5rem 1rem;
  text-align: center;
  
  .slider-page {
    background: #fff;
    width: 10px;
    height: 10px;
    border-radius: 25091983px;
    display: inline-block;
    margin: 0 3px;
    box-shadow: 0 2px 5px #3232321a;
    transition: transform .3s, -webkit-transform .3s;
    cursor: pointer;
    
    &.is-active, &:hover { transform: scale(1.4); }
  }
  
  @media screen and (min-width: 800px) {
    display: flex;
  }
}

/* Hero 컴포넌트 내부 캐러셀 스타일 */
.hero.has-carousel {
  position: relative;
  
  & + .hero-body, & + .hero-footer, & + .hero-head {
    z-index: 10;
    overflow: hidden;
  }
  
  .hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto;
    border: none;
    margin: auto;
    padding: 0;
    z-index: 0;
    
    .slider {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      height: 100% !important;
      max-height: 100%;
      z-index: 0;
      
      .has-background {
        max-height: 100%;
        
        .is-background {
          -o-object-fit: cover;
          object-fit: cover;
          -o-object-position: center center;
          object-position: center center;
          height: 100%;
          width: 100%;
        }
      }
    }
  }
  
  .hero-body {
    margin: 0 3rem;
    z-index: 10;
  }
}