/* ═══════════════════════════════════════════════════════════════
   Mabsut Hero — Slider + Timeline
   ═══════════════════════════════════════════════════════════════ */

.mbs-hero {
    padding: 24px 0;
}

.mbs-hero__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: stretch;
}

/* ═══════════════════════════════════════════════════════════════
   اسلایدر
   ═══════════════════════════════════════════════════════════════ */
.mbs-slider {
    position: relative;
    border-radius: var(--mbs-radius-xl);
    overflow: hidden;
    background: var(--mbs-bg-surface);
    box-shadow: var(--mbs-shadow-md);
    aspect-ratio: 16 / 9;
    min-height: 380px;
}

.mbs-slider__viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.mbs-slider__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 500ms var(--mbs-ease);
}

.mbs-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.mbs-slide__link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.mbs-slide__media {
    position: absolute;
    inset: 0;
}
.mbs-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--mbs-ease);
}
.mbs-slide__img--placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--mbs-brand), var(--mbs-accent));
}
.mbs-slide:hover .mbs-slide__img {
    transform: scale(1.04);
}

.mbs-slide__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15,23,42,.95) 0%,
        rgba(15,23,42,.75) 30%,
        rgba(15,23,42,.35) 60%,
        rgba(15,23,42,.05) 100%
    );
}

.mbs-slide__content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 28px 32px;
    color: #fff;
    z-index: 2;
    max-width: 100%;
}

.mbs-slide__cat {
    display: inline-block;
    padding: 5px 12px;
    background: var(--mbs-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--mbs-radius-full);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.mbs-slide__title {
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mbs-slide__excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.85);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mbs-slide__meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: rgba(255,255,255,.75);
}
.mbs-slide__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ناوبری */
.mbs-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 50%;
    z-index: 3;
    transition: all var(--mbs-t-base) var(--mbs-ease);
    opacity: 0;
}
.mbs-slider:hover .mbs-slider__nav { opacity: 1; }
.mbs-slider__nav:hover {
    background: rgba(255,255,255,.3);
    transform: translateY(-50%) scale(1.1);
}
.mbs-slider__nav--prev { right: 16px; }
.mbs-slider__nav--next { left: 16px; }

/* نقاط */
.mbs-slider__dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
    padding: 6px 12px;
    background: rgba(0,0,0,.3);
    backdrop-filter: blur(8px);
    border-radius: var(--mbs-radius-full);
}
.mbs-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    transition: all var(--mbs-t-base) var(--mbs-ease);
}
.mbs-slider__dot.is-active {
    width: 24px;
    background: #fff;
}
.mbs-slider__dot:hover { background: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════════════
   تایم‌لاین
   ═══════════════════════════════════════════════════════════════ */

@keyframes mbs-live-ring {
    0%   { transform: scale(.6); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

@keyframes mbs-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .mbs-hero__grid {
        grid-template-columns: 1fr;
    }
    .mbs-slider {
        min-height: 320px;
        aspect-ratio: 16 / 10;
    }
    
}

@media (max-width: 768px) {
    .mbs-hero { padding: 16px 0; }
    .mbs-hero__grid { gap: 14px; }

    .mbs-slider {
        aspect-ratio: 4 / 3;
        min-height: 280px;
        border-radius: var(--mbs-radius-lg);
    }
    .mbs-slide__content { padding: 20px; }
    .mbs-slide__title { font-size: 18px; -webkit-line-clamp: 3; }
    .mbs-slide__excerpt { display: none; }
    .mbs-slide__cat { font-size: 10px; padding: 4px 10px; margin-bottom: 8px; }

    .mbs-slider__nav { display: none; }
    .mbs-slider__dots {
        bottom: 12px;
        padding: 4px 10px;
    }

    
    
    
    
    
    
    
    
}

@media (max-width: 480px) {
    .mbs-slider { min-height: 240px; }
    .mbs-slide__title { font-size: 16px; }
    .mbs-slide__meta { font-size: 11px; gap: 12px; }
}

@keyframes mbsLivePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(217,48,37,0.6); }
    50% { box-shadow: 0 0 0 6px rgba(217,48,37,0); }
}

/* ═══════════════════════════════════════════════════════════════
 * Live Box — همین حالا (آبی نیلی + یاقوتی + فیروزه‌ای)
 * ═══════════════════════════════════════════════════════════════ */

.mbs-live-box {
    --lb-indigo: var(--mbs-bg-indigo);
    --lb-indigo-dark: var(--t-indigo-950);
    --lb-ruby: var(--mbs-accent);
    --lb-ruby-dark: var(--t-accent-dark);
    --lb-teal: var(--mbs-teal);
    --lb-teal-light: var(--t-teal-light);

    position: relative;
    background: #fff;
    border: 1px solid var(--t-indigo-100-alt);
    border-radius: 18px;
    padding: 16px 18px 18px;
    box-shadow:
        0 1px 3px rgba(53,72,160,.06),
        0 8px 24px rgba(53,72,160,.08),
        0 0 0 1px rgba(38,166,154,.04);
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    min-height: 460px;
    overflow: hidden;
    transition: box-shadow .3s var(--mbs-ease, ease), transform .3s;
}

.mbs-live-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mbs-bg-indigo) 0%, var(--mbs-accent) 50%, var(--mbs-teal) 100%);
    border-radius: 18px 18px 0 0;
}

.mbs-live-box:hover {
    box-shadow:
        0 2px 6px rgba(53,72,160,.1),
        0 16px 40px rgba(53,72,160,.14),
        0 0 0 1px rgba(38,166,154,.08);
    transform: translateY(-1px);
}

/* ═══ Header ═══ */
.mbs-live-box__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--t-indigo-50-alt);
    position: relative;
}

.mbs-live-box__header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--mbs-accent), var(--mbs-teal));
    border-radius: 2px;
}

.mbs-live-box__header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mbs-live-box__pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--mbs-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(194,24,91,.7);
    animation: livePulseBox 1.6s infinite;
    flex-shrink: 0;
}

@keyframes livePulseBox {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(194,24,91,.7), 0 0 8px rgba(194,24,91,.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(194,24,91,0), 0 0 12px rgba(194,24,91,.6);
        transform: scale(0.85);
    }
}

.mbs-live-box__title {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(90deg, var(--mbs-bg-indigo), var(--mbs-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.2px;
}

.mbs-live-box__badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.mbs-live-box__badge--active {
    background: linear-gradient(135deg, var(--mbs-accent), var(--t-accent-dark));
    color: #fff;
    box-shadow: 0 2px 6px rgba(194,24,91,.35);
    animation: liveBadgePulse 2s ease-in-out infinite;
}

@keyframes liveBadgePulse {
    0%, 100% { box-shadow: 0 2px 6px rgba(194,24,91,.35); }
    50% { box-shadow: 0 2px 12px rgba(194,24,91,.6); }
}

.mbs-live-box__badge--offline {
    background: var(--t-gray-100-alt);
    color: var(--t-gray-400-alt);
}

/* ═══ Last Update ═══ */
.mbs-live-box__last-update {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--t-gray-600-alt);
    padding: 6px 10px;
    background: linear-gradient(90deg, rgba(53,72,160,.06), rgba(38,166,154,.06));
    border-radius: 8px;
    border-right: 2px solid var(--mbs-teal);
    margin-top: -4px;
}

.mbs-live-box__last-update svg {
    color: var(--mbs-teal);
    flex-shrink: 0;
}

.mbs-live-box__last-update strong {
    color: var(--mbs-bg-indigo);
    font-weight: 800;
}

/* ═══ Event block ═══ */
.mbs-live-box__event {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(135deg, var(--t-accent-50) 0%, var(--t-brand-50) 100%);
    border-right: 3px solid var(--mbs-accent);
    border-radius: 12px;
    align-items: flex-start;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.mbs-live-box__event::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 30%;
    height: 100%;
    background: radial-gradient(circle at left, rgba(38,166,154,.08), transparent 70%);
    pointer-events: none;
}

.mbs-live-box__event-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
    border: 2px solid #fff;
    box-shadow:
        0 2px 8px rgba(194,24,91,.25),
        0 0 0 2px rgba(38,166,154,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.mbs-live-box__event-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px dashed rgba(53,72,160,.35);
    animation: avatarSpin 12s linear infinite;
}

@keyframes avatarSpin {
    to { transform: rotate(360deg); }
}

.mbs-live-box__event-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mbs-live-box__event-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mbs-bg-indigo), var(--mbs-accent));
    color: #fff;
}

.mbs-live-box__event-info {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.mbs-live-box__event-title {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--t-indigo-950);
    text-decoration: none;
    line-height: 1.45;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .15s;
}

.mbs-live-box__event-title:hover {
    color: var(--mbs-accent);
}

.mbs-live-box__event-summary {
    font-size: 12px;
    color: var(--t-gray-600-alt);
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mbs-live-box__event-summary::before {
    content: '📝 ';
    font-size: 11px;
    margin-left: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   Timeline حرفه‌ای RTL — Grid + Marker + Content
   ═══════════════════════════════════════════════════════════════ */

.mbs-live-box__timeline {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 0 8px 8px;
    margin: 0 -6px 0 0;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: rgba(53,72,160,.3) transparent;
    direction: rtl;
}

.mbs-live-box__timeline::-webkit-scrollbar { width: 5px; }
.mbs-live-box__timeline::-webkit-scrollbar-track { background: transparent; }
.mbs-live-box__timeline::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(53,72,160,.3), rgba(38,166,154,.3));
    border-radius: 5px;
}

.mbs-tl {
    list-style: none;
    padding: 0 22px 0 0;
    margin: 0;
    position: relative;
    direction: rtl;
}

/* خط عمودی سراسری (راست) */
.mbs-tl::before {
    content: '';
    position: absolute;
    top: 14px;
    bottom: 14px;
    right: 8px;
    width: 2px;
    background: linear-gradient(180deg,
        var(--mbs-accent) 0%,
        var(--t-accent-dark) 20%,
        var(--mbs-bg-indigo) 55%,
        var(--mbs-teal) 100%);
    border-radius: 2px;
    opacity: .6;
}

/* هر ردیف */
.mbs-tl__row {
    position: relative;
    display: block;
    padding: 10px 0 12px;
    direction: rtl;
    text-align: right;
}

.mbs-tl__row + .mbs-tl__row {
    border-top: 1px dashed rgba(53,72,160,.08);
}

/* Marker — نقطه روی خط */
.mbs-tl__marker {
    position: absolute;
    top: 15px;
    right: -19px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--mbs-bg-indigo);
    box-shadow: 0 0 0 3px #fff, 0 1px 4px rgba(53,72,160,.25);
    z-index: 2;
    transition: all .25s cubic-bezier(.2,.8,.2,1);
}

/* ردیف جدید */
.mbs-tl__row.is-new .mbs-tl__marker {
    background: var(--mbs-accent);
    border-color: var(--mbs-accent);
    width: 14px;
    height: 14px;
    top: 14px;
    right: -20px;
    animation: tlMarkerPulse 1.8s ease-in-out infinite;
}

@keyframes tlMarkerPulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(194,24,91,.15), 0 1px 8px rgba(194,24,91,.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(194,24,91,.02), 0 1px 14px rgba(194,24,91,.7);
        transform: scale(1.08);
    }
}

/* ردیف سنجاق‌شده */
.mbs-tl__row.is-pinned .mbs-tl__marker {
    background: var(--mbs-teal);
    border-color: var(--mbs-teal);
    width: 14px;
    height: 14px;
    top: 14px;
    right: -20px;
    box-shadow: 0 0 0 3px #fff, 0 2px 8px rgba(38,166,154,.5);
}

/* پس‌زمینه ردیف جدید */
.mbs-tl__row.is-new {
    background: linear-gradient(270deg, rgba(194,24,91,.08), rgba(194,24,91,.02) 50%, transparent);
    border-radius: 10px;
    padding-right: 10px;
    padding-left: 6px;
    margin-right: -6px;
    margin-left: -6px;
}

/* ═══ Meta (زمان + چیپ‌ها) ═══ */
.mbs-tl__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
    flex-wrap: wrap;
    direction: rtl;
}

.mbs-tl__time {
    display: inline-flex;
    align-items: center;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--mbs-bg-indigo);
    font-variant-numeric: tabular-nums;
    letter-spacing: .3px;
    direction: ltr;
    padding: 2px 6px;
    background: linear-gradient(135deg, rgba(53,72,160,.08), rgba(38,166,154,.06));
    border-radius: 6px;
}

.mbs-tl__row.is-new .mbs-tl__time {
    background: linear-gradient(135deg, rgba(194,24,91,.1), rgba(194,24,91,.05));
    color: var(--mbs-accent);
    font-weight: 800;
}

.mbs-tl__chip {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 100px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: .3px;
    line-height: 1.4;
}

.mbs-tl__chip--new {
    background: linear-gradient(135deg, var(--mbs-accent), var(--t-accent-light));
    color: #fff;
    box-shadow: 0 1px 4px rgba(194,24,91,.3);
    animation: tlChipPulse 2s ease-in-out infinite;
}

@keyframes tlChipPulse {
    0%, 100% { box-shadow: 0 1px 4px rgba(194,24,91,.3); }
    50% { box-shadow: 0 2px 10px rgba(194,24,91,.55); }
}

.mbs-tl__chip--pin {
    background: linear-gradient(135deg, var(--mbs-teal), var(--t-teal-light));
    color: #fff;
    box-shadow: 0 1px 4px rgba(38,166,154,.35);
}

/* ═══ محتوا ═══ */
.mbs-tl__title {
    font-size: 12.5px;
    color: var(--t-gray-900-alt);
    line-height: 1.6;
    font-weight: 600;
    margin: 0;
    text-align: right;
}

.mbs-tl__row.is-new .mbs-tl__title {
    color: var(--t-accent-dark);
    font-weight: 700;
}

.mbs-tl__desc {
    font-size: 11.5px;
    color: var(--t-gray-500);
    line-height: 1.65;
    margin: 4px 0 0;
    font-weight: 400;
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ═══ Empty state ═══ */
.mbs-live-box__empty {
    padding: 36px 16px;
    text-align: center;
    color: var(--mbs-text-muted);
    font-size: 12px;
}

.mbs-live-box__empty svg {
    display: block;
    margin: 0 auto 8px;
    color: var(--mbs-bg-indigo);
    opacity: .4;
}

/* ═══ موبایل ═══ */
@media (max-width: 480px) {
    .mbs-tl {
        padding-right: 20px;
    }
    .mbs-tl::before {
        right: 7px;
    }
    .mbs-tl__marker {
        right: -17px;
    }
    .mbs-tl__row.is-new .mbs-tl__marker,
    .mbs-tl__row.is-pinned .mbs-tl__marker {
        right: -18px;
    }
    .mbs-tl__title { font-size: 12px; }
    .mbs-tl__desc { font-size: 11px; }
    .mbs-tl__time { font-size: 11px; }
}



/* ═══════════════════════════════════════════════════════════════
   Hero Slider — بازآرایی (Ken Burns، badge، dots مدرن)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Overlay گرادیان بهتر برای خوانایی ─── */
.mbs-slide__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, .95) 0%,
        rgba(15, 23, 42, .75) 35%,
        rgba(15, 23, 42, .25) 70%,
        rgba(15, 23, 42, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* ─── Ken Burns effect روی اسلاید فعال ─── */
.mbs-slide.is-active .mbs-slide__img {
    animation: mbs-ken-burns 12s ease-out forwards;
}
@keyframes mbs-ken-burns {
    0%   { transform: scale(1)    translate(0, 0); }
    100% { transform: scale(1.08) translate(-1%, -1%); }
}

/* ─── Badge دسته (روی تصویر) ─── */
.mbs-slide__cat {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, #b91c1c, #ea580c);
    color: var(--mbs-text-inverse);
    font-size: 12px;
    font-weight: 800;
    border-radius: 6px;
    line-height: 1.5;
    box-shadow: 0 4px 12px -2px rgba(185, 28, 28, .4);
    letter-spacing: .3px;
    margin-bottom: 12px;
}

/* ─── Nav buttons (chevron) ─── */
.mbs-slider__nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--mbs-text-inverse);
    display: grid;
    place-items: center;
    transition: all .25s cubic-bezier(.2, .8, .2, 1);
    cursor: pointer;
    z-index: 5;
}
.mbs-slider__nav:hover {
    background: linear-gradient(135deg, #1e40af, #6c5ce7);
    transform: scale(1.1);
    border-color: transparent;
    box-shadow: 0 8px 20px -4px rgba(30, 64, 175, .5);
}
.mbs-slider__nav svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .3));
}

/* ─── Dots ناوبری مدرن ─── */
.mbs-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
}
.mbs-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    border: none;
    cursor: pointer;
    transition: all .3s cubic-bezier(.2, .8, .2, 1);
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}
.mbs-slider__dot:hover {
    background: rgba(255, 255, 255, .8);
    transform: scale(1.15);
}
.mbs-slider__dot.is-active {
    width: 32px;
    border-radius: 6px;
    background: linear-gradient(90deg, #1a5fb4, #6c5ce7);
    box-shadow: 0 2px 8px rgba(26, 95, 180, .5);
}

/* ─── Meta items (sprite icons) ─── */
.mbs-slide__meta-item svg {
    width: 14px;
    height: 14px;
    color: currentColor;
    opacity: .85;
    flex-shrink: 0;
}
.mbs-slide__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ─── اسلاید فعال — بهبود انتقال ─── */
.mbs-slide {
    transition: opacity .6s cubic-bezier(.4, 0, .2, 1);
}
.mbs-slide.is-active {
    opacity: 1;
    z-index: 2;
}
.mbs-slide:not(.is-active) {
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .mbs-slider__nav { display: none; }
    .mbs-slide__cat {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
    .mbs-slider__dot {
        width: 6px;
        height: 6px;
    }
    .mbs-slider__dot.is-active {
        width: 24px;
    }
}
