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

.recordingbox {
    width: calc(33.33% - 20px); /* 33.33% for desktop */
    margin: 0px;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
 
}
.recordingbox .recording{
    position: relative;
    padding-top: 56.25%;
    width: 100%;
    margin-bottom: 32px;
}

.recordingbox .recording 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;
}

.circular-image {
    width: 300px; /* Adjust the width and height as needed */
    height: 300px;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image covers the entire circle */
}

a .circular-image {
    -webkit-transition: -webkit-transform .3s cubic-bezier(.4,0,1,1);
    -moz-transition: -moz-transform .3s cubic-bezier(.4,0,1,1);
    -o-transition: -o-transform .3s cubic-bezier(.4,0,1,1);
    transition: transform .3s cubic-bezier(.4,0,1,1);
    filter: drop-shadow(3px 7px 6px #b9b9b9);
  }

a .circular-image:hover {
    -webkit-transform: scale(1.05) translateZ(0);
    -moz-transform: scale(1.05) translateZ(0);
    -o-transform: scale(1.05) translateZ(0);
    transform: scale(1.05) translateZ(0);
  }


  .recordingbox .title{
    height: 200px;
}


  .recordingbox .title h5 p{
    font-size: 14px;
}

.recordingbox .title h4 {
    font-size: 23px;
}

/* Media query for mobile */
@media screen and (max-width: 768px) {
    .recording-post-list {
        flex-direction: column; /* Stack items vertically on mobile */
    }

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