/** Shopify CDN: Minification failed

Line 17:23 Unexpected "{"
Line 17:32 Expected ":"
Line 17:39 Unexpected "{"
Line 18:17 Expected identifier but found whitespace
Line 18:19 Unexpected "{"
Line 18:28 Expected ":"
Line 19:20 Expected identifier but found whitespace
Line 19:22 Unexpected "{"
Line 19:31 Expected ":"
Line 20:22 Expected identifier but found whitespace
... and 17 more hidden warnings

**/

  #versatile-carousel-{{ section.id }} {
    --text-color: {{ section.settings.text_color | default: '#ffffff' }};
    --overlay-color: {{ section.settings.overlay_color | default: '#000000' }};
    --overlay-opacity: {{ section.settings.overlay_opacity | default: 30 }};
    --button-bg-color: {{ section.settings.button_bg_color | default: '#ffffff' }};
    --button-bg-opacity: {{ section.settings.button_bg_opacity | default: 15 }};
    --button-text-color: {{ section.settings.button_text_color | default: '#ffffff' }};
    --button-border-color: {{ section.settings.button_border_color | default: '#ffffff' }};
    --button-border-opacity: {{ section.settings.button_border_opacity | default: 30 }};
  }

  .versatile-carousel {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height:400px;
    overflow: hidden;
  }

  .versatile-carousel__viewport {
    overflow: hidden;
    height: 100%;
  }

  .versatile-carousel__container {
    display: flex;
    height: 100%;
  }

  .versatile-carousel__slide {
    flex: 0 0 100%;
    min-width: 0;
    position: relative;
    height: 100%;
  }

  .versatile-carousel__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .versatile-carousel__image--mobile {
    display: none;
  }

  @media (max-width: 767px) {

    .versatile-carousel{
      min-height:auto;
      height:90vh;
    }
    .versatile-carousel__image--desktop {
      display: none;
    }

    .versatile-carousel__image--mobile {
      display: block;
    }
  }

  .versatile-carousel__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
      color-mix(in srgb, var(--overlay-color) calc(var(--overlay-opacity) * 1%), transparent) 0%,
      color-mix(in srgb, var(--overlay-color) calc(var(--overlay-opacity) * 0.33%), transparent) 50%,
      color-mix(in srgb, var(--overlay-color) calc(var(--overlay-opacity) * 1.3%), transparent) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: var(--text-color);
    text-align: left;
    padding: 3rem 2rem;
    z-index: 1;
  }

  .versatile-carousel__title {
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
  }

  .versatile-carousel__subtitle {
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.95;
  }

  .versatile-carousel__description {
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.9;
  }

  .versatile-carousel__nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .m-button--secondary.is-active{
    background-color: rgb(var(--color-outline-button));
    color: rgb(var(--color-background));
  }



  @media (max-width: 768px) {
    .versatile-carousel__overlay {
      padding: 2rem 1.5rem;
    }

    .versatile-carousel__nav {
      gap: 0.5rem;
    }


  }