/* === Custom Block Styling === */
.productsBlock{
    padding: var(--CB-padding-top) var(--CB-padding-right) var(--CB-padding-bottom) var(--CB-padding-left);
    margin: var(--CB-margin-top) var(--CB-margin-bottom);
    background-color: var(--CB-background-color);
    background-image: var(--CB-background-image);
    background-position: var(--CB-background-position);
    background-size: cover;
}


.products__topRow{
    padding-bottom: 32px;
    border-bottom: solid 5px var(--FC-primary-color);
    align-items: flex-end;
}

.products__bottomRow{
    padding-top: 32px;
}

.products__blockHeading{
    color: var(--FC-primary-color);
}

.products__blockCopy{
    text-align: right;
    font-size: var(--FC-font-size-24);
}


.products__productWrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.products__item{
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 49%;
    overflow: hidden;
}

.products__itemHeader, .products__mobileItemHeader{
    color: var(--FC-near-white);
    text-align: center;
}

.products__itemHeaderWrapper, .products__itemCopyWrapper{
    background-color: var(--FC-primary-color);
    padding: 25px;
}

.products__itemCopyWrapper{
    height: 100%;
}

.products__itemContentWrapper {
    transition: var(--FC-default-transition);
    height: 100%;
}

.products__itemCopy, .products__itemLink{
    color: var(--FC-near-white);
}

.products__itemLink{
    color: var(--FC-near-white) !important;
    font-weight: 600;
    margin-left: 16px;
}

.products__mobileWrapper{
    display: none;
}


.products__ctaRow{
    padding-top: 64px;
}

.products__ctaWrapper{
    background-color: var(--FC-black);
    /* padding: 32px; */
    /* transform: skew(-25deg); */
    /* margin: auto; */
    width: 100%;
}

@media screen and (max-width: 1199.98px){
    .products__ctaWrapper{
        width: 95%;
    }
}

.products__cta{
    color: var(--FC-near-white);
    text-align: center;
    /* transform: skew(25deg); */
    margin-bottom: 0;
    padding: 24px;
    transition: var(--FC-default-transition);
}

.products__mobileCTA{
    display: none;
}

.products__mobileNavCol{
    display: none;
}

@media screen and (max-width: 991.98px){
    .products__blockCopy{
        text-align: left;
    }
    .products__topRow{
        padding-bottom: 10px;
    }
    .products__productWrapper{
        display: none;
    }
    .products__mobileWrapper{
        display: block;
    }
    .products__mobileItem{
        height: 400px;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .products__mobileItemCopyWrapper{
        background-color: var(--FC-primary-color);
        padding: 25px;
    }
    .products__itemCopy, .products__itemLink{
        font-size: var(--FC-font-size-24);
    }
    .products__mobileItemHeader{
        font-size: 32px;
        padding: 25px;
        margin-bottom: 0px;
    }
    .products__ctaWrapper{
        transform: none;
        margin: 0;
        padding: 0;
        clip-path: polygon(0 0, 100% 0, 84% 100%, 0% 100%);
        width: 100%;
    }
    .products__cta{
        display: none;
    }
    .products__mobileCTA{
        display: block;
        color: var(--FC-near-white);
        margin-bottom: 0;
        padding: 25px;
    }
    .products__mobileNavCol{
        display: block;
    }
    .products__mobileNavWrapper{
        height: 100%;
        width: fit-content;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: auto;
    }
    .products__navPrev, .products__navNext, .products__navDivider{
        font-size: var(--FC-font-size-24);
        margin-bottom: 0;
        user-select: none;
    }
    .products__navPrev, .products__navNext{
        cursor: pointer;
    }
    .products__navDivider{
        padding: 0px 16px;
    }
}

@media screen and (max-width: 767px){
    .products__mobileCTA{
        font-size: 18px;
    }
}