/** Shopify CDN: Minification failed

Line 137:14 Expected identifier but found whitespace
Line 137:21 Unexpected ";"

**/
/* =========================================
   Testimonials Slider Section
   ========================================= */
/* ----------------------
   HEADER ROW
   ---------------------- */
   .tslider__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2.4rem;
    margin-bottom: 4.8rem;
  }
  .tslider__header-left {
    flex: 1;
  }
  .tslider__subheading {
    font-family: var(--typography-font-name-Title, Inter);

    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 1rem;
    line-height: 1;
  }
  
.tslider__heading {
    margin: 0;
    text-transform: uppercase;
    color: rgb(var(--color-foreground));
    line-height: 1;
    overflow-wrap: anywhere;
    color: var(--text-text-heading, #343A40);

    /* Heading/H2 */
    font-family: var(--typography-font-name-Title, Inter);
    font-size: var(--typography-text-size-H2, 48px);
    font-style: normal;
    font-weight: 900;
    line-height: 110%; /* 52.8px */
    letter-spacing: -0.48px;
    text-transform: uppercase;
  }
  /* ----------------------
     NAVIGATION ARROWS
     ---------------------- */
  .tslider__nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-shrink: 0;
  }
  
.tslider__arrow {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    border: 1.5px solid rgb(var(--color-foreground));
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    padding: 0;
    color: rgb(var(--color-foreground));
    flex-shrink: 0;
  }
  .tslider__arrow svg {
    width: 1.6rem;
    height: 1.6rem;
  }
  .tslider__arrow svg path {
    stroke: currentColor;
  }
  /* Prev arrow — bordered only */
  .tslider__arrow--prev svg {
    transform: rotate(180deg);
  }
  
/* Next arrow — filled red */
.tslider__arrow--next {
    background-color: var(--color-brand-Varsity-Red, #AB2629);
    border-color: var(--color-brand-Varsity-Red, #AB2629);
    color: #ffffff;
  }
  .tslider__arrow--next svg path {
    stroke: #ffffff;
  }
  .tslider__arrow--prev:hover {
    background-color: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
  }
  .tslider__arrow--prev:hover svg path {
    stroke: rgb(var(--color-background));
  }
  /* Disabled state */
  .tslider__arrow.is-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
  }
  /* ----------------------
     SLIDER TRACK
     ---------------------- */
  .tslider__track {
    overflow: hidden;
  }
  /* ----------------------
     SLIDES
     ---------------------- */
  .tslider__slide {
    opacity: 0.35;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }
  .tslider__slide.swiper-slide-active {
    opacity: 1;
  }
  /* ----------------------
     STARS
     ---------------------- */
  .tslider__stars {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  align-items: center;
  gap: 0.2rem;
}
.tslider__stars-icons svg {
  width: 2rem;
  height: 2rem;
}
.tslider__stars-count {
  font-family: var(--typography-font-name-Paragraph, Inter);
  font-size: 1.4rem;
  font-weight: 500;
  color: rgb(var(--color-foreground));
  opacity: 0.7;
}
/* ----------------------
   QUOTE
   ---------------------- */
.tslider__quote {
  margin: 0;
  font-family: var(--typography-font-name-Paragraph, Inter);
  font-size: calc(var(--font-body-scale) * 1.8rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgb(var(--color-foreground));
}


.tslider__quote p {
    margin: 0;
  }
  /* ----------------------
     AUTHOR
     ---------------------- */
  .tslider__author {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: auto;
  }
  .tslider__author-name {
    font-family: var(--typography-font-name-Title, Inter);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-brand-Varsity-Red, #AB2629);
  }
  .tslider__author-position {
    font-family: var(--typography-font-name-Paragraph, Inter);
    font-size: 1.4rem;
    font-weight: 400;
    color: rgb(var(--color-foreground));
    opacity: 0.6;
  }

  @media (max-width: 768px) {
    .tslider__heading {
      font-size: var(--typography-text-size-H2, 32px);
    }
    .tslider__header{
      align-items: flex-start;
      flex-direction: column;
    }
    .tslider__quote{
        color: var(--text-text-heading, #343A40);
      font-family: var(--typography-font-name-Paragraph, Inter);
      font-size: var(--typography-text-size-H4, 32px);
      font-style: normal;
      font-weight: 500;
      line-height: 130%; /* 41.6px */
    }
  }