
*, ::before, ::after {
    box-sizing: border-box;
}

body {
    font: 15px "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #ddedd0;
    line-height: 1.625;
    margin: 0;
    padding: 0 2em;
    color: #373737;
    font-weight: 300;
}

@media (max-width: 480px) {
    body {
        padding: 0;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
}

@media (min-width: 801px) {
    .main-left {
        flex: 0 0 70%;
        max-width: 70%;
    }
    .side-bar {
        flex: 0 0 30%;
        max-width: 30%;
    }
}

.outer-container {
    width: 100%;
    max-width: 1000px;
    margin: 1.9rem auto;
    background-color: #ffffff;
}

@media (max-width: 480px) {
    .outer-container {
        margin: 0 auto;
    }
}

.inner-container {
    margin: 0 7.6%;
}

header {
    border-top: 2px solid #bbbbbb;
}

.header-wrapper {
    padding: 3.65625em 0;
    display: flex;
    justify-content: space-between;
}

.logo-wrapper h1 {
    margin: 0;
    line-height: 100%;
}

.title a {
    font-size: 30px;
    font-weight: bold;
    color: #111111;
    line-height: 36px;
    text-decoration: none;
}

.description {
    font-size: 14px;
    margin: 0;
    color: #7a7a7a;
    font-weight: 300;
    line-height: 1.625;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 288px;
    object-fit: cover;
}

.nav-bar {
    background: #222222;
    background: -webkit-linear-gradient(#252525, #0a0a0a);
    background: -moz-linear-gradient(#252525, #0a0a0a);
    background: -o-linear-gradient(#252525, #0a0a0a);
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 2px;
    -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 2px;
    box-shadow: rgba(0, 0, 0, 0.4) 0 1px 2px;
}

.nav-bar a {
    color: #eee;
    display: inline-block;
    line-height: 3.333em;
    font-size: 13px;
    padding: 0 1.20em;
    text-decoration: none;
}

.nav-wrapper {
    margin-left: -0.8125em;
}

.nav-bar a.active {
    font-weight: bold;
}

.nav-bar a:hover {
    background: #f9f9f9;
    background: -moz-linear-gradient(#f9f9f9, #e5e5e5);
    background: -o-linear-gradient(#f9f9f9, #e5e5e5);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9f9f9), to(#e5e5e5));
    background: -webkit-linear-gradient(#f9f9f9, #e5e5e5);
    color: #373737;
}

.content-wrapper {
    padding: 2.825em 0;
}

.blog-title {
    margin: 0 0 0.5rem;
}

.blog-title a {
    color: #222222;
    text-decoration: none;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.5em;
    padding-bottom: 0.3em;
}

.post-data {
    color: #666666;
    font-size: 12px;
    line-height: 18px;
}

a.link {
    color: #1982d1;
    text-decoration: none;
    font-weight: bold;
}

a.link:hover {
    color: #1982d1;
    text-decoration: underline;
}

.font-weight-light {
    font-weight: 300 !important;
}

.content-body p {
    margin: 1.5em 0;
}

.footer {
    border-top: 1px solid #ddd;
    padding: 1.625em 0 3.21em;
}

.policy h3 {
    margin: 0 0 0.09rem;
    color: #666;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 2.6em;
    text-transform: uppercase;
}

.author {
    text-align: center;
    background: #f9f9f9;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 12px;
    line-height: 2.2em;
    padding: 2.2em 0.5em;
}

.author-wrapper a {
    color: #555;
    font-weight: bold;
    text-decoration: none;
}

.author-wrapper a:hover {
    text-decoration: underline;
}

.side-bar-wrapper {
    width: max-content;
    margin: 0 0 0 auto;
}

@media (max-width: 800px) {
    .side-bar-wrapper {
        width: 100%;
        margin-top: 3rem;
    }
}

.side-bar-wrapper h3 {
    color: #666;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 2.6em;
    text-transform: uppercase;
    margin: 0;
}

.side-bar-wrapper ul {
    list-style: square;
    margin: 0;
    padding: 0;
}

.side-bar-wrapper ul li {
    color: #777;
    font-size: 13px;
}

.search-wrapper label {
    border: 0;
    position: absolute;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0,0,0,0);
}

.search-input {
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-size: 14px;
    line-height: 1.2em;
    width: 95px;
    padding: 7px 10px 7px 28px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    color: #888;
    font-weight: 200;
    outline: 0;
    background: #ffffff url("../assets/images/search.png") no-repeat 5px 6px;
    transition: width 300ms ease, background-color 300ms ease;
}

.search-input:focus {
    background-color: #f9f9f9;
    outline: 0;
    transition: width 300ms ease, background-color 300ms ease;
}

@media (min-width: 601px) {
    .search-input {
        width: 115px;
    }

    .search-input:focus {
        width: 250px;
    }
}