@charset "UTF-8";

/* ========================================
HERO SLIDESHOW (fade)
======================================== */

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slideshow.is-loaded {
  opacity: 1;
}

.hero-slideshow img {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slideshow img.is-active {
  opacity: 1;
}


/* ========================================
PEEK CAROUSEL (arrow slideshow)
======================================== */

.peek-slideshow {
  padding: 0;
  margin-bottom: 80px;
}

.peek-area {
  position: relative;
  width: 100%;
}

.peek-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 1;
  z-index: 10;
}

.peek-btn:hover {
  opacity: 1;
}

.peek-btn[disabled] {
  opacity: 0.15;
  cursor: default;
}

.peek-btn img {
  width: 30px;
  height: auto;
  display: block;
}

.peek-btn--prev {
  left: 0;
}

.peek-btn--next {
  right: 0;
}

.peek-btn--prev img {
  transform: scaleX(-1);
}

.peek-viewport {
  width: 100%;
  overflow: hidden;
  height: 70vh;
  min-height: 600px;
  max-height: 800px;
}

.peek-track {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 20px;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}

.peek-slide {
  flex: 0 0 auto;
  height: 100%;
  position: relative;
}

.peek-slide img {
  height: 100%;
  width: auto;
  display: block;
}

.peek-slide-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.6rem;
  color: #fff;
  line-height: 1.1;
  pointer-events: none;
  letter-spacing: 0.001em;
}

.peek-caption-outer {
  overflow: hidden;
  margin-top: 7px;
}

.peek-caption-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}

.peek-slide-caption {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: #909090;
}

.peek-current-caption {
  margin: 7px 0 0;
  font-size: 0.75rem;
  color: #909090;
  text-align: center;
}