.cp-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
}
.cp-grid-item {
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 10% !important;
    border-radius: 3px;
    box-shadow: rgb(0 0 0 / 4%) 0 1px 0, rgb(0 0 0 / 5%) 0 2px 7px, rgb(0 0 0 / 6%) 0 12px 22px;
    transition: all 0.4s;
}
.cp-grid-item a {
    display: flex;
    align-items: flex-end;
    justify-content: stretch;
    height: 100%;
    min-width: 100%;
}
.cp-grid-item__meta {
    padding: 15px;
    width: 100%;
    background-color: rgba(255, 255, 255, .80);
}
.cp-grid-item__post-date {
    display: block;
    color: #292929 !important;
    margin-bottom: 10px !important;
}
.cp-grid-item__title {
    font-size: 24px;
    color: black !important;
    font-family: "Source Sans Pro"
!important;
    line-height: 1.3;
    margin-bottom: 0 !important;
}
.cp-grid-item__recipe-details {
    display: flex;
}
.cp-recipe-details__item {
    color: #292929 !important;
    display: flex;
    margin-right: 10px;
}
.cp-recipe-details__item b {
    font-size: 17px !important;
    color: black !important;
}
.cp-recipe-details__item img {
    height: 30px !important;
    width: 30px !important;
    margin-bottom: 0 !important;
}

.home   .cp-grid-item:nth-child(4){
    margin: 10px;
}

.cp-cust-btn {
    display: block !important;
    margin: 0 auto !important;
    width: max-content;
    text-align: center;
    font-size: 20px !important;
    padding: 20px 50px !important;
    margin-top: 40px !important;
}

.cp-grid-item-title {
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10% 4% 10% 10%;
}

.cp-grid-item-title h2 {
    font-size: 60px;
    line-height: 1.2;
    width: 51%;
    text-align: right;
}

@media screen and (min-width: 1000px) {
    .cp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}