@charset "UTF-8";

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	Common Banner Section
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* --- Banner Section (Desktop Default) --- */
.page-banner {
    position: relative;
    width: 100%;
    margin: 142px auto 0;
    /* Background handled by .page-banner__bg */
}
.page-banner .page-banner__inner {
    position: relative;
    width: 100%;
    padding: 60px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Ensure images don't overflow */
}
    
.page-banner .page-banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    /* Desktop: 1 row */
    z-index: 0;
    /* Behind overlay */
}

.page-banner .page-banner__bg img {
    width: calc(100% / 6);
    height: 100%;
    object-fit: cover;
}

.page-banner .page-banner__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 60, 85, 0.85);
    z-index: 1;
}

.page-banner .page-banner__block {
    position: relative;
    z-index: 2;
    /* Ensure content is above the overlay */
    width: 100%;
    max-width: 1025px;
    padding: 0 24px;
    margin: 0 auto;
}

.page-banner .page-banner__content {
    width: 100%;
    margin: 0 auto;
    background: transparent;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-family: "Helvetica Neue", sans-serif;
}

.page-banner .page-banner__content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #fff;
    letter-spacing: 0.02em;
}

.page-banner .page-banner__content p {
    font-size: 15px;
    line-height: 2;
    color: #fff;
    letter-spacing: 0.01em;
}

/* --- Banner Header Top (Blue bar) --- */
.page-banner__header-top {
    background: #0385FF;
    padding: 30px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media only screen and (max-width: 768px) {
    .page-banner__header-top {
        padding: 20px 0;
    }
    
    /* --- Banner Section (Mobile) --- */
    .page-banner {
        margin: 108px auto 0;
    }
}

.page-banner__header-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0.1em;
}

.page-banner__header-icon img {
    width: 60px;
    height: auto;
    margin-bottom: -45px;
    /* Pull icon down to overlap banner */
    position: relative;
    z-index: 10;
}

@media only screen and (max-width: 768px) {
    .page-banner__header-icon img {
        width: 50px;
        margin-bottom: -35px;
    }

    .page-banner .page-banner__content h2 {
        font-size: 24px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .page-banner .page-banner__content p {
        font-size: 13px;
    }

    .page-banner .page-banner__content p br {
        display: none;
    }
    /* Mobile: 2 columns x 3 rows grid with square images */
    .page-banner .page-banner__bg {
        position: absolute;
        flex-wrap: wrap;
        height: 100%;
    }

    .page-banner .page-banner__bg img {
        width: 50%;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
    }

    .page-banner .page-banner__inner {
        padding: 60px 16px;
        min-height: auto;
    }
}
