/** Shopify CDN: Minification failed

Line 228:24 Unterminated string token

**/
/* 
 * Story Block Section CSS
 * Mobile-first approach with three breakpoints:
 * 1. Base: Mobile (375px reference)
 * 2. Medium: 750px-1439px (1440px reference for vw calculations)
 * 3. Large: 1440px+ (fixed pixel values)
 */

.sp-story-block {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.sp-story-block .story-block-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 0;
  max-width: 1440px;
  margin: 0 auto;
}

.sp-story-block .story-block-grid {
  display: flex;
  flex-direction: column;
  gap: 8vw; /* 30px / 375px */
}

.sp-story-block .story-content-column {
  padding: 6.4vw 4.27vw; /* 24px 16px / 375px */
  gap: 8.267vw; /* 30px / 375px */
  display: flex;
  flex-direction: column;
}

/* Content styling */
.sp-story-block .story-heading-wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.sp-story-block .story-logo {
  display: block;
  max-width: 21.333vw; /* 80px / 375px */
}

.sp-story-block .story-logo img {
  max-width: 100%;
  height: auto;
  transition: transform 1.5s ease; /* 1.5 seconds instead of 0.8 */
}

.sp-story-block .story-logo:hover img {
  animation: slow-spin 30s linear infinite;
}

.sp-story-block .story-heading {
  font-size: 5.6vw; /* 21px / 375px */
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.533vw; /* 2px / 375px */
  line-height: 1.2;
}

.sp-story-block .story-text {
  font-size: 4.267vw; /* 16px / 375px */
  line-height: 1.5;
}

.sp-story-block .story-text p {
  margin: 0;
}

.sp-story-block .story-text p:last-child {
  margin-bottom: 0;
}

.sp-story-block .story-button-link {
  display: inline-block;
  text-decoration: none;
}

.sp-story-block .story-button {
  display: inline-block;
  font-size: 4.267vw; /* 16px / 375px */
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.5333vw; /* 2px / 375px */
  color: inherit;
  padding-bottom: 0.533vw; /* 2px / 375px */
  text-transform: none;
  transition: opacity 0.2s ease;
  position: relative; /* Add position relative for pseudo-element */
}

.sp-story-block .story-button::after {
  content: '';
  position: absolute;
  bottom: 0.533vw; /* 2px / 375px - position below the existing border */
  left: 0;
  width: 100%;
  height: 0.267vw; /* 1px / 375px */
  background-color: currentColor;
  transition: width 0.3s ease;
  transform-origin: left;
}

.sp-story-block .story-button:hover::after {
  width: 0;
}

.sp-story-block .story-button:hover {
  opacity: 1; /* Remove the opacity change on hover since we have the underline animation */
}

/* Image styling */
.sp-story-block .story-image-column {
  width: 100%;
}

.sp-story-block .story-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Medium screens: 750px to 1439px */
@media screen and (min-width: 750px) {
  .sp-story-block .story-block-container {
    padding: 4.444vw 8.6111vw;
  }

  .sp-story-block .story-block-grid {
    flex-direction: row;
    gap: 2.778vw; /* 40px / 1440px */
    align-items: flex-start;
  }
  
  .sp-story-block .story-content-column {
    gap: 1.111vw; /* 16px / 1440px */
    flex-basis: 40%;
    max-width: 40%;
    padding: 0;
  }

  .sp-story-block .story-heading-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .sp-story-block .story-logo {
    max-width: 10vw; /* 144px / 1440px */
    margin-bottom: 1.806vw; /* 26px / 1440px */
  }
  
  .sp-story-block .story-image-column {
    flex-basis: 60%;
    max-width: 60%;
  }
  
  /* Typography */
  .sp-story-block .story-heading {
    font-size: 1.9994vw; /* 28px / 1440px */
    letter-spacing: 0.1389vw; /* 2px / 1440px */
  }
  
  .sp-story-block .story-text {
    font-size: 1.111vw; /* 16px / 1440px */
    line-height: 1.6;
  }
  
  .sp-story-block .story-text p {
    margin: 0;
  }
  
  .sp-story-block .story-button {
    font-size: 1.111vw; /* 16px / 1440px */
    letter-spacing: 0.2083vw; /* 3px / 1440px */
    padding-bottom: 0.139vw; /* 2px / 1440px */
  }
  
  .sp-story-block .story-button::after {
    bottom: 0.139vw; /* 2px / 1440px */
    height: 0.069vw; /* 1px / 1440px */
    transition: width 0.3s ease;
    transform-origin: left;
  }
  
  .sp-story-block .story-button:hover::after {
    width: 0;
  }
  
  /* Layout variations */
  .sp-story-block .story-block-grid.image-left {
    flex-direction: row-reverse;
  }
}

/* Large screens: 1440px and above */
@media screen and (min-width: 1440px) {
  
  .sp-story-block .story-block-container {
    padding: 64px 124px;
  }
  
  .sp-story-block .story-block-grid {
    gap: 40px;
  }

  .sp-story-block .story-logo {
    max-width: 144px;
    margin-bottom: 26px'
  }
  
  .sp-story-block .story-content-column {
    gap: 16px;
  }
  
  .sp-story-block .story-heading {
    font-size: 28px;
    letter-spacing: 2px;
  }
  
  .sp-story-block .story-text {
    font-size: 16px;
  }
  
  .sp-story-block .story-text p {
    margin: 0;
  }
  
  .sp-story-block .story-button {
    font-size: 16px;
    letter-spacing: 3px;
    padding-bottom: 2px;
  }
  
  .sp-story-block .story-button::after {
    bottom: 2px;
    height: 1px;
    transition: width 0.3s ease;
    transform-origin: left;
  }
  
  .sp-story-block .story-button:hover::after {
    width: 0;
  }
}

/* For a continuous spinning effect (not just on hover) */
@keyframes slow-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}