/****************************
 * Numbered Content Grid
****************************/
.vii-numbered-content-grid__inner {
    --grid-gap-x:0px;
    --grid-gap-y:0px;
}
.vii-numbered-content-grid__item {
    --icon-size:100px;
    row-gap:48px;
    padding:80px 48px;margin-right:-1px;
    border:var(--border-light-gold);
}


.vii-numbered-content-grid__image {width:var(--icon-size);height:var(--icon-size);}
.vii-numbered-content-grid__image i {font-size:var(--icon-size);}
.vii-numbered-content-grid__item-heading {margin-bottom:16px;}

/***********************************
 * Numbered Content Grid Responsive
***********************************/
@media only screen and (min-width:1700px) {
    .vii-numbered-content-grid__item {--icon-size:6vw;}
}
@media only screen and (min-width:769px) {
    .vii-numbered-content-grid__item:nth-child(n + 4) {border-top:none;}
    .vii-numbered-content-grid__item:not(:last-child):not(:nth-child(3n + 3)) {border-right:none;}
}
@media only screen and (min-width:1281px) {
    body.has-horizontal-lines .vii-numbered-content-grid__item:nth-child(3n + 3) {border-right:none;}
    body.has-horizontal-lines .vii-numbered-content-grid__inner {margin-right:-2px;}
}
@media only screen and (max-width:1180px) {
    .vii-numbered-content-grid__item {padding:60px var(--vii-gap-container);}
}
@media only screen and (max-width:1024px) {
    .vii-numbered-content-grid__item {padding-top:48px;padding-bottom:48px;}
}
@media only screen and (max-width:768px) and (min-width:481px) {
    .vii-numbered-content-grid__item:not(:nth-child(1), :nth-child(2)) {border-top:none;}
    .vii-numbered-content-grid__item:nth-child(2n + 1) {border-right:none;}
    .vii-numbered-content-grid__item:is(:nth-child(2n), :last-child) {border-right:var(--border-light-gold);}
}
@media only screen and (max-width:480px) {
    .vii-numbered-content-grid__item {padding-top:48px;padding-bottom:48px;row-gap:48px;}
    .vii-numbered-content-grid__item:not(:first-child) {border-top:none;}
    .vii-numbered-content-grid__item:not(:last-child) {border-right:var(--border-light-gold);}
}