.pbmit-featured-img-wrapper img {
    width: 100%; /* Ensures the image fills the width of the container */
    height: 200px; /* Set a fixed height */
    object-fit: cover; /* Crops the image to fill the dimensions while maintaining aspect ratio */
}
.pbmit-title-bar-wrapper {
    position: relative; 
}

.pbmit-title-bar-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, 0.7);

    z-index: 1;
}