/* ===== SINGLE POST MAIN LAYOUT ===== */
.rank-math-breadcrumb {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    z-index: 2;
    border-radius: 8px 8px 0 0 !important;
}

.animate-breadcrumb {
    position: relative;
    z-index: 2;
}

main > .site-main {
    position: relative;
}

.single-post main {
    background: #f8f9fc;
    position: relative;
}

/* Hero Image with Overlay Effect */
main .post-hero-image {
    position: relative;
    width: 100%;
    max-height: 600px;
    aspect-ratio: 3/1.2;
    overflow: hidden;
}

main .post-hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #f8f9fc, transparent);
    pointer-events: none;
}

main .post-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: zoomEffect 20s ease infinite alternate;
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* Article Layout with Sidebar */
.article-layout {
    display: flex;
    margin-top: -240px;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

/* Post Container - Main Content */
.article-layout .post-container {
    width: 100%;
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 
        0 20px 40px -15px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    transition: transform 0.3s ease;
}

/* Post Title */
.article-layout .post-container .post-title {
    font-family: "Poppins", Sans-serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 61.6px;
    letter-spacing: -1.4px;
    color: var(--e-global-color-text);
    margin: 0 0 30px;
    text-align: center;
    background: linear-gradient(135deg, #1d1d22 0%, #2d2d35 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 30px;
}

.article-layout .post-container .post-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Post Meta Section */
.article-layout .post-container .post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fc 0%, #f1f4f9 100%);
    border-radius: 60px;
    margin-bottom: 40px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.article-layout .post-container .post-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #4a4a55;
}

.article-layout .post-container .post-meta span a {
    font-size: inherit;
}

.article-layout .post-container .post-meta span i,
.article-layout .post-container .categories .sub-title i,
.article-layout .post-container .tags .sub-title i {
    font-size: 18px;
    color: #667eea;
    background: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.2);
}

.article-layout .post-container .post-meta hr {
    width: 1px;
    height: 30px;
    background: #ddd;
    border: none;
    margin: 0;
}

/* Categories Section */
.article-layout .post-container .categories {
    margin-bottom: 30px;
    padding: 15px 20px;
    background: #f8f9fc;
    border-radius: 50px;
    display: inline-block;
}

.article-layout .post-container .categories .category {
    display: flex;
    align-items: center;
}

.article-layout .post-container .categories .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 15px;
    color: #4a4a55;
}

.article-layout .post-container .categories a {
    display: inline-block;
    padding: 5px 15px;
    margin: 0 5px 5px 0;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.article-layout .post-container .categories a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Post Content Styling */
.article-layout .post-container .post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #2d2d35;
    margin-bottom: 40px;
}

.article-layout .post-container .post-content p {
    margin-bottom: 1.5em;
}

.article-layout .post-container .post-content p button {
    width: 100%;
    text-wrap: auto;
}

.article-layout .post-container .post-content p > a,
.article-layout .post-container .post-content ul > a,
.article-layout .post-container .post-content ol > a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: underline;
}

.article-layout .post-container .post-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: #1d1d22;
    position: relative;
    padding-left: 20px;
}

.article-layout .post-container .post-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.article-layout .post-container .post-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 15px;
    color: #2d2d35;
}

.article-layout .post-container .post-content blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background: linear-gradient(135deg, #f8f9fc 0%, #f1f4f9 100%);
    border-radius: 20px;
    font-style: italic;
    position: relative;
    border-left: 4px solid #667eea;
}

.article-layout .post-container .post-content blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: #667eea;
    opacity: 0.2;
    font-family: serif;
}

.article-layout .post-container .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Tags Section */
.article-layout .post-container .tags {
    display: flex;
    align-items: center;
    margin: 40px 0;
    gap: 8px;
    padding: 20px 0;
    border-top: 1px solid #eaeef2;
    border-bottom: 1px solid #eaeef2;
}

.article-layout .post-container .tags-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4a4a55;
}

.article-layout .post-container .tags a {
    display: inline-block;
    padding: 5px 15px;
    margin: 0;
    background: #f0f2f5;
    color: #4a4a55;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.article-layout .post-container .tags a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Social Share Buttons - Enhanced */
.article-layout .post-container .social-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 30px 0;
    justify-content: center;
}

.article-layout .post-container .social-share .social-title {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: #4a4a55;
}

.article-layout .post-container .social-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.article-layout .post-container .social-share a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.article-layout .post-container .social-share a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.article-layout .post-container .social-share a:hover::before {
    left: 100%;
}

/* Social Media Colors (keeping your existing colors) */
.article-layout .post-container .social-share .facebook { background: linear-gradient(135deg, #1877F2, #0d5ab9); }
.article-layout .post-container .social-share .twitter { background: linear-gradient(135deg, #1DA1F2, #0d8bd9); }
.article-layout .post-container .social-share .linkedin { background: linear-gradient(135deg, #0077B5, #005a8c); }
.article-layout .post-container .social-share .pinterest { background: linear-gradient(135deg, #E60023, #b0001b); }
.article-layout .post-container .social-share .reddit { background: linear-gradient(135deg, #FF4500, #cc3700); }
.article-layout .post-container .social-share .threads { background: linear-gradient(135deg, #000000, #333333); }
.article-layout .post-container .social-share .whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }


/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 60px 0;
    padding: 30px;
    background: white;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.post-navigation .previous,
.post-navigation .next {
    flex: 0 0 auto;
    min-width: 120px;
}

.post-navigation .all {
    flex: 1;
    text-align: center;
}

.post-navigation a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #f8f9fc 0%, #f1f4f9 100%);
    border-radius: 40px;
    color: #4a4a55;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.post-navigation a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.post-navigation .previous a:hover {
    transform: translateX(-5px);
}

/* Related Posts Section */
.related-posts {
    flex-direction: column;
    padding: 50px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.related-posts h2 {
    margin: 0 0 40px;
    text-align: center;
}

.related-posts .related-posts-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    list-style: none;
    margin: 0;
    padding: 0;
}

.related-posts .related-posts-slider .related-post {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #f8f9fc;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.related-posts ul li:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(102, 126, 234, 0.15);
}

.related-posts ul li:nth-child(1) {
    animation-delay: 0.2s;
}

.related-posts ul li:nth-child(2) {
    animation-delay: 0.25s;
}

.related-posts ul li:nth-child(3) {
    animation-delay: 0.3s;
}

.related-posts ul li a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-posts ul li img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-posts ul li:hover img {
    transform: scale(1.05);
}

.related-posts ul li span {
    display: block;
    padding: 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #2d2d35;
    text-align: center;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 40px;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    border-radius: 30px;
    margin: 60px 0;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.author-box .author-avatar {
    flex-shrink: 0;
}

.author-box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.2);
}

.author-box .author-info h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #1d1d22;
}

.author-box .author-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a55;
    margin-bottom: 20px;
}

.author-box .author-info a {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.author-box .author-info a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

main .site-main section.post-section {
    display: inline-flex;
    margin: 0 0 60px;
    width: 100%;
}



main .site-main .comments-section {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

main .site-main .comments-section h2 {
    margin: 0 0 40px;
    text-align: center;
    position: relative;
}

main .site-main .comments-section h2 small a {
    text-decoration: none;
    position: absolute;
    top: 0;
    right: 0;
}

main .site-main .comments-section #comments .comment-list {
    margin: 0 0 3rem;
}

main .site-main .comments-section form.comment-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation-delay: .15s;
    margin: 0;
}

main .site-main .comments-section form.comment-form > p {
    margin: 0;
}

main .site-main .comments-section form.comment-form p.comment-notes {
    display: flex;
    flex-direction: column-reverse;
    gap: .5rem;
    order: 1;
    flex-basis: 100%;
    margin-bottom: 1rem;
}

main .site-main .comments-section form.comment-form p.comment-notes span#email-notes {
    font-weight: 700;
}

main .site-main .comments-section form.comment-form p.comment-notes span.required-field-message {
    color: #f30024;
}

main .site-main .comments-section form.comment-form .comment-form-comment {
    order: 4;
    flex-basis: 100%;
}

main .site-main .comments-section form.comment-form .comment-form-author {
    order: 2;
    flex: 0 0 calc(50% - .5rem);
}

main .site-main .comments-section form.comment-form .comment-form-email {
    order: 3;
    flex: 0 0 calc(50% - .5rem);
}

main .site-main .comments-section form.comment-form .comment-form-url {
    display: none;
}

main .site-main .comments-section form.comment-form .form-submit {
    order: 5;
    flex-basis: 100%;
}

main .site-main .comments-section form.comment-form p label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    position: relative;
    padding-left: 10px;
}

main .site-main .comments-section form.comment-form p label span {
    position: absolute;
    left: 0;
    top: 0;
    color: #f30024;
}

main .site-main .comments-section form.comment-form p input,
main .site-main .comments-section form.comment-form p textarea {
    outline: none;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

main .site-main .comments-section form.comment-form p input:focus,
main .site-main .comments-section form.comment-form p textarea:focus {
    border-color: #333;
}

main .site-main .comments-section .comment-list li.comment {
    border-radius: 8px;
    border-left: 2px solid;
    border-right: 2px solid;
    border-bottom: 2px solid;
    overflow: hidden;
}

main .site-main .comments-section .comment-list li.comment.alt {
    margin-bottom: 3rem;
}

main .site-main .comments-section .comment-list li.comment.even {
    background-color: #111;
}

main .site-main .comments-section .comment-list li.comment.odd {
    background-color: #2c2c2c;
}

main .site-main .comments-section .comment-list li.comment .comment-respond {
    background: #fff;
    padding: 1rem 2rem;
}

main .site-main .comments-section .comment-list li.comment article {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 1rem;
    padding-right: 2rem !important;
}

main .site-main .comments-section .comment-list li.comment article footer {
    flex: 1 1 100%;
}

main .site-main .comments-section .comment-list li.comment article footer .avatar {
    top: 1.5rem;
    left: .55rem !important;
}

main .site-main .comments-section .comment-list li.comment article footer .comment-author .fn {
    font-size: 28px;
    font-weight: 500;
    position: relative;
    color: #fff;
}

main .site-main .comments-section .comment-list li.comment article footer .comment-author .fn::after {
    content: ':';
    position: absolute;
    right: 5px;
}

main .site-main .comments-section .comment-list li.comment article footer .comment-author .says {
    display: none;
}

main .site-main .comments-section .comment-list li.comment article footer .comment-metadata {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 0 0 0 auto;
}

main .site-main .comments-section .comment-list li.comment article footer .comment-metadata a {
    font-size: 13px;
    color: #fff;
    text-decoration: none;            
}

main .site-main .comments-section .comment-list li.comment article footer .comment-awaiting-moderation {
    color: #fff;
    display: flex;
    gap: 1rem;
    align-items: center;
    border-left: 1px solid;
    padding-left: 10px;
    margin: 0 0 4px 10px;
}

main .site-main .comments-section .comment-list li.comment article footer .edit-link a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

main .site-main .comments-section .comment-list li.comment article .comment-content {
    flex: 1 1 auto;
    min-width: 0;
}

main .site-main .comments-section .comment-list li.comment article .comment-content p {
    font-size: 1rem;
    color: #f7f7f8;
}

main .site-main .comments-section .comment-list li.comment article .reply {
    flex: 0 0 auto;
    align-self: flex-start;
}

main .site-main .comments-section .comment-list li.comment article .reply a {
    font-size: 20.56px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: -1px;
    color: #A156CC;
    text-decoration: none;
    background: #fff;
    padding: .5rem 1.23rem;
    border-radius: 8px;
}


/* Sidebar */
.article-layout .post-container::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
    border-radius: 30px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.article-layout.sidebar-open .post-container::before {
    visibility: visible;
    opacity: 1;
}

.sidebar-wrapper {
    position:relative;
    width:0;
}

/* Sidebar panel */
.sidebar-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 370px;
    height: 100%;
    z-index: 1;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
}

/* Visible state */
.sidebar-wrapper.sidebar-visible .sidebar-container {
    left: -370px;
    opacity: 1;
    visibility: visible;
}

main .sidebar-container aside.sidebar {
    max-width: unset !important;
    top: 100px;
}

.sidebar{
    position:sticky;
    top:20px;
}

.sidebar-wrapper.sidebar-visible .sidebar-container .widget {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.sidebar-wrapper.sidebar-visible .sidebar-container .widget:hover {
    box-shadow: 0 10px 30px -5px rgba(102, 126, 234, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* Toggle Button */
.sidebar-toggle-button {
    position: sticky;
    left: 0;
    top: 50%;
    margin: 260px 0 100px -20px;
    z-index: 1;
    border: none !important;
    padding: 12px !important;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
}

/* When sidebar is visible, move button to sidebar edge */
.sidebar-wrapper.sidebar-visible .sidebar-toggle-button {
    z-index: 2;
}

/* Toggle button icons */
.sidebar-toggle-button .fa-chevron-left {
    display: none;
}

.sidebar-toggle-button i {
    width: 16px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sidebar-wrapper.sidebar-visible .sidebar-toggle-button .fa-chevron-right {
    display: none;
}

.sidebar-wrapper.sidebar-visible .sidebar-toggle-button .fa-chevron-left {
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .article-layout .post-container,
    .related-posts,
    main .site-main .comments-section {
        padding: 40px;
    }
    
    .related-posts .related-posts-slider {
        gap: 20px;
    }

    .sidebar-container {
        left: -270px;
    }
}

@media (max-width: 1024px) {
    .article-layout .post-container .post-title,
    .related-posts h2,
    main .site-main .comments-section h2 {
        font-size: 38px !important;
    }

    .article-layout .post-container .post-content h2 {
        font-size: 1.5rem;
        margin: 2.5rem 0 1rem;
        line-height: 1.4;
    }

    .article-layout .post-container .post-content h3 {
        font-size: 1.3rem;
        margin: 1rem 0;
    }
}

@media (max-width: 992px) {
    .article-layout {
        margin-top: -40px;
    }

    main .sidebar-container aside.sidebar {
        top: 0 !important;
    }

    .sidebar-container {
        height: 100vh !important;
        overflow: scroll;
        position: sticky !important;
        margin-left: -370px;
    }
    
    .sidebar-wrapper.sidebar-visible .sidebar-container {
        left: 0 !important;
    }

    .sidebar-toggle-button {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 260px 0 100px 350px;
    }

    .related-posts .related-posts-slider .related-post {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .article-layout .post-container .post-title,
    .related-posts h2,
    main .site-main .comments-section h2 {
        font-size: 29px !important;
        line-height: 1.4em !important;
    }
    
    main .post-hero-image {
        aspect-ratio: 3/1.5;
    }
    
    .article-layout .post-container {
        padding: 2rem 1.5rem;
    }
    
    .article-layout .post-container .post-title {
        font-size: 32px;
    }
    
    .article-layout .post-container .post-meta {
        flex-direction: column;
        border-radius: 30px;
    }
    
    .article-layout .post-container .post-meta hr {
        display: none;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .post-navigation {
        border-radius: 30px;
    }

    main .site-main section.post-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .related-posts h2, main .site-main .comments-section h2 {
        padding: 0;
        margin: 0 0 1rem;
    }

    main > .site-main {
        padding: 16px 10px;
    }
    
    .sidebar-toggle-button {
        width: 30px !important;
        height: 30px !important;
    }
    
    .sidebar-toggle-button i {
        width: unset !important;
        height: unset !important;
        font-size: 14px;
    }
    
    .related-posts .related-posts-slider .related-post {
        flex: 0 0 100%;
    }

    .article-layout .post-container,
    main .site-main section.post-section {
        padding: 1.5rem 1rem;
    }

    .article-layout .post-container .post-meta {
        padding: 1rem;
        gap: 1rem;
    }

    .article-layout .post-container .categories {
        padding: .5rem 1rem;
        margin-bottom: 1rem;
    }

    .article-layout .post-container .post-content p,
    .article-layout .post-container .post-content ul,
    .article-layout .post-container .post-content ol {
        margin-bottom: 1rem;
    }

    .article-layout .post-container .tags {
        margin: 1.5rem 0;
    }

    .article-layout .post-container .social-share {
        padding: 1rem 0 ;
    }

    .rank-math-breadcrumb {
        top: -65px;
        padding: 10px;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .article-layout .post-container .tags {
        flex-flow: row wrap;
    }
    .post-navigation a {
        font-size: 1rem !important;
        padding: 4px 16px;
    }

    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .post-navigation .all,
    .post-navigation .previous,
    .post-navigation .next {
        min-width: unset;
        flex: none;
        text-align: center;
        width: 100%;
    }

    .article-layout .post-container .post-content p, .article-layout .post-container .post-content ul, .article-layout .post-container .post-content ol {
        font-size: 14px;   
    }

    .sidebar-toggle-button {
        margin: 260px 0 100px -16px !important;
        width: 24px !important;
        height: 24px !important;
    }

    main .site-main .comments-section form.comment-form {
        flex-direction: column;
    }
}