/* Banner Mobile Fixes - Subtitle Text */

/* Reduce subtitle (p tag) size and make it very light for aesthetics on mobile */
@media (max-width: 991px) {
    .rev-15-banner .banner-single-slide .single-slide-txt p {
        font-size: 11px !important; /* Smaller */
        font-weight: 200 !important; /* Very light font weight for aesthetics */
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
        opacity: 0.85 !important; /* Slightly transparent for lighter appearance */
        letter-spacing: 0.5px !important; /* Slight letter spacing for elegance */
    }
}

@media (max-width: 767px) {
    .rev-15-banner .banner-single-slide .single-slide-txt p {
        font-size: 10px !important; /* Smaller on tablets */
        font-weight: 200 !important; /* Very light */
        opacity: 0.8 !important;
    }
}

@media (max-width: 575px) {
    .rev-15-banner .banner-single-slide .single-slide-txt p {
        font-size: 9px !important; /* Smaller on mobile */
        font-weight: 200 !important; /* Very light */
        margin-bottom: 12px !important;
        opacity: 0.75 !important; /* More transparent on smaller screens */
        letter-spacing: 0.3px !important;
    }
}

@media (max-width: 479px) {
    .rev-15-banner .banner-single-slide .single-slide-txt p {
        font-size: 8px !important; /* Even smaller on very small screens */
        font-weight: 200 !important; /* Very light */
        margin-bottom: 10px !important;
        opacity: 0.7 !important; /* More transparent */
        letter-spacing: 0.2px !important;
    }
}

