/** Shopify CDN: Minification failed

Line 98:25 Unexpected "@app"
Line 111:63 Unexpected "@app"
Line 302:27 Unexpected "@app"
Line 334:27 Unexpected "@app"
Line 358:59 Unexpected "@app"

**/
/* Flexible Banner Component Styles */
.flexible-banner {
  display: block;
}

/* Grid Container */
.flexible-banner-grid {
  display: grid;
  grid-template-areas: "banner";
  position: relative;
}

/* Media Layer - Image Background */
.flexible-banner__media {
  grid-area: banner;
  z-index: 1;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.flexible-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay Layer */
.flexible-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
  transition: background-color 0.3s ease;
}

/* Content Layer - FIXED ALIGNMENT */
.flexible-banner__content {
  grid-area: banner;
  z-index: 3;
  display: grid;
  padding: 2rem;
  position: relative;
  width: 100%;
  /* These properties will be overridden by the Liquid CSS for positioning */
}

.flexible-banner__content--no-image {
  grid-area: banner;
  z-index: 1;
  background: transparent;
  min-height: auto;
  padding: 0;
}

/* FIXED: Container should respect text alignment */
.flexible-banner__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 71rem;
  width: 100%;
  position: relative;
  /* Remove fixed alignment - inherit from parent */
  align-items: inherit;
}

/* FIXED: Block elements should respect container alignment */
.flexible-banner__block {
  position: relative;
  /* Allow blocks to size based on content, not full width */
  align-self: inherit;
  width: auto;
  max-width: 100%;
}

/* Background styling for blocks */
.flexible-banner__block--heading,
.flexible-banner__block--text,
.flexible-banner__block--buttons,
.flexible-banner__block--shopify_form,
.flexible-banner__block--custom_liquid,
.flexible-banner__block--@app {
  background: var(--color-background);
  padding: 2rem;
  border-radius: var(--text-boxes-radius, 0);
  box-shadow: var(--text-boxes-shadow-horizontal-offset, 0) var(--text-boxes-shadow-vertical-offset, 4px) var(--text-boxes-shadow-blur-radius, 5px) rgba(var(--color-shadow), var(--text-boxes-shadow-opacity, 0));
}

/* No background styling when no image or desktop transparent */
.flexible-banner--desktop-transparent .flexible-banner__block--heading,
.flexible-banner--desktop-transparent .flexible-banner__block--text,
.flexible-banner--desktop-transparent .flexible-banner__block--buttons,
.flexible-banner--desktop-transparent .flexible-banner__block--shopify_form,
.flexible-banner--desktop-transparent .flexible-banner__block--custom_liquid,
.flexible-banner--desktop-transparent .flexible-banner__block--@app,
.flexible-banner__content--no-image .flexible-banner__block--heading,
.flexible-banner__content--no-image .flexible-banner__block--text,
.flexible-banner__content--no-image .flexible-banner__block--buttons,
.flexible-banner__content--no-image .flexible-banner__block--shopify_form,
.flexible-banner__content--no-image .flexible-banner__block--custom_liquid,
.flexible-banner__content--no-image .flexible-banner__block--@app {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

/* Typography */
.flexible-banner__heading {
  margin: 0;
  color: currentColor;
  line-height: 1.2;
  /* FIXED: Remove width constraints */
  width: auto;
  max-width: 100%;
}

.flexible-banner__text {
  margin: 0;
  color: currentColor;
  /* FIXED: Remove width constraints */
  width: auto;
  max-width: 100%;
}

.flexible-banner__text p:first-child {
  margin-top: 0;
}

.flexible-banner__text p:last-child {
  margin-bottom: 0;
}

/* FIXED: Buttons respect alignment */
.flexible-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  /* Inherit justify-content from text alignment */
  justify-content: inherit;
  width: auto;
  max-width: 100%;
}

/* Override for multiple buttons */
.flexible-banner__buttons--multiple {
  justify-content: flex-start;
}

/* Center alignment override */
[style*="text-align: center"] .flexible-banner__buttons,
.flexible-banner__content[style*="text-align: center"] .flexible-banner__buttons {
  justify-content: center;
}

/* Right alignment override */
[style*="text-align: right"] .flexible-banner__buttons,
.flexible-banner__content[style*="text-align: right"] .flexible-banner__buttons {
  justify-content: flex-end;
}

/* Left alignment override (default) */
[style*="text-align: left"] .flexible-banner__buttons,
.flexible-banner__content[style*="text-align: left"] .flexible-banner__buttons {
  justify-content: flex-start;
}

@media screen and (max-width: 749px) {
  .flexible-banner__buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .flexible-banner__buttons .button {
    width: 100%;
    text-align: center;
  }
}

/* Forms */
.flexible-banner__form {
  max-width: 50rem;
  width: 100%;
}

.flexible-banner__contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flexible-banner__contact-form .field {
  position: relative;
}

.flexible-banner__contact-form .field__input {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(var(--color-foreground), 0.2);
  background: var(--color-background);
  color: var(--color-foreground);
}

.flexible-banner__contact-form .field__label {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 0.8em;
  color: rgba(var(--color-foreground), 0.7);
  transition: all 0.2s ease;
  pointer-events: none;
}

.flexible-banner__contact-form .field__button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-foreground);
}

.flexible-banner__form-placeholder {
  padding: 2rem;
  background: rgba(var(--color-foreground), 0.1);
  border-radius: var(--text-boxes-radius, 0);
  text-align: center;
  font-style: italic;
  color: rgba(var(--color-foreground), 0.7);
}

/* Custom Liquid */
.flexible-banner__custom-liquid {
  width: auto;
  max-width: 100%;
}

/* App Blocks */
.flexible-banner__app {
  width: auto;
  max-width: 100%;
  display: flex;
  justify-content: inherit;
  align-items: center;
}

/* ADDED: Full Width Header Option */
.flexible-banner--full-width-header .flexible-banner__block--heading {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.flexible-banner--full-width-header .flexible-banner__block--heading .flexible-banner__heading {
  max-width: 71rem;
  margin: 0 auto;
  text-align: inherit;
}

/* Desktop Styles */
@media screen and (min-width: 750px) {
  .flexible-banner__content {
    padding: 5rem;
  }
  
  .flexible-banner__content--no-image {
    padding: 0;
  }
  
  .flexible-banner__container {
    max-width: 90rem;
    gap: 3rem;
  }
  
  .flexible-banner__block--heading,
  .flexible-banner__block--text,
  .flexible-banner__block--buttons,
  .flexible-banner__block--shopify_form,
  .flexible-banner__block--custom_liquid,
  .flexible-banner__block--@app {
    padding: 3rem;
  }
  
  .flexible-banner__buttons {
    flex-direction: row;
  }
  
  .flexible-banner__buttons .button {
    width: auto;
  }
}

/* Mobile Styles */
@media screen and (max-width: 749px) {
  .flexible-banner__content {
    padding: 1.5rem;
  }
  
  .flexible-banner__content--no-image {
    padding: 0;
  }
  
  .flexible-banner__container {
    gap: 1.5rem;
  }
  
  .flexible-banner__block--heading,
  .flexible-banner__block--text,
  .flexible-banner__block--buttons,
  .flexible-banner__block--shopify_form,
  .flexible-banner__block--custom_liquid,
  .flexible-banner__block--@app {
    padding: 1.5rem;
  }
  
  /* Mobile Bottom Layout */
  .flexible-banner--mobile-bottom .flexible-banner__content {
    grid-area: content;
    z-index: 1;
    background: var(--color-background);
    padding: 2rem 1.5rem;
    align-items: start;
    justify-items: start;
    text-align: left;
  }
  
  .flexible-banner--mobile-bottom .flexible-banner__container {
    max-width: 100%;
  }
  
  .flexible-banner--mobile-bottom .flexible-banner__block--heading,
  .flexible-banner--mobile-bottom .flexible-banner__block--text,
  .flexible-banner--mobile-bottom .flexible-banner__block--buttons,
  .flexible-banner--mobile-bottom .flexible-banner__block--shopify_form,
  .flexible-banner--mobile-bottom .flexible-banner__block--custom_liquid,
  .flexible-banner--mobile-bottom .flexible-banner__block--@app {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }

  /* ADDED: Mobile full-width header adjustments */
  .flexible-banner--full-width-header .flexible-banner__block--heading {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}