@import url('https://fonts.googleapis.com/css2?family=Vollkorn:wght@400;700&display=swap');

/* Base */
* {
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #222;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

a {
    color: #111;
    text-decoration: none;
}

a:hover,
a:active {
    color: #7ac943;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    display: block;
    height: 192px;
    background-color: rgb(221, 240, 208);
    background-image: url('/assets/images/bgw.jpg');
    background-size: auto 96px;
    background-position: 50% 80px;
    background-repeat: no-repeat;
    text-decoration: none;
    text-align: center;
    margin-bottom: 32px;
}

.site-header.header-small {
    height: 80px;
    background-image: none;
}

.site-header .container {
    padding-top: 16px;
}

.site-header h1 {
    margin-top: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6, p {
    font-family: 'Vollkorn', serif;
    margin: 0;
    padding: 0;
    font-weight: 700;
    text-rendering: auto;
}

h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 0.9;
    color: #000;
    margin-top: 16px;
}

h1 a {
    color: inherit;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: #222;
    margin-bottom: 16px;
    padding-top: 16px;
}

h2 a {
    color: #111;
}

h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: #777;
    margin-bottom: 12px;
    padding-top: 16px;
    text-align: right;
}

.col-content h4 {
    text-align: left;
}

h4 a {
    color: #111;
}

p {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.25;
    color: #222;
    margin-bottom: 16px;
}

/* Green border accent */
.border {
    border-top: 1px solid #7ac943;
}

/* Two-column row */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.col-meta {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    text-align: right;
}

.col-content {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 0 15px;
}

/* Post content images */
.post-content img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-top: 16px;
}

.post-content img.alignleft {
    float: left;
    margin: 16px 16px 16px 0;
}

blockquote {
    font-style: italic;
    color: #666;
    border-left: 3px solid #ddd;
    padding-left: 15px;
    margin: 20px 0;
}

/* Footer */
.site-footer {
    text-align: center;
    margin: 40px 0;
    font-size: 14px;
    color: #666;
}

.site-footer a {
    color: #666;
}

.site-footer a:hover {
    color: #7ac943;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .site-header {
        height: 144px;
        background-size: auto 72px;
        background-position: 50% 60px;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 24px;
    }

    p {
        font-size: 18px;
    }

    .row {
        flex-direction: column;
    }

    .col-meta,
    .col-content {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: left;
    }

    h4 {
        text-align: left;
    }
}
