.callout-content-product {
    padding: var(--wp--custom--layout--block-gap);
    margin-bottom: 0;
    background: var(--wp--preset--color--white);
}

.callout-content-product .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: var(--wp--custom--border-radius--medium);
    padding: var(--wp--custom--layout--block-gap-large);
    background: var(--wp--preset--color--white);
    -webkit-box-shadow: var(--wp--custom--box-shadow--1);
    -moz-box-shadow: var(--wp--custom--box-shadow--1);
    box-shadow: var(--wp--custom--box-shadow--1);
}
.callout-content-product.is-style-blue .wrap {
    background: var(--wp--preset--color--blue-lightest);

}
.callout-content-product.is-style-green .wrap {
    background: var(--wp--preset--color--green-lightest);

}
.callout-content-product.is-style-yellow .wrap {
    background: var(--wp--preset--color--yellow-lightest);
}
.callout-content-product.is-style-orange .wrap {
    background: var(--wp--preset--color--orange-lightest);
}
.callout-content-product.is-style-pink .wrap {
    background: var(--wp--preset--color--pink-lightest);
}
.callout-content-product .callout-image {
    width: 35%;
}
.callout-content-product .callout-image img {
    border-radius: var(--wp--custom--border-radius--small) 0 0 var(--wp--custom--border-radius--small);
}

.callout-content-product .abbr-content {
    padding: var(--wp--custom--layout--block-gap-large) 0 var(--wp--custom--layout--block-gap-large) var(--wp--custom--layout--block-gap-large);
    width: 65%;
}

.callout-content-product h2.section-title {
    margin: var(--wp--custom--layout--block-gap) 0;
    font-size: var(--wp--preset--font-size--xlarge);
    text-transform: none;
    letter-spacing: var(--wp--custom--letter-spacing--normal);
}
.callout-content-product .section-desc {
    font-size: var(--wp--preset--font-size--medium);
    line-height: var(--wp--custom--line-height--medium);
}

.callout-content-product .callout-button {
    display: block;
    margin: var(--wp--custom--layout--block-gap) 0 0;
    background: var(--wp--preset--color--ink);
    color: var(--wp--preset--color--white);
    width: fit-content;
    padding: var(--wp--custom--layout--block-gap-small);
    line-height: var(--wp--custom--line-height--xsmall);
}

.callout-content-product .callout-button .sm-caps {
    display: block;
}

/*--------------------------------------------------------------
Style - Post
--------------------------------------------------------------*/
.type-post .callout-content-product .abbr-content {
    padding: var(--wp--custom--layout--block-gap);
}
/*--------------------------------------------------------------
Style - Post Editor
--------------------------------------------------------------*/


/*--------------------------------------------------------------
Style - Sidebar
--------------------------------------------------------------*/
.block-area-sidebar .callout-content-product, .block-area-sidebar .callout-content-product.alignfull {
    margin-bottom: var(--wp--custom--layout--block-gap);
}

.block-area-sidebar .callout-content-product .wrap {
    display: block;
}

.block-area-sidebar .callout-content-product .callout-image {
    width: 100%;
}

.block-area-sidebar .callout-content-product .abbr-content {
    width: 100%;
    margin: 0;
    padding: var(--wp--custom--layout--block-gap);
}

/*--------------------------------------------------------------
Style - Responsive
--------------------------------------------------------------*/
@media (max-width: 800px) {
    .callout-content-product .wrap {
        display: block;
        padding: var(--wp--custom--layout--block-gap); 
    }

    .callout-content-product .callout-image {
        width: 100%;
    }

    .callout-content-product .callout-image img {
        display: block;
        margin: 0 auto;
    }

    .callout-content-product .abbr-content {
        padding: 0;
        width: 100%;
        margin: 0 auto;
    }
    .callout-content-product h2.section-title { 
        font-size: var(--wp--preset--font-size--large);
    }
    .callout-content-product .section-desc {
        font-size: var(--wp--preset--font-size--small);
        line-height: var(--wp--custom--line-height--medium);
    }
}