.image-box-grid .inner {
    width: 100%;
    max-width: 1002px;
    margin: 0 auto;
    text-align: center;
}

.image-box-grid .title {
    margin-bottom: 20px;
    padding: 0 15px;
    text-align: center;
}

.image-box-grid .title {
    font-family: "canada-type-gibson",sans-serif;
    font-weight: 600;
    border-bottom: none;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    color: #b94127;
    letter-spacing: 9px;
}

.image-box-grid .item-cont {
    display: block;
    padding: 0 5px;
}

.image-box-grid .item {
    margin: 0 10px 30px;
}
.image-box-grid .item > a {
    border: none;
}
.image-box-grid .item [data-asset] {
    display:block;
    position:relative;
}
.image-box-grid .item .img {
    margin-bottom: 15px;
}

.image-box-grid .item .content .link {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 12px;
}

.image-box-grid .item .content .link::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 4px;
    width: 80px;
    background-color: #faa63d;
}

.image-box-grid .item .content .link,
.image-box-grid .item .content .link a {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 900;
    color: #54472c;
    font-size: 19px;
    letter-spacing: 0.8px;
    line-height: 21px;
    border-bottom: none;
    text-decoration: none;
    text-transform: uppercase;
}

.image-box-grid .item .content .link .icon {
    color: #b94127;
}

.image-box-grid .item .content .subtitle {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #54472c;
    border-bottom: none;
    text-decoration: none;
}
@media only screen and (min-width: 641px) {
    .image-box-grid .item-cont {
        display: flex;
        justify-content: left;
        flex-wrap: wrap;
    }
    
    .image-box-grid .item {
        flex-basis: calc(33% - 20px);
    }
    .image-box-grid .inner {
        text-align: inherit;
    }
}

@media only screen and (min-width: 1025px) {
    .image-box-grid .title {
        margin-bottom: 30px;
    }

    .image-box-grid .item {
        margin-bottom: 50px;
    }

    .image-box-grid .item .img {
        /* fix zoom stuttering */
        transform: rotate(0.01deg);
        overflow: hidden;
    }

    .image-box-grid .item .img img {
        transform: scale(1);
        transition: 0.3s transform;
    }

    .image-box-grid .item .img:hover img {
        transform: scale(1.1);
        transition: 0.3s transform;
    }

    .image-box-grid .item .content .link,
    .image-box-grid .item .content .link a {
        font-size: 23px;
        line-height: 28px;
    }
}

@media only screen and (min-width: 1200px) {
    .image-box-grid {
        padding: 0 30px;
    }
}