.wp-blogs-container {
    width: 100%;
    margin-top: 30px;
}
.wp-blogs-inside {
    width: 90%;
    margin: 0 auto;
}
.blogs-title {
    width: 100%;
    text-align: center;
}
.wp-blogs-img {
    width: 100%;
    margin-bottom: 70px;
    position: relative;
}
.wp-blogs-img img {
    width: 100%;
}

.wp-blogs-title {
    width: 60%;
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
}
.wp-blogs-title img {
    width: 100%;
}

/* blog list */
.wp-blogs-list {
    width: 100%;
    /* background-color: aqua; */
}
.wp-blogs-item {
    float: left;
    width: 31%;
    min-height: 420px;
    margin: 30px 1.0%;
    border-radius: 10px;
    box-shadow: 0px 1px 4px 0px rgba(44, 49, 59, 0.15);
    /* background-color: yellow; */
}
.wp-blogs-item:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.blog-item-img {
    width: 100%;
    /* height: 200px; */
}
.blog-item-img img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    cursor: pointer;
}
.blog-item-desc {
    width: 90%;
    margin: 0 auto;
}
.blog-item-date {
    width: 100%;
    padding-top: 10px;
    font-size: 14px;
    color: #c2c2c2;
}
.blog-item-date:hover {
    color: #002f87;
}
.blog-item-title {
    width: 100%;
    font-weight: bold;
    padding-top: 10px;
    cursor: pointer;
}
.blog-item-title:hover {
    color: #002f87;
}
.blog-item-short-desc {
    width: 100%;
    font-size: 14px;
    padding-top: 10px;
}
.blog-item-view-more {
    width: 100%;
    padding: 10px 0px;
    font-style: italic;
    font-size: 14px;
    color: #c2c2c2;
    cursor: pointer;
}
.blog-item-view-more:hover {
    color: #002f87;
}

.wp-pagination {
    float: left;
    width: 100%;
    margin: 30px 0;
    /* background-color: aqua; */
}
.wp-pagination-list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    /* background-color: green; */
}
.pagination-item {
    margin: 0 5px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    color: #029346;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.selected-page {
    color: white;
    background-color: #029346;
}


@media screen and (max-width: 768px) {
    .wp-blogs-item {
        width: 100%;
    }
    .wp-blogs-item:hover {
        /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    }
    
}

@media (min-width: 768px) and (max-width: 1024px) {
    .wp-blogs-item {
        width: 100%;
        height: 600px;
    }
    .wp-blogs-item:hover {
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    }
}
