.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}
.blog-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 75px;
}
.blog-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.blog-card__image a {
    display: block;
    height: 100%;
}
.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
/* Overlay */
.blog-card__hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .4s ease;
}
/* Hover effects solo sull'immagine */
.blog-card__image:hover img {
    transform: scale(1.06);
}
.blog-card__image:hover .blog-card__hover-overlay {
    background: rgba(0,0,0,0.25);
}
.blog-card__content {
    padding-top: 25px;
}
.blog-card__date {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    display: block;
    margin-bottom: 10px;
}
.blog-card__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    margin-bottom: 0;
}
.blog-card__title a {
    text-decoration: none;
    color: inherit;
    transition: color .3s ease;
}
.blog-card__title a:hover {
    color: #0a8f3d;
}
.blog-card__excerpt {
    font-size: 14px;
    line-height: 19px;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 6px 0 0 0;
}
.blog-card__cta {
    margin: 20px 0 0 0;
}

.blog-related {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.blog-related__title {
    font-size: 28px;
    margin-bottom: 40px;
}

.vca_posts_slider .titemwrap{
    padding: 0 20px;
}
.vca_posts_slider .blog-card {
    margin-bottom: 0;
}

@media (max-width:1190px){
    .blog-grid{
        grid-template-columns:repeat(2, 1fr);
    }

}

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns:1fr;
    }

    .vca_posts_slider .titemwrap {
        padding: 0 15px;
    }

    .vca_latest_news_row .vc_col-sm-9 .vc_column-inner{padding: 0;}
    .vca_latest_news_row .slick-prev, .vca_latest_news_row .slick-next {
        width: 30px;
        height: 30px;
        top: -27px;
    }
    .vca_latest_news_row .slick-next{
        right: 10px;
    }
    .vca_latest_news_row .slick-prev {
        right: 35px;
        left: auto;
    }
    .vca_latest_news_row  .slick-prev::before, .vca_latest_news_row .slick-next::before {
        font-size: 20px;
    }

    .single-post .vca_padder_row{
        padding: 0;
        padding-inline: 0;
    }
}