.smallblog-item {
    margin-bottom: 20px;
}
.smallblog-item:last-child {
    margin-bottom: 0;
}
.smallblog-item .wrap {
    display: grid;
    grid-template-columns: 100px auto;
    align-items: center;
}
.smallblog-item .featured-image {
    width: 96px;
    height: 96px;
    overflow: hidden;
    border-radius: 20px;
}
.smallblog-item .featured-image img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    transition: transform 0.3s ease;
}
.smallblog-item:hover .featured-image img {
    transform: scale(1.05);
}
.smallblog-item .box-contain {
    padding-left: 10px;
}
.smallblog-item .box-contain ul.terms li {
    margin-right: 10px;
    margin-bottom: 5px;
}
.smallblog-item .box-contain ul.terms li a {
    color: var(--main-color-theme);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
}
.smallblog-item .box-contain .title {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    height: 32px;
    margin-bottom: 5px;
}
.smallblog-item .box-contain .title a {
    color: #222;
}
.smallblog-item:hover .box-contain .title a {
    color: var(--primary-heading-color);
}
.smallblog-item .box-contain ul.meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.smallblog-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;
}
.smallblog-item .box-contain ul.meta li:not(:last-child, .term)::after {
    content: '-';
    color: #6a7c94;
    margin-left: 7.5px;
}
.smallblog-item .box-contain ul.meta li svg {
    width: 12px;
}