.category-title {
    color: var(--headingColor);
    text-align: center;
    font-size: 3.5rem;
    margin-top: 8%;
}

.category-hr {
    width: 4%;
    margin: 2% auto;
}

.blogs-sec {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
}

.link-color {
    color: var(--headingColor) !important;
    font-weight: bold;
}

.sidebar {
    width: 30%;
    padding: 3% 2%;

}

.sidebar h3 {
    font-weight: normal;
}

.sidebar a {
    color: #000000;
}

.blogs-container {
    border-right: 1px solid #e8ebe8;
    width: 70%;
}

.post-preview {
    padding: 2% 8%;
    margin: 2% 0%;
    border-bottom-width: 40%;
    display: flex;

}

.preview-divider {
    border: none;
    margin: 0% auto;
    width: 80%;
    border-top: 1px solid #e3e3e3;
    height: 0;
}

.post-preview-right {
    color: #000000 !important;
    padding: 0% 4%;
}

.post-preview-right h2,
.post-preview-right h3 {
    color: #000000 !important;
    font-size: 1rem;
}

.post-preview-left {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0% 2%;
}

.post-preview h1 {
    color: #000000;
    margin: 1rem 0px;

}

.continue-btn {
    color: var(--headingColor);
    margin-top: 1rem;
    display: block;

}

.post-preview img {
    display: inline;
    width: 180px;
    height: 180px;
}

.post-preview p {
    color: #000000;
}


/* post page styling */
.share-social-btn {
    font-size: 1.5rem;
    margin: 0% 0.3rem;
}

.post-back-btn {
    color: var(--headingColor);
}

.blog-post-container {
    width: 100%;
    display: flex;
    padding: 6% 0px 8%;
}

.blog-post {
    border-right: 2px solid #e8ebe8;
    width: 65%;
    padding: 0% 4% 0% 11%;
    line-height: 1.5rem;
}

.blog-post ol {
    padding-left: 10%;
    padding: 0% 10%;
}

.blog-post li {
    margin: 0.4rem 0px;
}

.recent-post-container {
    width: 35%;
    padding-left: 2.5%
}

.post-title {
    color: var(--headingColor);
    margin-top: 2rem;
    line-height: 3rem;
    font-size: 2.2rem;
}

.post-date {
    color: #616161;
    font-size: 0.9rem;
    margin: 1% 0px 4%;
}

.post-image {
    margin-bottom: 10%;
    width: 100%;
}

.share-icons {
    margin-top: 6%;
}

/* Recent Posts Sidebar */
.recent-post-container h3 {
    margin-bottom: 9%;
    font-weight: normal;
}

.recent-post-preview {
    display: flex;
    margin: 6% 0px;
}

.recent-post-image {
    width: 25%;
    height: 35%;

}

.recent-post-image img {
    width: 100%;
    height: 100%;
}

.recent-post-text {
    padding-right: 15%;
    padding-left: 4%;
    width: 75%;
}

.recent-post-text h1 {
    font-weight: normal;
    color: #000000;
    font-size: 1.2rem;
}

.recent-post-text p {
    color: #000000;
    margin-top: 1.3rem;
}

.recent-category a {
    color: #000000;
}

.recent-category h3 {
    margin-bottom: 0px;
}

.recent-heading {
    margin-top: 10%;
}

@media only screen and (max-device-width: 480px) {
    .blogs-sec {
        flex-direction: column;
        padding-bottom: 10vh;
    }

    .category-title {
        margin-top: 6rem;
        font-size: 3rem;
    }

    .sidebar {
        display: none;
    }

    .blogs-container {
        width: 95%;
        border-right: none;
    }

    .post-preview {
        line-height: 1.5rem;
        flex-direction: column;
    }

    .preview-date {
        margin-top: 2rem;
    }

    .post-preview h1 {
        font-size: 1.3rem;
        font-weight: normal;
    }

    .blog-post-container {
        flex-direction: column;
    }

    .post-title {
        font-size: 2rem;
    }

    .blog-post {
        border-right: none;
        width: 100%;
        padding: 0px 4% 0px 8%;
    }

    .recent-post-container {
        padding: 15% 8% 0px 8%;
        width: 100%;
    }

    .recent-post-preview {
        margin: 8% 0px
    }

    .recent-post-text h1 {
        font-size: 1rem;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    .category-title {
        margin-top: 8%;
    }

    .blogs-sec {
        flex-direction: column;
    }

    .blogs-container {
        width: 100%;
    }

    .sidebar {
        padding: 3% 6%;
        width: 100%;
    }

    .post-preview {
        padding: 2% 0%;
    }

    .blog-post-container {
        flex-direction: column;
    }

    .blog-post,
    .recent-post-container {
        width: 100%;
        padding: 0% 4%;
    }

    .recent-post-container {
        padding: 7% 4%;
    }
}