@media screen and (max-width: 1500px) {
    #blog-list > nav,
    #blog-list > h1 {
        padding: 0 5vw;
    }
}
@media screen and (min-width: 1500px) {
    #blog-list > nav,
    #blog-list > h1 {
        padding: 0 calc((100vw - 1500px) / 2);
    }
}

#blog-list > nav {
    background: var(--off-white);
    font-family: var(--sans-serif), sans-serif;
    text-transform: uppercase;
    color: gray;
}

#blog-list > nav > ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0 0 2em 0;
}
@media screen and (max-width: 980px) {
    #blog-list > nav > ul {
        flex-direction: column;   
    }
}
@media screen and (min-width: 980px) {
    #blog-list > nav > ul {
        flex-direction: row;   
    }
}

#blog-list > nav > ul > a {
    display: inline-block;
    color: inherit;
    height: 100%;
    padding: 1em 2em;
}
@media screen and (min-width: 1500px) {
    #blog-list > nav > ul > a:first-child {
        padding-left: 0;
    }
}
#blog-list > nav > ul > a:hover {
    color: black;
    text-decoration: none;
}

#blog-list > h1 {
    margin-top: -0.7em;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 45px;
}



#blog-list > #masonry {
    background-color: var(--off-white);
    padding: 5vw;
    column-gap: 20px;
}
@media screen and (max-width: 600px) {
    #blog-list > #masonry {
        column-count: 1;
    }
}
@media screen and (min-width: 600px) and (max-width: 1200px) {
    #blog-list > #masonry {
        column-count: 2;
    }
}
@media screen and (min-width: 1200px) {
    #blog-list > #masonry {
        column-count: 3;
    }
}

@media screen and (max-width: 1800px) {
    #blog-list > #masonry {
        padding: 20px 5vw;
    }
}
@media screen and (min-width: 1800px) {
    #blog-list > #masonry {
        padding: 20px calc((100vw - 1800px) / 2);
    }
}



#blog-list .j-card {
    display: inline-block;
    background: white;
    margin-bottom: 20px;
}


#blog-list .j-card > .image {
    background-color: gray; 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url("https://via.placeholder.com/150");
    min-height: 300px;
    width: 100%;
}


#blog-list .j-card > .details {
    background: white;
    color: var(--off-black);
    padding: 1.5em 2em;
}

#blog-list .j-card > .details > .j-row {
  display: flex;
  justify-content: space-between;
}

#blog-list .j-card > .details .j-date > .day {
    font-weight: bold;
}

#blog-list .j-card > .details .tag {
    text-transform: uppercase;
}

#blog-list .j-card > .details > .author {
    text-transform: uppercase;
}

#blog-list .j-card > .details > .description {
    display: flex;
    flex-wrap: wrap;
}

#blog-list .j-card > .details > .title {
    text-transform: uppercase;
    font-weight: bold;
}

#blog-list .j-card > .details > .description {
    font-family:var(--sans-serif), sans-serif; 
}

#blog-list .j-card > .details > .description > span:first-child {
    margin-right: 0.5em;
}
#blog-list .j-card > .details > .description > span:nth-child(2) {
    margin-left: 0.5em;
    margin-right: 0.5em;
}
#blog-list .j-card > .details > .description > span:last-child {
    margin-left: 0.5em;
}

