.titled-image {
    position: relative;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    margin: auto;
}

.titled-image img {
    object-fit: cover;
}

.titled-image .title-div {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 45px;
    line-height: 40px;
    background-color: var(--brand);
}

.titled-image .title-div h4 {
    color: var(--light-shade);
}

.titled-image .details-div {
    position: absolute;
    bottom: 55px;
    left: 10px;
    overflow: hidden;
}

.titled-image .details-div .detail {
    position: relative;
    display: inline-block;
    height: 35px;
    line-height: 32px;
    background-color: var(--brand);
    padding: 0px 10px;
    border-radius: 10px;
    margin-right: 10px;
}

.titled-image .details-div .detail h5,
.titled-image .details-div .detail a {
    color: var(--light-shade);
}

.titled-image .details-div .detail a:hover {
    color: var(--light-accent);
}

.titled-image .hover-div {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 100%;
    background-color: transparent;
    transition: all 0.2s ease-in-out;
    color: var(--light-shade);
}

.titled-image .hover-div:hover {
    opacity: 1;
    background-color: var(--brand-05);
}

.titled-image .hover-div .hover-content-div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 70%;
}

.titled-image .hover-div .hover-content-div a,
.titled-image .hover-div .hover-content-div h3,
.titled-image .hover-div .hover-content-div h4,
.titled-image .hover-div .hover-content-div h5,
.titled-image .hover-div .hover-content-div p {
    color: var(--light-shade);
    margin: 10px;
}

.titled-image .hover-div .hover-content-div a:hover {
    color: var(--light-accent);
}