/* ===== SLIDESHOW COMPONENTS ===== */
.slideshow-banner {
    position: relative;
    width: 100%;
    height: 100px; /* Max height specified */
    max-height: 100px;
    overflow: hidden;
    border-bottom: 1px solid var(--color-neutral-200);
    z-index: 10; /* Below admin sidebar */
}

.slideshow {
    width: 100%; height: 100%; position: relative;
}

.slides { position: absolute; inset: 0; }
.slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    opacity: 0; transform: scale(1.06);
    transition: opacity 800ms ease, transform 2000ms ease;
    filter: saturate(1.1) contrast(1.05) brightness(1.02);
}
.slide.active { opacity: 1; transform: scale(1); }

.slideshow-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }

.slideshow-cloud {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
}

.slideshow-text {
    color: var(--color-neutral-800);
    font-weight: var(--font-semibold);
    text-align: center;
    margin: 0;
    font-size: var(--text-base);
}

/* Responsive */
@media (max-width: 768px) {
    .slideshow-cloud { padding: 6px 14px; }
    .slideshow-text { font-size: 15px; }
}


