.callout-content-posts .wrap {
    align-items: stretch;
    grid-template-columns: 5fr 3fr;
    display: grid;
    column-gap: var(--wp--custom--layout--block-gap);
    row-gap: var(--wp--custom--layout--block-gap);
    position: relative;
}

.callout-post-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--grey);
    background: var(--wp--preset--color--white);
}

.callout-content-posts .section-posts {
    column-gap: var(--wp--custom--layout--block-gap);
    row-gap: var(--wp--custom--layout--block-gap);
    grid-template-columns: repeat(2, minmax(0, 1fr));

}

.callout-post-content .callout-image {
    width: 100%;
    display: block;
}

.callout-post-content .callout-image img {
    display: block;
    width: 100%;
}

.callout-post-content .abbr-content {
    width: 80%;
    padding: var(--wp--custom--layout--block-gap);
}

.callout-post-content h2.section-title {
    margin: 0 0 var(--wp--custom--layout--block-gap-small);
    font-size: var(--wp--preset--font-size--xlarge);
}
.callout-post-content .block-callout-button {
    margin: var(--wp--custom--layout--block-gap-small) 0 0;
}

/*--------------------------------------------------------------
STYLE: IN POST
--------------------------------------------------------------*/
.type-post .callout-content-posts .wrap {
    grid-template-columns: 3fr 1fr;
}

.type-post .callout-content-posts .section-posts {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

/*--------------------------------------------------------------
STYLE: AFTER POST
--------------------------------------------------------------*/
.block-area-after-post .callout-content-posts .wrap {
    grid-template-columns: 3fr 1fr;
}

.block-area-after-post .callout-content-posts .section-posts {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

/*--------------------------------------------------------------
STYLE: SIDEBAR
--------------------------------------------------------------*/
.block-area-sidebar .callout-content-posts .wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.block-area-sidebar .callout-content-posts .section-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.block-area-sidebar .callout-post-content {
    display: block;
    text-align: center;
}

.block-area-sidebar .callout-post-content .abbr-content {
    width: fit-content;
    text-align: center;
}

.block-area-sidebar .callout-post-content h2.section-title {
    margin: var(--wp--custom--layout--block-gap-small) 0;
    font-size: var(--wp--preset--font-size--large);
}

.block-area-sidebar .callout-post-content .block-callout-button {
    margin: var(--wp--custom--layout--block-gap-small) auto 0
}

/*--------------------------------------------------------------
STYLE: POST EDITOR
--------------------------------------------------------------*/
.content-sidebar .editor-styles-wrapper .callout-content-posts .wrap {
    grid-template-columns: 3fr 1fr;
}

.content-sidebar .editor-styles-wrapper .callout-content-posts .section-posts {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}


/*--------------------------------------------------------------
STYLE: RESPONSIVE
--------------------------------------------------------------*/
@media (max-width: 1024px) {
    .callout-post-content h2.section-title {
        margin: var(--wp--custom--layout--block-gap-small) 0;
        font-size: var(--wp--preset--font-size--large);
    }

    .callout-post-content .abbr-content {
        width: 80%;
        padding: var(--wp--custom--layout--block-gap-small)
    }
}

@media (max-width: 800px) {
    .callout-content-posts .wrap {
        grid-template-columns: 1fr;
        display: grid;
    }

    .callout-post-content .abbr-content {
        width: 80%;
        padding: var(--wp--custom--layout--block-gap);
    }
}

@media (max-width: 600px) {
    .callout-post-content {
        display: block;
    }

    .callout-post-content .abbr-content {
        width: 100%;
    }

    .type-post .callout-content-posts .wrap, .block-area-after-post .callout-content-posts .wrap {
        grid-template-columns: 1fr;
    }
}