.flex-blog-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex-blog-container-author {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex-title {
    /* flex-basis: 50%; */
    width: 60%;
}

.flex-title h1{
    width: 100%;
    color: #062430;
    font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.71px;
    line-height: 1.15;
    margin-top: 15px;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.flex-image {
    width: 35%;
}

.flex-image img {
    width: 100%;
    height: auto;
}


@media (max-width: 980px) {
    .flex-title h1 {
        font-size: 36px;
        line-height: 1.15;
        letter-spacing: -1.22px;
    }

    .flex-blog-container {
        flex-direction: column;
    }

    .flex-blog-container-author {
        flex-direction: column;
    }

    .flex-title {
        width: 100%;
    }

    .flex-image {
        width: 100%;
    }
}

.blog-category a {
    width: 100%;
    color: #ff8d00;
    font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.03px;
    line-height: 18px;
    margin-top: 15px;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
/* Blog Author */
.author-blog-details {
    float: left;
    color: #062430;
    font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    letter-spacing: -0.28px;
    line-height: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media only screen and (max-width: 980px) {
    .author-blog-details {
        margin-bottom: 30px;
    }
}

.author-blog-details img {
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
    border: 3px solid #062430;
}

.author-details .author-name {
    font-weight: bold;
    padding-bottom: 0.2em;
}

.author-details .author-title {
    font-size: 14px;
    padding-bottom: 0.2em;
}

.author-details .author-twitter {
    font-size: 14px;
}

/* Blog Post Date */
.date-details-cont {
    display: flex;
}

.date-details-cont .date-blog-details {
    align-self: flex-end;
    color: #666666;
    font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.28px;
    line-height: 1;
    margin-top: 8px;
}