/*Blog Section Header */

.blog-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: center;
}


.blog-header .heading {
    font-weight: 400;
    font-size: 48px;
    line-height: 67px;
    letter-spacing: -1.5px;
    color: #000;
}

.see-all {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
}

.see-all:hover {
    color: #f9452d;
}


/*card styling */
.blog-row {
    row-gap: 50px;
}

.blog-item {
    display: block;
}

.blog-thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 10px;
}

.blog-item .blog-content {
    margin-top: 30px
}

/*.blog-item .blog-content:last-child {*/
/*    margin-bottom: 0;*/
/*}*/

.blog-item .blog-content .category {
    font-weight: 400;
    font-size: 14px;
    line-height: 22.4px;
    color: #f9452d;
    margin-bottom: 12px;
    display: inline-block;
    text-transform: uppercase;
}

.blog-item .blog-content .heading {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-item .date {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #6D6D6D;
}

@media (max-width: 1023px) {

    /*Blog Section Header */

    .blog-header {
        margin-bottom: 30px;
    }

    .blog-header .heading {
        font-size: 34px;
        line-height: 44px;
        letter-spacing: -0.65px;
    }

    /*card styling */
    .blog-row {
        row-gap: 0;
    }

    .blog-row .col-sm-6,
    .blog-row .col-md-4 {
        margin-bottom: 50px;
    }

    .blog-row .col-sm-6:last-child,
    .blog-row .col-md-4:last-child {
        margin-bottom: 0;
    }

    .blog-item .blog-content {
        margin-top: 24px
    }
 }


@media (max-width: 767px) {
    .see-all {
        font-size: 14px;
        line-height: 20px;
    }

    /*Blog Section Header */

    .blog-header .heading {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: -0.56px;
    }

    /*card styling */

    .blog-row .col-sm-6,
    .blog-row .col-md-4 {
        margin-bottom: 30px;
    }

    .blog-item .blog-content {
        margin-top: 15px
    }

    .blog-item .blog-content .category {
        margin-bottom: 5px;
    }

    .blog-item .blog-content .heading {
        line-height: 20px;
        margin-bottom: 5px;
    }

    .blog-item .date {
        font-size: 14px;
        line-height: 20px;
    }

}