.callout-content-simple {
    border-radius: var(--wp--custom--border-radius--small)
}

.callout-content-simple-group {
    -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);
    border-radius: var(--wp--custom--border-radius--medium);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.callout-content-simple-group .callout-image {
    width: 100%;
    height: 700px;
    background-position: center center;
    background-size: cover;
    border-radius: var(--wp--custom--border-radius--medium);
}

.callout-content-simple-group .abbr-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    background: linear-gradient(90deg, rgba(26, 26, 26, 1) 0%, rgba(26, 26, 26, 0) 100%);
    color: var(--wp--preset--color--white);
    padding: var(--wp--custom--layout--block-gap-large);
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    height: 100%;
}
.callout-content-simple-group .callout-overprint {
    font-family: var(--wp--preset--font-family--custom-sans);
    font-size: var(--wp--preset--font-size--xsmall);
    letter-spacing: var(--wp--custom--letter-spacing--loose);
    line-height: var(--wp--custom--line-height--small);
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 0 5px;
    border-bottom: 1px solid #FFFFFF;
    display: block;
    width: fit-content;
}
.callout-content-simple-group h2.section-title {
    margin: 20px 0;
    font-size: var(--wp--preset--font-size--xxlarge);
    text-transform: none;
    letter-spacing: var(--wp--custom--letter-spacing--normal);
}
.callout-content-simple .social-follow-container {
    justify-content: flex-start;
    gap: 5px;
    margin: 20px 0 0;
}
 .callout-content-simple .social-follow-container svg {
    fill: var(--wp--preset--color--white);
 }
  .callout-content-simple .social-follow-container a:hover svg {
    fill: var(--wp--preset--color--grey-four);
 }
/*--------------------------------------------------------------
Style - Post
--------------------------------------------------------------*/
.content-sidebar .type-post .callout-content-simple .wrap {
    display: block;
    padding: 0;
}

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

/*--------------------------------------------------------------
Style - Post Editor
--------------------------------------------------------------*/
.content-sidebar .block-editor-block-list__layout .callout-content-simple .callout-image {
    width: 100%;
}

.content-sidebar .block-editor-block-list__layout .callout-content-simple .abbr-content {
    padding: var(--wp--custom--layout--block-gap);
    width: 100%;
}

/*--------------------------------------------------------------
Style - Sidebar
--------------------------------------------------------------*/
.block-area-sidebar .callout-content-simple {
    margin: 0 auto var(--wp--custom--layout--block-gap);
}

.block-area-sidebar .callout-content-simple .wrap {
    display: block;
    padding: 0;
}

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

.block-area-sidebar .callout-content-simple h2 {
    margin: var(--wp--custom--layout--block-gap-xsmall) 0;
    font-size: var(--wp--preset--font-size--medium);
    line-height: var(--wp--custom--line-height--small);
}

.block-area-sidebar .callout-content-simple .content-meta {
    font-size: var(--wp--preset--font-size--small);
    line-height: var(--wp--custom--line-height--medium);
}

/*--------------------------------------------------------------
Style - Responsive
--------------------------------------------------------------*/
@media (max-width: 800px) {
    .callout-content-simple .wrap {
        display: block;
    }


    .callout-content-simple .abbr-content {
        width: 100%;
        margin: 0 auto;
    }
}
@media (max-width: 600px) {
    .callout-content-simple-group .callout-image {
        height: 300px;
        border-radius: 10px 10px 0 0;
    }
    .callout-content-simple-group .abbr-content {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        background: transparent;
        color: var(--wp--preset--color--ink);
        padding: 30px;
        border-radius: 0 0 10px 10px;
        display: block;
        height: 100%;
    }
    .callout-content-simple-group .block-callout-button-alt {
        background: var(--wp--preset--color--red);
        color: var(--wp--preset--color--white) !important;
    }
    .callout-content-simple-group .block-callout-button-alt:hover {
        background: var(--wp--preset--color--grey-two);
        color: var(--wp--preset--color--white) !important;
    }
    .callout-content-simple-group  .block-callout-button-alt:hover svg {
         fill: var(--wp--preset--color--white);   
    }
    .callout-content-simple-group .block-callout-button-simple-alt {
        border-bottom: 2px solid var(--wp--preset--color--red);
        color: var(--wp--preset--color--red) !important;
    }
    .callout-content-simple-group .block-callout-button-simple-alt svg {
     fill: var(--wp--preset--color--red);
    }
    .callout-content-simple-group .block-callout-button-simple-alt:hover{
        border-bottom: 2px solid var(--wp--preset--color--grey-two);
        color: var(--wp--preset--color--grey-two) !important;
        opacity: 1;
    }
    .callout-content-simple-group .block-callout-button-simple-alt:hover svg {
     fill: var(--wp--preset--color--grey-two);
    }

    .callout-content-simple-group .callout-overprint {
        border-bottom: 1px solid #1A1A1A;
    }

    .callout-content-simple .social-follow-container svg {
        fill: var(--wp--preset--color--ink);
    }
}