/** Shopify CDN: Minification failed

Line 8:17 Unexpected "-"
Line 53:29 Unexpected "-"
Line 85:21 Unexpected "-"

**/
<!-- Top section - LifeGlider Page -->

.lifeglider-videos-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
  }

  .lifeglider-videos-header .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .lifeglider-videos-header .text-content {
    flex: 1;
  }

  .lifeglider-videos-header .text-content h2 {
    font-size: 2rem;
    margin: 0;
  }

  .lifeglider-videos-header .image-content {
    flex: 1;
    text-align: right;
  }

  .lifeglider-videos-header .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
  }

  @media (max-width: 768px) {
    .lifeglider-videos-header .content-wrapper {
      flex-direction: column;
    }
    .lifeglider-videos-header .image-content {
      text-align: center;
    }
  }

<!-- Four Video grid section - LifeGlider Page -->

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.video-grid__item {
  width: 100%;
}
@media (min-width: 768px) {
  .video-grid__item {
    width: calc(50% - 10px);
  }
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


<!-- LifeGlider Page - Testimonials section -->

.testimonials-section {
  max-width: 800px;
  margin: auto;
  padding: 2rem 1rem;
}
.testimonial-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-card {
  display: flex;
  gap: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  align-items: center;
  max-width: 700px;
  width: 100%;
}
.testimonial-image-wrapper {
  flex-shrink: 0;
}
.testimonial-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-content {
  flex-grow: 1;
}
.testimonial-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
}
.testimonial-location {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.5rem;
}
.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.read-more-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 6px;
}
.read-more-button:hover {
  background-color: #333;
}
.swiper-button-next,
.swiper-button-prev {
  color: #000;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .testimonial-image {
    margin-bottom: 1rem;
  }
}