/**
 * Page Banner Premium Styles
 */
.page-banner {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    margin-bottom: 0;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background: linear-gradient(to left, rgba(0, 52, 120, 0.15), transparent);
    pointer-events: none;
}

.page-banner__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-banner__title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.1;
    border-left: 8px solid var(--clr-primary);
    padding-left: 25px;
    letter-spacing: -1px;
}

.page-banner__subtitle {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 400;
    max-width: 600px;
    padding-left: 33px; /* Match title padding + border */
    line-height: 1.6;
}

@media (max-width: 991px) {
    .page-banner {
        padding: 80px 0;
    }
    .page-banner__title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .page-banner {
        padding: 60px 0;
        text-align: left;
    }
    .page-banner__title {
        font-size: 26px;
        padding-left: 15px;
        border-left-width: 6px;
    }
    .page-banner__subtitle {
        font-size: 14px;
        padding-left: 21px;
    }
}
