


    .blog-items {
        padding: 10px;
        column-gap: 30px;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
    }
   .listkey    .blog-item {
    width: calc(33.3% - 20px);
    padding: 0;
    margin-bottom: 30px;
    background-color: #fff;
    border: 0 solid #69727d;
    border-radius: 3px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    transition: all .35s ease;
    -webkit-box-flex: 0 0 calc(33.3% - 20px);
    -webkit-flex: 0 0 calc(33.3% - 20px);
    -ms-flex: 0 0 calc(33.3% - 20px);
    flex: 0 0 calc(33.3% - 20px);
    max-width: 100%;
    float: none;
    margin: 0 0 30px 0;
}
 .listkey   .item-inner{
            display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
}.listkey  .item-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
}.listkey .item-img {
    width: 100%;
    overflow: hidden;
    float: none;
    margin: 0;
    padding: 0;
    max-width: 100%;
    border: none;
    max-height: unset;
}
   .listkey  .item-img img {
    width: 100%;
    transition: all .35s ease;
} .listkey .item-info {
    flex: 1;
    margin-top: 10px;
    padding: 20px 30px 0;
    width: 100%;
    float: none;
} .listkey .item-info .item-title {
    font-size: 21px;
    margin-bottom: 20px;
    color: var(--bs-theme-color);
    transition: color .35s ease;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: unset;
    line-height: 1.5;
}.listkey .item-info .item-desc {
    color: #777;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listkey .item-info .item-btn {
    color: var(--commonColor);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
    line-height: 32px;
}.listkey .item-time {
    border-top: 1px solid #eaeaea;
    padding: 5px 10px;
    color: #adadad;
    font-size: 14px;
    line-height: 1.3;
    display: flex;
    align-items: center;
}.listkey .item-time i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    padding: 2px;
}.listkey  .item-time span {
    flex: 1;
    margin-left: 10px;
    text-align: left;
} .listkey .item-time i img {
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}.listkey em,i {
    font-style: normal
}.listkey  .blog-item:hover .item-img img {
    transform: scale(1.2);
}


@media screen and (max-width: 950px){
   .listkey    .blog-item {
    width: 100%;
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;

}
}