section ul {
    padding-left: 1.2rem;
    list-style-type: square;
}
.emphasis {
    font-weight: bold;
}
mainDark a {
    color: var(--complementary);
}
mainDark {
        display: unset;
}
article {
    float: left;
    width: 80%;
    margin-bottom: 4rem;
}
aside {
    float: right;
    width: 20%;
    /*position: sticky;*/
    margin-top: 5rem;
    margin-bottom: 4rem;
}
aside ul {
    padding: 0;
    margin-top: 3rem;
}
aside li {
    margin-bottom: 2rem;
}
aside a {
    text-decoration: none;
    color: var(--complementary);
}
#search {
    text-align: center;
}
input[type="text"] {
    border: 1px solid var(--mainDark);
    height: 2rem;
    margin-right: 0.5rem;
}
input[type="submit"] {
    background-color: var(--mainDark);
    border: none;
    cursor: pointer;
    color: #fff;
    height: 2rem;
    transition: .3s;
}
input[type="submit"]:hover {
    box-shadow: inset 10.5em 0 0 0 var(--mainLight);
}
.nm_post {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: 1rem;
    align-items: start;
    grid-template-areas: 
        "title title"
        "date date"
        "image content";
}
.nm_post_title {
    grid-area: title;
    border-top: 1px solid var(--complementary);
    padding-top: .5rem;
    margin-bottom: 0;
}
.nm_post_back a {
    color: var(--complementary);
    text-decoration: none;
    font-weight: bold;
}
.nm_post_content {
    grid-area: content;
}
.nm_post_title a {
    text-decoration: none;
    color: var(--complementary);
}
.nm_post_date {
    font-family: headings;
    grid-area: date;
    margin-top: .5rem;
}
.nm_post_meta {
    display: none;
}
.nm_post_image {
    grid-area: image;
}
.nm_post_image img {
    object-fit: cover;
    width: 100%;
    max-height: 100%;
}
.nm_post:first-of-type .nm_post_title {
    border-top: none;
}
.nm_readmore a {
    color: var(--mainDark);
    text-decoration: none;
}
.nm_readmore a::before {
    content: "\2794";
}
@media only screen and (max-width: 900px) {
    article,
    aside {
        float: none;
        width: 100%;
    }
    aside {
        width: 98%;
        margin: 0 auto;
    }
    footer {
        position: fixed;
        bottom: 0;
    }
}
@media only screen and (max-width: 650px) {
    .nm_post {
        grid-template-columns: 1fr;
       grid-template-areas:
        "title"
        "date"
        "image"
        "content";
    }
}
@media only screen and (max-width: 500px) {
    aside {
        margin-bottom: 10rem;
    }
}
