﻿/* Banner overlay text for apc.aspx, ctp.aspx, cpd.aspx, rccp.aspx */

.banner-image-section {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .banner-image-section img {
        width: 100%;
        display: block;
        height: auto;
    }

.banner-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 30px 40px;
    border-radius: 12px;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    width: 80%;
    max-width: 900px;
    z-index: 2;
    line-height: 1.2;
    box-sizing: border-box;
    word-break: break-word;
}

@media (max-width: 991px) {
    .banner-overlay-text {
        font-size: 1.3rem;
        padding: 18px 10px;
        width: 95%;
        border-radius: 8px;
    }
}

@media (max-width: 600px) {
    .banner-overlay-text {
        font-size: 1rem;
        padding: 8px 4px;
        width: 99%;
        border-radius: 5px;
    }
}
