/**
 * Timeline Swiper Styles
 * Custom styling for synchronized media and content sliders
 */
/* Timeline Slider Container */
.timeline-slider-container {
  position: relative;
  width: 100%;
  min-height: calc(100% + 500px);
}
@media screen and (min-width: 1400px) {
  .timeline-slider-container {
    height: 700px;
  }
}

/* Media Slider - Full width, shows 2 slides on desktop */
#media-slider {
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #media-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
#media-slider .swiper-wrapper {
  display: flex;
}
@media only screen and (min-width: 992px) {
  #media-slider .swiper-wrapper {
    height: calc(100% - 48px);
  }
}
#media-slider .swiper-slide {
  flex-shrink: 0;
  width: 50%;
  height: auto;
  position: relative;
  transition: opacity 0.3s ease;
}
#media-slider .swiper-slide.slide-opacity-low {
  opacity: 0.1;
}
#media-slider .swiper-slide.slide-opacity-full {
  opacity: 1;
}
#media-slider .swiper-slide.slide-opacity-blank, #media-slider .swiper-slide.blank-slide {
  opacity: 0;
  pointer-events: none;
}
#media-slider .blank-slide .embed-responsive {
  background-color: transparent;
}
#media-slider .swiper-pagination {
  position: static;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 5;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
#media-slider .swiper-pagination-bullet {
  width: 50px;
  height: 48px;
  background-color: transparent;
  opacity: 1;
  margin: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
#media-slider .swiper-pagination-bullet::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #00539b;
}
#media-slider .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background-color: #7abeea;
}

/* Content Slider - Overlays media slider on desktop */
#content-slider {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  width: 40%;
  height: fit-content;
  z-index: 10;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  #content-slider {
    margin-left: 5%;
  }
}
@media screen and (min-width: 1400px) {
  #content-slider {
    top: 50% !important;
    transform: translateY(-50%);
  }
}
#content-slider .swiper-wrapper {
  height: 100%;
}
#content-slider .swiper-slide {
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.5s ease;
}
#content-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
#content-slider .swiper-slide > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#content-slider h5 {
  margin-bottom: 0.5rem;
  color: black;
  font-size: 1.25rem;
}
#content-slider h3 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.75rem;
}

/* Navigation Buttons */
#content-slide-arrows {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  z-index: 20;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  #content-slide-arrows {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  #content-slide-arrows {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.new-slide-btn {
  background-color: transparent !important;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: white;
  font-size: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: relative;
}
.new-slide-btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid black;
  border-right: 2px solid black;
  display: inline-block;
}
.new-slide-btn#slide-prev::after {
  transform: rotate(-135deg);
  margin-left: 3px;
}
.new-slide-btn#slide-next::after {
  transform: rotate(45deg);
  margin-right: 3px;
}
.new-slide-btn:hover {
  background-color: #004d7a;
  transform: scale(1.1);
}
.new-slide-btn:active {
  transform: scale(0.95);
}
.new-slide-btn:disabled {
  opacity: 0 !important;
  cursor: not-allowed;
}

/* Loading and Error States */
#slide-loading,
#slide-error {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#slide-loading.hide,
#slide-error.hide {
  display: none;
}
#slide-loading.show,
#slide-error.show {
  display: flex;
}

/* Responsive: Mobile */
@media (max-width: 991px) {
  #media-slider .swiper-slide {
    width: 100%;
  }
  #content-slider {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin-top: 20px;
    box-shadow: none;
    border-radius: 0;
  }
  #content-slider .swiper-slide {
    height: auto;
    overflow-y: visible;
  }
  #content-slide-arrows {
    position: static;
    transform: none;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .new-slide-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  #media-slider .swiper-pagination {
    bottom: 10px;
  }
  #media-slider .swiper-slide.slide-opacity-low, #media-slider .swiper-slide.slide-opacity-full {
    opacity: 1;
  }
}
/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991px) {
  #content-slider h3 {
    font-size: 1.5rem;
  }
  #content-slider h5 {
    font-size: 1.125rem;
  }
}
/* Embed responsive overrides for timeline */
.timeline-slider-container .embed-responsive {
  background-color: #f0f0f0;
  height: 100%;
}
.timeline-slider-container .embed-responsive iframe {
  border: none;
}
.timeline-slider-container .blue-bg {
  background-color: #00539b;
}

#timeline-years-desktop {
  row-gap: 30px;
}
#timeline-years-desktop > .col {
  flex: 0 0 150px;
}
#timeline-years-desktop .btn[disabled] {
  background-color: #00539b;
  opacity: 1;
  cursor: not-allowed;
}

/*# sourceMappingURL=timeline.css.map */
