.interviews-single-block {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    gap: 20px;
}

.interviews-single-block .interviews-left {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: 0px;
    box-sizing: border-box;
}

.interviews-single-block .post-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.interviews-single-block .post-content {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.interviews-single-block .video-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top:20px;
}

.interviews-single-block .video-item {
    cursor: pointer;
}

.interviews-single-block .video-item h3 {
    font-size: 1.2rem;
    margin: 0;
}
.interviews-single-block .video-item h3 i {
    margin-left: 10px;
}

.interviews-single-block .interviews-right {
    flex: 0 0 60%;
    max-width: 60%;
    box-sizing: border-box;
}

.interviews-single-block .featured-content {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    /* overflow: hidden; */
    background-color: #000;
}

.interviews-single-block .featured-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  /*  object-fit: cover; */
}


.interviews-single-block .featured-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.interviews-left {
h2.post-title {margin-bottom:5px }

.post-content { }

}

.interviews-left .post-content p {
    margin-bottom:0px;
    font-size: 1.2rem;
}



.video-item {
    display: flex;
    align-items: flex-start; /* Ensures the icon aligns with the top of the text */
    gap: 10px; /* Adds 10px spacing between the icon and the text */
}

.video-item h3 {
    margin: 0; /* Removes default margins on the heading */
    word-break: break-word; /* Ensures long text wraps within its container */
}

.video-item i {
    flex-shrink: 0; /* Prevents the icon from shrinking when text wraps */
}




/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .interviews-single-block {
        flex-direction: column;
    }

    .interviews-single-block .interviews-left,
    .interviews-single-block .interviews-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
