.section--creative-single-featured-post{

}
.creative-single-featured-post__link{
    border-radius: 20px;
    background-color: #b9ebff;
    padding: 30px;
    position: relative;
    gap: 20px;
    text-decoration: none;
    overflow: hidden;
}
.creative-single-featured-post__image{
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    display: block;
    box-sizing: border-box;
}
.creative-single-featured-post__image img{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}
.creative-single-featured-post__content{
    padding: 25px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    background-color: white;
    flex: 0 0 38%;
    box-sizing: border-box;
}
.creative-single-featured-post__title{
    font-family: var(--font-title);
    font-weight: 900;
}
.creative-single-featured-post__excerpt{
    font-size: 1.1em;
    font-weight: 500;
}
.creative-single-featured-post__date{
    font-size: 0.8em;
}
@media(max-width: 992px){
    .creative-single-featured-post__link{
        flex-direction: column;
        background-color: transparent;
        border-radius: 0;
        padding: 0;
    }
    .creative-single-featured-post__image{
        border-radius: 20px;
        background-color: #b9ebff;
        padding: 20px;
        position: static;
        width: 100%;
    }
    .creative-single-featured-post__image img{
        position: static;
        width: 100%;
        height: auto;
    }
    .creative-single-featured-post__content{
        background-color: #eeeeee;
        border-radius: 20px;
        padding: 20px;
    }
}