/* ==========================================================================
   SudanPlus Custom Styles
   ========================================================================== */

/* Premium News Widget */
.premium-news-item:hover {
    transform: translateY(-3px);
    background-color: var(--bs-body-bg) !important;
    border-color: var(--bs-border-color) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Immersive Premium Carousel */
.premium-carousel-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    display: block;
    background: #000;
}
.premium-carousel-card img {
    transition: transform 0.6s ease;
    opacity: 0.85;
}
.premium-carousel-card:hover img {
    transform: scale(1.08);
    opacity: 1;
}
.premium-carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    z-index: 2;
}
.premium-carousel-tag {
    position: absolute;
    top: 1rem;
    right: 1rem; /* Right aligned default */
    background-color: var(--sp-accent);
    color: var(--sp-surface);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
[dir="rtl"] .premium-carousel-tag {
    right: auto;
    left: 1rem;
}
