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

.full-bleed-blue {
    padding-top: 35px;
}

.container {
    max-width: 1320px;
    width: 100%;
    padding: 10px 20px;
}

.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: royalblue;
    position: fixed;
    z-index: 50;
    padding: 0;
    right: 20px;
    bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    height: 46px;
    width: 46px;
    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: #333;
    stroke-width: 4;
    transition: all .4s ease;
}

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

.scroll-top:hover .progress-circle path, .scroll-top:hover .icon-tabler-arrow-up {
    stroke: var(--ghost-accent-color);
}

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

.authors > div {
    display: inline-block;
    align-items: center;
    margin: 10px 24px 0 0;
    height: 30px;
}
.reading-time {
    margin-bottom: 30px;
    clear: both;
}

.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: #1AB9FF; 
}

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

.gh-sidebar {
    display: none;
}

/*** responsive width changes for container ***/
@media (min-width: 550px) {
    .offset-by-two.column, .offset-by-two.columns {
        margin-left: 218px;
    }
}
@media (min-width:576px) {
    .sidebar {
        display: block;
    }
    .container, .bootstrap-wrapper .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container, .bootstrap-wrapper .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container, .bootstrap-wrapper .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container, .bootstrap-wrapper .container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container, .bootstrap-wrapper .container {
        max-width: 1320px;
    }
}
/*** End of responsive width changes for container ***/

@media (min-width: 1100px) {
    .gh-sidebar {
        position: absolute;
        display: block;
        top: 0;
        bottom: 0;
        margin-top: 4vmin;
        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: 4vmin;
    }
}
@media (max-width: 1099px) {
    .post__title {
        font-size: 42px;
        line-height: 52px;
    }
    .ten.columns.gh-content {
        width: 100%;
    }
    .offset-by-two.columns {
        margin-left: 0;
    }
}

@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 15px;
    }
}