.container-narrow{
    max-width: 960px;
    margin:0 auto;
}


.page-banner{
    height:400px;
    position:relative;
    background:var(--primary-color);
}

.page-banner-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity: 0.2;
    background:url(/media/srwhwpuz/inner-banner-bg.png) right center no-repeat;
    background-size:cover;
}
.page-banner-content{
    position:relative;
    color:#fff;
    height:100%;
    display:flex;
    align-items: center;
    z-index:1;
}
.page-banner-content h1{
    font-size: clamp(2.5rem, 12vw, 4.5rem);
    line-height:1;
    font-weight:400;
    margin-top:8%;
    margin-bottom:1rem;
}

.page-banner-content .page-subtitle{
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    width:60%;
    line-height:1.2;
}
@media(max-width: 992px){
    .page-banner-content .page-subtitle{
        width:80%;
    }
}
@media(max-width: 576px){
    .page-banner-content .page-subtitle{
        width:100%;
    }
}


.inner-page-wrapper{
    padding-top: 3rem;
    padding-bottom: 3rem;
    color:var(--second-color);
}


hr{
    background-color:#f2f2f2;
    border: 0;
    height:1px;
}
a{
    text-decoration:underline;
    text-decoration-style: dotted;
    color:var(--second-color-darker);
}
a:hover{
    color: var(--primary-color)
}


.responsive-table{
    width:100%;
    overflow-x: auto;
}


table{
    border-collapse: collapse;
    width:100%;
}

td, th{
    padding: 0.75rem;
}

/*td:first-child, th:first-child{
    padding-left:0;
}

td:last-child, th:last-child{
    padding-right:0;
}*/

h3{
    font-size:clamp(1.6rem, 6vw, 2.125rem);
    line-height:1.1;
    font-weight:bold;
    margin: 1rem 0;
    color:var(--primary-color);
}

h4{
    font-size:1.25rem;
    color:var(--primary-color);
}

/* =========== Tabs for About Us & Insight Page =========== */
.subpage-tabs{
    background:var(--primary-color);
}
.subpage-tabs .tab-button{
    text-align:center;
    padding:2rem 1rem;
    color:#fff;
    white-space:nowrap;
}

.subpage-tabs .tab-button.active{
    background:#fff;
    color:var(--primary-color);
}

.subpage-tabs .tab-button:not(.active):hover{
    background:var(--primary-color-lighter);
}

.subpages .tab-contents{
    padding: clamp(2rem,10vw,8rem) 0;
}

/* =========== NEWS PAGE =========== */
.featured-section{
    margin-bottom:6rem !important;
}
.featured-wrapper{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

.featured-wrapper .feature-item-image{
    background:var(--primary-color);
    margin-bottom:1rem;
}
.featured-wrapper .feature-item:hover .feature-item-image{
    background:var(--second-color);
}

.featured-wrapper .feature-item-title{
    font-size:clamp(1rem, 3vw, 1.25rem);
    line-height:1.2;
}



@media (min-width: 768px) { /* Adjust this breakpoint as needed (e.g., 600px, 992px) */
    .featured-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =========== Contact PAGE =========== */
.contact-table table{
    border-collapse:collapse;
    border:none;
}

.contact-table table td{
    border:none;
    
}
.contact-table img{
    display:block;
    width:24px;
    max-width:24px;
    padding-top: 6px;
    filter: brightness(0) saturate(100%) invert(13%) sepia(6%) saturate(7492%) hue-rotate(194deg) brightness(96%) contrast(85%);
}

