

/* ===================================================================
 * # blog
 *
 * ------------------------------------------------------------------- */
.s-blog {
  position: relative;
}

.s-blog .footnote {
    width:100%;
    text-align: center;
    font-size: 12px;
    padding: 8px 10%;
}
.s-blog .filter {
    font-size: 14px;
}

.s-blog .blog-articles {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: initial;
}

.s-blog .blog-article {
    border-top: 1px solid #888;
    height: 100vh;
    width: 100%;
    padding: 0;
    position:relative;
    background-size: cover;
    background-position-y: center;
}

.s-blog .blog-opaque {
    height: 100%;
    width:100%;
    background-color: #333;
    opacity: 0.45;
    position:absolute;
    top:0;
    left:0;
    pointer-events: none;
}

.s-blog .articlePreview-header {
    width:100%;
    text-align: center;
    padding: 2% 24px;
}

.s-blog .articlePreview-date{
    font-size:16px;
    padding:4% 0 2% 0;
    color: #fff;
}

.s-blog .articlePreview-tag {
    background-color: #26bfb5;
    border: 1px solid #26bfb5;
    font-size: 14px;
    border-radius: 8px;
    padding: 0 12px;
    color: #fff;
    display: inline-block;
    margin: 0 auto 12px auto;
    position: relative;
}

.s-blog .articlePreview-tagCount{
    background-color: #444;
    color: #fff;
    border-radius: 100px;
    font-size: 12px;
    padding: 4px;
    min-width: 24px;
    position: absolute;
    top: 2px;
    right: -15px;
}

.s-blog .articlePreview-tag.selected a, .s-blog .articlePreview-tag.selected a:visited {
    color: #fff;
}

.s-blog .articlePreview-tag.unselected {
    background-color: #fefefe;
    color: #333;
}

.s-blog .articlePreview-header .h1 {
    color: #fff;
    display:block;
    margin-top: 3rem;
}

.s-blog .articlePreview-headline {
    padding: 12px 10%;
    color: #fff;
}

.s-blog .articlePreview-headline a, .s-blog .articlePreview-headline a:visited {
    color: #fff;
    text-decoration: underline;
}

.s-blog .articlePreview-buttonContainer {
    text-align: center;
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
}

.s-blog .backToBlog {
    text-align: center;
    width:100%;
    padding:24px;
    font-weight: bold;
    font-size: 28px;
}

.s-blog .article-date, .s-blog .article-author {
    width:100%;
    font-size:14px;
    text-align: right;
    padding-bottom: 12px;
}

.s-blog .article-tag {
    position: absolute;
    top: 12px;
    background-color: #26bfb5;
    font-size: 14px;
    margin: 6px;
    border-radius: 8px;
    padding: 0 12px;
    color: #fff;
}
.s-blog .article-tag a, .s-blog .article-tag a:visited {
    color: #fff;
}

.s-blog .article-dualheader {
    display: flex;
}

.s-blog .article-dualheader-headline {
    width:48%;
    flex: 1;
    padding-right:3%;
}

.s-blog .article-dualheader-image {
    width:48%;
    flex: 1;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}

.s-blog .article-content{
    color: #333;
}
.s-blog .article-content a {
    color: #333;
    text-decoration: underline;
}

.s-blog .article-content img {
    border: 1px solid #888;
    max-width: 800px;
    width: 100%;
}

.s-blog .rss {
    line-height: 24px;
}

@media only screen and (max-width: 768px) {
    .s-blog .articlePreview-headline {
        padding: 12px 6%;
        font-size: 14px;
    }
    .s-blog .articlePreview-header .h1 {
        font-size: 2.4rem;
    }

    .s-blog .filter {
        font-size: 12px;
    }

    .s-blog .articlePreview-buttonContainer {
        bottom: 6%;
    }

    .s-blog .article-dualheader {
        display: block;
        width:100%;
    }

    .s-blog .article-dualheader-headline {
        width:95%;
    }

    .s-blog .article-dualheader-image {
        width:100%;
        height:400px;
    }

    .s-blog .backToBlog {
        font-size: 18px;
    }

    .s-blog .footnote {
        font-size: 10px;
        padding: 4px 8px;
    }

    .s-blog .rss {
        font-size: 14px;
        line-height: 20px;
    }

}