.featured-image-container-a4ee1078 {
    position: relative;
    width: 100%; /* Ensure full width */
    display: flex; /* Use flexbox to center overlay */
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.featured-image-img-a4ee1078 {
    width: 100%;
    height: auto; /* Maintain aspect ratio, no cropping */
    display: block; /* Remove bottom space */
}

/* Add an overlay using a pseudo-element on the container, or use a separate div */
.featured-image-container-a4ee1078::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Default overlay color */
    z-index: 1;
    pointer-events: none;
}

.featured-image-overlay-a4ee1078 {
    position: absolute;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.featured-image-title-a4ee1078 {
    color: #ffffff;
    margin: 0 0 10px 0;
    font-size: 2.5em;
    font-weight: bold;
}

.featured-image-tagline-a4ee1078 {
    color: #ffffff;
    margin: 0 0 20px 0;
    font-size: 1.2em;
}

.featured-image-btn-a4ee1078 {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.featured-image-btn-a4ee1078:hover,
.featured-image-btn-a4ee1078:focus {
    opacity: 0.9;
    color: #ffffff;
}