.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article-grid,
.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    display: block;
    box-sizing: border-box;
    margin: 0 -15px 0;
}
.article-grid {
    float: left;
}
.article-item {
    display: block;
    flex-direction: column;
    background: #fff;
    height: 100%;
    padding: 0 15px 15px;
    float: left;
    width: 33.33%;
}
.article-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 1rem;
}
.article-grid [data-cvc="3"] .article-item:nth-child(3n+1),
.gallery-grid [data-cvc="3"] .article-item:nth-child(3n+1) {
    clear: left !important;
}

.pt-cv-wrapper img {
    max-height: 150px;
    object-fit: cover;
    background-color: #fff;
    display: block;
    margin: auto;
    padding: 0 !important;
    width: 100%;
}