.hotblog-item {
    cursor: pointer;
}
.hotblog-item .wrap {
    display: grid;
    grid-template-columns: 140px auto;
    align-items: center;
    background-color: #f8fafc;
    padding: 12px 15px;
    border-radius: 10px;
}
.hotblog-item:not([data-index="1"]) .wrap {
    height: 250px;
}
.hotblog-item .wrap > a {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.hotblog-item .featured-image {
    width: 125px;
    height: 125px;
}
.hotblog-item .featured-image {
    overflow: hidden;
    border-radius: 10px;
}
.hotblog-item .featured-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transform: scale(1);
    transition: all .3s;
}
.hotblog-item:hover .featured-image img {
    transform: scale(1.05);
}
.hotblog-item .box-contain ul.terms li {
    margin-right: 10px;
    margin-bottom: 5px;
}
.hotblog-item .box-contain ul.terms li a {
    color: var(--main-color-theme);
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
}
.hotblog-item .box-contain .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    height: 40px;
    margin-bottom: 10px;
}
.hotblog-item .box-contain ul.meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.hotblog-item .box-contain ul.meta li {
    margin-right: 7.5px;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #6a7c94;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 5px;
}
.hotblog-item .box-contain ul.meta li:not(:last-child, .term)::after {
    content: '-';
    color: #6a7c94;
    margin-left: 7.5px;
}
.hotblog-item .box-contain ul.meta li svg {
    width: 12px;
}
@media only screen and (max-width: 767px) {
    .hotblog-item .box-contain .title {
        font-size: 18px;
    }
}