.callout-icons {
    padding: 0;
    margin: 0;
}
.callout-icons .wrap {
    position: relative;
}

.callout-icons.is-style-default .wrap {
    padding: 0
}

.callout-icons .section-header {
    display: block;
    text-align: center;
    position: relative;
    margin: 0 auto var(--wp--custom--layout--block-gap-small);
}
.callout-icons .section-icon {
    width: 50px;
    height: 50px;
    border: 5px solid #FFF;
    margin-right: 0;
    margin: -45px auto 5px!important;
}
.callout-icons .section-desc {
    text-align: center;
}
.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;
}
span.vertical-icon {
    background: var(--wp--preset--color--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--wp--custom--border-radius--large);
    padding: 10px;
    line-height: 1;
    width: 100px;
    height: 100px;
    -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);
    margin: 0 auto 10px;
}
.vertical-icon svg {
    width: 70px;
    height: 70px;
}
.icon-title {
    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;
}
/*--------------------------------------------------------------
In Post Styling
--------------------------------------------------------------*/
.type-post .section-icons {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

/*--------------------------------------------------------------
Sidebar Styling
--------------------------------------------------------------*/
.block-area-sidebar .section-icons {
        grid-template-columns: repeat(3, minmax(0, 1fr));
}
    .block-area-sidebar span.vertical-icon {
        width: 80px;
        height: 80px;
    }
    .block-area-sidebar .vertical-icon svg {
        width: 50px;
        height: 50px;
    }
    .block-area-sidebar .icon-title {
        font-size: .6rem;
    }

.block-area-sidebar .section-icons .section-icon {
    width: 30px;
    height: 30px;
    border: 2px solid #FFF;
    margin-right: 0;
    margin: -35px auto 5px!important;
}


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