/**
 * Testimonial Template Styles for NXT CPT Swiper
 * Designed for testimonial videos with lightbox functionality
 */
.testimonial-cta-button {
  background-color: #1a9fdf;
  border: none;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  transition: all 300ms ease;
}
.testimonial-cta-button:hover {
  background-color: #0C71C3;
  color: #fff;
}
.testimonial-cta-button:focus {
  outline: 2px dashed #0C71C3;
  outline-offset: 2px;
}
.testimonial-cta-button::after {
  display: none;
}

.testimonial-cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
}
.testimonial-cta-button:hover {
  padding: 0.5rem 1.25rem;
}

.swiper-wrapper {
  align-items: stretch;
}
.swiper-wrapper .swiper-slide {
  height: auto;
}
.swiper-wrapper .swiper-slide-testimonial {
  align-items: center;
  display: flex;
  height: 100%;
}

.swiper-slide-testimonial {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px 5px rgba(12, 113, 195, 0.2);
  height: auto;
  padding: 20px;
}

.testimonial-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.testimonial-video-wrapper {
  flex: 0 0 52%;
  position: relative;
}

.testimonial-video-thumbnail {
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.testimonial-video-thumbnail:hover {
  transform: scale(1.02);
}
.testimonial-video-thumbnail:hover .testimonial-play-overlay {
  background: rgba(0, 0, 0, 0.4);
}
.testimonial-video-thumbnail:hover .testimonial-play-button {
  transform: scale(1.1);
}

.testimonial-thumbnail-image {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.testimonial-play-button {
  transition: transform 0.3s ease;
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonial-title {
  color: #000;
  cursor: pointer;
  font-size: 1.4em;
  font-weight: 600;
  margin: 0;
  padding-bottom: 0;
  transition: color 0.3s ease;
}
.testimonial-title:hover {
  color: #0C71C3;
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  align-items: center;
}

.testimonial-star {
  display: inline-block;
  line-height: 1;
  transition: all 0.3s ease;
}
.testimonial-star svg {
  display: block;
  width: 20px;
  height: 20px;
  transition: fill 0.3s ease;
}
.testimonial-star.empty svg path {
  fill: #ddd;
}
.testimonial-star.filled svg path {
  fill: #1a9fdf;
}
.testimonial-star:hover svg path {
  fill: #0C71C3;
}

.testimonial-excerpt {
  color: #333;
  line-height: 1.5;
}

.testimonial-meta-section ul, .testimonial-content ul.testimonial-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.testimonial-meta-section ul li, .testimonial-content ul.testimonial-services-list li {
  color: #333;
  padding-left: 20px;
  position: relative;
}
.testimonial-meta-section ul li:before, .testimonial-content ul.testimonial-services-list li:before {
  color: #0C71C3;
  content: "N";
  font-family: "EtModules";
  font-weight: bold;
  left: 0;
  position: absolute;
}

.testimonial-cta-button {
  align-self: flex-start;
}

.testimonial-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-lightbox-content {
  background: white;
  border-radius: 1rem;
  max-width: 1200px;
  max-height: 90vh;
  width: 100%;
  overflow-y: auto;
  position: relative;
}

.testimonial-lightbox-header {
  position: sticky;
  top: 0;
  background: white;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  z-index: 10;
}

.testimonial-lightbox-close {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #000;
  padding: 5px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.testimonial-lightbox-close:hover {
  transform: scale(1.05);
}

.testimonial-lightbox-body {
  padding: 20px;
}

.testimonial-lightbox-video {
  margin-bottom: 30px;
  text-align: center;
}
.testimonial-lightbox-video iframe {
  max-width: 100%;
  height: auto;
  min-height: 400px;
}

.testimonial-lightbox-details {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.testimonial-lightbox-content-left {
  flex: 2;
}

.testimonial-lightbox-content-right {
  flex: 1;
  background: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
}

.testimonial-lightbox-rating {
  margin-bottom: 25px;
}
.testimonial-lightbox-rating .testimonial-star svg {
  width: 20px;
  height: 20px;
}

.testimonial-lightbox-meta h4 {
  border-bottom: 2px solid #0C71C3;
  padding-bottom: 5px;
}

.testimonial-meta-section {
  margin-bottom: 15px;
}
.testimonial-meta-section strong {
  display: block;
  margin-bottom: 5px;
  color: #000;
}
.testimonial-meta-section ul {
  margin: 5px 0 0 0;
}
.testimonial-meta-section li {
  margin-bottom: 3px;
  color: #333;
}
.testimonial-meta-section span {
  color: #333;
}
.testimonial-meta-section a {
  transition: color 0.3s ease;
}
.testimonial-meta-section a:hover {
  color: #0C71C3;
}
.testimonial-meta-section a::before {
  color: #0C71C3;
  content: "\e02b";
  display: inline-block;
  font-family: "EtModules";
  font-size: 0.8375rem;
  margin-right: 6px;
}

@media (max-width: 768px) {
  .testimonial-layout {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-video-wrapper {
    flex: none;
  }
  .testimonial-lightbox {
    padding: 10px;
  }
  .testimonial-lightbox-details {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-lightbox-video iframe {
    min-height: 250px;
  }
}
@media (max-width: 480px) {
  .swiper-slide-testimonial {
    padding: 15px;
  }
  .testimonial-title {
    font-size: 1.2em;
  }
  .testimonial-cta-button {
    padding: 10px 20px;
    font-size: 0.8em;
  }
  .testimonial-lightbox-body {
    padding: 15px;
  }
}/*# sourceMappingURL=testimonial-template.css.map */