
.video-item{
    background: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    color: var(--black);
    overflow: hidden;
    height: 100%;
}

.video-item-image{
    display: block;
    position: relative;
    border-radius: 0px;
    aspect-ratio: 2/1;
    background-color: #ccc;
    background-position: center center;
    background-size: cover;
    margin-bottom: 10px;
}

.video-item-image:hover{
    opacity: 0.8;
}

.video-item-content{
    background: var(--white);
    padding: 10px;
}

.video-item-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 40px;
    min-height: 52px;
}

.video-item-title a{
    color: var(--black);
}

.video-item-title a:hover{
    color: var(--primary);
    text-decoration: none;
}

.video-item-topic{
    border-left: 4px solid var(--primary);
    color: var(--primary);
    padding-left: 5px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

.video-item-topic span:not(:last-child)::after{
    content: ', ';
    display: inline;
}

.video-embed iframe{
    height: auto;
    aspect-ratio: 2/1;
}
