/*
 * MyVyBZ Frontend Assets — Home 1.0.8
 * Migrated from reconciled current Homepage 3G + Sidebar Ads/Posts 2V1.
 * Presentation only. No PHP/business logic.
 *
 * Specificity note: :is(#never-present-id, .real-root) intentionally retains the
 * prior per-instance #uid specificity while matching the stable component class.
 */
/* ===== MIGRATED HOME: view-all ===== */
.myvybz-view-all-wrap {
        text-align: center;
        margin: 12px 0 12px;
    }

    .myvybz-view-all-btn,
    .myvybz-view-all-btn:link,
    .myvybz-view-all-btn:visited,
    .myvybz-view-all-btn:hover,
    .myvybz-view-all-btn:focus,
    .myvybz-view-all-btn:active {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;

        min-height: 36px;
        padding: 9px 16px;

        background: var(--mec-color-skin) !important;
        color: #ffffff !important;

        border: none !important;
        outline: none !important;
        border-radius: 999px;

        font-size: 13px;
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: .1px;

        text-decoration: none !important;
        box-shadow: 0 6px 16px rgba(0,0,0,.14);

        transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
    }

    .myvybz-view-all-btn:hover,
    .myvybz-view-all-btn:focus,
    .myvybz-view-all-btn:active {
        filter: brightness(.92);
        transform: translateY(-1px);
        color: #ffffff !important;
        box-shadow: 0 8px 20px rgba(0,0,0,.18);
    }

    .myvybz-view-all-btn *,
    .myvybz-view-all-btn:hover *,
    .myvybz-view-all-btn:focus *,
    .myvybz-view-all-btn:active * {
        color: #ffffff !important;
        fill: #ffffff !important;
    }

    .myvybz-view-all-arrow {
        font-size: 14px;
        line-height: 1;
        transform: translateY(-1px);
    }

    @media (max-width: 575px) {
        .myvybz-view-all-wrap {
            margin: 10px 0 10px;
        }

        .myvybz-view-all-btn {
            min-height: 34px;
            padding: 8px 14px;
            font-size: 12px;
        }

        .myvybz-view-all-arrow {
            font-size: 13px;
        }
    }

/* ===== MIGRATED HOME: ticker ===== */
.myvybz-ticker-wrap {
    position: relative;
    z-index: 5;
    isolation: isolate;
    contain: layout paint;

    width: 100%;
    max-width: 100%;
    height: 96px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 0 !important;
    margin-bottom: 0 !important;

    padding: 12px 0 8px;

    text-align: center;
    color: #ffffff;
    font-size: 13px;
    opacity: 0.95;
}

.myvybz-ticker-item {
    position: absolute;
    inset: 12px 0 8px 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    max-width: 100%;
    min-width: 0;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(8px);
    transition: all 0.6s ease;

    text-decoration: none;
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.65);
    overflow: hidden;
}

.myvybz-ticker-item.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 2;
}

.myvybz-ticker-item:hover {
    color: #ffffff !important;
    opacity: 0.85;
}

.myvybz-ticker-image-wrap {
    position: relative;
    flex: 0 0 auto;
    display: inline-block;
    height: 80px;
    max-width: 120px;
}

.myvybz-ticker-image-wrap img {
    height: 80px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: 6px;
    vertical-align: middle;
    display: block;
}

.myvybz-ticker-rating {
    position: absolute;
    right: 4px;
    bottom: 4px;

    min-width: 14px;
    min-height: 14px;
    padding: 2px 4px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-size: 8px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;

    color: #ffffff;
    text-shadow: none;
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.myvybz-ticker-rating.rating-pg {
    background: rgba(4,120,87,0.9);
}

.myvybz-ticker-rating.rating-moderate {
    background: rgba(29,78,216,0.9);
}

.myvybz-ticker-rating.rating-adult {
    background: rgba(190,18,60,0.9);
}

.myvybz-ticker-text {
    display: inline-block;
    min-width: 0;
    max-width: 240px;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;

    white-space: normal;
    text-align: left;
    overflow: hidden;
}

.myvybz-ticker-wrap.is-paused .myvybz-ticker-item {
    transition: none !important;
}

@media (max-width: 767px) {
    .myvybz-ticker-wrap {
        height: 72px;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 8px 10px 6px;
    }

    .myvybz-ticker-item {
        inset: 8px 10px 6px 10px;
        gap: 7px;
        max-width: 100%;
    }

    .myvybz-ticker-image-wrap {
        height: 56px;
        max-width: 84px;
    }

    .myvybz-ticker-image-wrap img {
        height: 56px;
        max-width: 84px;
        border-radius: 5px;
    }

    .myvybz-ticker-rating {
        right: 3px;
        bottom: 3px;
        min-width: 12px;
        min-height: 12px;
        padding: 1px 3px;
        font-size: 7px;
    }

    .myvybz-ticker-text {
        max-width: 140px;
        font-size: 11px;
        line-height: 1.2;
    }
}

/* ===== MIGRATED HOME: featured-events ===== */
:is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel),
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) *,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) *::before,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) *::after {
            box-sizing: border-box;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .mec-carousel-item {
            height: 100%;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            overflow: hidden;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .owl-stage {
            display: flex;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .owl-item {
            display: flex;
            height: auto;
            min-width: 0;
            overflow: hidden;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-card {
            position: relative;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,.10);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-head,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-content,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-meta-block,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-buttons {
            width: 100%;
            max-width: 100%;
            min-width: 0;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-head {
            position: relative;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-image-wrap {
            aspect-ratio: 2 / 1;
            overflow: hidden;
            background: #111;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-image-wrap a {
            display: block;
            width: 100%;
            height: 100%;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-image-wrap img,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-image-placeholder {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
            object-position: center center;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-image-placeholder {
            background: linear-gradient(135deg, #1f2937, #111827);
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-status-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 30px;
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: .3px;
            color: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,.18);
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-status-badge.status-live {
            background: #dc2626;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-status-badge.status-upcoming {
            background: var(--mec-color-skin);
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-status-badge.status-ended {
            background: #64748b;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-meta-block {
            padding: 12px 14px 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-height: 64px;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-meta-row {
            min-height: 18px;
            display: flex;
            align-items: flex-start;
            min-width: 0;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-meta-row-top {
            justify-content: space-between;
            gap: 8px;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-meta-row-mid,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-meta-row-bottom {
            display: block;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-category {
            min-width: 0;
            flex: 1 1 auto;
            font-size: 11px;
            font-weight: 700;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: .5px;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-rating {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 20px;
            padding: 3px 8px;
            border-radius: 999px;
            font-size: 10px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: .3px;
            text-transform: uppercase;
            white-space: nowrap;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-rating.rating-pg {
            background: #ecfdf5;
            color: #047857;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-rating.rating-moderate {
            background: #eff6ff;
            color: #1d4ed8;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-rating.rating-adult {
            background: #fff1f2;
            color: #be123c;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-summary-top,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-summary-bottom {
            display: block;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.35;
            color: #64748b;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-summary-top.is-empty,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-summary-bottom.is-empty {
            visibility: hidden;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-content {
            padding: 12px 14px 14px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex: 1 1 auto;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-title {
            margin: 0;
            font-size: clamp(18px, 1.35vw, 22px);
            line-height: 1.15;
            min-height: 3.45em;
            max-width: 100%;
            min-width: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-title a,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-title a:visited {
            color: #111827;
            text-decoration: none;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-title a:hover,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-title a:focus {
            color: #111827;
            text-decoration: none;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-excerpt {
            font-size: 14px;
            line-height: 1.5;
            color: #475569;
            min-height: 7.5em;
            max-width: 100%;
            min-width: 0;
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-buttons {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: stretch;
            min-height: 78px;
            overflow: hidden;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-btn,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-btn:visited,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-btn:hover,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-btn:focus,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-btn:active {
            background: var(--mec-color-skin);
            color: #fff !important;
            padding: 10px 14px;
            font-size: 13px;
            line-height: 1.2;
            font-weight: 600;
            border: none;
            outline: none;
            border-radius: 7px;
            text-decoration: none !important;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            box-sizing: border-box;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-btn:hover,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-btn:focus {
            filter: brightness(.92);
            color: #fff !important;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-btn.is-secondary,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-btn.is-secondary:visited,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-btn.is-secondary:hover,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-btn.is-secondary:focus,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-btn.is-secondary:active {
            background: var(--mec-color-skin);
            color: #fff !important;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .owl-nav {
            margin-top: 14px;
            text-align: center;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .owl-prev,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .owl-next {
            width: 40px;
            height: 40px;
            border-radius: 999px !important;
            border: none !important;
            background: #fff !important;
            color: #111827 !important;
            box-shadow: 0 4px 12px rgba(0,0,0,.10);
            font-size: 20px !important;
            line-height: 1 !important;
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            margin: 0 5px !important;
            transition: all .25s ease;
        }

        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .owl-prev:hover,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .owl-next:hover,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .owl-prev:focus,
        :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .owl-next:focus {
            background: #f8fafc !important;
            color: #111827 !important;
        }

        @media (max-width: 991px) {
            :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-title {
                font-size: 18px;
            }
        }

        @media (max-width: 575px) {
            :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-meta-block,
            :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-content {
                padding-left: 12px;
                padding-right: 12px;
            }

            :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-category,
            :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-summary-top,
            :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-summary-bottom {
                font-size: 11px;
            }

            :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-btn,
            :is(#myvybz-home-event-specificity, .myvybz-featured-events-carousel) .myvybz-featured-event-btn:visited {
                font-size: 12px;
                padding: 9px 12px;
            }
        }

/* ===== MIGRATED HOME: featured-destinations ===== */
:is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .mec-carousel-item {
            height: 100%;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .owl-stage {
            display: flex;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .owl-item {
            display: flex;
            height: auto;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-card {
            position: relative;
            width: 100%;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,.10);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-head {
            position: relative;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-image-wrap {
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: #111;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-image-wrap a {
            display: block;
            width: 100%;
            height: 100%;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-image-wrap img,
        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-image-placeholder {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-image-placeholder {
            background: linear-gradient(135deg, #1f2937, #111827);
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-meta-block {
            padding: 10px 14px 0;
            min-height: 24px;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-meta-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            min-height: 20px;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-type {
            min-width: 0;
            flex: 1 1 auto;
            font-size: 11px;
            font-weight: 700;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: .5px;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-rating {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 20px;
            padding: 3px 8px;
            border-radius: 999px;
            font-size: 10px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: .3px;
            text-transform: uppercase;
            white-space: nowrap;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-rating.rating-pg {
            background: #ecfdf5;
            color: #047857;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-rating.rating-moderate {
            background: #eff6ff;
            color: #1d4ed8;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-rating.rating-adult {
            background: #fff1f2;
            color: #be123c;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-content {
            padding: 10px 14px 14px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1 1 auto;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-title {
            margin: 0 0 2px;
            font-size: clamp(18px, 1.35vw, 22px);
            line-height: 1.15;
            min-height: 3.45em;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-title a,
        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-title a:visited {
            color: #111827;
            text-decoration: none;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-title a:hover,
        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-title a:focus {
            color: #111827;
            text-decoration: none;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-excerpt {
            font-size: 14px;
            line-height: 1.45;
            color: #475569;
            min-height: 7.25em;
            max-height: 7.25em;
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-buttons {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: stretch;
            min-height: 40px;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-btn,
        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-btn:visited,
        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-btn:hover,
        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-btn:focus,
        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-btn:active {
            background: var(--mec-color-skin);
            color: #fff !important;
            padding: 10px 14px;
            font-size: 13px;
            line-height: 1.2;
            font-weight: 600;
            border: none;
            outline: none;
            border-radius: 7px;
            text-decoration: none !important;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            box-sizing: border-box;
            white-space: nowrap;
        }

        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-btn:hover,
        :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-btn:focus {
            filter: brightness(.92);
            color: #fff !important;
        }

        @media (max-width: 991px) {
            :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-title {
                font-size: 18px;
            }
        }

        @media (max-width: 575px) {
            :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-meta-block,
            :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-content {
                padding-left: 12px;
                padding-right: 12px;
            }

            :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-btn,
            :is(#myvybz-home-destination-specificity, .myvybz-featured-destinations-carousel) .myvybz-featured-destination-btn:visited {
                font-size: 12px;
                padding: 9px 12px;
            }
        }

/* ===== MIGRATED HOME: featured-individuals ===== */
:is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .mec-carousel-item {
            height: 100%;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .owl-stage {
            display: flex;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .owl-item {
            display: flex;
            height: auto;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-card {
            position: relative;
            width: 100%;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,.10);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-head {
            position: relative;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-image-wrap {
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: #111;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-image-wrap a {
            display: block;
            width: 100%;
            height: 100%;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-image-wrap img,
        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-image-placeholder {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-image-placeholder {
            background: linear-gradient(135deg, #1f2937, #111827);
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-meta-block {
            padding: 10px 14px 0;
            min-height: 24px;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-meta-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            min-height: 20px;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-role {
            min-width: 0;
            flex: 1 1 auto;
            font-size: 11px;
            font-weight: 700;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: .5px;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-rating {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 20px;
            padding: 3px 8px;
            border-radius: 999px;
            font-size: 10px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: .3px;
            text-transform: uppercase;
            white-space: nowrap;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-rating.rating-pg {
            background: #ecfdf5;
            color: #047857;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-rating.rating-moderate {
            background: #eff6ff;
            color: #1d4ed8;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-rating.rating-adult {
            background: #fff1f2;
            color: #be123c;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-content {
            padding: 10px 14px 14px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1 1 auto;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-title {
            margin: 0 0 2px;
            font-size: clamp(18px, 1.35vw, 22px);
            line-height: 1.15;
            min-height: 3.45em;

            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-title a,
        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-title a:visited {
            color: #111827;
            text-decoration: none;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-title a:hover,
        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-title a:focus {
            color: #111827;
            text-decoration: none;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-excerpt {
            font-size: 14px;
            line-height: 1.45;
            color: #475569;
            min-height: 7.25em;
            max-height: 7.25em;

            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-buttons {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: stretch;
            min-height: 40px;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-btn,
        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-btn:visited,
        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-btn:hover,
        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-btn:focus,
        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-btn:active {
            background: var(--mec-color-skin);
            color: #fff !important;
            padding: 10px 14px;
            font-size: 13px;
            line-height: 1.2;
            font-weight: 600;
            border: none;
            outline: none;
            border-radius: 7px;
            text-decoration: none !important;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            box-sizing: border-box;
            white-space: nowrap;
        }

        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-btn:hover,
        :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-btn:focus {
            filter: brightness(.92);
            color: #fff !important;
        }

        @media (max-width: 991px) {
            :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-title {
                font-size: 18px;
            }
        }

        @media (max-width: 575px) {
            :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-meta-block,
            :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-content {
                padding-left: 12px;
                padding-right: 12px;
            }

            :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-btn,
            :is(#myvybz-home-individual-specificity, .myvybz-featured-individuals-carousel) .myvybz-featured-individual-btn:visited {
                font-size: 12px;
                padding: 9px 12px;
            }
        }

/* ===== MIGRATED HOME: home-posts ===== */
:is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-posts-grid {
        column-count: 2;
        column-gap: 18px;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-card {
        break-inside: avoid;
        margin-bottom: 18px;
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0,0,0,.10);
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-image {
        position: relative;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        background: #111;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-rating {
        position: absolute;
        right: 10px;
        top: 10px;
        z-index: 2;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        min-height: 22px;
        padding: 4px 9px;
        border-radius: 999px;

        font-size: 10px;
        font-weight: 800;
        line-height: 1;
        letter-spacing: .3px;
        text-transform: uppercase;

        box-shadow: 0 3px 10px rgba(0,0,0,.25);
        text-shadow: none;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-rating.rating-pg {
        background: #ecfdf5;
        color: #047857;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-rating.rating-moderate {
        background: #eff6ff;
        color: #1d4ed8;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-rating.rating-adult {
        background: #fff1f2;
        color: #be123c;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-body {
        padding: 14px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-meta {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        font-size: 12px;
        font-weight: 600;
        color: #64748b;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-meta span {
        min-width: 0;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-title {
        margin: 0;
        font-size: 18px;
        line-height: 1.2;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-title a,
    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-title a:visited {
        color: #111827;
        text-decoration: none;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-title a:hover,
    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-title a:focus {
        color: #111827;
        text-decoration: none;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-post-excerpt {
        font-size: 14px;
        color: #475569;
        line-height: 1.45;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-load-more-wrap {
        text-align: center;
        margin-top: 20px;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-posts-view-all {
        margin-top: 10px;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-load-more-btn,
    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-load-more-btn:visited,
    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-load-more-btn:hover,
    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-load-more-btn:focus,
    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-load-more-btn:active {
        background: var(--mec-color-skin) !important;
        color: #fff !important;
        padding: 10px 18px;
        border-radius: 7px;
        border: none !important;
        outline: none !important;
        cursor: pointer;
        font-weight: 600;
        text-decoration: none !important;
    }

    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-load-more-btn:hover,
    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-load-more-btn:focus,
    :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-load-more-btn:active {
        filter: brightness(.92);
        color: #fff !important;
    }

    @media (max-width: 767px) {
        :is(#myvybz-home-posts-specificity, .myvybz-home-posts-wrap) .myvybz-home-posts-grid {
            column-count: 1;
        }
    }

/* ===== MIGRATED HOME: sponsor-founder ===== */
/* ===== SPONSOR / FOUNDER SPOTLIGHT — LARGE BANNER CARD ===== */
.myvybz-banner-spotlight,
.myvybz-banner-spotlight * {
    box-sizing: border-box;
}

.myvybz-banner-spotlight {
    position: relative;
    width: min(100%, 1480px);
    max-width: calc(100vw - 32px);
    margin: 0 auto 24px !important;
    overflow: hidden;
    background: #f5f8fb;
    color: #142033;
    border-radius: 0;
    isolation: isolate;
}

/* 1080p-class desktops: keep Sponsor section clearly larger than lower feature
   cards, but fit banner + info + thumbs as one coherent first-screen experience. */
@media (min-width: 901px) and (max-height: 1120px) {
    .myvybz-banner-spotlight {
        width: min(100%, 1260px);
    }
}

/* PASS 3F: root hero must be content-height. The legacy base engine still declares
   .myvybz-hero-slider { min-height:100vh; }. Neutralize only that remaining root
   viewport reservation here; inner image/band/rail/Owl geometry stays unchanged. */
.myvybz-banner-spotlight.myvybz-hero-slider {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
}

/* Taller 1440p / 2K-class desktops can enjoy more banner presence. */
@media (min-width: 1900px) and (min-height: 1200px) {
    .myvybz-banner-spotlight {
        width: min(100%, 1580px);
    }
}

.myvybz-banner-spotlight .myvybz-hero-main,
.myvybz-banner-spotlight .owl-stage-outer,
.myvybz-banner-spotlight .owl-stage,
.myvybz-banner-spotlight .owl-item,
.myvybz-banner-spotlight .myvybz-hero-slide,
.myvybz-banner-spotlight .myvybz-founder-pane {
    width: 100%;
    min-width: 0;
    min-height: 0 !important;
    height: auto !important;
}

.myvybz-banner-spotlight .myvybz-hero-slide,
.myvybz-banner-spotlight .myvybz-founder-pane {
    position: relative;
    background: #f5f8fb;
}

.myvybz-banner-spotlight .myvybz-hero-image-link {
    position: relative;
    inset: auto;
    z-index: 1;
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    background: #05080c;
}

.myvybz-banner-spotlight .myvybz-hero-img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
    margin: 0 !important;
    opacity: 1 !important;
    filter: none !important;
    -webkit-filter: none !important;
    mix-blend-mode: normal !important;
}

.myvybz-banner-spotlight .myvybz-hero-band {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 15px 24px 16px;
    background: linear-gradient(135deg,#edf3f8 0%,#ffffff 60%,#e9f0f6 100%);
    border-top: 1px solid #d7e1ea;
}

.myvybz-banner-spotlight .myvybz-hero-copy {
    min-width: 0;
}

.myvybz-banner-spotlight .myvybz-hero-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    margin: 0 0 6px;
    padding: 4px 9px;
    border: 1px solid rgba(21,155,229,.28);
    border-radius: 999px;
    background: rgba(21,155,229,.09);
    color: #0879bd;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.myvybz-banner-spotlight .myvybz-hero-kicker.is-founder {
    border-color: rgba(184,138,35,.34);
    background: rgba(184,138,35,.11);
    color: #8a6417;
}

.myvybz-banner-spotlight .myvybz-hero-title {
    margin: 0 0 5px !important;
    color: #172437 !important;
    font-size: clamp(26px,2.45vw,42px);
    line-height: 1.06;
    font-weight: 800;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.myvybz-banner-spotlight .myvybz-hero-title a,
.myvybz-banner-spotlight .myvybz-hero-title a:visited,
.myvybz-banner-spotlight .myvybz-hero-title a:hover,
.myvybz-banner-spotlight .myvybz-hero-title a:focus {
    color: inherit !important;
    text-decoration: none !important;
}

.myvybz-banner-spotlight .myvybz-hero-role {
    margin: 0 0 5px;
    color: #526174;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.myvybz-banner-spotlight .myvybz-hero-desc {
    margin: 0 0 10px;
    max-width: 85ch;
    color: #526174;
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.myvybz-banner-spotlight .myvybz-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
}

.myvybz-banner-spotlight .myvybz-btn,
.myvybz-banner-spotlight .myvybz-btn:visited,
.myvybz-banner-spotlight .myvybz-btn:hover,
.myvybz-banner-spotlight .myvybz-btn:focus,
.myvybz-banner-spotlight .myvybz-btn:active {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 11px;
    border-radius: 7px;
    background: var(--mec-color-skin,#159be5) !important;
    border: 1px solid transparent !important;
    color: #fff !important;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
}

.myvybz-banner-spotlight .myvybz-btn.secondary,
.myvybz-banner-spotlight .myvybz-btn.secondary:visited {
    background: #e8eef4 !important;
    border-color: #c8d4df !important;
    color: #1f3448 !important;
}

/* EXTERNAL THUMB RAIL — deliberately outside Owl clones. */
.myvybz-banner-spotlight .myvybz-hero-thumbs-wrap {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 8px 14px 11px;
    background: #edf3f8;
    border-top: 1px solid #d7e1ea;
}

.myvybz-banner-spotlight .myvybz-hero-thumbs {
    display: flex !important;
    width: 100%;
    min-width: 0;
    gap: 7px;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 2px 1px 4px;
    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    opacity: 1 !important;
    visibility: visible !important;
}

.myvybz-banner-spotlight .myvybz-hero-thumbs[hidden] {
    display: none !important;
}

.myvybz-banner-spotlight .myvybz-hero-thumb {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    margin: 0 !important;
    padding: 0 !important;
    border: 2px solid transparent !important;
    border-radius: 8px;
    overflow: hidden;
    appearance: none;
    -webkit-appearance: none;
    background: #d7e2eb !important;
    cursor: pointer;
    scroll-snap-align: start;
    box-shadow: none !important;
}

.myvybz-banner-spotlight .myvybz-hero-thumb img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 1 !important;
    filter: none !important;
    -webkit-filter: none !important;
}

.myvybz-banner-spotlight .myvybz-hero-thumb.active {
    border-color: var(--mec-color-skin,#159be5) !important;
    box-shadow: 0 0 0 2px rgba(21,155,229,.20) !important;
}

.myvybz-banner-spotlight .myvybz-founder-pane[hidden] {
    display: none !important;
}

/* Owl nav remains part of the proven hero interaction. */
.myvybz-banner-spotlight .owl-prev,
.myvybz-banner-spotlight .owl-next {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 8;
    width: 34px;
    height: 34px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    background: rgba(5,9,14,.68) !important;
    color: #fff !important;
    font-size: 17px !important;
    line-height: 1 !important;
}
.myvybz-banner-spotlight .owl-prev { left: 8px; }
.myvybz-banner-spotlight .owl-next { right: 8px; }

.myvybz-banner-spotlight .myvybz-hero-down {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 9;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(5,9,14,.82);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff !important;
    text-decoration: none !important;
}

/* Dark mode: style UI chrome, never repaint banner artwork. */
:root.dark .myvybz-banner-spotlight,
html.dark .myvybz-banner-spotlight,
body.myvybz-dark .myvybz-banner-spotlight,
:root.dark .myvybz-banner-spotlight .myvybz-hero-slide,
html.dark .myvybz-banner-spotlight .myvybz-hero-slide,
body.myvybz-dark .myvybz-banner-spotlight .myvybz-hero-slide {
    background: #090d12 !important;
    color: #eef4fb !important;
}

:root.dark .myvybz-banner-spotlight .myvybz-hero-band,
html.dark .myvybz-banner-spotlight .myvybz-hero-band,
body.myvybz-dark .myvybz-banner-spotlight .myvybz-hero-band {
    background: linear-gradient(135deg,#0d141d 0%,#111a24 60%,#0a1118 100%) !important;
    border-top-color: #263442 !important;
}

:root.dark .myvybz-banner-spotlight .myvybz-hero-title,
html.dark .myvybz-banner-spotlight .myvybz-hero-title,
body.myvybz-dark .myvybz-banner-spotlight .myvybz-hero-title,
:root.dark .myvybz-banner-spotlight .myvybz-hero-title a,
html.dark .myvybz-banner-spotlight .myvybz-hero-title a,
body.myvybz-dark .myvybz-banner-spotlight .myvybz-hero-title a {
    color: #f4f8fc !important;
    background: transparent !important;
}

:root.dark .myvybz-banner-spotlight .myvybz-hero-role,
:root.dark .myvybz-banner-spotlight .myvybz-hero-desc,
html.dark .myvybz-banner-spotlight .myvybz-hero-role,
html.dark .myvybz-banner-spotlight .myvybz-hero-desc,
body.myvybz-dark .myvybz-banner-spotlight .myvybz-hero-role,
body.myvybz-dark .myvybz-banner-spotlight .myvybz-hero-desc {
    color: #c5d0db !important;
    background: transparent !important;
}

:root.dark .myvybz-banner-spotlight .myvybz-btn.secondary,
:root.dark .myvybz-banner-spotlight .myvybz-btn.secondary:visited,
html.dark .myvybz-banner-spotlight .myvybz-btn.secondary,
html.dark .myvybz-banner-spotlight .myvybz-btn.secondary:visited,
body.myvybz-dark .myvybz-banner-spotlight .myvybz-btn.secondary,
body.myvybz-dark .myvybz-banner-spotlight .myvybz-btn.secondary:visited {
    background: #162330 !important;
    border-color: #3b5368 !important;
    color: #eef4fb !important;
}

:root.dark .myvybz-banner-spotlight .myvybz-hero-thumbs-wrap,
html.dark .myvybz-banner-spotlight .myvybz-hero-thumbs-wrap,
body.myvybz-dark .myvybz-banner-spotlight .myvybz-hero-thumbs-wrap {
    background: #0b1219 !important;
    border-top-color: #263442 !important;
}

:root.dark .myvybz-banner-spotlight .myvybz-hero-img,
html.dark .myvybz-banner-spotlight .myvybz-hero-img,
body.myvybz-dark .myvybz-banner-spotlight .myvybz-hero-img,
:root.dark .myvybz-banner-spotlight .myvybz-hero-thumb img,
html.dark .myvybz-banner-spotlight .myvybz-hero-thumb img,
body.myvybz-dark .myvybz-banner-spotlight .myvybz-hero-thumb img {
    opacity: 1 !important;
    filter: none !important;
    -webkit-filter: none !important;
    mix-blend-mode: normal !important;
}

/* Elementor is placement shell only; do not carry old full-viewport hero height. */
.home .elementor-section:has(.myvybz-banner-spotlight),
.home .elementor-container:has(.myvybz-banner-spotlight),
.home .elementor-widget-wrap:has(.myvybz-banner-spotlight),
.home .e-con:has(.myvybz-banner-spotlight),
.home .e-con-inner:has(.myvybz-banner-spotlight),
.home .elementor-widget-shortcode:has(.myvybz-banner-spotlight),
.home .elementor-widget-container:has(.myvybz-banner-spotlight) {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
}

#homepage-events {
    scroll-margin-top: 80px;
}

@media (max-width: 900px) {
    .myvybz-banner-spotlight {
        width: calc(100% - 20px);
        max-width: none;
        margin-bottom: 18px !important;
    }

    .myvybz-banner-spotlight .myvybz-hero-band {
        padding: 12px 12px 13px;
    }

    .myvybz-banner-spotlight .myvybz-hero-title {
        font-size: clamp(20px,6vw,27px);
        line-height: 1.08;
        -webkit-line-clamp: 2;
    }

    .myvybz-banner-spotlight .myvybz-hero-desc {
        font-size: 11.5px;
        line-height: 1.38;
        -webkit-line-clamp: 2;
    }

    .myvybz-banner-spotlight .myvybz-hero-thumbs-wrap {
        padding: 7px 10px 9px;
    }

    .myvybz-banner-spotlight .myvybz-hero-thumb {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .myvybz-banner-spotlight .owl-prev,
    .myvybz-banner-spotlight .owl-next {
        top: 32%;
        width: 30px;
        height: 30px;
        font-size: 15px !important;
    }

    .myvybz-banner-spotlight .myvybz-hero-down {
        width: 30px;
        height: 30px;
        right: 8px;
        bottom: 8px;
    }
}

/* =========================================

/* =========================================
   MYVYBZ HOMEPAGE POSTS + ADS FINAL LAYOUT
========================================= */

.myvybz-home-section .e-con-inner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* posts stay dominant */
.myvybz-posts-col {
    flex: 1 1 auto;
    min-width: 0;
    background: #f8f9fb;
    border-radius: 18px;
    padding: 14px;
    box-sizing: border-box;
    overflow: visible;
}

/* desktop sidebar wide enough for 3 x 125 ads */
.myvybz-ads-col {
    flex: 0 0 395px;
    width: 395px;
    min-width: 395px;
    max-width: 395px;
}

/* width handling */
.myvybz-home-posts-wrap,
.myvybz-sidebar-ads {
    width: 100%;
    max-width: 100%;
}

/* masonry posts */
.myvybz-home-posts-grid {
    column-count: 2;
    column-gap: 18px;
    overflow: visible;
}

/* load more must sit outside masonry flow */
.myvybz-load-more-wrap {
    display: block;
    clear: both;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 3;

    text-align: center;
    margin-top: 24px;
    padding-bottom: 24px;
}
		   
/* =========================================
   HOMEPAGE POSTS + ADS STACK FIX
   1280px handoff
========================================= */

@media (max-width: 1279px) {

    /* center the stacked content zone itself */
    .myvybz-home-section .e-con-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    .myvybz-posts-ads-wrapper,
    .myvybz-posts-container,
    .myvybz-posts-row {
        display: block !important;
        width: 100% !important;
    }

    .myvybz-posts-col,
    .myvybz-ads-col {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 1000px !important;
        flex: 0 0 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .myvybz-ads-col {
        margin-top: 18px;
        align-self: center !important;
        text-align: center !important;
    }

    .myvybz-sidebar-ads {
        width: 100% !important;
        max-width: 420px !important;
        margin: 20px auto 0 !important;
        float: none !important;
        clear: both !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .myvybz-sidebar-ads-rail {
        width: 100% !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        position: relative !important;
        z-index: 2 !important;
    }
}

@media (max-width: 767px) {
    .myvybz-home-posts-grid {
        column-count: 1;
    }

    .myvybz-posts-col,
    .myvybz-ads-col {
        max-width: 100% !important;
    }
}

/* Mobile polish */
@media (max-width: 600px) {
    .myvybz-sidebar-ads-rail {
        max-width: 100% !important;
        padding: 12px !important;
    }
}
@media (max-width: 1279px) {

    /* center posts + ads together as one block */
    .myvybz-home-section .e-con-inner {
        align-items: center !important;
    }

    /* keep posts aligned with ads width flow */
    .myvybz-posts-col {
        max-width: 1000px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* ads align to same center line */
    .myvybz-ads-col {
        display: flex !important;
        justify-content: center !important;
    }
}

/* =========================================
   HOMEPAGE ADVANCED TITLE MOBILE FIX
========================================= */

@media (max-width: 480px) {
    .trx-addons-advanced-title {
        max-width: 100% !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }

    .trx-addons-advanced-title-item-text {
        font-size: clamp(22px, 7.8vw, 34px) !important;
        line-height: 1.05 !important;
        font-weight: 800 !important;
        white-space: normal !important;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 340px) {
    .trx-addons-advanced-title-item-text {
        font-size: clamp(20px, 7vw, 30px) !important;
    }
}

/* ===== MIGRATED HOME: native-sidebar-ads-2V1 ===== */
/* =========================
           MyVyBZ Native Sidebar Ads - PASS 2S
           Namespaced to this shortcode instance and the rail state.
        ========================= */
        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) {
            width: 100%;
            margin-top: 18px;
        }

        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-sidebar-ads-rail {
            width: fit-content;
            margin: 0 auto;
            background: #f7f8fb;
            border-radius: 16px;
            padding: 8px;
            box-sizing: border-box;
        }

        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-sidebar-ads-label {
            margin-bottom: 6px;
            font-size: 10px;
            font-weight: 700;
            text-align: center;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .bsaProItems,
        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-native-sidebar-items {
            display: grid !important;
            grid-template-columns: repeat(2, 125px);
            gap: 6px;
            width: fit-content;
        }

        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .bsaProItem,
        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-native-sidebar-item {
            float: none !important;
            display: block !important;
            width: 125px !important;
            height: auto !important;
            margin: 0 !important;
            clear: none !important;
        }

        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .bsaProItemInner,
        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-native-sidebar-inner {
            position: relative !important;
            width: 125px !important;
            max-width: 125px !important;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            border-radius: 7px;
            background: #020812;
        }

        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .bsaProItemInner__thumb,
        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-native-sidebar-thumb,
        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .bsaProAnimateThumb,
        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-native-sidebar-animate {
            display: block !important;
            width: 100% !important;
            height: 100% !important;
            min-height: 100% !important;
            position: relative !important;
            overflow: hidden !important;
            border-radius: 7px !important;
            box-sizing: border-box !important;
        }

        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .bsaProItemInner__img,
        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-native-sidebar-img {
            position: absolute;
            inset: 0;
            width: 100% !important;
            height: 100% !important;
            border-radius: 7px;
            background-size: contain !important;
            background-position: center center !important;
            background-repeat: no-repeat !important;
            background-color: #020812 !important;
            transition: transform .22s ease, filter .22s ease;
        }

        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-native-sidebar-link {
            position: relative !important;
            display: block !important;
        }

        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-native-sidebar-link {
            position: relative !important;
            display: block !important;
            width: 100% !important;
            height: 100% !important;
            min-height: 100% !important;
            aspect-ratio: 1 / 1 !important;
            overflow: hidden !important;
            border-radius: 7px !important;
            box-sizing: border-box !important;
        }

        /* PASS 2S: use the existing MyVyBZ ticker/card rating pill family, only sizing/positioning it for 125px ads. */
        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-sidebar-ad-rating-ticket {
            position: absolute !important;
            right: 5px !important;
            bottom: 5px !important;
            top: auto !important;
            left: auto !important;
            z-index: 6 !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            min-width: 16px !important;
            height: 14px !important;
            padding: 0 5px !important;
            border-radius: 999px !important;
            font-size: 7px !important;
            line-height: 1 !important;
            font-weight: 800 !important;
            letter-spacing: .02em !important;
            pointer-events: none !important;
            box-sizing: border-box !important;
        }

        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-sidebar-ad-rating-ticket.rating-pg {
            background: #e8fff0 !important;
            color: #0a9b52 !important;
        }

        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-sidebar-ad-rating-ticket.rating-moderate {
            background: #eef2ff !important;
            color: #2563eb !important;
        }

        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-sidebar-ad-rating-ticket.rating-adult {
            background: #ffe8f0 !important;
            color: #e11d48 !important;
        }

        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-native-sidebar-link:hover .myvybz-native-sidebar-img,
        :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-native-sidebar-link:focus .myvybz-native-sidebar-img {
            transform: scale(1.03);
            filter: brightness(.96);
        }

        /* Inline/fallback mode: keep the normal Sponsor/sidebar area clean. */
        @media (min-width: 980px) {
            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads):not(.is-in-desktop-rail) .myvybz-sidebar-ads-rail {
                max-width: 520px;
                width: fit-content;
            }

            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads):not(.is-in-desktop-rail) .bsaProItems,
            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads):not(.is-in-desktop-rail) .myvybz-native-sidebar-items {
                grid-template-columns: repeat(3, 125px) !important;
                gap: 8px !important;
            }
        }

        @media (min-width: 720px) and (max-width: 979px) {
            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads):not(.is-in-desktop-rail) .myvybz-sidebar-ads-rail {
                max-width: 420px;
                width: 100%;
            }

            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads):not(.is-in-desktop-rail) .bsaProItems,
            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads):not(.is-in-desktop-rail) .myvybz-native-sidebar-items {
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
                gap: 10px !important;
                width: 100% !important;
                max-width: 100% !important;
            }

            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads):not(.is-in-desktop-rail) .bsaProItem,
            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads):not(.is-in-desktop-rail) .myvybz-native-sidebar-item,
            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads):not(.is-in-desktop-rail) .bsaProItemInner,
            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads):not(.is-in-desktop-rail) .myvybz-native-sidebar-inner {
                width: 100% !important;
                max-width: 100% !important;
            }
        }

        @media (max-width: 1279px) {
            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-sidebar-ads-rail {
                width: 100%;
                max-width: 420px;
                margin: 0 auto;
                padding: 10px;
            }

            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .bsaProItems,
            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-native-sidebar-items {
                display: grid !important;
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
                gap: 10px !important;
                width: 100% !important;
                max-width: 100% !important;
            }

            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .bsaProItem,
            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-native-sidebar-item,
            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .bsaProItemInner,
            :is(#myvybz-home-sidead-specificity, .myvybz-native-sidebar-ads) .myvybz-native-sidebar-inner {
                width: 100% !important;
                max-width: 100% !important;
            }
        }

        /* Shared gutter rail shell. */
        @media (min-width: 1360px) {
            body.home.myvybz-side-rail-active {
                background-color: #020812 !important;
            }

            body.home.myvybz-side-rail-active::after {
                content: "";
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                z-index: 20;
                pointer-events: none;
                background: linear-gradient(180deg, #020812 0%, #031522 52%, #071a2c 100%);
            }

            body.home.myvybz-side-rail-active .elementor-3202 {
                box-sizing: border-box !important;
                transition: padding-right .18s ease;
                background-color: #020812 !important;
            }

            body.home.myvybz-side-rail-active .myvybz-side-placements-rail--desktop {
                position: fixed !important;
                z-index: 30 !important;
                top: var(--myvybz-side-rail-top, 126px) !important;
                overflow-y: auto !important;
                overflow-x: hidden !important;
                pointer-events: none !important;
                scrollbar-width: thin;
                box-sizing: border-box !important;
            }

            body.home.myvybz-side-rail-active .myvybz-side-placements-rail--desktop::-webkit-scrollbar {
                width: 6px;
            }

            body.home.myvybz-side-rail-active .myvybz-side-placements-rail--desktop::-webkit-scrollbar-thumb {
                background: rgba(148, 163, 184, .34);
                border-radius: 999px;
            }

            body.home.myvybz-side-rail-active.admin-bar .myvybz-side-placements-rail--desktop {
                top: calc(var(--myvybz-side-rail-top, 126px) + 32px) !important;
            }

            body.home.myvybz-side-rail-active .myvybz-side-placements-rail--desktop .myvybz-side-placements,
            body.home.myvybz-side-rail-active .myvybz-side-placements-rail--desktop .myvybz-native-sidebar-link {
                pointer-events: auto !important;
            }

            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .myvybz-sidebar-ads-rail {
                margin: 0 !important;
                box-sizing: border-box !important;
                overflow: hidden !important;
            }

            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .myvybz-sidebar-ads-rail {
                padding: 7px !important;
                border-radius: 14px !important;
                box-shadow: 0 14px 28px rgba(0, 0, 0, .34) !important;
                background: rgba(248, 250, 252, .96) !important;
                backdrop-filter: blur(8px);
            }

            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .myvybz-sidebar-ads-label {
                display: block !important;
                font-size: 8px !important;
                line-height: 1 !important;
                margin: 0 0 6px !important;
                padding: 0 !important;
                letter-spacing: .08em !important;
                text-align: center !important;
            }

            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .bsaProItem,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .myvybz-native-sidebar-item,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .bsaProItemInner,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .myvybz-native-sidebar-inner,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .bsaProAnimateThumb,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .bsaProItemInner__thumb,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .bsaProItem a,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .myvybz-native-sidebar-item a,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .myvybz-native-sidebar-inner a,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .bsaProItemInner__img,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .myvybz-native-sidebar-img,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail [style*="background-image"],
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail img,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail picture,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail picture img {
                display: block !important;
                width: 125px !important;
                max-width: 125px !important;
                min-width: 125px !important;
                height: 125px !important;
                max-height: 125px !important;
                min-height: 125px !important;
                aspect-ratio: 1 / 1 !important;
                box-sizing: border-box !important;
                overflow: hidden !important;
                border-radius: 7px !important;
                margin: 0 !important;
                padding: 0 !important;
                background-color: #020812 !important;
                background-size: contain !important;
                background-position: center center !important;
                background-repeat: no-repeat !important;
                object-fit: contain !important;
                object-position: center center !important;
                transform: none !important;
                filter: none !important;
            }

            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .myvybz-native-sidebar-link:hover .myvybz-native-sidebar-img,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .myvybz-native-sidebar-link:focus .myvybz-native-sidebar-img {
                transform: none !important;
                filter: none !important;
            }
        }

        /* Normal desktop: one clean 125px strip in a safer 190px gutter.
           PASS 2N: the rail viewport is wider than the 139px card shell so the
           browser's vertical scrollbar cannot shave pixels off the 125px ads. */
        @media (min-width: 1360px) and (max-width: 1759px) {
            body.home.myvybz-side-rail-active::after {
                width: 190px;
            }

            body.home.myvybz-side-rail-active .elementor-3202 {
                padding-right: 190px !important;
            }

            body.home.myvybz-side-rail-active .myvybz-side-placements-rail--desktop {
                right: 14px !important;
                width: 162px !important;
                max-width: 162px !important;
                padding: 0 8px !important;
                max-height: calc(100vh - var(--myvybz-side-rail-top, 126px) - 28px) !important;
            }

            body.home.myvybz-side-rail-active.admin-bar .myvybz-side-placements-rail--desktop {
                max-height: calc(100vh - var(--myvybz-side-rail-top, 126px) - 60px) !important;
            }

            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .myvybz-sidebar-ads-rail {
                width: 139px !important;
                max-width: 139px !important;
                min-width: 139px !important;
            }

            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .bsaProItems,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .myvybz-native-sidebar-items {
                display: grid !important;
                grid-template-columns: 125px !important;
                grid-auto-rows: 125px !important;
                gap: 7px !important;
                width: 125px !important;
                max-width: 125px !important;
                min-width: 125px !important;
                margin: 0 auto !important;
                padding: 0 !important;
                box-sizing: border-box !important;
                overflow: visible !important;
                align-items: center !important;
                justify-items: center !important;
            }
        }

        /* Wide desktop / 2K: two 125px columns in a wider right gutter. */
        @media (min-width: 1760px) {
            body.home.myvybz-side-rail-active::after {
                width: 310px;
            }

            body.home.myvybz-side-rail-active .elementor-3202 {
                padding-right: 310px !important;
            }

            body.home.myvybz-side-rail-active .myvybz-side-placements-rail--desktop {
                right: 18px !important;
                width: 271px !important;
                max-width: 271px !important;
                max-height: calc(100vh - var(--myvybz-side-rail-top, 126px) - 28px) !important;
            }

            body.home.myvybz-side-rail-active.admin-bar .myvybz-side-placements-rail--desktop {
                max-height: calc(100vh - var(--myvybz-side-rail-top, 126px) - 60px) !important;
            }

            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .myvybz-sidebar-ads-rail {
                width: 271px !important;
                max-width: 271px !important;
                min-width: 271px !important;
            }

            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .bsaProItems,
            body.home.myvybz-side-rail-active .myvybz-side-placements.is-in-desktop-rail .myvybz-native-sidebar-items {
                display: grid !important;
                grid-template-columns: repeat(2, 125px) !important;
                grid-auto-rows: 125px !important;
                gap: 7px !important;
                width: 257px !important;
                max-width: 257px !important;
                min-width: 257px !important;
                margin: 0 auto !important;
                padding: 0 !important;
                box-sizing: border-box !important;
                overflow: visible !important;
                align-items: center !important;
                justify-items: center !important;
            }
        }

        @media (max-width: 1359px) {
            .myvybz-side-placements-rail--desktop {
                display: none !important;
            }

            .myvybz-side-placements-dock-marker,
            .myvybz-side-placements-dock-anchor {
                display: block !important;
            }

            body.home .myvybz-sidebar-ads,
            body.home .myvybz-native-sidebar-ads {
                position: relative !important;
                z-index: 3 !important;
                display: block !important;
                clear: both !important;
                overflow: visible !important;
                height: auto !important;
                margin-bottom: calc(34px + env(safe-area-inset-bottom, 0px)) !important;
                padding-bottom: 0 !important;
            }

            body.home .myvybz-sidebar-ads::after,
            body.home .myvybz-native-sidebar-ads::after {
                content: "" !important;
                display: table !important;
                clear: both !important;
            }

            body.home .myvybz-sidebar-ads .myvybz-sidebar-ads-rail,
            body.home .myvybz-native-sidebar-ads .myvybz-sidebar-ads-rail,
            body.home .myvybz-sidebar-ads .bsaProItems,
            body.home .myvybz-native-sidebar-ads .myvybz-native-sidebar-items {
                position: relative !important;
                z-index: 4 !important;
                overflow: visible !important;
                height: auto !important;
            }

            body.home .site-footer,
            body.home footer,
            body.home #colophon {
                position: relative !important;
                z-index: 1 !important;
                clear: both !important;
                margin-top: 0 !important;
            }

            body.home .elementor-3202,
            body.home main,
            body.home #content {
                overflow: visible !important;
                padding-bottom: calc(34px + env(safe-area-inset-bottom, 0px)) !important;
            }
        }
