:root {
    --accent-color: #FCBA04;
}

/* CSS Reset */
html, body {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* Typography */
body {
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;

}
a {
    text-decoration: none;
    color: var(--accent-color);
}
h2 {
    font-size: 1.25rem;
    font-weight: 600;
}
hr {
    background-color: var(--accent-color);
    border: none;
    display: block;
    height: 2px;
    margin: 1.5rem 0;
}


/* Layout */
.site-container {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #1E1E1E;
    height: 10vh;
    display: flex;
    align-items: center;
    border-bottom: 5px solid var(--accent-color)
}

header img {
    height: 6vh;
}

/* Post Lists */
.post-index {
    padding-top: 2rem;
}
.date {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #1e1e1e80;
}
.date:not(:first-of-type) {
    margin-top: 2rem;
}
i {
    padding-right: 1rem;
}
.post-headline {
    /* display: flex; */
    /* align-items: center; */
}
.post .post-title {
    margin: 0;
    display: inline;
}
.post .post-title a,
.post .external-link a {
    color: #1E1E1E;
}
.post .external-link {
    vertical-align: middle;
    padding-left: .5rem;
    padding-bottom: .25rem;
    font-size: .65rem;
}
.date:after {
    content: '';
    padding-right: 10px;
    flex-grow: 1;
    border-bottom: 1.3px solid #1e1e1e60;
    margin-left: 1rem;
}
.date-line-cap {
    order: 3;
    font-size: .35rem;
}

/* Article */

.article-footnote {
    margin-top: 2rem;
}
