/**

 * Page Banner Block Styles

 *

 * @package UltraLite_BS_ACF

 * @since 1.0.0

 */



.page-banner-section {

    position: relative;

    width: 100%;

    overflow: hidden;

}



.page-banner-container {

    position: relative;

    width: 100%;

    min-height: 540px;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    display: flex;

    align-items: center;

    padding: 80px 0;

}



.page-banner-container::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);

    z-index: 1;

}



.page-banner-content {

    position: relative;

    z-index: 2;

    text-align: left;

}

.page-banner-content p {
    font-size: clamp(16px, 1.4vw, 24px);
}


.page-banner-cta{

    padding: 32px;

}

.page-banner-cta .btn {

    min-width: 360px;

}



/* Responsive Styles */

@media (max-width: 992px) {

    .page-banner-container {

        min-height: 350px;

        padding: 60px 0;

    }

    

    .page-banner-title {

        font-size: 36px;

        margin-bottom: 20px;

    }

    

    .page-banner-description {

        font-size: 16px;

    }

}



@media (max-width: 768px) {

    .page-banner-container {

        min-height: 300px;

        padding: 40px 0;

    }

    

    .page-banner-title {

        font-size: 28px;

        margin-bottom: 16px;

    }


}

