.container-blog {
    font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif;
}

.container-blog .row {
    display: -webkit-flex;
    display: flex;
}

.container-blog .row .col {
    background-color: #ffffff;
    flex: 33.3%;
    max-width: 33.3%;
    justify-content: space-between;
    margin-right: 5.5%;
    border-radius: 6px 6px 6px 6px;
}

.container-blog .row .col:last-child {
    margin-right: 0;
}

@media only screen and (max-width: 980px) {
    .container-blog .row {
        flex-direction: column;
    }

    .container-blog .row .col {
        flex: 1;
        max-width: 100%;
        justify-content: none;
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.container-blog .row .col a {
    text-decoration: none;
}

.recommended-posts {
    display: -webkit-flex;
    display: flex;
    flex-flow: column wrap;
    flex: 1;
    height: 100%;
}

.recommended-posts .blog-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.recommended-posts .blog-img img {
    min-width: 100%;
    max-width: 100%;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    height: 100%;
    border-radius: 6px 6px 0 0;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
}

.recommended-posts .blog-content {
    margin-bottom: 1em;
    padding-top: 1em;
    padding-left: 2em;
    padding-right: 2em;
}

.recommended-posts .blog-content .blog-date {
    width: 100%;
    color: #ff8d00;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.21px;
    line-height: 23px;
    text-transform: uppercase;
}

.recommended-posts .blog-content .blog-title h4 {
    width: 100%;
    color: #04242F;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.25px;
    line-height: 1.33;
    padding-bottom: 0;
}

.recommended-posts .blog-author {
    display: -webkit-flex;
    display: flex;
    padding-left: 2em;
    padding-right: 2em;
    margin-top: auto;
    color: #666666;
}

.recommended-posts .blog-author h4 {
    color: #666666;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.25px;
    line-height: 2em;
    padding-bottom: 1em;
}

.recommended-posts .blog-author img {
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 3px solid #cccccc;
    object-fit: cover;
    object-position: center;
}