.post__articles {
    max-width: 90rem;
    margin-top: 7rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.post__title {
    color: var(--blue);
    font-size: 1.9375rem;
    font-weight: 700;
    margin-bottom: 1.5625rem;
}
.post__title:before {
    content: '';
    background-color: var(--orange);
    width: 1.875rem;
    height: .1875rem;
    margin-right: .9375rem;
}
article {
    flex: 0 0 45.333333%;
    margin: 2%;
    background-color: #fbfbfb;
}
.post__image {
    width: 55%;
}
.post__content {
    width: 65%;
    background-color: var(--cream);
    margin-left: -20%;
    margin-top: 2rem;
    padding: 1.5rem;
    border: 0.00625rem solid var(--blue);
}
.post__name {
    font-size: 1.1875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    min-height: 4.875rem;
}
.post__desc {
    font-size: .9375rem;
    margin-bottom: 1.25rem;
}
.post__desc p * {
    font-weight: 400;
}
.post__date {
    color: #302e2e;
    font-size: .875rem;
    margin-top: 1rem;
}
.post__more {
    background-color: var(--blue);
    color: var(--cream);
    font-size: .8125rem;
    margin-top: 1rem;
    padding: 0.35rem;
    display: inline-block;
    transition: opacity 200ms ease-out;
}
.post__more:hover {
    opacity: .7;
}
@media screen and ( max-width: 1280px ){
    .articles {
        max-width: 50rem;
    }
    article {
        flex-basis: 100%;
    }
}
@media screen and ( max-width: 768px ){
    article {
        margin: 0 0 1rem 0;
    }
    .post__image {
        width: 0;
        display: none;
    }
    .post__content {
        width: 100%;
        margin-left: 0;
    }
}