.callout-icons .wrap {
    position: relative;
    padding: 40px 0!important;
}
.callout-icons .section-title {
    margin: 0 0 var(--wp--custom--layout--block-gap);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.callout-icons .section-title::after, .callout-icons .section-title::before {
    background: #e2e2e2;
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    flex-basis: 0;
    flex-grow: 1;
}
.section-icons {
    display: grid;
    column-gap: var(--wp--custom--layout--block-gap-small);
    row-gap: var(--wp--custom--layout--block-gap-small);
    grid-template-columns: repeat(9, minmax(0, 1fr));
}
.post-icon {
    display: block;
    text-align: center;
}
.post-icon a {
    display: block;
    position: relative;

}
span.vertical-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--wp--custom--border-radius--large);
    line-height: 1;
    width: 49px;
    height: 49px;
    margin: 0 auto -20px;

    border: 2px solid var(--wp--preset--color--white);
    background: var(--wp--preset--color--blue);
    position: relative;

}
.vertical-icon svg {
    fill: var(--wp--preset--color--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.post-icon a:hover {
    opacity:1;
}

.icon-title {
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    display: block;
    line-height: var(--wp--custom--line-height--small);
    color: var(--wp--preset--color--ink);
    background: var(--wp--preset--color--white);
    padding: 25px 10px 15px;
    border-radius: 5px;
    -webkit-box-shadow: var(--wp--custom--box-shadow--3);
    -moz-box-shadow: var(--wp--custom--box-shadow--3);
    box-shadow: var(--wp--custom--box-shadow--3);
}
.post-icon a:hover {
    opacity: 1;
    transform: scale(1.05);
}
.post-icon a:hover .icon-title {
    text-decoration: underline;
}
.post-icon a:hover .icon-title {
    color: var(--wp--preset--color--white);
    background: var(--wp--preset--color--grey-two);
}
.post-icon a:hover .vertical-icon {
    background: var(--wp--preset--color--grey-two);
}
.post-icon a:hover .vertical-icon svg {
    fill: var(--wp--preset--color--white);
}
/*--------------------------------------------------------------
Styling: In Post
--------------------------------------------------------------*/
.type-post .section-icons {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
/*--------------------------------------------------------------
Styling: After Post
--------------------------------------------------------------*/
.block-area-after-post .section-icons {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
/*--------------------------------------------------------------
Styling: In Post Editor
--------------------------------------------------------------*/
.content-sidebar .editor-styles-wrapper .section-icons {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

/*--------------------------------------------------------------
Styling: Sidebar
--------------------------------------------------------------*/
.block-area-sidebar .callout-icons .wrap {
    padding: 20px!important;
    background: #FAFAFA;
    border-radius: 10px;
}
.block-area-sidebar .callout-icons .section-title {
    text-align: center;
    margin: 0 auto var(--wp--custom--layout--block-gap-small);
}
.block-area-sidebar .section-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.block-area-sidebar .post-icon a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position; relative;
    border: 1px solid #eaeaea;
}
.block-area-sidebar .post-icon a:hover {
    background: #eaeaea;
}
.block-area-sidebar span.vertical-icon {
    margin: 0;
    width: 40px;
    height: 40px;
}
.block-area-sidebar .vertical-icon svg {
    width: 20px;
    height: 20px;
}
.block-area-sidebar .icon-title {
    font-size: .7rem;
    background: transparent;
    padding: 0;
    border-radius: 5px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    position: absolute;
    text-align: left;
    width: calc(100% - 40px);
    position: absolute;
    right: 0;
    padding-left: 5px;
}
.block-area-sidebar  .post-icon a:hover .icon-title {
    color: var(--wp--preset--color--ink);
    background: transparent;
}
.block-area-sidebar .post-icon:nth-child(9) {
    grid-column: span 2;

}
/*--------------------------------------------------------------
Style: Responsive
--------------------------------------------------------------*/
@media (max-width: 1024px) {
    .section-icons {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .section-icons, .type-post .section-icons  {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    span.vertical-icon {
    width: 100px;
    height: 100px;

}
.vertical-icon svg {
    width: 50px;
    height: 50px;
}
.icon-title {
    font-size: .8rem;
}
}