.cc-news-ajax-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
}

.cc-news-itemWrapper {
    box-shadow: 0 30px 90px rgb(0 0 0 / 14%);
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
}

.cc-news-itemWrapper .content {
    padding: 20px;
}

.cc-news-itemWrapper .date {
    margin-top: 8px;
}

.cc-news-itemWrapper .excerpt, .cc-news-itemWrapper .title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.cc-news-itemWrapper .excerpt {
    min-height: 104px;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.cc-news-itemWrapper .title {
    min-height: 56px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cc-news-itemWrapper .excerpt, .cc-news-itemWrapper .date {
    color: #555555;
}

.cc-news-itemWrapper .categories {
    font-weight: 600;
    font-size: small;
    color: #6f8fb8;
}

.cc-news-itemWrapper .image {
    height: 220px;
    overflow: hidden;
}

.cc-news-itemWrapper .image img {
    height: 220px;
    width:100%;
    object-fit:cover;
    object-position:center center;

}

.cc-news-itemWrapper img {
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: all .3s ease-in-out;
}

.cc-news-itemWrapper:hover img {
    transform: scale(1.07);
    -webkit-transform: scale(1.07);
}

@media only screen and (max-width: 850px) {
    .cc-news-ajax-wrapper {
        grid-template-columns: 1fr;
    }
}

@media only screen and (min-width: 551px) and (max-width: 950px) {

}

@media only screen and (min-width: 751px) and (max-width: 1000px) {

    .cc-news-itemWrapper .image {

        height:280px;
    }
    .cc-news-itemWrapper .image img {
        height: 280px;

    }

}

@media only screen and (min-width: 1001px) and (max-width: 1099px) {

    .cc-news-itemWrapper .image {

        height:150px;
    }
    .cc-news-itemWrapper .image img {
        height: 150px;

    }

}

@media only screen and (min-width: 1100px) {



}
