/** Shopify CDN: Minification failed

Line 39:9 Expected identifier but found whitespace
Line 39:10 Unexpected "20px"

**/
/* Sign Up CTA Section */

.signup-cta {
  width: 100%;
  
}

.signup-cta__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* Desktop Two-Column Layout */
@media screen and (min-width: 990px) {
  .signup-cta__wrapper--left {
    grid-template-columns: 1fr 1fr;
    margin: 3.2rem;

  }

  .signup-cta__wrapper--right {
    grid-template-columns: 1fr 1fr;
  }

  .signup-cta__wrapper--right .signup-cta__image {
    order: 2;
  }

  .signup-cta__wrapper--right .signup-cta__content {
    order: 1;
  }
  margin: 20px

}

/* Image */
.signup-cta__image {
  position: relative;
  width: 100%;
  min-height: 40rem;
  overflow: hidden;
}

.signup-cta__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 990px) {
  .signup-cta__image {
    min-height: 57.6rem;
  }
}

/* Content Section */
.signup-cta__content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  min-height: 40rem;
}

@media screen and (min-width: 750px) {
  .signup-cta__content {
    padding: 6rem 4rem;
  }
}

@media screen and (min-width: 990px) {
  .signup-cta__content {
    padding: 8rem 6rem;
    min-height: 57.6rem;
  }
}

.signup-cta__content-inner {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  max-width: 54rem;
  width: 100%;
}

/* Text Content */
.signup-cta__text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.signup-cta__heading {
  margin: 0;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.4;
  color: #000000;
  white-space: pre-line;
}

.signup-cta__description {
  margin: 0;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  white-space: pre-line;
}

/* Button */
.signup-cta__button-wrapper {
  display: flex;
}

.signup-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.6rem;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.signup-cta__button:hover {
  transform: translateY(-0.2rem);
  opacity: 0.9;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.15);
}

.signup-cta__button[aria-disabled="true"] {
  cursor: pointer;
}

.signup-cta__button[aria-disabled="true"]:hover {
  transform: none;
  opacity: 1;
  box-shadow: none;
}

/* Mobile Adjustments */
@media screen and (max-width: 749px) {
  .signup-cta__content-inner {
    gap: 4rem;
    
  }

  .signup-cta__image {
    min-height: 32rem;
  }

  .signup-cta__content {
    min-height: auto;
  }
}

/* Tablet Adjustments */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .signup-cta__image {
    min-height: 48rem;
  }

  .signup-cta__content-inner {
    gap: 5rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .signup-cta__button {
    transition: opacity 0.3s ease;
  }

  .signup-cta__button:hover {
    transform: none;
  }
}

/* Ensure proper aspect ratio for images */
.signup-cta__image::before {
  content: '';
  display: block;
  padding-bottom: 71.43%; /* 480/672 = 0.7143 */
}

@media screen and (max-width: 989px) {
  .signup-cta__image::before {
    padding-bottom: 75%; /* Mobile aspect ratio */
  }
}

.signup-cta__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
