.block_webinars .item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 45px;
    text-decoration: none;
}
.block_webinars .item > :nth-child(1){
}
.block_webinars .item > :nth-child(2){
    display: flex;
    flex-direction: column;
}
.block_webinars .item .imagen {
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    border-radius: var(--image-border-radius);
    border: 1px solid #E4E4E4;
}
.block_webinars .item .imagen-inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.block_webinars .item img {
    width: 100%;
    transition: all 0.6s ease;
}
.block_webinars .item h3 {
    color: #000;
    font-size: 1.15rem;
    margin-bottom: 0.675rem;
}
.block_webinars .item .date{
    margin-bottom: 0.5rem;
}

.block_webinars .item p {
    color: var(--vsf-body-color);
    margin-bottom: 0.8125rem;
    max-height: 6.75rem;
    overflow: hidden;
}
.block_webinars .item .plus{
    color: var(--vsf-primary-color);
    margin-top: auto;
    font-size: 1rem;
    font-weight: 600;
}

.block_webinars .item:hover{
    text-decoration: none;
}
.block_webinars .item:hover h3{
    text-decoration: underline;
}
.block_webinars .item:hover img{
    transform: scale(1.1);
}
