.video-masonry-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.video-masonry-item {
    width: calc(33.33% - 10px); /* 3 columns */
    margin-bottom: 15px;
    box-sizing: border-box;
    background-color: #121212;
    border: 1px solid #121212;
    padding: 24px 30px;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.7);
}

.video-user-detail {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.video-masonry-item .profile-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
}

.profile-name h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1;
    color: #fff;
}

.profile-name p {
    margin: 0;
    color: #888;
    font-size: 14px;
}

.video-short-description {
    font-size: 14px;
    margin-bottom: 16px;
}

.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: none;
}

.show-more.elementor-button{
    margin: 20px auto;
    display: flex;
}

@media (max-width: 768px) {
    .video-masonry-item {
        width: 100%; /* Single column for smaller screens */
    }
}
