.videpost-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.videobox {
    width: calc(33.33% - 20px); /* 33.33% for desktop */
    margin: 0px;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;

 
}
.videobox .video{
    position: relative;
    padding-top: 56.25%;
    width: 100%;
    margin-bottom: 32px;
    background-color: #ddd3c7;
}

.videobox .title{
    height: 200px;
}

.videobox .title h5 p{
    font-size: 14px;
}
.videobox .title h4 {
    font-size: 23px;
}

.videobox .video iframe{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    margin: 0;
    top: 0;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.veruretots{
    text-align: right;
    width: 100%;
    display: block;
    font-size: 16px;
    text-transform: uppercase;
}
/* Media query for mobile */
@media screen and (max-width: 768px) {
    .videpost-list {
        flex-direction: column; /* Stack items vertically on mobile */
    }

    .videobox {
        width: 100%; /* Full width on mobile */
    }
}

