@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=block');
* {
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-size: 12pt;
    font-family: Quicksand, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin: 0;
    color: #222;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

a {
    color: #3d7ee0;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: .35s color ease, .35s border ease;
}

a:hover {
    color: #26559c;
    border-bottom-color: #26559c;
}

h1, h2, h3, h4, h5, h6, p, ul {
    margin: 18px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

h1 {
    margin-top: 36px;
}

.fill {
    width: 100%;
    height: 100%;
}

.herobg {
    background-size: cover;
    background-position: center;
    box-shadow: inset 0px -10px 10px rgba(0,0,0,0.1);
    height: 320px;
    margin: 0 -10px;
    -position: sticky;
    -top: -20px;
    -z-index: -100;
}

h1.withhero {
    margin-top: 18px;
}

h3.inline {
    margin-bottom: 4px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 250, 250, 0.95);
    border-bottom: 1px solid rgba(0,0,0,0.15);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.highlight {
    background: #f1f6fb;
}

.wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

header .wrap {
    padding: 0px 24px;
}

.header {
    display: flex;
    align-items: center;
}

.header .logo {
    font-weight: 600;
    color: rgb(85, 75, 95);
    margin-right: 48px;
}

.header .fill {
    flex: 1;
}

.header nav {
    flex: 0 0 auto;
    font-size: 11pt;
}

.header nav a {
    display: inline-block;
    margin: 0 12px;
    padding: 12px 4px;
    border-bottom: 0;
    text-transform: uppercase;
}

.header nav a:hover {
    color: #000;
    font-weight: 500;
}

.header nav a:first-child {
    margin-left: 0;
}

.header nav a:last-child {
    margin-right: 0;
}

main {
    flex: 1 0 auto;
    line-height: 180%;
}

.bg {
    background: rgba(255, 255, 255, 0.98);
}

main .wrap {
    margin: 12px auto;
}

main .wrap.wrap2 {
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 36px;
}

.highlight .wrap {
    padding: 1px 24px;
}

.sidebar-layout {
    display: flex;
}

.sidebar-layout-main {
    flex: 1;
}
.sidebar-layout-right {
    flex: 0 0 auto;
    border-left: 1px solid rgba(0,0,0,0.1);
    margin-left: 24px;
    padding-left: 24px;
    width: 200px;
}

footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 36px;
    font-size: 10pt;
    line-height: 150%;
    color: #999;
    background: rgba(0,0,0,0.01);
}

footer a {
    color: #999;
    border: 0;
}

footer .wrap {
    padding: 12px 24px 36px 24px;
    display: flex;
    align-items: top;
}

footer .wrap > div {
    margin-left: 24px;
}
footer .wrap > div:first-child {
    margin-left: 0;
}

footer .wrap > .copy {
    flex: 1;
}

footer .wrap > .contact {
    flex: 0 0 auto;
    width: 300px;
}

footer .icons {
    top: 0;
    bottom: 0;
    font-size: 16pt;
}

footer .icons a {
    vertical-align: middle;
}

.cat {
    display: block;
    font-weight: 400;
    font-size: 11pt;
    color: #999;
}

.tag {
    display: inline-block;
    background: #7d68a2;
    color: #fff;
    padding: 4px 8px;
    border-radius: 100px;
    font-size: 9pt;
    font-weight: 400;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
    vertical-align: middle;
    line-height: normal;
}

.tag-live::before {
    content: "LIVE";
}

.tagged {
    display: flex;
    align-items: center;
}

.tagged .tag {
    margin-right: 8px;
}

.hashtag {
    color: #999;
}

.hashtag a {
    color: #999;
    border: 0;
}

.hashtag a:hover {
    color: #26559c;
}

.scanlines-dark {
    background: repeating-linear-gradient( 0deg, rgba(0,0,0,0.12), rgba(0,0,0,0.12) 1px, rgba(0,0,0,0) 2px, rgba(0,0,0,0) 2px);
}

.scanlines-light {
    background: repeating-linear-gradient( 0deg, rgba(255,255,255,0.12), rgba(255,255,255,0.12) 1px, rgba(255,255,255,0) 2px, rgba(255,255,255,0) 2px);
}

