.featured-posts {
    padding: 50px 0 100px;
    background: #1D1D1D;
    background: linear-gradient(175deg, rgba(29, 29, 29, 1) 0%, rgba(40, 40, 43, 1) 100%);
    position: relative;

    & h2 {
        color: #fff;
        font-size: 46px;
    }

    @media( min-width : 1200px ) {
        .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;

            & > .col-md-3 {
                height: 100%;
            }
        }
    }
}

.featured-content__wrapper {
    margin-bottom: 30px;

    @media( min-width : 768px ) {
        margin-bottom: 0;
    }
}

.featured-posts__item-image {
    height: 128px;
    width: 100%;

    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.featured-posts__item {
    background: #373739;
    border-radius: 10px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    @media( min-width : 1200px ) {
        min-height: 400px;
        height: 100%;
    }

    & h3 {
        font-size: 22px;
        color: #fff;
    }

    & .featured-post__date {
        color: #fff;
        font-size: 16px;
    }

    & a.btn-secondary {
        padding: 19px 30px;
        margin-top: auto;
        margin-bottom: 0;

        &::before {
            display: none;
        }

    }

}

.featured-content {
    margin-bottom: 30px;

    @media( min-width : 768px ) {
        margin-bottom: 0;
    }
}

.featured-posts__list {
    margin-bottom: 30px;

    @media( min-width : 768px ) {
        margin-bottom: 0;
    }
}

.icon-graphic__left {
    position: absolute;
    top: -60px;
    left: 0;
    z-index: 1;
    display: none;
}
    

@media( min-width : 1366px ) {
    .icon-graphic__left {
        top: -24px;
        display: block;
        width: 70px;
    }
}

@media( min-width : 1800px ) {
    .icon-graphic__left {
        position: absolute;
        top: -60px;
        left: 0;
        z-index: 1;
        width: 100%;
    }
}