body {
    background-color: #fffbf5;
    margin: 0;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
}

header {
    background-color: rgb(251, 240, 223);
    border-width: 2px 0;
    border-style: solid;
    border-color: rgb(243, 233, 217);
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12pt;
}

.header-link {
    height: 30px;
    align-content: center;
    margin: 0 5px 0 5px;
    color: #000000;
    text-align: center;
    text-decoration: none;
}

.header-link:hover {
    color: #57000e;
}

#header-link-current {
    align-content: flex-start;
    pointer-events: none;
    height: 24px;
    padding-top: 8px;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: #57000e;
    color: #57000e;
}

main {
    max-width: 640px;
    width: 100%;
    padding: 20px;
    margin: 35px auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

a {
    color: #000000;
}

a:hover {
    color: #57000e;
}

footer {
    width: 100%;
    flex: 1 0 auto;
    margin: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    font-size: 11pt;
    color: #A57476;
}


/* ---- Blog Index ---- */

.blog-index-heading {
    font-size: 14pt;
    font-weight: bold;
    color: #57000e;
    margin: 0 0 20px 0;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 14px;
}

.blog-card {
    background-color: rgb(251, 240, 223);
    /*border: 2px solid rgb(243, 233, 217);*/
    border: 2px solid rgb(251, 240, 223);
    padding: 15px;
    box-sizing: border-box;
    width: 100%;
    transition: border-color 0.15s ease;
}

.blog-card-link:hover .blog-card {
    border-color: #57000e;
}

.blog-card-date {
    font-size: 11pt;
    color: #57000e;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.blog-card-title {
    font-size: 14pt;
    color: #000000;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.25;
}

.blog-card-excerpt {
    font-size: 12pt;
    color: #000000;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.blog-card-readmore {
    font-size: 11pt;
    color: #57000e;
}

.quote-block {
    background-color: #57000e;
    padding: 28px 24px;
    margin: 8px 0;
}

.quote-block p {
    color: rgb(251, 240, 223);
    font-size: 16pt;
    line-height: 1.5;
    margin: 0;
    padding: 0px 50px;
}

.post-body .quote-block p {
    color: rgb(251, 240, 223);
    font-size: 16pt;
    line-height: 1.5;
    margin: 0;
}


/* ---- Blog Post ---- */

.post-back {
    display: inline-block;
    font-size: 11pt;
    color: #57000e;
    text-decoration: none;
    margin-bottom: 24px;
}

.post-back:hover {
    color: #57000e;
    text-decoration: underline;
}

.post-header {
    margin-bottom: 18px;
}

.post-title {
    font-size: 20pt;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 10px 0;
    color: #000000;
}

.post-meta {
    font-size: 11pt;
    color: #A57476;
    margin: 0;
    line-height: 1.6;
}

.post-divider {
    border: none;
    border-top: 2px solid rgb(243, 233, 217);
    margin: 0 0 22px 0;
}

.post-body p {
    font-size: 13pt;
    line-height: 1.6;
    margin: 0 0 16px 0;
    color: #000000;
}

.post-body h2 {
    font-size: 15pt;
    font-weight: bold;
    margin: 28px 0 8px 0;
    color: #000000;
}

.post-body h3 {
    font-size: 13.5pt;
    font-weight: bold;
    margin: 22px 0 6px 0;
    color: #000000;
}