/*
 * Arab Short Drama
 * Unified hero overlay:
 * clear text + small button
 */

/* الحاوية */
.hero-slider-tall {
    position: relative !important;

    width: 100% !important;
    height: 340px !important;
    min-height: 340px !important;
    max-height: 340px !important;

    overflow: hidden !important;
    isolation: isolate !important;

    background: #070711 !important;
}

/* الصورة */
.hero-slider-tall img {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center 20% !important;

    opacity: 1 !important;

    filter:
        brightness(1.08)
        contrast(1.03)
        saturate(1.04) !important;

    transform: none !important;
    z-index: 0 !important;
}

/* إلغاء كل طبقات التعتيم القديمة */
.hero-slider-tall >
div[class*="bg-gradient-to-t"],
.hero-slider-tall >
div[class*="bg-gradient-to-l"] {
    background: none !important;
    opacity: 0 !important;
}

/* منع أي طبقة قديمة خلف السلايدر */
.hero-slider-tall::before {
    content: none !important;
    display: none !important;
}

/* تدرج واحد فقط خلف الكتابة */
.hero-slider-tall::after {
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;

    pointer-events: none !important;

    background:
        linear-gradient(
            0deg,
            rgba(5, 5, 15, 0.97) 0%,
            rgba(5, 5, 15, 0.82) 25%,
            rgba(5, 5, 15, 0.42) 48%,
            rgba(5, 5, 15, 0.04) 72%,
            rgba(5, 5, 15, 0) 100%
        ) !important;

    z-index: 2 !important;
}

/* منطقة المحتوى */
.hero-slider-content {
    position: absolute !important;

    top: auto !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: auto !important;

    padding:
        1rem
        1.25rem
        2.8rem
        1.25rem !important;

    margin: 0 !important;
    box-sizing: border-box !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;

    gap: 0.35rem !important;

    text-align: right !important;
    direction: rtl !important;

    background: none !important;
    overflow: visible !important;

    z-index: 50 !important;
}

/* رفع كل عناصر الكتابة فوق الصورة والتدرج */
.hero-slider-content > * {
    position: relative !important;
    z-index: 51 !important;

    transform: none !important;
    opacity: 1 !important;
}

/* القسم وHD */
.hero-slider-content >
div:first-child {
    width: 82% !important;
    max-width: 82% !important;

    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

/* العنوان */
.hero-slider-title {
    width: 82% !important;
    max-width: 82% !important;

    height: auto !important;
    min-height: 0 !important;
    max-height: 3.4rem !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: 1.08rem !important;
    font-weight: 900 !important;
    line-height: 1.45 !important;

    text-align: right !important;
    direction: rtl !important;
    white-space: normal !important;

    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* الوصف */
.hero-slider-description {
    width: 82% !important;
    max-width: 82% !important;

    height: auto !important;
    min-height: 0 !important;
    max-height: 2.65rem !important;

    margin: 0 0 0.35rem !important;
    padding: 0 !important;

    color: rgba(255, 255, 255, 0.88) !important;

    font-size: 0.73rem !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;

    text-align: right !important;
    direction: rtl !important;
    white-space: normal !important;

    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* الزر المصغر */
.hero-slider-content > button {
    position: relative !important;
    z-index: 60 !important;

    align-self: flex-end !important;

    width: auto !important;
    min-width: 96px !important;
    max-width: 112px !important;

    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;

    margin: 0.15rem 0 0 !important;
    padding: 0.45rem 0.7rem !important;

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

    gap: 0.35rem !important;

    border-radius: 0.75rem !important;

    font-size: 0.77rem !important;
    line-height: 1 !important;

    box-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;

    transform: none !important;
}

/* إلغاء أي طبقة أو لمعان وهمي تحت الزر */
.hero-slider-content > button::before,
.hero-slider-content > button::after {
    content: none !important;
    display: none !important;
}

/* تصغير أيقونة التشغيل داخل الزر */
.hero-slider-content > button svg {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
}

/* الأسهم */
.hero-slider-tall > button {
    width: 42px !important;
    height: 42px !important;

    min-width: 42px !important;
    min-height: 42px !important;

    padding: 0 !important;

    top: 48% !important;

    background: rgba(8, 8, 20, 0.76) !important;
    box-shadow: none !important;

    z-index: 80 !important;
}

/* النقاط */
.hero-slider-dots {
    position: absolute !important;

    left: 50% !important;
    right: auto !important;
    bottom: 0.7rem !important;

    height: 0.5rem !important;

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

    gap: 0.48rem !important;

    padding: 0 !important;
    margin: 0 !important;

    transform: translateX(-50%) !important;

    z-index: 90 !important;
}

.hero-slider-dot {
    width: 0.45rem !important;
    min-width: 0.45rem !important;
    max-width: 0.45rem !important;

    height: 0.45rem !important;
    min-height: 0.45rem !important;
    max-height: 0.45rem !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    border-radius: 9999px !important;
}

.hero-slider-dot.w-6 {
    width: 1.45rem !important;
    min-width: 1.45rem !important;
    max-width: 1.45rem !important;
}

/* الهاتف */
@media (max-width: 600px) {
    .hero-slider-tall {
        height: 350px !important;
        min-height: 350px !important;
        max-height: 350px !important;
    }

    .hero-slider-content {
        padding:
            1rem
            1rem
            2.75rem
            1rem !important;
    }

    .hero-slider-content >
    div:first-child,
    .hero-slider-title,
    .hero-slider-description {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-slider-title {
        max-height: 2.9rem !important;

        font-size: 0.96rem !important;
        line-height: 1.4 !important;
    }

    .hero-slider-description {
        max-height: 2.4rem !important;

        font-size: 0.68rem !important;
        line-height: 1.6 !important;
    }

    .hero-slider-content > button {
        min-width: 92px !important;
        max-width: 104px !important;

        height: 36px !important;
        min-height: 36px !important;
        max-height: 36px !important;

        font-size: 0.74rem !important;
    }
}
