@charset "UTF-8";

/* Feed
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.feed-grid {
    overflow: hidden;
    float: left;
    padding: 50px 20px 80px 20px;
    width: 30.333%;
    margin-right: 3%;
    position: relative;
    margin-bottom: 50px;
    background-image: url(../images/border.jpg);
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    background-color: #EEE;
}
.feed-grid h2 {
     font-size: 2.5rem;
}
.feed-grid .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}
.feed-grid a {
    color: #54565A;
}
.feed-grid a:hover {
    text-decoration: underline;
}
.feed-grid p {
    font-size: 1.4rem;
}
.feed-grid p.category a {
}
a.feed-readmore {
    position: absolute;
    bottom: 30px; 
    padding: 10px 30px 10px 0;
    border-bottom: solid 2px #54565A;
    text-align: center;
}
.entry-meta  {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1024px) {
    .feed-grid {
        width: 46%;
        margin-right: 3%;
    }
}
@media only screen and (max-width: 768px) {
    .feed-grid {
        width: 100%;
        margin-right: 0;
    }
}

/* Post Categories
––––––––––––––––––––––– */
ul.post-categories {
    list-style: none;
    margin: 0;
    padding: auto;
}
ul.post-categories li {
    border: solid 1px #DDD;
    border-radius: 50px;
    display: inline-block;
}
ul.post-categories li a {
    display: block;
    padding: 5px 20px;
}

@media only screen and (max-width: 768px) {
    
}
@media only screen and (max-width: 480px) {

}

/* Feed Navigation
––––––––––––––––––––––– */
.feed-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.feed-navigation a {
    display: inline-block;
    padding: 5px 10px;
    font-size: 1.3rem;
    border-radius: 0 5px 0 0;
    border-bottom: solid 1.5px #592C82;
}

@media only screen and (max-width: 768px) {
    
}
@media only screen and (max-width: 480px) {

}


/* Post - Single
–––––––––––––––––––––––––––––––––––––––––––––––––– */

article ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}
article ul li {
    margin-bottom: 5px;
}
article .entry-meta {
    font-size: 1.5rem;
    color: #7E4E4D;
    font-weight: bold;
}


/* Recent Articles
––––––––––––––––––––––– */
ul.recent-articles {
    overflow: hidden;
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.recent-articles li {
    text-align: left;
    width: 31.333%;
    background-color: #FFF;
    padding: 40px 20px;
    background-image: url(../images/border.jpg);
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    font-size: 1.3rem;
}
ul.recent-articles li h1 {
    font-size: 2rem;
}
ul.recent-articles li a {
    display: block;
}


@media only screen and (max-width: 768px) {
    ul.recent-articles li {
        width: 100%;
        margin-bottom: 30px;
    }
    
}
@media only screen and (max-width: 480px) {

}
