.static-banner-with-product-grid {
    margin: 35px 0 20px 0;
}
.static-banner-with-product-grid--internal {
    display: flex;
    gap: 15px;
    width: 100%;
    margin: 0 auto;

    &[data-layout="left"] {
        flex-direction: row-reverse;
    }

    @media (min-width: 901px) {
        max-width: 95%;
    }

    @media (min-width: 1500px) {
        max-width: 1440px;
        gap: 30px;
    }

    @media (max-width: 900px) {
        flex-direction: column-reverse;
        max-width: 100%;
        &[data-layout="left"] {
            flex-direction: column-reverse;
        }
    }
}

.static-banner-with-product-grid--products {
    flex: 1 0 30%;
    display: grid;
    grid-template-columns: repeat(2, 375px);
    grid-auto-rows: max-content;
    column-gap: 30px;
    row-gap: 10px;
    height: fit-content;

    @media (max-width: 1440px) {
        position: sticky;
        top: 6%;
        grid-template-columns: repeat(2, 48%);
        justify-content: space-evenly;
        column-gap: 15px;
        row-gap: 15px;
    }

    @media (max-width: 900px) {
        padding: 0 10px;
    }

    & .static-banner-with-product-grid--product {
        position: relative;
        display: flex;
        flex-direction: column;

        & .image-badge {
            position: absolute;
            top: 0;
            right: 0;
            @media (max-width: 900px) {
                max-width: 60px;
            }
        }

        & p {
            margin: 0;
            color: #515f69;
            &.static-banner-with-product-grid--product-title {
                font-size: 12px;
            }
            &.static-banner-with-product-grid--product-subtitle {
                font-size: 10px;
            }
            &.static-banner-with-product-grid--product-price {
                font-size: 14px;
            }
        }

        & static-banner-product-grid-cta {
            margin-top: auto;
            & button {
                cursor: pointer;
                &.loading {
                    opacity: 0.8;
                    cursor: progress;
                }
                & span {
                    font-size: 12px;
                    color: #515f69;
                }
            }
        }
    }
}

.static-banner-with-product-grid--banner {
    position: relative;
    flex: 1 0 40%;
    height: fit-content;

    & img {
        display: block;
        width: 100%;
        height: 100%;
        max-height: 950px;
        object-fit: cover;
    }

    & .static-banner-with-product-grid--banner-text {
        position: absolute;
        bottom: 44px;
        width: 100%;
        text-align: center;

        @media (max-width: 700px) {
            bottom: 24px;
        }

        & h2 {
            font-family: Dynalight;
            color: white;
            font-size: 80px;
            line-height: 1.2;
            margin-bottom: 0px;
            @media (max-width: 700px) {
                font-size: 55px;
            }
        }

        & h3 {
            font-size: 25px;
            font-weight: bold;
            color: white;
            line-height: 1.1;
            margin-bottom: 12px;
            @media (max-width: 700px) {
                font-size: 20px;
            }
        }

        & p {
            font-size: 16px;
            color: white;
            margin-bottom: 18px;
        }

        & a.button {
            max-width: 207px;
            width: 100%;
        }
    }
}
