/*
=========================================
MARK: Archive
=========================================
*/

    .blog-bee-main-wrap .content-wrapper {
        display: flex;
        gap: 30px;
    }

    .blog-bee-main-wrap .content-wrapper .site-main {
        flex: 1;
    }

    .blog-bee-main-wrap .content-wrapper:has(.widget-area) .site-main {
        flex: 0 1 70%;
    }

    .blog-bee-main-wrap .content-wrapper .widget-area {
        flex: 0 1 30%;
    }

    .content-wrapper:has( > aside:nth-of-type(2) ) .widget-area {
        flex: 0 0 20%;
        min-width: 0;
    }

    .widget-area {
        background: var(--bbe-site-bg-color);
    }

    .bbe-dark .widget-area {
        border-color: var(--bbe-site-border-color-muted);
    }

    /* Columns */
    .blog-bee-main-wrap .article-wrap {
        display: grid;
        gap: 30px;
    }

    .blog-bee-main-wrap.column--two .site-main .article-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-bee-main-wrap.column--three .site-main .article-wrap {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-bee-main-wrap.column--four .site-main .article-wrap {
        grid-template-columns: repeat(4, 1fr);
    }

    .blog-bee-main-wrap.column--five .site-main .article-wrap {
        grid-template-columns: repeat(5, 1fr);
    }

    @media ( max-width: 768px ) {
        .blog-bee-main-wrap.tab-column--one .site-main .article-wrap {
            grid-template-columns: 100%;
        }

        .blog-bee-main-wrap.tab-column--two .site-main .article-wrap {
            grid-template-columns: repeat(2, 1fr);
        }

        .blog-bee-main-wrap.tab-column--three .site-main .article-wrap {
            grid-template-columns: repeat(3, 1fr);
        }

        .blog-bee-main-wrap.tab-column--four .site-main .article-wrap {
            grid-template-columns: repeat(4, 1fr);
        }

        .blog-bee-main-wrap.tab-column--five .site-main .article-wrap {
            grid-template-columns: repeat(5, 1fr);
        }
    }

    @media ( max-width: 610px ) {
        .blog-bee-main-wrap.mobile-column--one .site-main .article-wrap {
            grid-template-columns: 100%;
        }

        .blog-bee-main-wrap.mobile-column--two .site-main .article-wrap {
            grid-template-columns: repeat(2, 1fr);
        }

        .blog-bee-main-wrap.mobile-column--three .site-main .article-wrap {
            grid-template-columns: repeat(3, 1fr);
        }

        .blog-bee-main-wrap.mobile-column--four .site-main .article-wrap {
            grid-template-columns: repeat(4, 1fr);
        }

        .blog-bee-main-wrap.mobile-column--five .site-main .article-wrap {
            grid-template-columns: repeat(5, 1fr);
        }
    }

    /* Image Ratio */
    .blog-bee-main-wrap.ratio--wide .site-main .bbe-article .bbe-article-figure {
        aspect-ratio: var(--bbe-ratio-16-9);
    }

    .blog-bee-main-wrap.ratio--boxy .site-main .bbe-article .bbe-article-figure {
        aspect-ratio: var(--bbe-ratio-4-3);
    }

    .blog-bee-main-wrap.ratio--rectangle .site-main .bbe-article .bbe-article-figure {
        aspect-ratio: var(--bbe-ratio-3-1);
    }

    .blog-bee-main-wrap.ratio--banner .site-main .bbe-article .bbe-article-figure {
        aspect-ratio: var(--bbe-ratio-2-1);
    }

    .blog-bee-main-wrap.ratio--square .site-main .bbe-article .bbe-article-figure {
        aspect-ratio: var(--bbe-ratio-1-1);
    }

    .blog-bee-main-wrap .site-main .bbe-article {
        position: relative;
    }

    .blog-bee-main-wrap .site-main .bbe-article .entry-content {
        display: grid;
        gap: 25px;
    }

    .blog-bee-main-wrap.align--center .site-main .bbe-article .entry-content {
        text-align: center;
    }

    .blog-bee-main-wrap.align--right .site-main .bbe-article .entry-content {
        text-align: right;
    }

    /* Post Grid */
    body .blog-bee-main-wrap.layout--grid.column--one .site-main .bbe-article .entry-inner .entry-title,
    body .blog-bee-main-wrap.layout--grid.column--one .site-main .bbe-article .entry-inner .entry-excerpt {
        max-width: 80%;
    }

    body .blog-bee-main-wrap.layout--grid.column--one.align--center .site-main .bbe-article .entry-inner .entry-title,
    body .blog-bee-main-wrap.layout--grid.column--one.align--center .site-main .bbe-article .entry-inner .entry-excerpt {
        margin-inline: auto;
    }

    body .blog-bee-main-wrap.layout--grid.column--one.align--right .site-main .bbe-article .entry-inner .entry-title,
    body .blog-bee-main-wrap.layout--grid.column--one.align--right .site-main .bbe-article .entry-inner .entry-excerpt {
        margin-left: auto;
    }

    body:not(.single) .blog-bee-main-wrap.layout--grid .site-main .bbe-article .entry-content {
        gap: 0;
    }

    body:not(.single) .blog-bee-main-wrap.layout--grid .site-main .bbe-article .entry-inner:first-of-type {
        margin-bottom: 25px;
    }

    body:not(.single) .blog-bee-main-wrap.layout--grid .site-main .bbe-article .entry-inner:last-of-type {
        margin-top: 25px;
    }

    body:not(.single) .blog-bee-main-wrap.layout--grid .site-main .bbe-article .entry-inner:first-child {
        margin-top: 0;
    }

    body:not(.single) .blog-bee-main-wrap.layout--grid .site-main .bbe-article .entry-inner:last-child {
        margin-bottom: 0;
    }

    body:not(.single) .blog-bee-main-wrap .site-main .bbe-article .entry-inner .entry-categories {
        margin-top: 12px;
    }

    body:not(.single) .blog-bee-main-wrap .site-main .bbe-article .entry-inner .entry-title {
        margin-top: 12px;
    }

    body:not(.single) .blog-bee-main-wrap .site-main .bbe-article .entry-inner .entry-meta {
        margin-top: 10px;
    }

    body:not(.single) .blog-bee-main-wrap .site-main .bbe-article .entry-inner .entry-excerpt {
        margin-top: 13px;
    }

    body:not(.single) .blog-bee-main-wrap .site-main .bbe-article .entry-inner .bbe-post-button {
        margin-top: 17px;
    }

    body:not(.single) .blog-bee-main-wrap .site-main .bbe-article .entry-inner > *:first-child {
        margin-top: 0;
    }

    body:not(.single) .blog-bee-main-wrap .site-main .bbe-article .entry-inner > *:last-child {
        margin-bottom: 0;
    }

    body.no-image-padding:not(.single) #page.site .blog-bee-main-wrap.layout--grid.card--default .site-main .bbe-article .entry-inner,
    body.no-image-padding:not(.single) #page.site .blog-bee-main-wrap.layout--grid.card--boxed .site-main .bbe-article .entry-inner {
        margin-block: 0;
    }

    /* Overlay Enabled */
    .blog-bee-main-wrap.overlay--enabled .site-main .bbe-article .bbe-article-figure:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
        background-color: #2c2f3040;
        transition: var(--transition-1);
    }

    .blog-bee-main-wrap.overlay--enabled .site-main .bbe-article .entry-inner {
        position: absolute;
        bottom: 0;
        z-index: 1;
        padding: 6%;
    }

    body .site .blog-bee-main-wrap.layout--grid.overlay--enabled .site-main .bbe-article .entry-inner {
        margin: 0;
    }

    .blog-bee-main-wrap.overlay--enabled .site-main .bbe-article .entry-inner * {
        color: #fff;
        background: transparent;
        border: none;
        padding: 0;
    }

    /* Layout List */
    .blog-bee-main-wrap.overlay--enabled.layout--list .site-main .bbe-article .entry-content {
        grid-template-columns: 100%;
    }

    /* Alter Enabled */
    .blog-bee-main-wrap.alter--enabled .site-main .bbe-article:nth-child(even) .bbe-article-figure {
        order: 2;
    }

    body:not(.single) .blog-bee-main-wrap.layout--grid.alter--enabled .site-main .bbe-article:nth-child(even) .entry-inner:last-of-type {
        margin-bottom: 25px;
        margin-top: 0;
    }

    /* Image Position */
    .blog-bee-main-wrap.position--right .site-main .bbe-article .bbe-article-figure {
        order: 2;
    }

    /* Masonry */
    .blog-bee-main-wrap.masonry--on .site-main .bbe-article {
        width: 100%;
        margin-bottom: 30px;
        break-inside: avoid;
    }

    .blog-bee-main-wrap.masonry--on.column--two .site-main .bbe-article,
    .blog-bee-main-wrap.masonry--on.column--two .site-main .bbe-masonry-sizer {
        width: calc((100% - (2 - 1) * 30px) / 2);
    }

    .blog-bee-main-wrap.masonry--on.column--three .site-main .bbe-article,
    .blog-bee-main-wrap.masonry--on.column--three .site-main .bbe-masonry-sizer {
        width: calc((100% - (3 - 1) * 30px) / 3);
    }

    .blog-bee-main-wrap.masonry--on.column--four .site-main .bbe-article,
    .blog-bee-main-wrap.masonry--on.column--four .site-main .bbe-masonry-sizer {
        width: calc((100% - (4 - 1) * 30px) / 4);
    }

    .blog-bee-main-wrap.masonry--on.column--five .site-main .bbe-article,
    .blog-bee-main-wrap.masonry--on.column--five .site-main .bbe-masonry-sizer {
        width: calc((100% - (5 - 1) * 30px) / 5);
    }

    @media ( max-width: 768px ) {
        .blog-bee-main-wrap.masonry--on.tab-column--one .site-main .bbe-article,
        .blog-bee-main-wrap.masonry--on.tab-column--one .site-main .bbe-masonry-sizer {
            width: initial;
        }

        .blog-bee-main-wrap.masonry--on.tab-column--two .site-main .bbe-article,
        .blog-bee-main-wrap.masonry--on.tab-column--two .site-main .bbe-masonry-sizer {
            width: calc((100% - (2 - 1) * 30px) / 2);
        }

        .blog-bee-main-wrap.masonry--on.tab-column--three .site-main .bbe-article,
        .blog-bee-main-wrap.masonry--on.tab-column--three .site-main .bbe-masonry-sizer {
            width: calc((100% - (3 - 1) * 30px) / 3);
        }

        .blog-bee-main-wrap.masonry--on.tab-column--four .site-main .bbe-article,
        .blog-bee-main-wrap.masonry--on.tab-column--four .site-main .bbe-masonry-sizer {
            width: calc((100% - (4 - 1) * 30px) / 4);
        }

        .blog-bee-main-wrap.masonry--on.tab-column--five .site-main .bbe-article,
        .blog-bee-main-wrap.masonry--on.tab-column--five .site-main .bbe-masonry-sizer {
            width: calc((100% - (5 - 1) * 30px) / 5);
        }
    }

    @media ( max-width: 610px ) {
        .blog-bee-main-wrap.masonry--on.mobile-column--one .site-main .bbe-article,
        .blog-bee-main-wrap.masonry--on.mobile-column--one .site-main .bbe-masonry-sizer {
            width: initial;
        }

        .blog-bee-main-wrap.masonry--on.mobile-column--two .site-main .bbe-article,
        .blog-bee-main-wrap.masonry--on.mobile-column--two .site-main .bbe-masonry-sizer {
            width: calc((100% - (2 - 1) * 30px) / 2);
        }

        .blog-bee-main-wrap.masonry--on.mobile-column--three .site-main .bbe-article,
        .blog-bee-main-wrap.masonry--on.mobile-column--three .site-main .bbe-masonry-sizer {
            width: calc((100% - (3 - 1) * 30px) / 3);
        }

        .blog-bee-main-wrap.masonry--on.mobile-column--four .site-main .bbe-article,
        .blog-bee-main-wrap.masonry--on.mobile-column--four .site-main .bbe-masonry-sizer {
            width: calc((100% - (4 - 1) * 30px) / 4);
        }

        .blog-bee-main-wrap.masonry--on.mobile-column--five .site-main .bbe-article,
        .blog-bee-main-wrap.masonry--on.mobile-column--five .site-main .bbe-masonry-sizer {
            width: calc((100% - (5 - 1) * 30px) / 5);
        }
    }

    .blog-bee-main-wrap.masonry--on.overlay--enabled .content-wrapper .site-main .bbe-article .bbe-article-figure {
        aspect-ratio: unset;
    }

    .blog-bee-main-wrap.masonry--on.overlay--enabled .site-main .bbe-article .bbe-article-figure > a,
    .blog-bee-main-wrap.masonry--on.overlay--enabled .site-main .bbe-article .bbe-article-figure > iframe {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .blog-bee-main-wrap.masonry--on.overlay--enabled .site-main .bbe-article .entry-inner {
        position: relative;
    }

    /* Edit Posts Button */
    .blog-bee-main-wrap .bbe-article .entry-footer {
        position: absolute;
        top: -21px;
        left: 0;
        line-height: 1;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-1);
    }

    .blog-bee-main-wrap .bbe-article:hover .entry-footer {
        opacity: 1;
        visibility: visible;
    }

    .blog-bee-main-wrap .bbe-article .entry-footer .post-edit-link {
        color: #ffffff;
        background: #2271b1;
        padding: 5px 7px;
        font-size: 10px;
        letter-spacing: 0.6px;
        text-transform: uppercase;
    }

    /* Social Share */
    .article-wrap .entry-social-share {
        position: relative;
    }

    .article-wrap .entry-social-share .share-button {
        color: var(--bbe-site-color);
    }

    .article-wrap .entry-social-share .social-shares {
        position: absolute;
        top: 100%;
        left: 50%;
        opacity: 0;
        visibility: hidden;
        padding: 8px 12px;
        border-radius: 3px;
        display: flex;
        gap: 14px;
        z-index: 1;
        align-items: center;
        transform: translate(-50%, 25px);
        transition: var(--transition-2);
        box-shadow: 0px 0px 1px 1px rgb(0 0 0 / 4%);
        border: 1px solid var(--bbe-site-grey-color);
        background-color: var(--bbe-site-bg-color);
    }

    .article-wrap .entry-social-share .social-shares {
        --bbe-site-bg-color: #fff;
        padding: 8px 12px;
        border: 1px solid var(--bbe-site-grey-color);
        background-color: var(--bbe-site-bg-color);
    }

    .bbe-dark .article-wrap .entry-social-share:not(.official--on) .social-shares {
        --bbe-site-bg-color: #292c2f;
    }

    .article-wrap .entry-social-share:hover .social-shares {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 15px);
    }

    .article-wrap .entry-social-share .social-shares:before {
        bottom: calc(100% - 6px);
        left: 50%;
        content: " ";
        height: 12px;
        width: 12px;
        border-radius: 2px;
        position: absolute;
        background-color: var(--bbe-site-bg-color);
        border: 1px solid transparent;
        border-left-color: var(--bbe-site-grey-color);
        border-top-color: var(--bbe-site-grey-color);
        transform: translateX(-50%) rotateZ(41deg);
        -webkit-box-shadow: -1px 1px 1px -1px rgba(0, 0, 0, 0.05);
        -moz-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.05);
        box-shadow: -1px -1px 3px -1px rgb(0 0 0 / 23%);
    }

    .article-wrap .entry-social-share .social-shares li a {
        font-size: 12px;
        color: var(--bbe-site-color);
    }

    .article-wrap .entry-social-share .social-shares li a:hover {
        --bbe-site-color-hover: var(--bbe-theme-color);
        color: var(--bbe-site-color-hover);
    }

    /* List Layout */
    .blog-bee-main-wrap.layout--list.column--two .site-main .article-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    body .site .bbe-sections-wrap .blog-bee-main-wrap.layout--list .site-main .bbe-article {
        border-bottom: 1px solid var(--bbe-site-border-color-muted);
        padding-bottom: 30px;
        overflow: visible;
    }

    body .site .blog-bee-main-wrap.layout--list .site-main .bbe-article:last-child {
        padding: 0;
        border: none;
    }

    .blog-bee-main-wrap.overlay--enabled.layout--list .site-main .bbe-article .entry-inner {
        max-width: 85%;
    }

    .blog-bee-main-wrap.layout--list .site-main .bbe-article .entry-content {
        grid-template-columns: 30fr 70fr;
        align-items: center;
    }

    .blog-bee-main-wrap.layout--list.alter--enabled .site-main .bbe-article:nth-child(even) .entry-content,
    .blog-bee-main-wrap.layout--list.position--right .site-main .bbe-article .entry-content {
        grid-template-columns: 70fr 30fr;
    }

    /* Pagination */
    .blog-bee-main-wrap:not(.masonry--on) .bbe-pagination {
        margin-top: 40px;
    }

    /* Styles */
    .blog-bee-main-wrap .bbe-pagination.default.filled .nav-links a {
        --bbe-site-bg-color: #efefef;
        background: var(--bbe-site-bg-color);
        padding: 6px 14px;
    }

    .blog-bee-main-wrap .bbe-pagination.default.filled .nav-links a:hover {
        --bbe-site-bg-color-hover: #efefef;
        background: var(--bbe-site-bg-color-hover);
    }

    .blog-bee-main-wrap .bbe-pagination.default.outline .nav-links a {
        border: 1px solid var(--bbe-site-border-color);
        padding: 6px 14px;
    }

    .blog-bee-main-wrap .bbe-pagination.default.outline .nav-links a:hover {
        border: 1px solid var(--bbe-site-border-color-hover);
    }

    .blog-bee-main-wrap .bbe-pagination.default.rounded .nav-links a,
    .blog-bee-main-wrap .bbe-pagination.number.rounded .page-numbers .page-numbers.current,
    .blog-bee-main-wrap .bbe-pagination.ajax.rounded .label {
        border-radius: 4px;
    }

    .blog-bee-main-wrap .bbe-pagination.default.circle .nav-links a,
    .blog-bee-main-wrap .bbe-pagination.number.circle .page-numbers .page-numbers.current,
    .blog-bee-main-wrap .bbe-pagination.ajax.circle .label {
        border-radius: 30px;
    }

        /* Default */
        .blog-bee-main-wrap .bbe-pagination.default .nav-links {
            display: flex;
            justify-content: space-between;
        }

        .blog-bee-main-wrap .bbe-pagination.default .nav-links a {
            font-size: 14px;
            color: var(--bbe-site-color);
            display: inline-block;
        }

        .blog-bee-main-wrap .bbe-pagination.default .nav-links a:hover {
            color: var(--bbe-site-color-hover);
        }

        /* Numbers */
        .blog-bee-main-wrap .bbe-pagination.number > .page-numbers {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .blog-bee-main-wrap .bbe-pagination.number .prev.page-numbers i,
        .blog-bee-main-wrap .bbe-pagination.number .next.page-numbers i {
            background: transparent;
            border: none;
            width: initial;
            height: initial;
            font-size: 16px;
        }

        .blog-bee-main-wrap .bbe-pagination.number .page-numbers a {
            color: var(--bbe-site-color);
        }

        .blog-bee-main-wrap .bbe-pagination.number .page-numbers .page-numbers.current {
            color: var(--bbe-theme-color);
        }

        .blog-bee-main-wrap .bbe-pagination.number .page-numbers a:hover {
            color: var(--bbe-site-color-hover);
        }

        .blog-bee-main-wrap .bbe-pagination.number .page-numbers .page-numbers.current {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
        }

        .blog-bee-main-wrap .bbe-pagination.number.filled .page-numbers span.page-numbers.current,
        .blog-bee-main-wrap .bbe-pagination.number.outline .page-numbers span.page-numbers.current {
            width: 35px;
            height: 35px;
            line-height: 35px;
        }

        .blog-bee-main-wrap .bbe-pagination.number.filled .page-numbers .page-numbers.current {
            --bbe-site-bg-color: var(--bbe-theme-color);
            color: #fff;
            background: var(--bbe-site-bg-color);
        }

        .blog-bee-main-wrap .bbe-pagination.number.outline .page-numbers span.page-numbers.current {
            border: 1px solid var(--bbe-site-border-color);
        }

        .blog-bee-main-wrap .bbe-pagination.number .dots {
            color: var(--bbe-site-color);
        }

        /* Ajax */
        .blog-bee-main-wrap .bbe-pagination.ajax {
            text-align: center;
        }

        .blog-bee-main-wrap .bbe-pagination.ajax.filled .label,
        .blog-bee-main-wrap .bbe-pagination.ajax.outline .label {
            line-height: 46px;
            padding: 0 50px;
            height: 46px;
        }

        .blog-bee-main-wrap .bbe-pagination.ajax.filled .label {
            background: var(--bbe-site-bg-color);
        }

        .blog-bee-main-wrap .bbe-pagination.ajax.filled .label:hover {
            background: var(--bbe-site-bg-color-hover);
        }

        .blog-bee-main-wrap .bbe-pagination.ajax.outline .label {
            border: 1px solid var(--bbe-site-border-color);
        }

        .blog-bee-main-wrap .bbe-pagination.ajax.outline .label:hover {
            border-color: var(--bbe-site-border-color-hover);
        }

        .blog-bee-main-wrap .bbe-pagination.ajax .label {
            font-size: 12px;
            text-transform: uppercase;
            color: var(--bbe-site-color);
            display: flex;
            align-items: center;
            transition: var(--transition-1);
        }

        .blog-bee-main-wrap .bbe-pagination.ajax .label:hover {
            color: var(--bbe-site-color-hover);
        }

        .blog-bee-main-wrap .bbe-pagination.ajax .hidden {
            display: none;
        }

    /* No Result Found */
    .ajax-wrapper .no-results-label {
        color: var(--bbe-site-color);
        margin-top: 20px;
        display: inline-block;
    }

    .bbe-pagination .ajax-wrapper .no-results-label {
        margin: 0;
    }

    .ajax-wrapper .no-results-label.hidden {
        display: none;
    }

    body .site .ajax-wrapper .ajax-button.hidden {
        display: none;
    }