/**
 * New Dawn Pro – Rise Edition
 * Hero Rotator Stylesheet
 * --------------------------------------------------------------
 * Version: 3.1.1
 * © 2025 The Rev. Dr. Rick G. Williams
 */

.new-dawn-hero-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.new-dawn-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.new-dawn-hero-slide.active {
    opacity: 1;
}

/* Optional Slide Effect */
body[data-hero-transition="slide"] .new-dawn-hero-slide {
    transition: transform 1.2s ease;
    opacity: 1;
}
