.related-posts--title {
    color: #2D3032;
    font-size: 40px;
    font-weight: 400;
    line-height: 56px;
    text-align: center;
    font-family: "Merriweather";
}

.related-posts--wrapper{
    display: grid;
    padding: 48px 0px;
    grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
    row-gap: 32px;
    column-gap: 48px;
}

@media (max-width: 1024px) {
    .related-posts--wrapper{
        column-gap: 32px;
    }
}

    @media (max-width: 991px) {
    .related-posts--wrapper{
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
}

.post-card--feature {
    width: 100%;
    height: 320px;
}

.post-card--feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

@media (max-width: 769px) {
    .post-card--feature {
        height: 220px;
    }
}

.post-card--footer {
    /* margin-top: 30px; */
    overflow: hidden;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex !important;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
}
.post-card--footer-item {
    margin-right: 35px;
    font-family: "Source Sans 3";
}
.post-card--footer-item:nth-last-child(1) {
    margin-right: 0;
}
.post-card--footer-item--title {
    font-weight: 600;
    line-height: normal;
    margin-bottom: 6px;
    text-transform: uppercase;
    color: #2D3032;
    font-size: 14px;
}
.post-card--footer-item--amount {
    font-weight: 500;
    line-height: normal;
    color: #0F69A0;
    font-size: 20px;
}
@media (max-width: 1280px) {
    .post-card--footer-item--amount {
        font-size: 18px;
    }
}
@media (max-width: 1080px) {
    .post-card--footer-item--amount {
        font-size: 20px;
    }
}
@media (max-width: 7680px) {
    .post-card--footer-item--amount {
        font-size: 18px;
    }
}

.post-card--tags {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.post-card--tags-tag {
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 10px 10px 0;
    border-radius: 30px;
    color: #2D3032;
    font-size: 14px;
    background: #E6F5FE;
    text-decoration: none;
}
.post-card--tags-tag:hover{
    color: white;
    background: #0a3e78;
}
.post-card--tags-tag:nth-last-child(1){
    margin-right: 0px;
}
.post-card--title {
    color: #2D3032;
    font-size: 20px;
    font-weight: 700;
    overflow: hidden;
    overflow: hidden;
    line-height: 28px;
    text-decoration: none;
    font-family: "Merriweather";
}
.post-card--author {
    margin-top: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.post-card--author-avatar {
    margin-right: 10px;
}
.post-card--author-avatar img {
    border-radius: 100%;
    border: 1px solid;
}
.post-card--author-profile {
    font-family: "Source Sans 3";
}
.post-card--author-profile--name {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
}
.post-card--author-profile--date {
    font-size: 13px;
    font-weight: 500;
}
.slim .post-card {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    border-radius: 12px;
    box-sizing: border-box;
    align-items: flex-start;
    padding: 24px 24px 24px;
    border: 1px solid #CECECE;
    justify-content: space-between;
}
@media (max-width: 1200px) {
    .slim .post-card {
        padding: 20px;
    }
} 
.slim .post-card--feature{
    width: 180px;
    height: 180px;
    margin-top: 16px;
} 
@media (max-width: 1200px) {
    .slim .post-card--feature{
        top: 20px;
        right: 20px;
        width: 94px;
        height: 94px;
        margin-top: 0px;
        position: absolute;
    }
}
@media (max-width: 768px) {
    .slim .post-card--feature{
        width: 78px;
        height: 78px;
    }
}
.slim .post-card--feature img{
    border-radius: 20px;
}

.slim .post-card--content{
    padding: 0px 0px;
    width: calc(100% - 210px);
}
@media (max-width: 1200px) {
    .slim .post-card--content{
        width: calc(100% - 110px);
    }
}
@media (max-width: 768px) {
    .slim .post-card--content{
        width: calc(100% - 90px);
    }
}
.slim .post-card--footer{
    margin-top: 16px;
}
