/* BLOG SEARCH/FILTER */
#blog-search-filter {
    display: flex;
    justify-content: space-between;
}
#blog-search-filter #blogs-search input {
    border: 1px solid var(--grey300);
    border-radius: 0;
    padding: 5px 0 5px 40px;
}
#blog-search-filter #blogs-search input:focus-visible {
    outline: none;
}
#blog-search-filter #blogs-search .material-icons {
    position: absolute;
    margin-left: 10px;
    top: 7px;
    color: var(--grey300);
    cursor: pointer;
}
#blog-search-filter #blogs-search input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--grey300);
    opacity: 1; /* Firefox */
}
#blog-search-filter #blogs-search input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--grey300);
}
#blog-search-filter #blogs-search input::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--grey300);
}

/* BLOGS */
#blog-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 20px;
}
.blog-block-inner {
    position: relative;
    flex: 1;
    flex-basis: 30%;
    text-align: left;
    border: 1px solid var(--grey300) !important;
    max-width: 450px;
    margin: 0 auto;
}
.blog-block-inner .nj-card__body .nj-link {
    color: var(--nj-semantic-color-text-brand-primary-default) !important;
}
.blog-block-inner .descr {
    padding: 10px 0 20px 0;
}

/* Safari 7.1+ */
/* Fix for gap not working on Safari */
_::-webkit-full-page-media, _:future, :root
#report-and-brochure-block>*+*,
#blog-block>*+* {
    margin-left: 2rem;
}
/* Safari 7.1+ */
_::-webkit-full-page-media, _:future, :root
.report-and-brochure-block-inner,
.blog-block-inner {
    margin-bottom: 20px;
}

.blog-block-bg-img {
    position: relative;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    /*width: 100%;*/
    /*height: 600px*/
    height: 0; /* These 2 attributes make the height dynamic */
    padding-bottom: 129%; /* These 2 attributes make the height dynamic */
}
.blog-block-bg-img {
    padding-bottom: 62%; /* These 2 attributes make the height dynamic */
}
.blog-title {
    font-size: 20px;
}
.blog-date {
    color: var(--grey400);
    margin-top: 8px;
    margin-bottom: 5px;
}
.blog-block-inner .blog-date {
    color: var(--grey700);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-transform: capitalize;
    margin-top: -10px;
    margin-bottom: 5px;
}
#engie-perspective #latest-news-block-top-right h2 {
    position: relative;
    top: 5px;
}
#latest-news-block-top-right .blog-author,
#latest-news-block-top-right .blog-author a,
.blog-block-inner .blog-author,
.blog-block-inner .blog-author a {
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
}
#blogs #see-more-btn {
    text-align: center;
    margin-top: 50px !important;
}
#blogs #see-more-btn button {
    white-space: normal !important;
}
#latest-news-block .latest-news-block-top #latest-news-block-top-right .blog-date {
    color: var(--grey900);
}

@media only screen and (max-width: 991px) {
    /* BLOGS */
    #blog-block {
        flex-direction: column;
    }
    .blog-block-inner {
        min-width: 450px;
    }
}
@media only screen and (max-width: 768px) {
    /* BLOGS */
    /* Safari 7.1+ */
    /* Fix for gap not working on Safari */
    _::-webkit-full-page-media, _:future, :root
    #blog-block>*+* {
        margin-left: auto;
    }
}
@media only screen and (max-width: 767.9px) {
    /* BLOGS */
    #latest-news-block .latest-news-block-content-container.mobile .latest-news-block-top .blog-date {
        margin-bottom: 30px !important;
        color: var(--grey200);
    }
}
@media only screen and (max-width: 530px) {
    /* BLOGS */
    .blog-block-inner {
        min-width: 100%;
    }
}