/* --------posts section; where posts happen--------- */
.post-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 175px;
}

.post {
    margin: 0 auto;
    background: #FFF;
    margin-bottom: 20px;
    width: 970px;
    border-radius: 1px;
    box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.4);
}

.post .anonymous {
    margin: 25px 50px;
}

.post .anonymous h6 {
    color: #666;
}

.post .anonymous p {
    margin-top: 25px;
    line-height: 1.25;
}

.post .anonymous .pubDate {
    margin-top: 50px;
    font-size: 12px;
    color: #aaa;
}

.jumbo {
    width: 100%;
    background-position: 50% 85%;
    background-size: cover;
}

@media (max-width: 1000px) {
    .post {
        width: 99%;
    }
}

@media (max-width: 500px) {
    .active {
        border: none;
    }

    .post {
        width: 100%;
    }

    .post .anonymous {
        margin: 25px 25px;
    }

    .post .anonymous p {
        font-size: 16px;
        line-height: 1.5;
    }

    header {
        transition: height 150ms ease-in;
        box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.4);
        height: 105px;
    }

    .open-header {
        height: 200px;
    }
}