/* ACCMAA — شريط إعلانات الداشبورد */
.promo-carousel-section { margin: var(--accmaa-dash-gap, 24px) auto; max-width: var(--accmaa-zone-max, 1320px); }

.promo-carousel-wrap {
    position: relative;
    border-radius: var(--accmaa-radius-lg, 22px);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 16px 48px rgba(10, 54, 105, 0.12);
    background: #061f3d;
}

.promo-carousel-track {
    position: relative;
    min-height: clamp(140px, 28vw, 220px);
}

.promo-carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.65s ease;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: default;
    font: inherit;
    text-align: inherit;
}

.promo-carousel-slide[data-dashboard-target] { cursor: pointer; }
.promo-carousel-slide.is-active { opacity: 1; pointer-events: auto; position: relative; }

.promo-carousel-slide img {
    width: 100%;
    height: clamp(140px, 28vw, 220px);
    object-fit: cover;
    display: block;
}

.promo-carousel-caption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 14px 18px;
    background: linear-gradient(0deg, rgba(6, 31, 61, 0.88) 0%, transparent 100%);
    color: #fff;
    text-align: start;
}

.promo-carousel-caption strong {
    display: block;
    font-size: clamp(0.92rem, 2.5vw, 1.1rem);
    margin-bottom: 4px;
}

.promo-carousel-caption span {
    font-size: 0.82rem;
    opacity: 0.9;
}

.promo-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
}

.promo-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(10, 54, 105, 0.2);
    cursor: pointer;
    padding: 0;
}

.promo-carousel-dot.is-active {
    background: var(--gold, #D4AF37);
    transform: scale(1.15);
}

@media (max-width: 600px) {
    .promo-carousel-track { min-height: 120px; }
    .promo-carousel-slide img { height: 120px; }
}
