
.blog_section_wrap {
    border-top: 0;
} 

.blog-index {
    font-family: 'Montserrat';
}

.archive-header {
    margin-top: 4%;
}

.archive-header h2 {
    font-size: 18px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: solid 1px;
    max-width: 95%;
    margin: 0 auto;;
}

.blog-listings {    
    display: flex;
    flex-wrap: wrap;
    max-width: 1500px;
    margin: 0 auto;
    justify-content: center;
    box-sizing: border-box;
}

.blog-listing {
    box-sizing: border-box;
    width: 98%;
    font-size: 12px;
    max-width: 95%;
    line-height: 1.25rem;
    display: block;
    color: black;
    background: #f6f6f6;
    padding: 10px;
    border-bottom: none;
    margin: 5px 5px;
}

.blog-listing:hover {
    text-decoration: none;
}


.blog-listings .blog-title {
    font-size: 16px;
    font-weight: bold;
    display:block;
    margin-bottom: 5px;
}


.blog-listing:hover .blog-title,
.blog-listing:hover .read-more {
    text-decoration: underline;
}

.blog-listing .read-more {
    font-weight: bold;
}

.year-select {
    text-align: center;
    margin: 1rem 10px;
    font-size: 12px;
}

.year-link {
    display: inline-block;
    margin: 10px 0 5px 10px;
    color: #444444;
}



@media (min-width: 600px){
    .blog-listings > * {
        width: 80%; 
    }
}

@media (min-width: 1000px){
    .blog-listings > * {
        width: 49%;
        justify-content: space-between;
    }
}