.single-post-container {
    display: flex;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 2em;
    width: 100%;
}


.breadcrumb {
    margin-bottom: 2em;
    list-style: none;
}
.breadcrumb a {
    color: #FC8202;
    text-decoration: none;
}

.breadcrumb-title {
    display: inline;
    color:#787878;
}

.single-post-wrapper {
    display: flex;
    justify-content: center;
}

.single-post-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 60%;
    margin: 2em 0;
}

.single-post-title {
    margin: 0.2em 0;
    color: rgba(0,0,0,0.65);
    text-align: left;

}


.single-post-thumb {
    display: flex;
}

.single-post-thumb img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}


.single-content {
    display: flex;
    flex-direction: column;
    margin-top: 0.3em;
    padding: 1em 0;
    color: rgba(0,0,0,0.65);
}


.content-text {
    margin-top: 1em;
}

.pullquote {
    float: right;
    font-size: 1.5em;
    font-style: italic;
    margin: 2em 0;
    border-left: 3px solid #ccc;
    padding-left: 15px;
}


.single-content .main-btn {
    display: none;
    margin-left: auto;
    margin-top: 2em;
}


.single-right-column {
    display: flex;
    width: 100%;
    max-width: 300px;
    flex-direction: column;
    margin-left: 2em;
}

.single-right-column__header {
    color: rgba(0,0,0,0.65);
    width: 70%;
    text-align: center;
    border-bottom: 1px solid #72668A;
    font-size: 20px;
}

.posts-metadata {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-top: 7em;
    margin-bottom: 2em;
}

.posts-metadata ul {
    list-style-type: none;
    padding: 0;
}

.labels-metadata {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.single-other-posts__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.single-other-posts {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}


.single-other-post {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin-top: 0.5em;
}


.other-post-title {
    font-size: 18px;
    color: rgba(0,0,0,0.65);
    max-width: 200px; 
}


.categories-ul {
    display: flex;
    margin-bottom: 2em;
}

.categories-ul li a {
    background-color: #FC8202;
    color: white;
    font-weight: 100;
    padding: 0.3em;
    border-radius: 5px;
    margin: 0 0.2em;
}

.categories-ul li a:hover {
    background-color:rgba(0,0,0,0.65);
}

.taglist li {
    display: inline;
    padding: 0 0.2em;
}

.taglist li a {
    color: rgba(0,0,0,0.65);
}


.archive-category-title {
    display: inline;
    color: rgba(0,0,0,0.65);
    margin-right: 0.5em;
    font-size: 18px;
}

.category-info {
    display: inline;
}


.archive-post {
    display: flex;
    flex-direction: column;
}

.archive-post-title {
    margin-top: 0;
    font-size: 20px;
    color: rgba(0,0,0,0.65); 
}

.archive-date-info {
    color: rgba(0,0,0,0.65); 
}



@media only screen and (max-width: 900px) {

    .blog-container {
        flex-direction: column;
        align-items: center;
    }

    .most-recent-container {
        grid-template-columns: 1fr;
    }


    .main-post {
        width: 100%
    }

    .next-posts {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        align-items: center;
    }

    .secondary-post {
        flex-direction: column;
        border: none;
        width: 30%;
        margin: 1em 0.2em;
    }

    .sec-post-link {
        flex-direction: column;
    }

    .sec-post-thumb {
        max-width: 100%;
    }

    .sec-post-text {
        padding-left: 0;
    }

    .pagination {
        width: 100%;
        margin-top: 1em;
    }

    .current {
        font-size: 14px;
    }


    .single-post-wrapper {
    flex-direction: column;
    align-items: center;
    }

    .single-post-content {
        max-width: 100%;
    }

    .single-right-column {
        width: 100%;
        max-width:700px;
        margin: 1em 0;
    }

    .posts-metadata {
        margin-top: 0;
        align-items: flex-start;
    }

    .labels-metadata {
        align-items: flex-start;
    }


    .single-right-column__header {
        width: fit-content;
    }

 

    .single-other-posts__wrapper {
        flex-direction: column;
        width: 100%;
        margin: 2em 0;  
    }

    .other-posts-header {
        width: 100%;
        border-bottom: none;
    }

    .single-other-posts {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .single-other-post {
        padding: 0 0.2em;
        flex: 1 1 180px;
        margin-bottom: auto;
    }

    .sec-post-thumb {
        margin-bottom: auto;
    }

    .other-post-text {
        width: 100%;
    }

    .other-post-title {
        max-width: fit-content;
    }


}



@media only screen and (max-width: 550px) {

    .hidden-main-post {
        display: none;
    }

    .next-posts {
        flex-direction: column;
        width: 100%;
    }

    .secondary-post {
        width: 100%;
        align-items: center;
    }
    
}