.mbs-banner-area {
    position: relative;
    background: #0f1724;
}

body.mbs-featured-lightbox-open {
    overflow: hidden;
}

.mbs-home-featured-area {
    position: fixed;
    top: calc(var(--mbs-header-offset, var(--mbs-topbar-h, 0px)) + 74px);
    left: 0;
    width: 100%;
    z-index: 1001;
    pointer-events: none;
}

.mbs-home-featured-area .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.mbs-home-featured-shell {
    position: relative;
    display: block;
    width: min(1160px, calc(100% - 24px));
    max-width: 1160px;
    margin: 0 auto;
    padding: 18px 126px 18px 18px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 84% 18%, rgba(246, 182, 60, 0.2), transparent 26%),
        linear-gradient(135deg, rgba(17, 40, 93, 0.97) 0%, rgba(34, 75, 151, 0.96) 48%, rgba(204, 31, 31, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 70px rgba(7, 14, 25, 0.34);
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translate3d(88px, 0, 0);
    transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), max-height 0.38s ease, padding 0.38s ease;
    pointer-events: auto;
    overflow: hidden;
    max-height: 280px;
}

.mbs-home-featured-shell.is-ready {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.mbs-home-featured-shell.is-closing {
    opacity: 0;
    transform: translate3d(-72px, 0, 0);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.mbs-home-featured-slides {
    min-height: 164px;
}

.mbs-home-featured-slide {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    min-height: 164px;
}

.mbs-home-featured-media {
    position: relative;
    min-height: 164px;
    width: 100%;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
    border: 0;
    cursor: zoom-in;
}

.mbs-home-featured-backdrop {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.08);
    filter: blur(14px);
    opacity: 0.45;
}

.mbs-home-featured-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 36, 0.1), rgba(246, 182, 60, 0.08));
}

.mbs-home-featured-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 164px;
    padding: 6px;
    object-fit: contain;
    object-position: center;
}

.mbs-home-featured-zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(15, 23, 36, 0.58);
    color: #ffffff;
    font-size: 14px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.mbs-home-featured-media:hover .mbs-home-featured-zoom,
.mbs-home-featured-media:focus-visible .mbs-home-featured-zoom {
    opacity: 1;
    transform: translateY(0);
}

.mbs-home-featured-media:hover .mbs-home-featured-zoom {
    background: rgba(204, 31, 31, 0.86);
}

.mbs-home-featured-content {
    display: grid;
    gap: 10px;
    align-content: center;
    min-width: 0;
}

.mbs-home-featured-copy {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.mbs-home-featured-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
}

.mbs-home-featured-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff1d3;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mbs-home-featured-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.45rem, 2.2vw, 2.05rem);
    line-height: 1.12;
    max-width: 34ch;
}

.mbs-home-featured-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 62ch;
}

.mbs-home-featured-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease;
    white-space: nowrap;
}

.mbs-home-featured-link:hover {
    color: #ffffff;
    background: rgba(246, 182, 60, 0.88);
    transform: translateY(-1px);
}

.mbs-home-featured-controls {
    position: absolute;
    top: 18px;
    right: 62px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mbs-home-featured-arrow {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.mbs-home-featured-arrow:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.22);
}

.mbs-home-featured-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 28px;
    padding: 0 2px;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
}

.mbs-home-featured-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.mbs-home-featured-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.16);
}

.mbs-home-featured-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.mbs-home-featured-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 14, 25, 0.82);
    backdrop-filter: blur(8px);
}

.mbs-home-featured-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    max-height: calc(100vh - 56px);
    padding: 18px 18px 16px;
    border-radius: 24px;
    background: rgba(13, 22, 36, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.mbs-home-featured-lightbox-dialog img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 150px);
    border-radius: 18px;
    object-fit: contain;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.mbs-home-featured-lightbox-dialog p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.6;
}

.mbs-home-featured-lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
}

.mbs-banner-area .swiper-slide {
    position: relative;
    min-height: 760px;
}

.mbs-banner-area .container,
.mbs-banner-area .row {
    position: relative;
    z-index: 2;
}

.mbs-banner-thumb {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mbs-banner-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13, 22, 36, 0.9) 0%, rgba(20, 31, 48, 0.76) 42%, rgba(20, 31, 48, 0.24) 100%),
        radial-gradient(circle at 82% 18%, rgba(204, 31, 31, 0.2), transparent 28%),
        linear-gradient(180deg, rgba(255, 245, 233, 0.08) 0%, rgba(255, 245, 233, 0) 42%);
}

.mbs-banner-area .content.mbs-banner-content {
    max-width: 680px;
    padding: 42px 44px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 60px rgba(7, 14, 25, 0.28);
    backdrop-filter: blur(10px);
}

.mbs-banner-area.has-featured-overlay .container {
    padding-top: 200px;
}

.mbs-banner-area .content.mbs-banner-content h4 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f7d8b0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mbs-banner-area .content.mbs-banner-content h4::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cc1f1f;
    box-shadow: 0 0 0 5px rgba(204, 31, 31, 0.18);
}

.mbs-banner-area .content.mbs-banner-content h2 {
    max-width: 11ch;
    margin-bottom: 22px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    font-weight: 800;
    color: #ffffff;
    text-transform: none;
}

.mbs-banner-area .content.mbs-banner-content p {
    max-width: 60ch;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.75;
}

.mbs-banner-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mbs-banner-points li {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.mbs-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.mbs-banner-area .mbs-banner-actions .btn {
    min-width: 186px;
    justify-content: center;
}

.mbs-banner-area .mbs-banner-actions .btn.btn-border-theme {
    border-color: rgba(255, 255, 255, 0.46);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.mbs-banner-area .mbs-banner-actions .btn.btn-border-theme:hover {
    border-color: transparent;
    background: #cc1f1f;
}

.mbs-banner-area .swiper-button-prev,
.mbs-banner-area .swiper-button-next {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    color: #ffffff;
}

.mbs-banner-area:hover .swiper-button-prev {
    left: 24px;
}

.mbs-banner-area:hover .swiper-button-next {
    right: 24px;
}

.mbs-banner-area .swiper-button-prev:hover,
.mbs-banner-area .swiper-button-next:hover {
    background: rgba(204, 31, 31, 0.86);
    border-color: rgba(204, 31, 31, 0.9);
}

@media (min-width: 1600px) and (min-height: 900px) {
    .mbs-banner-area {
        height: calc(100vh - var(--mbs-header-offset, 0px));
        min-height: calc(100vh - var(--mbs-header-offset, 0px));
    }

    .mbs-banner-area .banner-fade,
    .mbs-banner-area .swiper-wrapper,
    .mbs-banner-area .swiper-slide {
        height: calc(100vh - var(--mbs-header-offset, 0px));
        min-height: calc(100vh - var(--mbs-header-offset, 0px));
        display: flex;
        align-items: center;
    }

    .mbs-banner-area .container {
        display: flex;
        align-items: center;
        height: 100%;
        min-height: 100%;
        width: 100%;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .mbs-banner-area .row {
        display: flex;
        align-items: center;
        min-height: 100%;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .mbs-banner-area.has-featured-overlay .container {
        padding-top: 188px;
    }

    .mbs-home-featured-shell {
        width: min(100% - 20px, 100%);
        padding: 16px 112px 16px 16px;
    }

    .mbs-home-featured-slide {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .mbs-home-featured-media,
    .mbs-home-featured-media img,
    .mbs-home-featured-slides,
    .mbs-home-featured-slide {
        min-height: 140px;
        height: 140px;
    }

    .mbs-home-featured-content h2 {
        max-width: none;
    }

    .mbs-banner-area .swiper-slide {
        min-height: 680px;
    }

    .mbs-banner-area .content.mbs-banner-content {
        padding: 34px 28px;
        max-width: 100%;
    }

    .mbs-banner-area .content.mbs-banner-content h2 {
        max-width: 100%;
        font-size: clamp(34px, 7vw, 54px);
    }

    .mbs-banner-area .content.mbs-banner-content p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .mbs-banner-area .swiper-slide {
        display: flex;
        align-items: center;
    }

    .mbs-banner-area .container {
        display: flex;
        align-items: center;
        min-height: 100%;
        width: 100%;
        padding-top: 96px;
        padding-bottom: 88px;
    }

    .mbs-banner-area .row {
        align-items: center;
        width: 100%;
    }
}

@media (min-width: 390px) and (max-width: 767px) {
    .mbs-home-featured-area {
        top: calc(var(--mbs-header-offset, var(--mbs-topbar-h, 0px)) + 64px);
    }

    .mbs-home-featured-shell {
        width: calc(100% - 12px);
        padding: 12px 44px 12px 12px;
        border-radius: 16px;
        max-height: none;
    }

    .mbs-home-featured-slide {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 10px;
        min-height: 88px;
        align-items: start;
    }

    .mbs-home-featured-slides,
    .mbs-home-featured-media,
    .mbs-home-featured-media img {
        min-height: 88px;
        height: 88px;
    }

    .mbs-home-featured-media {
        border-radius: 10px;
    }

    .mbs-home-featured-content {
        gap: 6px;
        padding-top: 1px;
    }

    .mbs-home-featured-meta {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 6px;
    }

    .mbs-home-featured-label {
        min-height: 20px;
        padding: 0 8px;
        font-size: 7px;
        letter-spacing: 0.1em;
    }

    .mbs-home-featured-copy {
        max-height: 46px;
        overflow-y: auto;
        padding-right: 4px;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.34) transparent;
    }

    .mbs-home-featured-copy::-webkit-scrollbar {
        width: 3px;
    }

    .mbs-home-featured-copy::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.32);
        border-radius: 999px;
    }

    .mbs-home-featured-content h2 {
        font-size: 0.82rem;
        line-height: 1.18;
        max-width: none;
    }

    .mbs-home-featured-content p {
        display: block;
        margin-top: 0;
        line-clamp: unset;
        -webkit-line-clamp: unset;
        font-size: 9px;
        line-height: 1.3;
        overflow: visible;
        max-width: none;
    }

    .mbs-home-featured-link {
        min-height: 22px;
        padding: 0 7px;
        font-size: 6px;
        letter-spacing: 0.08em;
    }

    .mbs-home-featured-controls {
        position: static;
        justify-content: flex-end;
        margin-top: 8px;
        padding-right: 0;
        gap: 6px;
    }

    .mbs-home-featured-arrow,
    .mbs-home-featured-count,
    .mbs-home-featured-close {
        width: 26px;
        height: 26px;
        min-height: 26px;
        font-size: 9px;
    }

    .mbs-home-featured-count {
        width: auto;
        height: 18px;
        padding: 0;
        font-size: 6px;
    }

    .mbs-home-featured-close {
        top: 8px;
        right: 8px;
    }

    .mbs-home-featured-zoom {
        right: 6px;
        bottom: 6px;
        width: 18px;
        height: 18px;
        font-size: 7px;
        opacity: 1;
        transform: none;
    }

    .mbs-home-featured-lightbox {
        padding: 14px;
    }

    .mbs-home-featured-lightbox-dialog {
        padding: 12px 12px 14px;
        border-radius: 18px;
    }

    .mbs-home-featured-lightbox-dialog img {
        max-height: calc(100vh - 110px);
        border-radius: 14px;
    }

    .mbs-mobile-hide-panel {
        display: none !important;
    }

    .mbs-banner-area .swiper-slide {
        display: flex;
        align-items: center;
        min-height: 520px;
    }

    .mbs-banner-area .container {
        display: flex;
        align-items: center;
        min-height: 100%;
        width: 100%;
        padding-top: 172px;
        padding-bottom: 86px;
    }

    .mbs-banner-area .row {
        align-items: center;
        width: 100%;
    }

    .mbs-banner-area .content.mbs-banner-content {
        padding: 20px 18px;
        border-radius: 22px;
    }

    .mbs-banner-area .content.mbs-banner-content h2 {
        margin-bottom: 12px;
        font-size: 28px;
        max-width: 100%;
        line-height: 1.04;
    }
}

@media (max-width: 389px) {
    .mbs-home-featured-area {
        top: calc(var(--mbs-header-offset, var(--mbs-topbar-h, 0px)) + 64px);
    }

    .mbs-home-featured-shell {
        width: calc(100% - 8px);
        padding: 10px 40px 10px 10px;
        border-radius: 14px;
        max-height: none;
    }

    .mbs-home-featured-slide {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 8px;
        min-height: 72px;
        align-items: start;
    }

    .mbs-home-featured-slides,
    .mbs-home-featured-media,
    .mbs-home-featured-media img {
        min-height: 72px;
        height: 72px;
    }

    .mbs-home-featured-media {
        border-radius: 8px;
    }

    .mbs-home-featured-content {
        gap: 5px;
        padding-top: 1px;
    }

    .mbs-home-featured-meta {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 5px;
    }

    .mbs-home-featured-label {
        min-height: 18px;
        padding: 0 7px;
        font-size: 6px;
        letter-spacing: 0.08em;
    }

    .mbs-home-featured-copy {
        max-height: 36px;
        overflow-y: auto;
        padding-right: 3px;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
    }

    .mbs-home-featured-copy::-webkit-scrollbar {
        width: 2px;
    }

    .mbs-home-featured-copy::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.26);
        border-radius: 999px;
    }

    .mbs-home-featured-content h2 {
        font-size: 0.72rem;
        line-height: 1.14;
        max-width: none;
    }

    .mbs-home-featured-content p {
        display: block;
        margin-top: 1px;
        line-clamp: unset;
        -webkit-line-clamp: unset;
        font-size: 7.5px;
        line-height: 1.22;
        overflow: visible;
        max-width: none;
    }

    .mbs-home-featured-link {
        min-height: 19px;
        padding: 0 6px;
        font-size: 5.5px;
        letter-spacing: 0.06em;
    }

    .mbs-home-featured-controls {
        position: static;
        justify-content: flex-end;
        margin-top: 6px;
        padding-right: 0;
        gap: 5px;
    }

    .mbs-home-featured-arrow,
    .mbs-home-featured-count,
    .mbs-home-featured-close {
        width: 22px;
        height: 22px;
        min-height: 22px;
        font-size: 8px;
    }

    .mbs-home-featured-count {
        width: auto;
        height: 18px;
        font-size: 6px;
    }

    .mbs-home-featured-close {
        top: 7px;
        right: 7px;
    }

    .mbs-home-featured-zoom {
        right: 5px;
        bottom: 5px;
        width: 16px;
        height: 16px;
        font-size: 6px;
        opacity: 1;
        transform: none;
    }

    .mbs-banner-area .container {
        display: flex;
        align-items: center;
        min-height: 100%;
        width: 100%;
        padding-top: 156px;
        padding-bottom: 86px;
    }

    .mbs-banner-area .content.mbs-banner-content h4 {
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: 0.12em;
        padding: 7px 12px;
    }

    .mbs-banner-area .content.mbs-banner-content h2 {
        margin-bottom: 12px;
        font-size: 28px;
        max-width: 100%;
        line-height: 1.04;
    }

    .mbs-banner-area .content.mbs-banner-content p {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.55;
    }

    .mbs-banner-points {
        display: none;
    }

    .mbs-banner-points li {
        min-height: 34px;
        padding: 0 12px;
        font-size: 11px;
    }

    .mbs-banner-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .mbs-banner-area .mbs-banner-actions .btn {
        min-width: 100%;
    }

    .mbs-banner-area .swiper-button-prev,
    .mbs-banner-area .swiper-button-next {
        display: flex !important;
        visibility: visible !important;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        opacity: 1 !important;
        top: auto;
        bottom: 18px;
        margin-top: 0;
        background: rgba(15, 23, 36, 0.62);
        border-color: rgba(255, 255, 255, 0.22);
        z-index: 8;
        pointer-events: auto;
    }

    .mbs-banner-area .swiper-button-prev {
        left: 18px;
        right: auto;
    }

    .mbs-banner-area .swiper-button-next {
        right: 18px;
        left: auto;
    }

    .mbs-banner-area .swiper-button-prev i,
    .mbs-banner-area .swiper-button-next i {
        font-size: 18px;
    }

    .mbs-banner-area:hover .swiper-button-prev {
        left: 18px;
    }

    .mbs-banner-area:hover .swiper-button-next {
        right: 18px;
    }
}