/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 123:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .our-story-wrapper {
    padding: 1rem 1rem;
    max-width: 1200px;
    margin-top: 2rem;
  }

  .our-story-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;                      /* Hidden by default for animation */
    transform: translateY(50px);     /* Initial offset for animation */
    transition: opacity 1s ease, transform 1s ease;
  }

  .our-story-block.fade-in {
    opacity: 1;
    transform: translateY(0);
  }

  .our-story-block.even {
    flex-direction: row-reverse;
  }

  .our-story-text {
    flex: 1;
    max-width: 500px;
    text-align: left;
    transition: transform 0.3s ease, color 0.3s ease; /* Hover animation */
  }

  .our-story-text:hover {
    transform: scale(1.02);
  }

  .our-story-text h2 {
    font-size: 3rem;
    font-weight: 600;
    /* font-family: "Playfair Display", serif; */
    color: #06402B;
    margin-bottom: 1rem;
    transition: color 0.3s ease;    /* Hover color animation */
  }

  .our-story-text:hover h2 {
    color: #0b6843; /* Darker green on hover */
  }

  .our-story-text p {
    font-size: 1.5rem;             /* Larger text on desktop */
    color: #333;
    line-height: 1.8;
    transition: color 0.3s ease;
  }

  .our-story-text:hover p {
    color: #111; /* Darker text on hover */
  }

  .our-story-video {
    flex: 1;
    max-width: 550px;
  }

  .our-story-video video {
    width: 100%;
    max-height: 400px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  @media (max-width: 768px) {
    .our-story-block,
    .our-story-block.even {
      flex-direction: column;
      text-align: center;
      margin-bottom: 3rem; 
    }

    .our-story-text {
      max-width: 100%;
      text-align: center;
      padding: 0 1rem;
    }

    .our-story-text h2 {
      font-size: 2rem;  /* Increased font size on mobile */
    }

    .our-story-text p {
      font-size: 1.3rem; /* Increased font size on mobile */
      line-height: 1.7;
    }

    .our-story-video {
      max-width: 100%;
          padding: 0 2rem; /* ADD THIS LINE */

    }

    .our-story-video video {
      max-height: 280px;
      aspect-ratio: 4/5;

    }
  }
</style>