.posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.post {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
    color: #FFF;
    flex-basis: 100%;
    min-height: 300px;
    overflow: hidden;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all .3s;
}
    .post:nth-child(1) {
        min-height: 350px;
    }
    .post:nth-child(n+2) {
        flex-basis: 49%;
    }
    .post-bg {
        background-size: cover;
        background-repeat: no-repeat;
        height: 100%;
        width: 100%;
        display: flex;
        flex-flow: column wrap;
        justify-content: space-between;
        position: relative;
        z-index: -2;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all .3s;
    }
    .post-head {
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
    }
    .post-meta {
        padding: 1.5rem;
        font-size: .9em;
    }
        .post-meta > * {
            font-weight: 700;
            letter-spacing: 3px;
            text-shadow: 0 2px 6px rgba(0,0,0,0.50);
            text-transform: uppercase;
            display: flex;
            align-items: center;
            margin-bottom: 1em;
        }
        .post:nth-child(n+2) .post-meta > * {
            font-size: .9em;
        }
        .post-meta i {
            font-size: 1.5em;
            margin-right: .75em;
            width: 25px;
        }
    .post-date {}
    .post-tag {
        transition: all .3s;
        display: inline-flex;
    }
        .post-tag:hover, .post-tag:focus {
            color: var(--ltBlue);
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            transition: all .3s;
        }
    .post-main {
        margin-bottom: 1rem;
        display: inline-block;
        width: 100%;
        padding: 1.5rem 2.5rem;
        background-color: rgba(35,87,137,0.5);
        -webkit-transition: background-color 0.5s ease;
        -moz-transition: background-color 0.5s ease;
        transition: background-color 0.5s ease;
        /*z-index: -1;*/
    }
        .post:hover .post-main,
        .post:focus .post-main {
            background-color: rgba(35,87,137,0.75);
        }
    .post-link {
        position: static;
    }
        .post-link:before {
            content: "";
            position: absolute;
            z-index: 0;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .post-link:after {
            content: "";
            position: absolute;
            z-index: 0;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: black;
            opacity: 0;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            transition: all .3s;
            z-index: -2;
        }
            .post:hover .post-link:after,
            .post:focus .post-link:after {
                opacity: .25;
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                transition: all .3s;
            }
    .post-title h2 {
        font-size: 1.25em;
        line-height: 1.2em;
        margin-bottom: .5em;
    }
    .post-body {
        font-weight: 100;
        font-size: .8em;
        margin-bottom: .5rem;
    }
    .post-action {
        margin-bottom: 0;
        margin-right: 0;
        text-transform: uppercase;
        font-size: .8em; /*14px*/
        color: #FFFFFF;
        text-align: right;
        position: relative;
        z-index: 1;
    }
        .post-action:hover, .post-action:focus {
            color: var(--yellow);
        }
    @media (max-width: 1300px) {
        .post-meta > * {
            font-size: .9em;
        }
        .post:nth-child(n+2) .post-meta > * {
            font-size: .8em;
        }
        .post-meta i {
            width: 20px;
        }
        .post-main {
            max-height: 250px;
            padding: 1.5em;
        }
    }
    @media (max-width: 1150px) and (min-width: 1001px) {
        .post-main {
            max-height: 280px;
        }
        .post-title h2 {
            font-size: 1.1em;
            margin-bottom: .25em;
        }
    }
    @media (max-width: 1000px) {
        .post:nth-child(1) {
            height: auto;
        }
    }
    @media (max-width: 800px) {
        .post-main {
			background-color: rgba(25,47,86,0.75);
            max-height: 280px;
		}
        .post-title h2 {
            font-size: 1.1em;
            margin-bottom: .25em;
        }
    }
    @media (max-width: 700px) {
        .post:nth-child(n+2) {
            flex-basis: 100%;
        }
            .post-meta > *, .post:nth-child(n+2) .post-meta > * {
                font-size: .75em;
            }
        .post-meta i {
            width: 15px;
        }
    }
    @media (max-width: 400px) {
        .post-title h2 {
            font-size: 1em;
        }
    }