.callout-content-posts {
    padding: var(--wp--custom--layout--block-gap);
    margin: 0;
}

.callout-content-post .wrap.flexbox {
    align-items: start;
    position: relative;
}
.callout-content-post .wrap::after {
    content: '';
    display: block;
    position: absolute;
    width: 200px;
    height: 18px;
    background: url(../svg/accent-lines.svg) repeat center;
    transform: rotate(-45deg);
    z-index: 99;
    left: -75px;
    top: 40px;
}
.callout-content-abbr {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: var(--wp--custom--layout--block-gap);
    -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);
    background: var(--wp--preset--color--white);
    border-radius: var(--wp--custom--border-radius--small)
}

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

.callout-content-abbr .callout-image img {
    display: block;
    width: 100%;
    border-radius:var(--wp--custom--border-radius--small) 0 0 var(--wp--custom--border-radius--small);
}

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

.callout-content-abbr 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-abbr .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);
    text-decoration: none;
}

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

.callout-content-post-group {
    width: 25%;
    column-gap: var(--wp--custom--layout--block-gap-small);
    row-gap: var(--wp--custom--layout--block-gap-small);
}
.callout-content-post-group .section-posts {
    column-gap: var(--wp--custom--layout--block-gap-small);
    row-gap: var(--wp--custom--layout--block-gap-small);
}
.callout-content-post-group h3.section-title {
    font-size: var(--wp--preset--font-size--small);
    margin: 0 0 var(--wp--custom--layout--block-gap-small)!important;
    width: 100%;
}
/*--------------------------------------------------------------
In Post
--------------------------------------------------------------*/
.type-post .callout-content-post .wrap.flexbox {
    display:block;
}
.type-post .callout-content-abbr {
    width: 100%;
}
.type-post .callout-content-abbr .abbr-content {
    width: 100%;
    padding: var(--wp--custom--layout--block-gap);
}
.type-post .callout-content-post-group {
    width: 100%;
    margin-top: var(--wp--custom--layout--block-gap-large);
}

/*--------------------------------------------------------------
Sidebar Styling
--------------------------------------------------------------*/
.block-area-sidebar .callout-content-post .wrap.flexbox {
    display: block;
}
.block-area-sidebar .callout-content-abbr {
    width: 100%;
    display: block;
}
.block-area-sidebar .callout-content-abbr .abbr-content {
    padding: var(--wp--custom--layout--block-gap);
    text-align: center;
    width: 100%;
}
.block-area-sidebar .callout-content-abbr h2.section-title {
    margin: var(--wp--custom--layout--block-gap-small) 0;
}
.block-area-sidebar .callout-content-abbr .callout-image img {
    border-radius: var(--wp--custom--border-radius--small) var(--wp--custom--border-radius--small) 0 0 ;
}
.block-area-sidebar .callout-content-post-group {
    width: 100%;
    padding: var(--wp--custom--layout--block-gap) 0 0;
}
.block-area-sidebar .callout-content-post .wrap::after {
    transform: rotate(45deg);
    right: -75px;
    left: inherit;
}
.block-area-sidebar .callout-content-abbr .callout-button {
    margin: var(--wp--custom--layout--block-gap) auto 0;
}

/*--------------------------------------------------------------
Responsive
--------------------------------------------------------------*/
@media (max-width: 1024px) {
    .callout-content-post .wrap.flexbox {
        display: block;
    }
    .callout-content-abbr {
        width: 100%;
        margin-right: 0;
        margin-bottom: var(--wp--custom--layout--block-gap);
    }
    .callout-content-post-group {
        width: 100%;
    }
    .callout-content-post-group .section-posts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        display: grid;
        column-gap: var(--wp--custom--layout--block-gap);
        row-gap: var(--wp--custom--layout--block-gap);
    }
}
@media (max-width: 800px) {
    .callout-content-post-group .section-posts {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        display: grid;
    }
}
@media (max-width: 600px) {
   .callout-content-abbr {
        display: block;
    }
    .callout-content-abbr .callout-image img {
        border-radius: var(--wp--custom--border-radius--small) var(--wp--custom--border-radius--small) 0 0 ;
    }
    .callout-content-abbr .abbr-content {
        width: 100%;
        padding: var(--wp--custom--layout--block-gap);
    }

}
