/* OpenWeb Elementor Category Posts */
.openweb-posts-grid{
    display:grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap:16px;
}

.openweb-posts-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.openweb-post-item{
    border: 1px solid rgba(0,0,0,0.08);
    padding: 12px;
    border-radius: 10px;
}

.openweb-thumb-link{
    display:block;
}

.openweb-image-wrapper{
    position:relative;
    overflow:hidden;
    border-radius: 10px;
}

.openweb-image-wrapper img{
    display:block;
    width:100%;
    height:auto;
    transition: transform 0.3s ease;
}

.openweb-image-overlay{
    position:absolute;
    inset:0;
    background-color: rgba(0,0,0,0.4);
    opacity:0;
    transition: opacity 0.3s ease;
    pointer-events:none;
}

.openweb-post-item:hover .openweb-image-overlay{
    opacity:0.6;
}

.openweb-post-item:hover .openweb-image-wrapper img{
    transform: scale(1.05);
}

.openweb-post-content{
    margin-top: 10px;
}

.openweb-post-title{
    margin: 0 0 6px 0;
    font-size: 18px;
    line-height: 1.25;
}

.openweb-post-title a{
    text-decoration:none;
    transition: color 0.3s ease;
}

.openweb-post-excerpt{
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.85;
}

.openweb-no-posts{
    padding: 10px;
    opacity: 0.8;
}
