.box-video-pillole {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}
.box-video-pillole .box-video {
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.box-video-pillole .box-video .video-iframe {
    width: 100%;
    height: 234px;
}
.box-video-pillole .box-video iframe {
    width: 100%;
    height: 100%;
}
.box-video-pillole .box-video .box-info-video {
    padding: 20px;
}
.box-video-pillole .box-video .box-info-video h3 {
    color: #202020;
    font-weight: 500;
    margin: 0;
}
.box-video-pillole .box-video .box-info-video .abstract-video {
    flex-grow: 1;
}

@media (max-width: 767px) {
    .box-video-pillole {
        grid-template-columns: 1fr;
    }
}