/******* Do not edit this file *******
Code Snippets Manager
Saved: Mar 31 2026 | 23:26:39 */
@charset "UTF-8";
.pressListing {
  border: solid 10px #fff;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
/* Lift the whole container on hover */
.pressListing:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  /* optional, more “lifted” feel */
}
.pressListing h3 {
  line-height: 1.25em;
  margin: 0px;
}
/* Recognition & Awards */
.recognitionBlock {
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.16);
}
/* Swiper Container Styling */
#testimonialSwiper.swiper-container-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 20px auto;
  background: var(--primary-bg);
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
#testimonialSwiper .swiper {
  width: 100%;
  height: auto;
}
#testimonialSwiper .swiper-slide {
  display: flex;
  flex-direction: row;
  height: auto;
  /*min-height: 650px;*/
  background: #ffffff;
  align-items: stretch;
}
/* Content Section */
#testimonialSwiper .slide-content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
}
#testimonialSwiper .slide-subtitle {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 20px;
}
#testimonialSwiper .slide-title {
  margin-bottom: 25px;
  text-wrap: balance;
}
#testimonialSwiper .slide-description {
  margin-bottom: 30px;
  position: relative;
  text-wrap: pretty;
}
#testimonialSwiper .slide-byline {
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-size: var(--e-global-typography-accent-font-size);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  color: var(--e-global-color-secondary);
}
/* Image Section */
#testimonialSwiper .slide-image-wrapper {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f0f0f0;
  /* Swiper 8 lazy transition */
  opacity: 0;
  transition: opacity 1s ease, transform 1.2s ease-out;
  transform: scale(1.05);
}
#testimonialSwiper .swiper-image-wrapper-inner-border {
  display: block;
  top: 2em;
  right: 2em;
  bottom: 2em;
  left: 2em;
  border: solid 1px #ffffff;
  position: absolute;
}
/* Swiper 8 native lazy-loaded class */
#testimonialSwiper .swiper-lazy-loaded {
  opacity: 1;
  transform: scale(1);
}
/* Navigation Controls */
#testimonialSwiper .slider-controls {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: flex;
  background: #ffffff;
  padding: 15px 25px;
}
#testimonialSwiper .nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
#testimonialSwiper .nav-btn:hover {
  opacity: 0.5;
}
#testimonialSwiper .nav-divider {
  width: 1px;
  height: 20px;
  background-color: #dddddd;
  margin: 0 5px;
}
#testimonialSwiper .nav-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--e-global-color-primary);
}
/* Mobile Adjustments */
@media screen and (min-width: 992px) {
  #testimonialSwiper .slide-content {
    justify-content: center;
  }
}
@media (max-width: 991px) {
  #testimonialSwiper .swiper-slide {
    flex-direction: column;
  }
  #testimonialSwiper .slide-image-wrapper {
    height: 350px;
    order: 1;
    flex: none;
    width: 100%;
  }
  #testimonialSwiper .slide-content {
    order: 2;
    padding: 40px 30px 60px 30px;
    justify-content: start;
  }
  #testimonialSwiper .slider-controls {
    top: auto;
    bottom: calc(100% - 350px);
  }
}
@media (max-width: 767px) {
  #testimonialSwiper .slide-description {
    overflow: hidden;
    display: -webkit-box;
    /* Required for -webkit-line-clamp to work */
    -webkit-box-orient: vertical;
    /* Stacks the text vertically */
    -webkit-line-clamp: 4;
    /* Specifies the number of lines to display */
    text-overflow: ellipsis;
  }
}
@media (max-width: 480px) {
  #testimonialSwiper .slide-image-wrapper {
    height: 250px;
  }
  #testimonialSwiper .slider-controls {
    bottom: calc(100% - 250px);
  }
}
/* Text Animations */
#testimonialSwiper .swiper-slide-active .slide-title {
  animation: fadeInUp 0.8s both 0.2s;
}
#testimonialSwiper .swiper-slide-active .slide-description {
  animation: fadeInUp 0.8s both 0.4s;
}
#testimonialSwiper .swiper-slide-active .slide-byline {
  animation: fadeInUp 0.8s both 0.6s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
