/* =========================================================
   BLOG
   ========================================================= */

.bvl-blog-content {
    direction: rtl;
    background: #f7f8fc;
    min-height: 600px;
    padding: 35px 0 60px;
    color: #303545;
}


/* =========================================================
   HEADER
   ========================================================= */

.bvl-blog-content .bvl-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.bvl-blog-content .bvl-header h1 {
    margin: 0;
    color: #111936;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.7;
}

.bvl-blog-content .bvl-breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
}

.bvl-blog-content .bvl-breadcrumb li {
    color: #9399a7;
}

.bvl-blog-content .bvl-breadcrumb li + li:before {
    padding: 0 3px 0 7px;
    color: #c3c7d0;
}

.bvl-blog-content .bvl-breadcrumb a {
    color: #747b8b;
    text-decoration: none;
}

.bvl-blog-content .bvl-breadcrumb a:hover {
    color: #000643;
}

.bvl-blog-content > .container > hr {
    margin: 22px 0 30px;
    border: 0;
    border-top: 1px solid #e7eaf0;
}


/* =========================================================
   LAYOUT
   ========================================================= */

.bvl-blog-content .container-fluid {
    max-width: 1500px;
    padding-left: 30px;
    padding-right: 30px;
}

.bvl-blog-sidebar {
    padding-left: 15px;
}

.bvl-blog-posts {
    padding-right: 15px;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.bvl-widget {
    padding: 17px;
    border: 1px solid #e7eaf0;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(25, 32, 60, .025);
}

.bvl-widget + .bvl-widget {
    margin-top: 15px;
}

.bvl-widget-title {
    margin: 0 0 13px;
    color: #131a3d;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.7;
    position: relative;
    padding-right: 11px;
}

.bvl-widget-title:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 3px;
    height: 18px;
    border-radius: 10px;
    background: #3bb77e;
    transform: translateY(-50%);
}


/* =========================================================
   BLOG SEARCH
   ========================================================= */

.bvl-search-input {
    width: 100%;
    height: 44px;
    padding: 8px 12px;
    border: 1px solid #dfe3eb;
    border-radius: 10px;
    outline: none;
    background: #fafbfc;
    color: #343949;
    font-size: 12px;
    transition: .18s ease;
    direction: rtl;
}

.bvl-search-input::placeholder {
    color: #a3a8b4;
}

.bvl-search-input:focus {
    border-color: #000643;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 6, 67, .045);
}


/* =========================================================
   CATEGORIES
   ========================================================= */

.bvl-category-list,
.bvl-category-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bvl-category-list > li {
    border-bottom: 1px solid #f0f2f5;
}

.bvl-category-list > li:last-child {
    border-bottom: 0;
}

.bvl-category-list > li > a {
    min-height: 40px;
    padding: 8px 2px;
    display: flex;
    align-items: center;
    color: #505666;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: .18s ease;
}

.bvl-category-list > li > a:before {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-radius: 50%;
    background: #dce1e9;
    transition: .18s ease;
}

.bvl-category-list > li > a:hover {
    color: #000643;
}

.bvl-category-list > li > a:hover:before {
    background: #3bb77e;
}

.bvl-category-list ul {
    padding: 0 14px 7px 0;
}

.bvl-category-list ul li a {
    display: block;
    padding: 5px 0;
    color: #8a90a0;
    font-size: 11px;
    text-decoration: none;
    transition: .18s ease;
}

.bvl-category-list ul li a:hover {
    color: #000643;
}


/* =========================================================
   POST GRID
   ========================================================= */

.bvl-blog-posts .row {
    row-gap: 2px;
}


/* =========================================================
   POST CARD
   ========================================================= */

.bvl-post-snippet {
    height: 100%;
    overflow: hidden;
    border: 1px solid #e7eaf0;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(25, 32, 60, .025);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.bvl-post-snippet:hover {
    border-color: #dde2ea;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(25, 32, 60, .08);
}

.bvl-post-image-link {
    display: block;
    overflow: hidden;
    background: #f2f4f8;
}

.bvl-post-thumbnail {
    width: 100%;
    height: 205px;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.bvl-post-snippet:hover .bvl-post-thumbnail {
    transform: scale(1.035);
}


/* =========================================================
   POST INNER
   ========================================================= */

.bvl-post-inner {
    padding: 15px;
}

.bvl-post-link {
    color: inherit;
    text-decoration: none !important;
}

.bvl-post-title {
    min-height: 47px;
    margin: 0;
    color: #171d3f;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bvl-post-link:hover .bvl-post-title {
    color: #000643;
}

.bvl-post-date {
    margin-top: 7px;
    display: block;
    color: #9ba0ad;
    font-size: 10px;
}

.bvl-post-inner hr {
    margin: 12px 0;
    border: 0;
    border-top: 1px solid #edf0f4;
}

.bvl-post-excerpt {
    min-height: 40px;
    margin: 0 0 12px;
    color: #777d8b;
    font-size: 11px;
    line-height: 1.95;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* =========================================================
   TAGS
   ========================================================= */

.bvl-post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.bvl-tag {
    padding: 4px 8px;
    border: 1px solid #e3e6ed;
    border-radius: 7px;
    background: #fafbfc;
    color: #747b8a;
    font-size: 9px;
    line-height: 1.5;
    text-decoration: none !important;
    transition: .18s ease;
}

.bvl-tag:hover {
    border-color: #cfd5df;
    background: #f3f5f8;
    color: #000643;
}


/* =========================================================
   EMPTY
   ========================================================= */

.bvl-blog-empty {
    min-height: 350px;
    padding: 35px 20px;
    border: 1px solid #e7eaf0;
    border-radius: 15px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bvl-blog-empty > i {
    width: 65px;
    height: 65px;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #f0f2f8;
    color: #9ba1b0;
    font-size: 29px;
}

.bvl-blog-empty h4 {
    margin: 0;
    color: #2d3343;
    font-size: 15px;
    font-weight: 900;
}

.bvl-blog-empty p {
    margin: 5px 0 0;
    color: #989daa;
    font-size: 11px;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.bvl-blog-posts .pagination {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.bvl-blog-posts .pagination > li {
    margin: 0;
}

.bvl-blog-posts .pagination > li > a,
.bvl-blog-posts .pagination > li > span {
    min-width: 36px;
    height: 36px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e5ec;
    border-radius: 9px !important;
    background: #fff;
    color: #666d7d;
    font-size: 11px;
    text-decoration: none;
    box-shadow: none;
}

.bvl-blog-posts .pagination > li > a:hover {
    border-color: #cbd1dc;
    background: #f6f7f9;
    color: #000643;
}

.bvl-blog-posts .pagination > .active > a,
.bvl-blog-posts .pagination > .active > span {
    border-color: #000643;
    background: #000643;
    color: #fff;
}

.bvl-blog-posts .pagination > .disabled > a,
.bvl-blog-posts .pagination > .disabled > span {
    background: #f8f9fb;
    color: #b7bbc4;
}


/* =========================================================
   SEARCH RESULT
   ========================================================= */

.bvl-blog-content .bvl-search-result-title {
    margin-bottom: 18px;
    color: #757b89;
    font-size: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .bvl-post-thumbnail {
        height: 185px;
    }

    .bvl-blog-content .container-fluid {
        padding-left: 22px;
        padding-right: 22px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .bvl-blog-content {
        padding: 25px 0 45px;
    }

    .bvl-blog-content > .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .bvl-blog-content > .container > hr {
        margin: 16px 0 20px;
    }

    .bvl-blog-content .bvl-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .bvl-blog-content .bvl-header h1 {
        font-size: 20px;
    }

    .bvl-blog-content .bvl-breadcrumb {
        font-size: 10px;
    }

    .bvl-blog-content .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .bvl-blog-sidebar,
    .bvl-blog-posts {
        padding-left: 0;
        padding-right: 0;
    }

    .bvl-blog-posts .row {
        margin-left: -7px;
        margin-right: -7px;
    }

    .bvl-blog-posts .row > [class*="col-"] {
        padding-left: 7px;
        padding-right: 7px;
    }

    .bvl-post-thumbnail {
        height: 185px;
    }

    .bvl-post-inner {
        padding: 13px;
    }

    .bvl-post-title {
        min-height: 44px;
        font-size: 12px;
    }

    .bvl-post-excerpt {
        font-size: 10px;
        line-height: 1.8;
    }

    .bvl-post-date {
        font-size: 9px;
    }

    .bvl-tag {
        font-size: 8px;
        padding: 3px 7px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .bvl-post-thumbnail {
        height: 155px;
    }

    .bvl-post-inner {
        padding: 11px;
    }

    .bvl-post-title {
        font-size: 11px;
        line-height: 1.75;
    }

    .bvl-post-excerpt {
        margin-bottom: 9px;
    }

}

/* =========================================================
   BLOG PAGINATION
   ========================================================= */

.bvl-pagination-wrap {
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
    padding: 0 5px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.bvl-pagination {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    direction: rtl;
    list-style: none;
}

.bvl-pagination .page-item {
    margin: 0;
    flex: 0 0 auto;
}

.bvl-pagination .page-link {
    min-width: 38px;
    height: 38px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e1e5ec;
    border-radius: 10px !important;

    background: #fff;
    color: #646b7b;

    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;

    box-shadow: none;
    transition:
        background-color .18s ease,
        border-color .18s ease,
        color .18s ease,
        transform .18s ease;
}

.bvl-pagination .page-link:hover {
    border-color: #cbd1dc;
    background: #f6f7f9;
    color: #000643;
    transform: translateY(-1px);
}

.bvl-pagination .page-item.active .page-link {
    border-color: #000643;
    background: #000643;
    color: #fff;
}

.bvl-pagination .page-item.disabled .page-link {
    border-color: #e9ecf1;
    background: #f8f9fb;
    color: #b9bdc6;
    cursor: default;
    transform: none;
}

.bvl-pagination .bvl-pagination-arrow {
    width: 38px;
    padding: 0;
}

.bvl-pagination .bvl-pagination-arrow i {
    font-size: 15px;
}

.bvl-pagination .bvl-pagination-dots {
    min-width: 30px;
    padding: 0 5px;
    border-color: transparent;
    background: transparent;
    color: #a2a7b2;
}

.bvl-pagination .bvl-pagination-dots:hover {
    border-color: transparent;
    background: transparent;
    color: #a2a7b2;
    transform: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .bvl-pagination-wrap {
        padding-left: 0;
        padding-right: 0;
    }

    .bvl-pagination {
        gap: 5px;
    }

    .bvl-pagination .page-link {
        min-width: 36px;
        height: 36px;
    }

    .bvl-pagination .bvl-pagination-arrow {
        width: 36px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .bvl-pagination-wrap {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
        padding: 0;
        overflow: hidden;
    }

    .bvl-pagination {
        width: 100%;
        max-width: 100%;
        padding: 0 2px;
        gap: 5px;
        justify-content: center;
    }

    .bvl-pagination .page-link {
        min-width: 34px;
        width: auto;
        height: 34px;
        padding: 0 7px;

        border-radius: 8px !important;

        font-size: 10px;
    }

    .bvl-pagination .bvl-pagination-arrow {
        width: 34px;
        padding: 0;
    }

    .bvl-pagination .bvl-pagination-arrow i {
        font-size: 14px;
    }

    .bvl-pagination .bvl-pagination-dots {
        min-width: 22px;
        padding: 0 2px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .bvl-pagination {
        gap: 4px;
    }

    .bvl-pagination .page-link {
        min-width: 31px;
        height: 31px;
        padding: 0 5px;
        border-radius: 7px !important;
        font-size: 9px;
    }

    .bvl-pagination .bvl-pagination-arrow {
        width: 31px;
    }

    .bvl-pagination .bvl-pagination-arrow i {
        font-size: 13px;
    }

}

/* =========================================================
   BLOG ARCHIVE INTRO
   ========================================================= */

.bvl-header-eyebrow {
    margin-bottom: 3px;
    color: #9a9fac;
    font-size: 11px;
    font-weight: 700;
}

.bvl-archive-intro {
    min-height: 62px;
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid #e7eaf0;
    border-radius: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
}

.bvl-archive-intro-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eef0fa;
    color: #000643;
}

.bvl-archive-intro-icon i {
    font-size: 17px;
}

.bvl-archive-intro > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.bvl-archive-intro strong {
    color: #22283c;
    font-size: 12px;
    font-weight: 900;
}

.bvl-archive-intro > div > span {
    margin-top: 2px;
    color: #979daa;
    font-size: 10px;
}

@media (max-width: 767px) {

    .bvl-archive-intro {
        margin-bottom: 14px;
    }

    .bvl-archive-intro-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .bvl-archive-intro strong {
        font-size: 11px;
    }

}
/* =========================================================
   BLOG SINGLE
   ========================================================= */

.bvl-single-blog {
    direction: rtl;
    width: 100%;
    min-height: 700px;
    padding: 35px 0 70px;
    background: #f7f8fc;
    color: #343949;
}

.bvl-single-blog * {
    box-sizing: border-box;
}


/* =========================================================
   PAGE HEADER
   ========================================================= */

.bvl-single-header {
    margin-bottom: 22px;
}

.bvl-single-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 8px;
}

.bvl-single-eyebrow {
    color: #3bb77e;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.7;
}

.bvl-single-edit {
    min-height: 38px;
    padding: 7px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #dfe3eb;
    border-radius: 10px;
    background: #fff;
    color: #626979;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
    transition: .18s ease;
}

.bvl-single-edit:hover {
    color: #000643;
    background: #f6f7fa;
    border-color: #ccd2de;
}

.bvl-single-edit i {
    font-size: 15px;
}

.bvl-single-title {
    max-width: 1050px;
    margin: 0;
    color: #111936;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.8;
}

.bvl-single-breadcrumb {
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: #969ca9;
    font-size: 12px;
    line-height: 1.8;
}

.bvl-single-breadcrumb a {
    color: #767d8c;
    text-decoration: none;
}

.bvl-single-breadcrumb a:hover {
    color: #000643;
}

.bvl-single-breadcrumb i {
    color: #b4bac4;
    font-size: 13px;
}


/* =========================================================
   BANNERS
   ========================================================= */

.bvl-single-banners-section {
    width: 100%;
    margin-bottom: 18px;
}

.bvl-single-banners {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    justify-content: center;
    gap: 15px;
}

.bvl-single-banner {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e7eaf0;
    border-radius: 14px;
    background: #fff;
    text-align: center;
    line-height: 0;
    transition: .18s ease;
}

.bvl-single-banner:hover {
    border-color: #d9dee7;
    box-shadow: 0 8px 24px rgba(20, 28, 55, .06);
}

.bvl-single-banner img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}


/* =========================================================
   ARTICLE
   ========================================================= */

.bvl-single-article {
    width: 100%;
    overflow: hidden;
    border: 1px solid #e6e9ef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(30, 38, 70, .035);
}


/* =========================================================
   ARTICLE META
   ========================================================= */

.bvl-single-article-head {
    padding: 17px 20px;
    border-bottom: 1px solid #edf0f4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.bvl-single-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #858c9b;
    font-size: 12px;
    line-height: 1.8;
}

.bvl-single-date i {
    color: #000643;
    font-size: 15px;
}

.bvl-single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    color: #858c9b;
    font-size: 12px;
}

.bvl-single-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bvl-single-meta i {
    color: #000643;
    font-size: 14px;
}


/* =========================================================
   CATEGORY
   ========================================================= */

.bvl-single-categories {
    padding: 14px 20px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.bvl-single-meta-label {
    color: #707787;
    font-size: 12px;
    font-weight: 800;
}

.bvl-single-categories a {
    padding: 6px 10px;
    border-radius: 8px;
    background: #eef0fa;
    color: #000643;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.5;
    text-decoration: none !important;
    transition: .18s ease;
}

.bvl-single-categories a:hover {
    background: #e3e6f7;
}


/* =========================================================
   FEATURED IMAGE
   ========================================================= */

.bvl-single-featured {
    width: calc(100% - 40px);
    margin: 18px 20px 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    background: #f5f6f9;
    text-align: center;
    line-height: 0;
}

.bvl-single-featured img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}


/* =========================================================
   INTRO
   ========================================================= */

.bvl-single-intro {
    width: calc(100% - 40px);
    margin: 20px;
    padding: 15px 17px;
    border-right: 4px solid #3bb77e;
    border-radius: 11px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    background: #f7f9fb;
    color: #626979;
    font-size: 13px;
    line-height: 2.15;
}

.bvl-single-intro i {
    margin-top: 4px;
    color: #3bb77e;
    font-size: 16px;
}


/* =========================================================
   ARTICLE BODY
   ========================================================= */

.bvl-single-body {
    width: 100%;
    padding: 8px 30px 28px;
    color: #404655;
    font-size: 13px;
    line-height: 2.3;
    text-align: right;
    overflow-wrap: anywhere;
}

.bvl-single-body > :first-child {
    margin-top: 0;
}

.bvl-single-body h1,
.bvl-single-body h2,
.bvl-single-body h3,
.bvl-single-body h4,
.bvl-single-body h5,
.bvl-single-body h6 {
    color: #151b3b;
    font-weight: 900;
    line-height: 1.85;
}

.bvl-single-body h1 {
    margin: 32px 0 15px;
    font-size: 24px;
}

.bvl-single-body h2 {
    margin: 30px 0 14px;
    font-size: 22px;
}

.bvl-single-body h3 {
    margin: 28px 0 13px;
    font-size: 20px;
}

.bvl-single-body h4 {
    margin: 25px 0 12px;
    font-size: 18px;
}

.bvl-single-body h5,
.bvl-single-body h6 {
    margin: 23px 0 11px;
    font-size: 16px;
}

.bvl-single-body p {
    margin: 0 0 17px;
    font-size: 13px;
    line-height: 2.3;
}

.bvl-single-body strong,
.bvl-single-body b {
    font-weight: 900;
}

.bvl-single-body a {
    color: #000643;
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bvl-single-body a:hover {
    color: #3bb77e;
}

.bvl-single-body ul,
.bvl-single-body ol {
    margin: 18px 0;
    padding-right: 27px;
    font-size: 13px;
}

.bvl-single-body li {
    margin-bottom: 9px;
    font-size: 13px;
    line-height: 2.15;
}

.bvl-single-body blockquote {
    margin: 22px 0;
    padding: 16px 18px;
    border-right: 4px solid #000643;
    border-radius: 10px;
    background: #f6f7fa;
    color: #626878;
    font-size: 13px;
    line-height: 2.1;
}

.bvl-single-body hr {
    margin: 25px 0;
    border: 0;
    border-top: 1px solid #edf0f4;
}


/* =========================================================
   CONTENT IMAGES
   ========================================================= */

.bvl-single-body img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block;
    margin: 22px auto;
    object-fit: contain;
    border-radius: 10px;
}

.bvl-single-body picture {
    display: block;
    width: 100%;
    text-align: center;
    margin: 22px auto;
}

.bvl-single-body picture img {
    margin: 0 auto;
}

.bvl-single-body figure {
    width: 100%;
    max-width: 100%;
    margin: 25px auto;
    text-align: center;
}

.bvl-single-body figure img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
}

.bvl-single-body figcaption {
    margin-top: 9px;
    color: #8f95a2;
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
}


/* =========================================================
   TABLES
   ========================================================= */

.bvl-single-body table {
    width: 100% !important;
    max-width: 100%;
    margin: 22px 0;
    border-collapse: collapse;
    font-size: 12px;
}

.bvl-single-body table th,
.bvl-single-body table td {
    padding: 10px 11px;
    border: 1px solid #e2e6ed;
    font-size: 12px;
    line-height: 1.8;
    text-align: right;
}

.bvl-single-body table th {
    background: #f7f8fa;
    color: #313747;
    font-weight: 900;
}


/* =========================================================
   MEDIA
   ========================================================= */

.bvl-single-body iframe,
.bvl-single-body video {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 24px auto;
    border-radius: 10px;
}

.bvl-single-body iframe {
    min-height: 400px;
    border: 0;
}

.bvl-single-body video {
    height: auto;
}


/* =========================================================
   TAGS
   ========================================================= */

.bvl-single-tags {
    margin: 0 20px 22px;
    padding-top: 18px;
    border-top: 1px solid #edf0f4;
}

.bvl-single-tags-title {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #444a59;
    font-size: 12px;
    font-weight: 900;
}

.bvl-single-tags-title i {
    color: #000643;
    font-size: 15px;
}

.bvl-single-tags-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.bvl-single-tags-list a {
    padding: 6px 10px;
    border: 1px solid #e2e6ed;
    border-radius: 8px;
    background: #fafbfc;
    color: #707787;
    font-size: 12px;
    line-height: 1.5;
    text-decoration: none !important;
    transition: .18s ease;
}

.bvl-single-tags-list a:hover {
    color: #000643;
    background: #f2f4f8;
    border-color: #d6dbe4;
}


/* =========================================================
   SECTION HEAD
   ========================================================= */

.bvl-single-section-head {
    margin-bottom: 17px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
}

.bvl-single-section-head > div > span {
    display: block;
    margin-bottom: 3px;
    color: #3bb77e;
    font-size: 12px;
    font-weight: 900;
}

.bvl-single-section-head h2 {
    margin: 0;
    color: #111936;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.7;
}

.bvl-single-section-head > strong {
    color: #858c9b;
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   RELATED
   ========================================================= */

.bvl-single-related {
    margin-top: 25px;
}

.bvl-related-row {
    row-gap: 18px;
}


/*
|--------------------------------------------------------------------------
| Related cards override
|--------------------------------------------------------------------------
| Existing post-card partial may have smaller font sizes.
*/

.bvl-single-related .bvl-post-title {
    font-size: 14px;
}

.bvl-single-related .bvl-post-date {
    font-size: 12px;
}

.bvl-single-related .bvl-post-excerpt {
    font-size: 12px;
}

.bvl-single-related .bvl-tag {
    font-size: 12px;
}


/* =========================================================
   COMMENTS
   ========================================================= */

.bvl-single-comments {
    margin-top: 25px;
    padding: 21px;
    border: 1px solid #e6e9ef;
    border-radius: 18px;
    background: #fff;
}

.bvl-comments-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.bvl-comment-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border: 1px solid #edf0f4;
    border-radius: 13px;
    background: #fafbfc;
}

.bvl-comment-admin {
    margin-right: 45px;
    border-color: #e4e7f2;
    background: #f8f9fd;
}

.bvl-comment-avatar {
    width: 48px;
    height: 48px;
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #eef0f4;
    box-shadow: 0 4px 14px rgba(0, 6, 67, .07);
}

.bvl-comment-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.bvl-comment-content {
    min-width: 0;
}

.bvl-comment-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.bvl-comment-head strong {
    color: #343947;
    font-size: 12px;
    font-weight: 900;
}

.bvl-comment-head span {
    color: #9298a5;
    font-size: 12px;
}

.bvl-comment-content p {
    margin: 8px 0 0;
    color: #626877;
    font-size: 12px;
    line-height: 2;
}


/* =========================================================
   EMPTY COMMENTS
   ========================================================= */

.bvl-comments-empty {
    min-height: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bvl-comments-empty i {
    width: 54px;
    height: 54px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f0f2f7;
    color: #a1a6b2;
    font-size: 24px;
}

.bvl-comments-empty strong {
    color: #4a505f;
    font-size: 12px;
    font-weight: 900;
}

.bvl-comments-empty span {
    margin-top: 4px;
    color: #949aa7;
    font-size: 12px;
}


/* =========================================================
   COMMENT FORM
   ========================================================= */

.bvl-comment-form-box {
    margin-top: 21px;
    padding-top: 20px;
    border-top: 1px solid #edf0f4;
}

.bvl-comment-form-head {
    margin-bottom: 14px;
}

.bvl-comment-form-head > span {
    display: block;
    margin-bottom: 3px;
    color: #3bb77e;
    font-size: 12px;
    font-weight: 900;
}

.bvl-comment-form-head h3 {
    margin: 0;
    color: #171d3f;
    font-size: 18px;
    font-weight: 900;
}

.bvl-comment-field label {
    display: block;
    margin-bottom: 7px;
    color: #4b5160;
    font-size: 12px;
    font-weight: 800;
}

.bvl-comment-field textarea {
    width: 100%;
    min-height: 145px;
    padding: 12px 13px;
    border: 1px solid #dfe3eb;
    border-radius: 11px;
    outline: none;
    resize: vertical;
    background: #fff;
    color: #3c4150;
    font-size: 12px;
    line-height: 2;
}

.bvl-comment-field textarea::placeholder {
    color: #a3a8b4;
    font-size: 12px;
}

.bvl-comment-field textarea:focus {
    border-color: #000643;
    box-shadow: 0 0 0 3px rgba(0, 6, 67, .045);
}

.bvl-comment-recaptcha {
    margin-top: 13px;
}

.bvl-comment-submit {
    min-height: 43px;
    margin-top: 14px;
    padding: 8px 16px;
    border: 0;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #000643;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: .18s ease;
}

.bvl-comment-submit:hover {
    background: #161b62;
    transform: translateY(-1px);
}

.bvl-comment-submit i {
    font-size: 15px;
}


/* =========================================================
   LOGIN COMMENT
   ========================================================= */

.bvl-login-comment {
    padding: 14px;
    border: 1px solid #e4e7ee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fafbfc;
}

.bvl-login-comment-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eef0fa;
    color: #000643;
}

.bvl-login-comment-icon i {
    font-size: 18px;
}

.bvl-login-comment-content {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bvl-login-comment-content strong {
    color: #3f4554;
    font-size: 12px;
    font-weight: 900;
}

.bvl-login-comment-content span {
    margin-top: 3px;
    color: #979daa;
    font-size: 12px;
}

.bvl-login-comment-btn {
    min-height: 40px;
    padding: 7px 13px;
    border: 0;
    border-radius: 9px;
    background: #000643;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: .18s ease;
}

.bvl-login-comment-btn:hover {
    background: #161b62;
}


/* =========================================================
   BOTTOM BANNERS
   ========================================================= */

.bvl-single-banners-bottom-section {
    margin-top: 25px;
    margin-bottom: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .bvl-single-blog {
        padding-top: 28px;
    }

    .bvl-single-title {
        font-size: 26px;
    }

    .bvl-single-body {
        padding-left: 24px;
        padding-right: 24px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .bvl-single-blog {
        padding: 22px 0 45px;
    }

    .bvl-single-header {
        margin-bottom: 17px;
    }

    .bvl-single-header-top {
        align-items: flex-start;
    }

    .bvl-single-eyebrow {
        font-size: 12px;
    }

    .bvl-single-edit {
        min-height: 36px;
        padding: 6px 9px;
        font-size: 12px;
    }

    .bvl-single-title {
        font-size: 21px;
        line-height: 1.9;
    }

    .bvl-single-breadcrumb {
        margin-top: 8px;
        gap: 5px;
        font-size: 12px;
    }

    /* banners */
    .bvl-single-banners {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bvl-single-banner {
        border-radius: 11px;
    }

    .bvl-single-banner img {
        width: auto;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    /* article */
    .bvl-single-article {
        border-radius: 14px;
    }

    .bvl-single-article-head {
        padding: 13px 14px;
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .bvl-single-date,
    .bvl-single-meta {
        font-size: 12px;
    }

    .bvl-single-categories {
        padding: 11px 14px 0;
        gap: 6px;
    }

    .bvl-single-meta-label,
    .bvl-single-categories a {
        font-size: 12px;
    }

    /* featured image */
    .bvl-single-featured {
        width: calc(100% - 28px);
        margin: 14px 14px 0;
        border-radius: 11px;
    }

    .bvl-single-featured img {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: none;
    }

    /* intro */
    .bvl-single-intro {
        width: calc(100% - 28px);
        margin: 14px;
        padding: 12px 13px;
        font-size: 12px;
        line-height: 2;
    }

    /* body */
    .bvl-single-body {
        padding: 4px 15px 22px;
        font-size: 12px;
        line-height: 2.15;
    }

    .bvl-single-body p,
    .bvl-single-body li,
    .bvl-single-body ul,
    .bvl-single-body ol {
        font-size: 12px;
        line-height: 2.1;
    }

    .bvl-single-body h1 {
        font-size: 21px;
    }

    .bvl-single-body h2 {
        font-size: 19px;
    }

    .bvl-single-body h3 {
        font-size: 17px;
    }

    .bvl-single-body h4 {
        font-size: 16px;
    }

    .bvl-single-body h5,
    .bvl-single-body h6 {
        font-size: 14px;
    }

    .bvl-single-body a {
        font-size: 12px;
    }

    /* body images */
    .bvl-single-body img,
    .bvl-single-body figure img {
        width: auto !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        margin: 18px auto !important;
    }

    .bvl-single-body figcaption {
        font-size: 12px;
    }

    .bvl-single-body table {
        display: block;
        width: 100% !important;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 12px;
    }

    .bvl-single-body table th,
    .bvl-single-body table td {
        font-size: 12px;
    }

    .bvl-single-body iframe {
        min-height: 240px;
    }

    /* tags */
    .bvl-single-tags {
        margin: 0 14px 18px;
    }

    .bvl-single-tags-title,
    .bvl-single-tags-list a {
        font-size: 12px;
    }

    /* related */
    .bvl-single-related {
        margin-top: 19px;
    }

    .bvl-single-section-head {
        margin-bottom: 13px;
    }

    .bvl-single-section-head > div > span,
    .bvl-single-section-head > strong {
        font-size: 12px;
    }

    .bvl-single-section-head h2 {
        font-size: 19px;
    }

    .bvl-single-related .bvl-post-title {
        font-size: 13px;
    }

    .bvl-single-related .bvl-post-date,
    .bvl-single-related .bvl-post-excerpt,
    .bvl-single-related .bvl-tag {
        font-size: 12px;
    }

    /* comments */
    .bvl-single-comments {
        margin-top: 19px;
        padding: 14px;
        border-radius: 14px;
    }

    .bvl-comment-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 9px;
        padding: 11px;
    }

    .bvl-comment-admin {
        margin-right: 20px;
    }

    .bvl-comment-avatar {
        width: 38px;
        height: 38px;
    }

    .bvl-comment-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .bvl-comment-head strong,
    .bvl-comment-head span,
    .bvl-comment-content p {
        font-size: 12px;
    }

    .bvl-comment-form-head > span {
        font-size: 12px;
    }

    .bvl-comment-form-head h3 {
        font-size: 16px;
    }

    .bvl-comment-field label,
    .bvl-comment-field textarea,
    .bvl-comment-field textarea::placeholder,
    .bvl-comment-submit {
        font-size: 12px;
    }

    /* login */
    .bvl-login-comment {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .bvl-login-comment-content {
        flex: 1 1 calc(100% - 55px);
    }

    .bvl-login-comment-content strong,
    .bvl-login-comment-content span,
    .bvl-login-comment-btn {
        font-size: 12px;
    }

    .bvl-login-comment-btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .bvl-single-title {
        font-size: 19px;
    }

    .bvl-single-featured {
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }

    .bvl-single-intro {
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }

    .bvl-single-body {
        padding-left: 11px;
        padding-right: 11px;
    }

    .bvl-single-body p,
    .bvl-single-body li {
        font-size: 12px;
    }

}