.featured-image__image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.featured-image__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
}

.featured-image__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #fff;
    padding: 1.5rem;
}

.featured-image__title {
    font-size: 1.8rem;
    line-height: 1.3;
    text-decoration: underline;
    font-style: italic;
    color: inherit;
    margin-bottom: 1rem;
    text-align: center;
}

.featured-image__background,
.featured-image__inner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.featured-image__image:hover .featured-image__background,
.featured-image__image:hover .featured-image__inner {
    opacity: 1;
    visibility: visible;
}
