.cc-news-ajax-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home .cc-news-itemWrapper {
    background: white;
}

.cc-news-itemWrapper {
    overflow: hidden;
    background: #EEEBE7;
    border: solid white 2px;
    border-radius: 25px;
    padding: 20px;
    height: 470px;
}

.cc-news-itemWrapper.featured {
    border-color: #72005F;
}

.cc-news-itemWrapper p {
    margin: 0;
    padding: 0;
}

.cc-news-itemWrapper .content {
    padding: 20px;
}

.cc-news-itemWrapper .date {
    margin-top: 8px;
    margin-left: 8px;
    position: absolute;
    top: 0;
    color: #EEEBE7;
    z-index: 1;
    border: 1px solid #EEEBE7;
    border-radius: 999em;
    padding: 5px;
}

.cc-news-itemWrapper .excerpt, .cc-news-itemWrapper .title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.cc-news-itemWrapper > a {
    text-decoration: none;
}

.cc-news-itemWrapper .content .read-more {
    margin-top: 20px;
    display: block;
    font-weight: 600;
}

.cc-news-itemWrapper .content .read-more i {
    transition: left .3s ease-in-out;
    left: 5px;
    position: relative;
}

.cc-news-itemWrapper .excerpt {
    height: 104px;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    color: black;
    margin-top: 20px;
    font-size: 16px;
    line-height: 26px;
}

.cc-news-itemWrapper .title {
    height: 48px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
}

.cc-news-itemWrapper .categories {
    font-weight: 600;
    font-size: small;
    color: #6f8fb8;
}

.cc-news-itemWrapper .image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
}

.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);
}

.cc-news-itemWrapper:hover .read-more i {
    left: 15px;
}

.more-news {
    margin-top: 50px;
    text-align: center;
}

@media only screen and (max-width: 750px) {
    .cc-news-ajax-wrapper {
        grid-template-columns: 1fr;
    }
}

@media only screen and (min-width: 751px) and (max-width: 1100px) {

    .cc-news-ajax-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .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) {
}