.posts-item.card.style3 {
    padding: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    box-sizing: border-box !important;
    background: var(--main-bg-color) !important;
}

.posts-item.card.style3 .item-thumbnail {
    width: 100%;
    flex-shrink: 0;
    padding-bottom: 65%;
    position: relative;
}

.posts-item.card.style3 .item-thumbnail a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.posts-item.card.style3 .item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.posts-item.card.style3 .item-thumbnail,
.posts-item.card.style3 .item-thumbnail img {
    border-radius: var(--main-radius) var(--main-radius) 0 0;
}

.posts-item.card.style3 .item-body {
    padding: 12px 14px 10px 14px;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.posts-item.card.style3 .item-heading {
    margin-bottom: 8px;
    line-height: 1.4;
    flex-shrink: 0;
}

.posts-item.card.style3 .item-heading a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    font-weight: 500;
    color: var(--main-color, #333);
}

.posts-item.card.style3 .item-heading a:hover {
    color: var(--theme-color, #556af1);
}

.posts-item.card.style3 .style3-excerpt {
    margin-bottom: 8px;
    padding: 6px 10px;
    background: var(--muted-bg-color);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 30px;
}

.posts-item.card.style3 .style3-excerpt a {
    color: var(--muted-color);
}

.posts-item.card.style3 .style3-excerpt a:hover {
    color: var(--theme-color, #556af1);
}

.posts-item.card.style3 .style3-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.posts-item.card.style3 .style3-tag a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--muted-color);
    font-size: 12px;
}

.posts-item.card.style3 .style3-tag .tag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(249, 146, 117, 0.15);
    border-radius: 50%;
    color: #F99275;
    font-size: 11px;
    font-weight: bold;
}

.posts-item.card.style3 .style3-tag .tag-text {
    color: var(--muted-color);
}

.posts-item.card.style3 .style3-tag a:hover .tag-text {
    color: var(--theme-color, #556af1);
}

.posts-item.card.style3 .style3-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.posts-item.card.style3 .style3-stats item {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.posts-item.card.style3 .style3-footer {
    padding-top: 8px;
    border-top: 1px solid var(--main-border-color);
    flex-shrink: 0;
}

.posts-item.card.style3 .style3-footer .meta-author {
    font-size: 12px;
}

.posts-item.card.style3 .style3-footer item {
    font-size: 12px;
}

.posts-item.card.style3.style3-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(85, 106, 241, 0.15);
}

body.dark-theme .posts-item.card.style3.style3-hover:hover {
    box-shadow: 0 10px 30px rgba(85, 106, 241, 0.25);
}

.posts-item.card.style3 .zibbox-title-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 5px;
    vertical-align: middle;
}

.posts-row {
    flex-wrap: wrap !important;
    display: flex !important;
    box-sizing: border-box !important;
}

.posts-row > *:not(.posts-item.card) {
    flex: 0 0 100% !important;
    width: 100% !important;
}

.posts-row .posts-item.card.style3 {
    display: flex !important;
    flex-direction: column !important;
    margin: 8px !important;
    width: calc(25% - 16px) !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

@media (max-width: 1200px) {
    .posts-item.card.style3 .item-heading a {
        font-size: 14px;
    }
    
    .posts-item.card.style3 .style3-excerpt {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .posts-item.card.style3 .item-body {
        padding: 10px 12px;
    }
    
    .posts-item.card.style3 .item-heading a {
        font-size: 14px;
    }
    
    .posts-item.card.style3 .style3-excerpt {
        font-size: 12px;
        padding: 5px 8px;
    }
}

@media (max-width: 768px) {
    .posts-item.card.style3 .item-body {
        padding: 10px 12px;
    }
    
    .posts-item.card.style3 .item-heading a {
        font-size: 14px;
    }
    
    .posts-item.card.style3 .style3-excerpt {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .posts-item.card.style3 .style3-meta-row {
        margin-bottom: 6px;
    }
    
    .posts-item.card.style3 .style3-stats {
        gap: 8px;
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .posts-row .posts-item.card.style3 {
        width: calc(50% - 10px) !important;
        margin: 5px !important;
        flex-shrink: 0 !important;
    }
    
    .posts-item.card.style3 .item-thumbnail {
        padding-bottom: 65% !important;
    }
    
    .posts-item.card.style3 .item-body {
        padding: 8px 10px;
    }
    
    .posts-item.card.style3 .item-heading a {
        font-size: 13px;
        line-height: 1.35;
    }
    
    .posts-item.card.style3 .style3-excerpt {
        font-size: 11px;
        padding: 4px 6px;
        margin-bottom: 6px;
    }
    
    .posts-item.card.style3 .style3-meta-row {
        margin-bottom: 6px;
    }
    
    .posts-item.card.style3 .style3-stats {
        gap: 6px;
        font-size: 11px;
    }
    
    .posts-item.card.style3 .style3-tag a {
        font-size: 11px;
    }
    
    .posts-item.card.style3 .style3-tag .tag-icon {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
    
    .posts-item.card.style3 .style3-footer {
        padding-top: 6px;
    }
    
    .posts-item.card.style3 .style3-footer .meta-author,
    .posts-item.card.style3 .style3-footer item {
        font-size: 11px;
    }
}