header {
    border-bottom: 5px solid #032D60;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 10px 40px;
}

.sidebar {
    display:none;
}

div.feature-image {
    margin-bottom: 30px;
}
div.feature-image-caption {
    color: rgba(0, 0, 0, 0.5);
    font-size: 1.3rem;
    letter-spacing: .04rem;
    line-height: 1.4em;
    padding: 8px;
    text-align: center;
}

.scroll-top {
    --ghost-accent-color: #1B96FF;
    position: fixed;
    z-index: 50;
    padding: 0;
    right: 40px;
    bottom: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .4s ease;
    border: none;
    box-shadow: inset 0 0 0 2px #ccc;
    color: #ccc;
    background-color: #fff;
    margin-right: 1rem;
}

.scroll-top.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top .icon-tabler-arrow-up {
    position: absolute;
    stroke-width: 2px;
    stroke: #333;
}

.scroll-top svg path {
    fill: none;
}

.scroll-top svg.progress-circle path {
    stroke: #1B96FF;
    stroke-width: 4;
    transition: all .4s ease;
}

.scroll-top:hover {
    color: var(--ghost-accent-color);
}

.scroll-top:hover .scroll-top:hover .icon-tabler-arrow-up {
    stroke: #1B96FF;
}

.content { max-width: 640px; margin: 0 auto; }

.authors > div {
    display: inline-block;
    align-items: center;
    margin-bottom: 1rem;
    margin-right: 10px;
}

.reading-progress {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 5px; /* Progress bar height */
    background: #c5d2d9; /* Progress bar background color */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; /* Hide default progress bar */
}

.reading-progress::-webkit-progress-bar {
    background-color: transparent;
}

.reading-progress::-webkit-progress-value {
    background: var(--ghost-accent-color); /* Progress bar color */
}

.pagination {
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
}

#ghost-portal-root {
    display:none;
}

.gh-search-icon {
    float:right;
    margin-top: -30px;
}

.gh-content {
    position: relative;
}

.gh-toc > .toc-list {
    position: relative;
}
.gh-toc .is-active-link::before {
    background-color: #0176D3; /* Defines TOC   accent color based on Accent color set in Ghost Admin */
}

.toc-list {
    overflow: hidden;
    list-style: none;
}
.toc-list-item {
    margin-bottom: 0.5em;
}

.gh-sidebar {
    display:none;
}
@media (min-width: 1200px) {
    .bootstrap-wrapper .container {
        max-width: 960px;
    }
}

@media (min-width: 1100px) {
    .gh-sidebar {
        position: absolute;
        display:block;
        top: 0;
        bottom: 0;
        margin-top: 20vmin;
        grid-column: wide-start / main-start; /* Place the TOC to the left of the content */
        width:158px;
    }

    .gh-toc {
        position: sticky; /* On larger screens, TOC will stay in the same spot on the page */
        top: 20vmin;
    }
}

@media (max-width: 1099px) {
    .offset-by-two.columns {
        margin-left: 0;
    }
    .post__title {
        font-size: 42px;
        line-height: 52px;
    }
    .ten.columns.gh-content {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .bootstrap-wrapper .container {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .bootstrap-wrapper .container {
        max-width: 100%;
    }
}

@media only screen and (max-width: 642px) {
    h1, .post__title {
        font-size: 36px;
        line-height: 45px;
        margin-bottom: 30px;
    }
    h2 {
        font-size: 30px;
    }
    .container {
        padding: 0 32px;
    }
}

@media (min-width:576px) {
    .sidebar {
        display: block;
    }
    .bootstrap-wrapper .container {
        max-width: 1320px;
    }
}