/** Shopify CDN: Minification failed

Line 113:5 Unexpected ","
Line 115:12 Expected identifier but found "\"value\""
Line 117:11 Unexpected ","
Line 119:12 Expected identifier but found "\"value\""

**/
.full-bleed-hero {
    position: relative;
}

.hero__media,
.hero__content {
    height: 100svh;
}

main .shopify-section:first-child :is(.hero__media, .hero__content) {
    height: calc(100svh - 2.4rem);
}

.hero__media > video {
    object-fit: cover;
}

.hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 8.2rem 1.6rem 1.6rem;
    align-items: flex-start;
    justify-content: flex-end;
}

.hero__content-inner {
    background-color: var(--bone);
    padding: 1.6rem;
    max-width: 27rem;
    border-radius: var(--rounded);
    border: 0.5px solid var(--darkBlue25);
}

.hero__content-heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 1.2rem;
    padding-top: 1.2rem;
    border-top: 0.5px solid var(--darkBlue25);
}

.hero__content-heading h2 {
    margin: 0;
}

.hero__content-inner .body {
    margin: 1.2rem 0;
}

.hero__content-inner .button-wrapper {
    margin-top: 2.4rem;
}

@media screen and (max-width: 989px) {
    .hero__content-heading h2 {
        font-size: 2rem;
    }
}

/* Desktop Layouts */
@media screen and (min-width: 990px) {
    .hero__content-inner {
        max-width: 34rem;
        position: sticky;
        bottom: 1.6rem;
        margin-bottom: 1.6rem;
    }
    main .shopify-section:first-child :is(.hero__media) {
        padding-bottom: 56.25%; /* 16:9 aspect ratio */;
    }
    main .shopify-section:first-child :is(.hero__content) {
        padding-bottom: 0;
        height: 100%;
    }
    .hero__content.layout-top-left {
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .hero__content.layout-top-right {
        justify-content: flex-start;
        align-items: flex-end;
    }
    
    .hero__content.layout-bottom-left {
        align-items: flex-start;
        justify-content: flex-end;
    }
    
    .hero__content.layout-bottom-right {
        justify-content: flex-end;
        align-items: flex-end;
    }
            .hero__content.layout-center-left {
        align-items: flex-start;
        justify-content: center;
    }
       .hero__content.layout-center-right {
        align-items: flex-end;
        justify-content: center;
    },
          {
            "value": "center-right",
            "label": "Center Right"
          },
          {
            "value": "center-left",
            "label": "Center Left"
          }
}

