:root {
    --ss-blue: #173E89;
    --ss-blue-dark: #143687;
    --ss-bg: #f5f7fa;
    --ss-border: #e0e6f0;
    --ss-text: #444;
    --ss-radius: 8px;
}

body,
html,
.site-main,
#page {
    overflow-x: clip !important;
}

.ss-page {
    background: #fff;
    padding-bottom: 100px;
    padding-top: 80px;
}

.ss-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ss-breadcrumb {
    font-size: 16px;
    color: #666;
    margin: 50px 0 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ss-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color .2s;
}

.ss-breadcrumb a:hover {
    color: var(--ss-blue);
}

.ss-breadcrumb .sep {
    color: #bbb;
}

.ss-breadcrumb .current {
    color: var(--ss-blue);
    font-weight: 600;
}

.ss-title {
    font-size: 60px;
    font-weight: 700;
    color: var(--ss-blue);
    line-height: 1.2;
    margin: 0;
    font-family: var(--font-philosopher);
}

.ss-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-top: 50px;
}

.ss-main {
    flex: 1;
    min-width: 0;
}

.ss-sidebar {
    width: 380px;
    flex-shrink: 0;
    position: sticky;
    top: 90px;
}

/* === BANNER + GALLERY === */
.ss-banner-main {
    width: 100%;
    border-radius: var(--ss-radius);
    overflow: hidden;
    margin-bottom: 14px;
    aspect-ratio: 16/10;
}

.ss-banner-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ss-gallery-strip {
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
}

.ss-gallery-strip::-webkit-scrollbar {
    height: 4px;
}

.ss-gallery-strip::-webkit-scrollbar-track {
    background: #e0e6f0;
    border-radius: 4px;
}

.ss-gallery-strip::-webkit-scrollbar-thumb {
    background: #b0c0d8;
    border-radius: 4px;
}

.ss-gallery-thumb {
    flex: 0 0 calc(25% - 8px);
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    scroll-snap-align: start;
    transition: border-color .2s;
}

.ss-gallery-thumb:hover,
.ss-gallery-thumb.active {
    border-color: var(--ss-blue);
}

.ss-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}

.ss-gallery-thumb:hover img {
    transform: scale(1.05);
}

.ss-article-rail {
    /* margin: 0 0 24px;
        padding: 8px 0 4px; */
}

.ss-main>.ss-article-rail {
    display: none;
}

.ss-article-rail__title {
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    position: relative;
    padding-bottom: 10px;
}

.ss-article-rail__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #143687;
}

.ss-article-rail__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ss-article-rail__item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
    text-decoration: none;
}

.ss-article-rail__thumb {
    display: block;
    width: 100%;
    aspect-ratio: 132 / 88;
    overflow: hidden;
    border-radius: 8px;
    background: #eef2f8;
}

.ss-article-rail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.ss-article-rail__item:hover .ss-article-rail__thumb img {
    transform: scale(1.05);
}

.ss-article-rail__content {
    min-width: 0;
}

.ss-article-rail__post-title {
    display: block;
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 500;
    color: #16233f;
    transition: color .2s ease;
}

.ss-article-rail__item:hover .ss-article-rail__post-title {
    color: #143687
}

.ss-article-rail__meta {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #7b869d;
}

/* === SEO CONTENT === */
.ss-seo-content {
    margin-bottom: 48px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--ss-text);
}

.ss-seo-content h1,
.ss-seo-content h2,
.ss-seo-content h3,
.ss-seo-content h4,
.ss-seo-content h5,
.ss-seo-content h6 {
    color: var(--ss-blue);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.ss-seo-content h2 {
    font-size: 30px;
    font-family: var(--font-philosopher);
}

.ss-seo-content h3 {
    font-size: 16px;
}

.ss-seo-content h2[id],
.ss-seo-content h3[id] {
    scroll-margin-top: 120px;
}

.ss-seo-content p {
    margin-bottom: 16px;
}

.ss-seo-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.ss-seo-content li {
    margin-bottom: 10px;
}

.ss-seo-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--ss-radius);
    /* margin-bottom: 16px; */
    width: 100%;
}

.ss-toc {
    border: 1px solid #aab4c7;
    border-radius: var(--ss-radius);
    background: #f8fafc;
    margin: 0 0 28px;
    overflow: hidden;
}

.ss-toc-head {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    padding: 16px 18px;
}

.ss-toc-head-main {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.ss-toc-head-icon {
    width: 26px;
    height: 26px;
    color: #4b5563;
    flex-shrink: 0;
}

.ss-toc-title {
    margin: 0;
    color: #1b2c50;
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-philosopher);
    line-height: 1.2;
    text-align: left;
}

.ss-toc-chevron {
    width: 20px;
    height: 20px;
    color: #6b7280;
    transition: transform .25s ease;
    flex-shrink: 0;
}

.ss-toc-body {
    max-height: 1400px;
    opacity: 1;
    overflow: hidden;
    transition: max-height .3s ease, opacity .25s ease;
    padding: 0 18px 18px;
}

.ss-toc.is-collapsed .ss-toc-body {
    max-height: 0;
    opacity: 0;
    padding-bottom: 0;
}

.ss-toc.is-collapsed .ss-toc-chevron {
    transform: rotate(-90deg);
}

.ss-toc-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ss-toc-item {
    margin: 0;
}

.ss-toc-item+.ss-toc-item {
    margin-top: 3px;
}

.ss-toc-item a {
    position: relative;
    display: block;
    color: #1f2937;
    text-decoration: none;
    line-height: 1.55;
    font-weight: 600;
    border-radius: 6px;
    padding: 5px 9px;
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.ss-toc-item a:hover {
    color: #0f2f76;
    background: #e8efff;
    transform: translateX(2px);
}

.ss-toc-item a.is-active {
    color: #fff !important;
    background: var(--ss-blue);
}

.ss-toc-item.is-sub {
    padding-left: 18px;
}

.ss-toc-item.is-sub a {
    font-weight: 500;
    color: #374151;
}

.ss-toc-float {
    position: fixed;
    right: 16px;
    bottom: 22px;
    z-index: 9997;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.ss-toc-float.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ss-toc-float-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 2px solid #4b5563;
    background: #fff;
    color: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.2);
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.ss-toc-float-btn:hover {
    transform: translateY(-2px);
    background: var(--ss-blue);
    color: #fff;
}

.ss-toc-float-panel {
    position: absolute;
    right: 0;
    bottom: 56px;
    width: min(360px, calc(100vw - 24px));
    max-height: 65vh;
    overflow: auto;
    border: 1px solid #ccd6e8;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
    padding: 14px;
    display: none;
}

.ss-toc-float.is-open .ss-toc-float-panel {
    display: block;
}

.ss-toc-float-title {
    margin: 0 0 10px;
    color: #1b2c50;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-philosopher);
}

/* === SIDEBAR === */
.ss-widget {
    margin-bottom: 24px;
}

.ss-company-box {
    margin-bottom: 10px;
}

.ss-company-title,
.ss-company-follow-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f2937;
    margin: 0 0 30px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
}

.ss-company-title::after,
.ss-company-follow-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #143687;
}

.ss-company-img {
    display: block;
    margin-bottom: 14px;
}

.ss-company-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.ss-company-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #1f2937;
    margin-bottom: 14px;
}

.ss-company-follow {
    margin: 40px 0;
}

.ss-company-socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ss-company-socials li {
    margin: 0;
}

.ss-company-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
    overflow: hidden;
}

.ss-company-socials a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.ss-company-socials img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ss-form-box {
    background: #fff;
    border: 1px solid var(--ss-border);
    border-radius: var(--ss-radius);
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.ss-form-box br {
    display: none;
}

.ss-form-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--ss-blue);
    margin: 0 0 24px;
    font-family: var(--font-philosopher);
}

.ss-form-group {
    margin-bottom: 35px;
}

.ss-form-group p {
    white-space: unset;
}

.ss-form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ss-blue);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 6px;
}

.ss-form-input,
.ss-form-select {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-bottom: 1.5px solid #d0d8e8;
    background: #f5f7fa;
    font-size: 15px;
    color: #333;
    outline: none;
    font-family: inherit;
    border-radius: 20px !important;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    transition: border-color .2s;
}

.ss-form-input:focus,
.ss-form-select:focus {
    border-bottom-color: var(--ss-blue);
    background: #eef1f8;
}

.ss-form-input::placeholder {
    color: #aaa;
}

.ss-select-wrap {
    position: relative;
}

.ss-select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-top-color: var(--ss-blue);
    margin-top: 3px;
    pointer-events: none;
}

/* Style cho nút submit của CF7 */
.beemotion-cf7-wrapper .wpcf7-submit {
    width: 100%;
    background: var(--ss-blue);
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
    margin-top: 8px;
    display: block;
    border-radius: 25px;
    position: relative;
}

.beemotion-cf7-wrapper .wpcf7-submit:hover {
    background: var(--ss-blue-dark);
    box-shadow: 0 4px 12px rgba(23, 62, 137, 0.3);
}

.beemotion-cf7-wrapper .wpcf7-spinner {
    display: none !important;
}

.beemotion-cf7-wrapper .wpcf7-form.submitting .wpcf7-submit {
    pointer-events: none;
    opacity: 0.7;
}

.ss-hotline-box {
    /* border-top: 1px solid var(--ss-border);
    margin-top: 40px;
    padding-top: 32px; */
    text-align: center;
        background: #fff;
    border: 1px solid var(--ss-border);
    border-radius: var(--ss-radius);
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    margin-bottom: 40px;
}
.ss-article-rail{
    margin-top: 40px;
}
.ss-hotline-label {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.ss-hotline-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--ss-blue);
    display: block;
    text-decoration: none;
}

.ss-promo-box {
    margin: 40px 0;
}

.ss-promo-title {
    margin: 0 0 30px;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
}

.ss-promo-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #143687;
}

.ss-promo-desc {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

.ss-promo-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ss-promo-item {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.ss-promo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.ss-promo-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Dịch vụ khác - sidebar link list */
.ss-other-box {
    background: var(--ss-bg);
    border-radius: var(--ss-radius);
    padding: 24px 28px;
    margin-top: 20px;
}

.ss-other-title {
    font-size: 16px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px;
}

.ss-other-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ss-other-list li {
    border-bottom: 1px solid var(--ss-border);
}

.ss-other-list li:last-child {
    border-bottom: none;
}

.ss-other-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
    color: var(--ss-text);
    text-decoration: none;
    transition: color .2s;
    gap: 8px;
}

.ss-other-list a:hover {
    color: var(--ss-blue);
}

.ss-other-list a svg {
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity .2s;
}

.ss-other-list a:hover svg {
    opacity: 1;
}

/* === RELATED === */
.ss-related {
    margin-top: 100px;
}

.ss-related-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.ss-related-eyebrow {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ss-blue);
    display: block;
    margin-bottom: 8px;
}

.ss-related-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--ss-blue);
    margin: 0;
    font-family: var(--font-philosopher);
}

.ss-related-all {
    display: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--ss-blue);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1px solid var(--ss-blue);
    padding-bottom: 2px;
    transition: opacity .2s;
}

.ss-related-all:hover {
    opacity: .7;
}

.ss-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ss-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    background: #fff;
    height: 100%;
    transition: box-shadow .3s;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.ss-card-img-wrap {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.ss-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.ss-card:hover .ss-card-img {
    transform: scale(1.03);
}

.ss-card-content {
    padding: 24px 28px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ss-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ss-blue);
    margin: 0 0 12px;
}

.ss-card-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #666;
    flex: 1;
    margin: 0 0 20px;
}

.ss-card-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--ss-blue);
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap .2s;
}

.ss-card:hover .ss-card-link {
    gap: 10px;
}

@media (max-width:1599.98px) {
    .ss-container {
        max-width: 1200px !important;
    }
}

@media (max-width:991px) {
    .ss-layout {
        flex-direction: column;
    }

    .ss-sidebar {
        width: 100%;
        position: static;
    }

    .ss-title {
        font-size: 42px;
    }

    .ss-article-rail__item {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 12px;
    }

    .ss-article-rail__post-title {
        font-size: 16px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .ss-promo-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width:767px) {
    .ss-related-grid {
        grid-template-columns: 1fr;
    }

    .ss-related-title {
        font-size: 32px;
    }

    .ss-related-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .ss-gallery-thumb {
        flex: 0 0 calc(33.333% - 8px);
    }

    .ss-article-rail__item {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
    }

    .ss-article-rail__title {
        font-size: 16px;
    }

    .ss-article-rail__post-title {
        font-size: 15px;
    }

    .ss-toc-title {
        font-size: 28px;
    }

    .ss-toc-float {
        right: 10px;
        bottom: 14px;
    }

    .ss-toc-float-panel {
        width: min(320px, calc(100vw - 20px));
    }
}

/* Premium Custom Lightbox */
.beemotion-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 40px 20px 20px 20px;
    box-sizing: border-box;
}

.beemotion-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

/* Container cho ảnh chính - Chiếm toàn bộ khoảng trống còn lại ở giữa */
.beemotion-lightbox__content {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
    /* Cho phép flex item co lại nhỏ hơn content */
    position: relative;
}

.beemotion-lightbox__img {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    user-select: none;
    -webkit-user-drag: none;
}

.beemotion-lightbox__img.loaded {
    opacity: 1;
    transform: scale(1);
}

/* Khu vực thông tin ảnh - Tĩnh, không bị đè và không bị thò thụt */
.beemotion-lightbox__meta {
    width: 100%;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
    flex-shrink: 0;
}

.beemotion-lightbox__caption {
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    display: none;
}

.beemotion-lightbox__counter {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

/* Danh sách ảnh thu nhỏ - Cố định ở dưới cùng */
.beemotion-lightbox__thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    max-width: 90%;
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    z-index: 10;
    flex-shrink: 0;
    height: 60px;
    align-items: center;
}

.beemotion-lightbox__thumbs::-webkit-scrollbar {
    display: none;
}

.beemotion-lightbox__thumb-item {
    width: 60px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.beemotion-lightbox__thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.beemotion-lightbox__thumb-item:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.beemotion-lightbox__thumb-item.active {
    opacity: 1;
    border-color: #fff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    transform: scale(1.08);
}

/* Nút Close và Nav */
.beemotion-lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
}

.beemotion-lightbox__close:hover {
    background: #fff;
    color: #111;
    transform: rotate(90deg);
}

.beemotion-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 20;
}

.beemotion-lightbox__nav:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.beemotion-lightbox__nav--prev {
    left: 24px;
}

.beemotion-lightbox__nav--next {
    right: 24px;
}

.beemotion-lightbox__nav--prev:hover {
    transform: translateY(-50%) translateX(-4px);
}

.beemotion-lightbox__nav--next:hover {
    transform: translateY(-50%) translateX(4px);
}

@media (max-width: 768px) {
    .beemotion-lightbox {
        padding: 60px 10px 10px 10px;
    }

    .beemotion-lightbox__nav {
        width: 44px;
        height: 44px;
    }

    .beemotion-lightbox__nav--prev {
        left: 8px;
    }

    .beemotion-lightbox__nav--next {
        right: 8px;
    }

    .beemotion-lightbox__close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .beemotion-lightbox__thumbs {
        max-width: 95%;
        gap: 8px;
        height: 50px;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .beemotion-lightbox__thumb-item {
        width: 50px;
        height: 38px;
    }
}
