/* ================================
   PEGASUS FLORIDA — FADE SLIDESHOW
   ================================ */

#slideshow-wrapper {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

#slideshow-container {
    position: relative;   /* REQUIRED for fade slideshow */
    width: 544px;
    height: 360px;
    margin: 0 auto;
    overflow: hidden;
    border: 3px solid #003366;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Remove ANY old #slideshow-image rules — fade slideshow does not use it */

.fade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 544px;
    height: 360px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.fade-slide.active {
    opacity: 1;
}
