/* Banners Component Styles */

.rm-banner-zone {
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 8px; /* Smooth border-radius to match Reymod style */
}

.rm-banner-zone.responsive .rm-banner-img {
    max-width: 100%;
    height: auto;
}

.rm-banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.rm-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.rm-banner-slide.active {
    position: relative;
    opacity: 1;
    z-index: 2;
}

.rm-banner-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.rm-banner-img {
    display: block;
    width: 100%;
    border-radius: 8px; /* Matching border-radius */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Subtle shadow */
}
