.cvp-video-projects-container {
    max-width: 100%;
    font-family: Arial, sans-serif;
    font-family: "Acumin Pro Wide", Arial, sans-serif;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 10px;
}
.cvp-video-project {
    width: 100%;
    margin-bottom: 100px;
}
.cvp-video-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: "Bomstad Display", Arial, sans-serif;
}
.cvp-video-info {
    font-size: 18px;
    margin-bottom: 8px;
    text-align: left;
}
.cvp-video-info span::before {
    content: " | ";
    color: #ffffff;
    margin-right: 5px;
}
.cvp-video-info span {
    margin-right: 10px;
}
.cvp-video-description {
    margin-bottom: 30px;
    font-size: 18px;
}
.cvp-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
}
.cvp-video-wrapper img {
    position: absolute;
    width: 100%;
    height: 100% !important;
    left: 0;
    top: 0;
    object-fit: cover;
    display: block;
}
.cvp-video-wrapper .cvp-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><polygon points="16,12 52,32 16,52"/></svg>') no-repeat center center;
    background-size: contain;
    opacity: 1;
}
@media (max-width: 768px) {
    .cvp-video-projects-container {
        padding: 5px;
    }
    .cvp-video-description {
    margin-bottom: 20px;

}
.cvp-video-project {

    margin-bottom: 60px;
}
}
