/** Shopify CDN: Minification failed

Line 131:0 Unexpected "}"

**/
/* assets/welcome-banner.css */
.welcome-banner {
  background-color: #ffffff;
  padding: 40px 0;
    overflow: visible;
}

.welcome-banner__content--bg {
  position: relative;
  
}

.welcome-banner__content--bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150%; /* make it taller than the content */
  background-image: var(--right-bg-image);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center 83%; /* use top and offset later */
  opacity: 0.4;
  z-index: 0;
}


.welcome-banner__content--bg > * {
  position: relative;
  z-index: 1;
}



.welcome-banner__inner {
  display: flex;
  align-items: flex-start; /* Align content to top */
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  flex-direction: row; /* Default: image and content side by side */
}

.welcome-banner__image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.welcome-banner__content {
  flex: 1;
  margin: auto;
  margin-top: -2em;
  width: 80%;
}

.welcome-banner__content h2 {
  font-size: 3em;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0.5em;
  letter-spacing: 0.5rem;
}

.welcome-banner__content p {
  font-size: 1.1em;
  color: #000;
  line-height: 1.6;
}

.welcome-banner__content span {
  letter-spacing: 0.3rem;
}

.line2 {
  display: inline;
}


@media (max-width: 767px) {
  .welcome-banner__inner {
    flex-direction: column; /* Maintain side-by-side layout on desktop */
  }

  .welcome-banner__image {
    flex: 1;
    order: 2; /* Show image second on mobile */
  }

    .welcome-banner__image img{
      border-radius: 0;
    }

  .welcome-banner__content {
    flex: 1;
    order: 1; /* Show content first on mobile */
    width: 80%;
    text-align: center;
  }

  .welcome-banner__content h2 {
    font-size: 2.5em;
    margin-top: 1em;
  }

  .welcome-banner__content p {
    font-size: 1em;
  }

  .welcome-banner__content span {
    font-size: 1em;
    letter-spacing: 0.3rem;
  }

  .line2 {
    display: block;
  }
  
}
  
}
