.featured-category-cover {
    height: 90vh;
    width: 100%;
    position: relative;
}

.featured-category-cover .featured-image img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-category-cover .overlay {
    position: absolute;
    z-index: 1;
    top: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: transparent linear-gradient(180deg, #39393900 0%, #000000 100%) 0% 0% no-repeat padding-box;
}

.featured-category-cover .content-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    z-index: 2;
    position: relative;
    justify-content: space-between;
}

.featured-category-cover h1 {
    font-family: "Cambon", serif;
    font-size: 50px;
    line-height: 65px;
    color: white;
}

.featured-category-cover h1 a {
    color: white;
}

.featured-category-cover .category-badge {
    color: white;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    line-height: 27px;
    padding: 5px 27px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    letter-spacing: 1.37px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    align-self: flex-start;
}

.featured-category-cover .read-more a {
    color: white;
    text-decoration: none;
}

.featured-category-cover .read-more a:after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url('../images/arrow-right-white.svg');
    background-repeat: none;
    background-size: 10px 10px;
    margin-left: 8px;
}

@media screen and (max-width: 768px) {
    .featured-category-cover h1 {
        font-size: 32px;
        line-height: 48px;
    }

    .featured-category-cover .content-box {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}