/* display */

.content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    max-width: 1250px;
    padding: 50px 0;
    margin: auto;
}

@media (min-width: 60rem) {
    .content {
        flex-direction: row;
    }
}

.content > * {
    padding: 0 25px;
}

/* post */

.main {
    width: 100%;
}

@media (min-width: 60rem) {
    .main {
        width: 55%;
    }
}

.post {
    padding: 40px 0;
}

.post img {
    width: 100%;
}

.post h2,
.post h2 a {
    margin: 10px 0 ;

    font-size: 20px;
    font-weight: 400;
    color: #655e7a;
    text-decoration: none;
    text-transform: uppercase;
}

.post ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.post > ul {
    margin-bottom: 20px;
}

.post > ul > li {
    margin: 0 20px 0 0;
}

.post li {
    display: inline-block;
}

.post li,
.post li a {
    font-size: 12px;
    text-decoration: none;
    letter-spacing: .5px;
    color: #909090;
}

.post li a:hover {
    color: #655e7a;
}

.post p {
    font-size: 15px;
    line-height: 26px;
    color: #7b7b7b;
}

.post a.continue {
    display: inline-block;

    background-color: #655e7a;
    padding: 10px 20px;
    margin-top: 10px;

    font-size: 12px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post a.continue:hover {
    background: #353240;
}

/* navigation */

.page-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 100px 0 50px 0;
}

.page-nav ul {
    padding: 0;
    margin: 0;

    cursor: default;
    list-style: none;
}

.page-nav ul li {
    display: inline-block;

    margin: 0 1px;
}

.page-nav a {
    display: inline-block;

    background-color: transparent;
    padding: 6px 12px;
    border: 1px solid #ddd;

    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.page-nav a.active {
    cursor: default;
}

.page-nav a.active,
.page-nav a:hover {
    background: #655e7a;
    border: 1px solid #655e7a;

    color: #fff;
}

/* aside / widgets */

aside {
    width: 100%;
}

@media (min-width: 60rem) {
    aside {
        width: 40%;
    }
}

.widget {
    margin-bottom: 75px;
}

.widget h3 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.widget hr {
    border: none;
    border-bottom: 1px solid #dedede;
}

.widget ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

/* recent */

.widget.recent li {
    margin-top: 20px;
}

.widget.recent li > * {
    vertical-align: middle;
}

.widget.recent li > a {
    display: inline-block;

    width: 30%;
}

.widget.recent img {
    width: 100%;
}

.widget.recent li > div {
    display: inline-block;

    width: 65%;
    padding: 10px;
}

.widget.recent li h4,
.widget.recent li p {
    margin: 5px 0;
}

.widget.recent li h4 a {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: #000;
}

.widget.recent li p {
    font-size: 12px;
    color: gray;
}

/* tags */

.widget.tags ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.widget.tags ul li {
    margin: 3px;
}

.widget.tags li a {
    display: inline-block;

    padding: 8px 16px;
    border: 1px solid #dedede;
    border-radius: 30px;

    font-size: 14px;
    text-decoration: none;
    line-height: 1.5;
    color: #837f7e;
}

.widget.tags li a.active {
    cursor: default;
}

.widget.tags li a:hover,
.widget.tags li a.active {
    background: #655e7a;
    border: 1px solid #655e7a;

    color: #fff;
}