/* =========================
   ARCHIVE SLIDER
========================= */

.archive-photo-slider {
  width: 100%;
  background: rgba(82,73,86,.6);
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.archive-photo-slider::-webkit-scrollbar {
  display: none;
}

.archive-viewport {
  margin-top: 28px;
  width: 100%;
  align-self: center;
  max-height: 500px;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  z-index: 10;
}

.archive-viewport img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000000;
}

.archive-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000;
  color: white;
  border: none;
  font-size: 2rem;
  width: 55px;
  height: 55px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive-prev {
  left: -10px;
}

.archive-next {
  right: -10px;
}

.archive-caption {
  color:#ffffff;
  text-align: center;
  font-size: 1rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  background-color: #000000;
  background-size: 200px;
}



.archive-caption h4 {
  margin-bottom: .5rem;
}

/* =========================
   ARCHIVE THUMB STRIP
========================= */
.archive-thumbs {
  padding: 1rem;
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  justify-content: flex-start;
  background-color: #000000;
}

.archive-thumb {
  width: 120px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.60;
  transition: opacity .2s ease;
  background-color: #000000;
}

.archive-thumb:hover {
  opacity: .75;
}

.archive-thumb.active {
  opacity: 1;
  border: 3px solid #ffffff;
}