/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */

:root {
    --primary-color: #990000;
    --secondary-color: #ffcc00;
    --font-os: 'Old Standard TT', serif;
    --font-mr: 'Manrope', sans-serif;
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --border-color: #e0e0e0;
    --hover-bg: #f9f3f3;
    --card-radius: 4px;
    --transition: 0.25s ease;

}

ul {
    margin-left: 10px !important;
}

hr {
    opacity: 1 !important;
    border: none !important;
}

.usc-page-content a {
    transition: all 0.3s ease-in-out;
}

.usc-page-content a:hover {
    text-decoration: none !important;
    color: var(--secondary-color) !important;
}

.usc-page-content img {
    border-radius: 20px;
    width: 100%;
}

.usc-page-content iframe {
    border-radius: 20px;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

.usc-page-content h1 {
    font-family: var(--font-os);
    font-size: clamp(28px, 4vw, 45px);
    line-height: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: #212529;
    margin: 0 0 0.75em;
}

.usc-page-content h2 {
    font-family: var(--font-os);
    font-size: clamp(22px, 3.2vw, 36px);
    line-height: clamp(30px, 4.2vw, 46px);
    font-weight: 400;
    color: #212529;
    margin: 0 0 0.75em;
}

.usc-page-content h3 {
    font-family: var(--font-os);
    font-size: clamp(25px, 2.6vw, 30px);
    line-height: clamp(30px, 3.4vw, 38px);
    font-weight: 400;
    color: #212529;
    margin: 0 0 0.65em;
}

.usc-page-content h4 {
    font-family: var(--font-os);
    font-size: clamp(16px, 2.2vw, 24px);
    line-height: clamp(24px, 3vw, 34px);
    font-weight: 400;
    color: #212529;
    margin: 0 0 0.6em;
}

.usc-page-content h5 {
    font-family: var(--font-os);
    font-size: clamp(14px, 1.8vw, 20px);
    line-height: clamp(22px, 2.6vw, 30px);
    font-weight: 400;
    color: #212529;
    margin: 0 0 0.5em;
}

.usc-page-content h6 {
    font-family: var(--font-os);
    font-size: clamp(13px, 1.5vw, 18px);
    line-height: clamp(20px, 2.2vw, 28px);
    font-weight: 400;
    color: #212529;
    margin: 0 0 0.5em;
}

.usc-page-content p {
    font-family: var(--font-mr);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: clamp(24px, 2.4vw, 30px);
    font-weight: 400;
    color: #525252;
    margin: 0 0 1.25em;
}

.usc-page-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25em;
    gap: 0 !important;
}

.usc-page-content ul li {
    font-family: var(--font-mr);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: clamp(24px, 2.4vw, 30px);
    font-weight: 400;
    color: #525252;
    padding-left: 1.4em;
    position: relative;
    margin-bottom: 0.45em;
}

.usc-page-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: clamp(9px, 1.1vw, 12px);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #555;
}

.usc-page-content ul ul {
    margin: 0.4em 0 0.4em 1.2em;
}

.usc-page-content ul ul li::before {
    background-color: transparent;
    border: 2px solid #555;
}

.usc-page-content ol {
    list-style: none;
    counter-reset: ol-counter;
    padding: 0;
    margin: 0 0 1.25em;
}

.usc-page-content ol li {
    font-family: var(--font-mr);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: clamp(24px, 2.4vw, 30px);
    font-weight: 400;
    color: #525252;
    padding-left: 1.6em;
    position: relative;
    margin-bottom: 0.45em;
    counter-increment: ol-counter;
}

.usc-page-content ol li::before {
    content: counter(ol-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-mr);
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 600;
    color: #212529;
    line-height: inherit;
}

.usc-page-content ol ol {
    margin: 0.4em 0 0.4em 1.2em;
}

.usc-page-content blockquote {
    border-left: 4px solid var(--primary-color);
    margin: 1.5em 0;
    padding: 0.75em 1.25em;
    background-color: var(--hover-bg);
    border-radius: 0 var(--card-radius) var(--card-radius) 0;
}

.usc-page-content blockquote p {
    font-family: var(--font-os);
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: clamp(26px, 2.6vw, 34px);
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
}

.usc-page-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity var(--transition);
	text-decoration:underline;
}


body .underline{
	text-decoration:underline;
}

.usc-page-content a:hover {
    opacity: 0.75;
    text-decoration: underline;
}

.usc-page-content strong,
.usc-page-content b {
    font-weight: 700;
    /* color: var(--text-dark); */
}


.usc-page-content small {
    font-size: clamp(12px, 1.1vw, 14px);
    color: var(--text-muted);
}

.usc-page-content mark {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 0 3px;
    border-radius: 2px;
}

.usc-page-content code {
    font-family: monospace;
    font-size: clamp(13px, 1.2vw, 15px);
    background: #f4f4f4;
    border-radius: var(--card-radius);
    padding: 2px 6px;
}

.usc-page-content pre {
    font-family: monospace;
    font-size: clamp(13px, 1.2vw, 15px);
    background: #f4f4f4;
    border-radius: var(--card-radius);
    padding: 1em 1.25em;
    overflow-x: auto;
    line-height: 1.6;
}

.usc-page-content hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2em 0;
}

.usc-page-content table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-mr);
    font-size: clamp(14px, 1.3vw, 16px);
    color: #525252;
    margin: 0 0 1.25em;
    border: 1px solid #000;
}

.usc-page-content table th {
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
    padding: 10px 14px;
    border-bottom: 2px solid var(--primary-color);
}

.usc-page-content table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-color);
}

.usc-page-content table tr:last-child td {
    border-bottom: none;
}

.usc-page-content .para-2 {
    font-weight: 600;
    color: #2b2b2b;
    font-size: clamp(18px, 1.6vw, 24px);
}


/* ============================================
   UTILITY — FONT FAMILY
   ============================================ */

.ff-mr,
.usc-page-content .ff-mr {
    font-family: 'Manrope', sans-serif;
}

.ff-os,
.usc-page-content .ff-os {
    font-family: 'Old Standard TT', serif;
}


/* ============================================
   UTILITY — BACKGROUND & COLOR
   ============================================ */
a {
    transition: 0.25s;
}

.color-2b {
    color: #2b2b2b;
}

.p-bg {
    background-color: var(--primary-color);
}

.s-bg {
    background-color: var(--secondary-color);
}

.p-color,
.usc-page-content .p-color {
    color: var(--primary-color);
}

.s-color,
.usc-page-content .s-color {
    color: var(--secondary-color);
}

.g-color {
    color: #525252;
}

.g-link-color a {
    color: #525252;
}


.b-color {
    color: #000;
}

.ph-color,
.sh-color {
    transition: color 0.2s ease;
}

.sh-color:hover {
    color: var(--secondary-color) !important;
}

.ph-color:hover {
    color: var(--primary-color) !important;
}

.p-link-color a {
    color: var(--primary-color) !important;
    transition: 0.25s;
}

.s-link-color a {
    color: var(--secondary-color) !important;
    transition: 0.25s;
}

.sl-hover a:hover {
    color: var(--secondary-color) !important;
}

.pl-hover a:hover {
    color: var(--primary-color) !important;
}

.no-underline a {
    text-decoration: underline;
}

/* ============================================
   UTILITY — FONT SIZE  (Base: 1920px)
   ============================================ */

.fs-97,
.usc-page-content .fs-97 {
    font-size: 97px;
}

.fs-60,
.usc-page-content .fs-60 {
    font-size: 60px;
}

.fs-45,
.usc-page-content .fs-45 {
    font-size: 45px;
}

.fs-40,
.usc-page-content .fs-40 {
    font-size: 40px;
}

.fs-30,
.usc-page-content .fs-30 {
    font-size: 30px;
}

.fs-36,
.usc-page-content .fs-36 {
    font-size: 36px;
}

.fs-24,
.usc-page-content .fs-24 {
    font-size: 24px;
}

.fs-22,
.usc-page-content .fs-22 {
    font-size: 22px;
}

.fs-20,
.usc-page-content .fs-20 {
    font-size: 20px;
}

.fs-18,
.usc-page-content .fs-18 {
    font-size: 18px;
}

.fs-16,
.usc-page-content .fs-16 {
    font-size: 16px;
}

.fs-14,
.usc-page-content .fs-14 {
    font-size: 14px;
}


/* ============================================
   UTILITY — LINE HEIGHT
   ============================================ */

.lh-100 {
    line-height: 1;
}

.lh-120 {
    line-height: 1.2;
}

.lh-150 {
    line-height: 1.5;
}


/* ============================================
   UTILITY — FONT WEIGHT
   ============================================ */

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600,
.usc-page-content .fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}


/* ============================================
   UTILITY — MISC
   ============================================ */

.g-flex>div {
    display: flex;
}

figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.w-narrow {
    width: 100%;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.w-small {
    width: 100%;
    max-width: 978px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}


/* ============================================
   HEADER — TOP BAR
   ============================================ */

.header-top {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 6px 20px;
    letter-spacing: 0.02em;
    max-height: 60px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}

.header-top-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease-in-out;
}

.header-top-link:hover {
    color: var(--secondary-color);
}

.header-top-link i {
    color: var(--secondary-color);
    background-color: var(--primary-color);
    border-radius: 50%;
    font-size: 20px;
    transform: translateX(0px);
    transition: all 0.2s ease-in-out;
}

.header-top-link:hover i {
    transform: translateX(4px);
}


/* ============================================
   HEADER — MAIN ROW (header-mid)
   ============================================ */

.site-header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.site-header.scrolled .header-top {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

.site-header .header-mid {
    min-height: 110px;
    padding: 16px 40px;
}

.site-header.scrolled .header-mid {
    min-height: 80px;
}


/* ============================================
   HEADER — LEFT: SEARCH + PHONE
   ============================================ */

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 0 0 auto;
}

/* Search form — WordPress get_search_form() output */
.header-left .search-form {
    display: flex;
    align-items: center;
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    background: var(--secondary-color);
    padding: 5px 6px 5px 16px;
    gap: 6px;
    width: 300px;
}

.header-left .search-form label {
    flex: 1;
    margin: 0;
    display: flex;
    align-items: center;
    min-width: 0;
}

.header-left .search-form .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header-left .search-form input[type="search"],
.header-left .search-form .search-field {
    border: none;
    outline: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #333;
    background: transparent;
    width: 100%;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}

.header-left .search-form:focus-within {
    border: #99000080 2px solid;
}

.header-left .search-form input[type="search"]::placeholder,
.header-left .search-form .search-field::placeholder {
    color: #000;
}

.header-left .search-form button[type="submit"],
.header-left .search-form .search-submit {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: background-color 0.2s ease;
    padding: 0;
    font-size: 0;
    line-height: 0;
}

.header-left .search-form button[type="submit"]::before,
.header-left .search-form .search-submit::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 13px;
    line-height: 1;
    color: var(--primary-color);
}

.header-left .search-form button[type="submit"]:hover,
.header-left .search-form .search-submit:hover {
    background-color: #e6b800;
}

/* Phone */
.header-left a[href^="tel"] {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.header-left a[href^="tel"] i {
    color: var(--primary-color);
    font-size: 15px;
}

.header-left a[href^="tel"]:hover {
    color: var(--primary-color);
}


/* ============================================
   HEADER — CENTER: LOGO
   ============================================ */

.header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.header-logo a {
    display: flex;
    align-items: center;
}

.header-logo img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}


/* ============================================
   HEADER — RIGHT: HEADER IMAGE
   ============================================ */

.header-img img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}


/* ============================================
   HEADER — DIVIDER
   ============================================ */

.header-bottom-divider,
.footer-divider {
    opacity: 1;
    background-color: #cdcdcd;
}

.header-bottom-divider {
    margin: 0 40px;
}


/* ============================================
   HEADER — NAVIGATION (header-bottom)
   ============================================ */

.header-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 30px 7px;
    gap: 6px;
    position: relative;
}

/* Main UL */
.header-bottom .primary-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* All submenu ULs */
.header-bottom .primary-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Level 1 LI */
.header-bottom .primary-menu>li {
    position: relative;
}

/* Level 1 links */
.header-bottom .primary-menu>li>a {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    text-decoration: none;
    padding: 14px 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.header-bottom .primary-menu>li>a:hover {
    color: var(--primary-color);
}

/* Active states */
.header-bottom .primary-menu>li.current-menu-item>a,
.header-bottom .primary-menu>li.current-menu-ancestor>a {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom-color: var(--primary-color);
}

.header-bottom .primary-menu>li.current-menu-item.menu-item-has-children>a::after,
.header-bottom .primary-menu>li.current-menu-ancestor.menu-item-has-children>a::after {
    color: var(--primary-color);
}

/* Level 1 dropdown arrow */
.header-bottom .primary-menu>li.menu-item-has-children>a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9px;
    color: #888;
    margin-left: 3px;
    transition: transform 0.2s ease;
}

.header-bottom .primary-menu>li.menu-item-has-children:hover>a::after {
    transform: rotate(-180deg);
    color: var(--primary-color);
}




/* ============================================
   HEADER — DROPDOWNS
   ============================================ */

/* Level 2 dropdown */
.header-bottom .primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 6px 0;
}

.header-bottom .primary-menu>li:hover>.sub-menu {
    display: block;
}

.header-bottom .primary-menu .sub-menu li {
    position: relative;
}

.header-bottom .primary-menu .sub-menu li a {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    padding: 10px 24px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: 0.2s ease;
    /* white-space: nowrap; */
}

.header-bottom .primary-menu .sub-menu li a:hover {
    background-color: #fafafa;
    color: var(--primary-color);
    padding-left: 24px;
    padding-right: 20px;
}

.header-bottom .primary-menu .sub-menu li.current-menu-item>a,
.header-bottom .primary-menu .sub-menu li.current-menu-ancestor>a,
.header-bottom .primary-menu .sub-menu li.current_page_item>a,
.header-bottom .primary-menu .sub-menu li.current_page_ancestor>a {
    background-color: #fafafa;
    color: var(--primary-color);
    font-weight: 600;
    padding-left: 24px;
    padding-right: 20px;
}

.header-bottom .primary-menu .sub-menu li+li {
    border-top: 1px solid #f5f5f5;
}

/* Level 2 arrow (for items with level 3) */
.header-bottom .primary-menu .sub-menu li.menu-item-has-children>a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9px;
    color: #aaa;
    margin-left: auto;
    padding-left: 10px;
}

.header-bottom .primary-menu .sub-menu li.current-menu-item.menu-item-has-children>a::after,
.header-bottom .primary-menu .sub-menu li.current-menu-ancestor.menu-item-has-children>a::after,
.header-bottom .primary-menu .sub-menu li.current_page_item.menu-item-has-children>a::after,
.header-bottom .primary-menu .sub-menu li.current_page_ancestor.menu-item-has-children>a::after {
    color: var(--primary-color);
}

/* Level 3 dropdown */
.header-bottom .primary-menu .sub-menu .sub-menu {
    top: -6px;
    left: 100%;
    border-top: 3px solid var(--secondary-color);
    border-radius: 0 6px 6px 6px;
}

.header-bottom .primary-menu .sub-menu li:hover>.sub-menu {
    display: block;
}


/* ============================================
   HEADER — CTA BUTTON
   ============================================ */

.header-btn {
    background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 12px 30px;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 10px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
    display: inline-block;
    align-self: center;
}

.header-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-1px);
}


/* ============================================
   HEADER — HAMBURGER TOGGLE (hidden on desktop)
   ============================================ */

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================
   FOOTER
   ============================================ */

footer {
    padding: 75px 13.1vw 35px;
    border-top: 1px solid #cdcdcd;
}

.footer-top ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
    gap: 8px;
    display: flex;
    flex-direction: column;
}

.footer-top ul li a {
    color: #525252;
    text-decoration: none;
}

.footer-top ul li a:hover {
    color: var(--primary-color);
}

.social a {
    height: 26px;
    width: 26px;
    text-decoration: none;
    transition: 0.25s ease;
}

.social a i {
    font-size: 13px;
    transition: 0.25s ease;
}

.social a:hover,
.social a:hover i {
    background-color: var(--primary-color);
    color: #fff;
}

.footer-bottom a {
    color: var(--primary-color);
}

.footer-bottom a:hover {
    color: var(--primary-color);
    opacity: 0.6;
}

.footer-bottom-pages a {
    line-height: 1;
}

.footer-bottom-pages a:not(:last-child) {
    padding-right: 5px;
    border-right: 1px solid var(--primary-color);
}

.designed_by {
    color: #090909;
}

.gtranslate_wrapper a {
    color: #686868;
}

.gtranslate_wrapper a:hover {
    opacity: 1;
    color: var(--primary-color);
}

#scrollToTop {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3f0000, #b81010);
    color: var(--border-color);
    font-size: 17px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

#scrollToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollToTop .arrow {
    position: relative;
    z-index: 2;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring__circle {
    stroke: #fff;
    stroke-linecap: round;
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    transition: stroke-dashoffset 0.2s linear;
    opacity: 1;
}

#scrollToTop:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #b81010, #3f0000);
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.22),
        0 0 0 4px rgba(255, 255, 255, 0.08);
}

@media (max-width: 575.98px) {
    #scrollToTop {
        right: 15px;
        bottom: 40px;
    }
}

/* ============================================
   HOME PAGE — BODY SECTIONS
   ============================================ */

.banner {
    height: 800px;
    border-radius: 50px;
}

.banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.banner-con {
    padding: 0 32px;
}

.banner .wp-block-group__inner-container {
/*     padding-bottom: 35px; */
}


.banner-heading, .banner-subheading{
	text-shadow: 2px 5px 5px rgba(0, 0, 0, 0.58), 0 0 10px rgba(0,0,0,0.6);
}

.fancy-divider {
    display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  max-width: 60%;
}

@media screen and (max-width:1200px){
	.fancy-divider {
	max-width: 90%;
	}
}

.fancy-divider::before,
.fancy-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #c9a84c, #f0c040);
	filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.37)) drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.07));
}

.fancy-divider::after {
    background: linear-gradient(to left, transparent, #c9a84c, #f0c040);
}

.fancy-divider img {
    width: 120px;
    height: auto;
    display: block;
    flex-shrink: 0;
	filter:drop-shadow(2px 5px 2px rgba(0, 0, 0, 0.58)) drop-shadow(0px 0px 10px rgba(0, 0, 0, 0));
}


.btn-1 a {
    background-color: var(--secondary-color);
    font-size: 16px;
    color: var(--primary-color);
    padding: 10px 30px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-1 a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.home-sec2-img img {
    border-radius: 20px;
}

.home-sec2-in-con>div {
    gap: 60px;
}

.h-s2-heading {
    color: var(--primary-color) !important;
}

.heading {
    color: var(--primary-color) !important;
}

.h-s2-icon {
    border-radius: 50%;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.h-s2-icon img {
    height: 50% !important;
    width: auto !important;
}

.h-s2-row {
    gap: 30px;
}

.h-s2-row>div {
    align-items: flex-start;
    gap: 20px;
}

.h-s3 {
    padding: 115px 0 120px;
}

.badge-grid {
    border-radius: 20px;
    border: 1px solid #c5c5c5;
    padding: 30px;
    gap: 45px 0;
}

.badge-grid>div {
    gap: 0 1rem;
}

.badge-grid figure {
    height: 100px;
    width: 100px;
    background-color: #fff6ce;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 20px;
}

.badge-grid figure img {
    width: auto !important;
    height: 75% !important;
}

.hs4-con {
    padding: 125px 0;
}

.h-section {
    padding: 125px 0;
}

.event-image {
    height: 185px;
    width: 330px;
    flex-shrink: 0;
}

.event-image img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;

}

div.event-row:nth-child(2) {
    padding-top: 0;
}

.event-row {
    gap: 0 50px;
    padding: 45px 0;
    align-items: flex-start !important;
}

.event-row:not(:last-child) {
    border-bottom: 1px solid #343434;
}


.event-row:last-child {
    padding-bottom: 0;
}

.event-row:first-of-type {
    padding-top: 0 !important;
}

.submenu-toggle {
    display: none;
    /* hidden on desktop */
}

.page-top>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-divider {
    border: none !important;
    background-color: var(--primary-color);
    width: 120px;
}

.yoast-breadcrumbs a {
    text-decoration: none;
    color: var(--primary-color);
}

.yoast-breadcrumbs a:hover {
    color: black;
    opacity: 0.8;
    transition: 0.3s ease;
}

.au-s1-text {
    color: #2b2b2b;
}

.au-s1-img {
    height: 330px;
}

.au-s1-img img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

.cr-20 {
    border-radius: 20px;
}

.r-20 {
    border-radius: 20px;
}

.r-20>img {
    border-radius: 20px;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.py-125 {
    padding-top: 125px;
    padding-bottom: 125px;
}


.core-value-icons {
    height: 50px;
}

.core-value-icons img {
    height: 100% !important;
    width: auto;
}

.core-value-card-grid {
    max-width: 1053px;
    margin: 0 auto;
    gap: 28px 20px;
}

.core-value-card {
    max-width: 330px;
}

/* Welcome */

.w-s2-sh {
    color: #2b2b2b;
}

.bh a:hover {
    color: black !important;
}

.oh a:hover {
    opacity: 0.6;
}

.w-s2-g>div {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member__header {
    background-color: #fff6ce;
}

.other-details h2,
.other-details h3,
.other-details h4,
.other-details h5,
.other-details h6 {
    font-size: 24px;
    font-family: "Old Standard TT", serif;
    color: #000;
}

.other-details ul {
    margin: 0;
}

.other-details ul {
    list-style: circle;
    margin-bottom: 20px;
}

.other-details ul li::marker {
    font-size: 24px;
    line-height: 1;
}

.team_member_hr {
    background-color: #d0d0d0;
    opacity: 1 !important;
}

.team-member-img {
    object-fit: cover;
    height: 400px;
    border-radius: 20px;
    max-width: 350px;
    align-self: center;
}

.w-950 {
    max-width: 950px;
    margin: 0 auto;
}

.residensial_img {
    background-color: #e6e6e6;
    border-radius: 20px;
    height: 225px;
}

.residensial_img img {
    width: 75%;
}

.right-arrow {
    width: fit-content;
}

.right-arrow::after {
    content: '\f061';
    color: inherit !important;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 16px;
    padding-left: 10px;
    transition: 0.25s;
}

.right-arrow:hover::after {
    color: var(--primary-color) !important;
}

.rc-sidebar .sidebar-pagelist {
    margin: 0 !important;
    padding-left: 18px;
    list-style-type: circle;
}

.rc-sidebar .sidebar-pagelist li::marker {
    color: white;
    font-size: 20px;
}

.rc-sidebar .sidebar-pagelist li a {
    color: white;
    text-decoration: none;
}

.rc-sidebar .sidebar-pagelist li.current-menu-item a {
    color: var(--secondary-color);
}

.social-icon-box {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 20px;
}

.social-icon-box:hover {
    transform: scale(1.07);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.social-icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.residential-com-img {
    height: 420px;
}

.residential-com-img img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

.cga-ui-img,
.cga-ep-img {
    height: 160px;
    margin-top: 0;
    margin-bottom: 8px;
}

.cga-sfir-img {
    height: 400px;
}

.cga-sfir-img img,
.cga-ui-img img,
.cga-ep-img img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

.img-con-mi {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 0 24.5px rgba(0, 0, 0, 0.07);
}

.mi-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mi-list,
.s-list-style {
    list-style: circle;
}

.mi-list li::marker,
.s-list-style li::marker {
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    color: var(--secondary-color);
}

.sl-row-img {
    height: 260px;
}

.sl-row-img img {
    height: 100% !important;
    width: auto;
    object-fit: cover;
}

/* Team members filter start */
/* ----- Layout ----- */
.team-members-wrap {
    width: 100%;
}

/* ----- Filter sidebar ----- */
.team-filter {
    padding-right: 1.5rem;
}

/* .filter-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .75rem;
} */

.filter-heading--az {
    margin-top: 1.75rem;
}

/* Category list */
.team-cat-filter li {
    margin-bottom: .5rem;
}

.team-cat-link {
    display: block;
    text-decoration: none;
    font-size: 1.5rem;
}

.team-cat-link.is-active {
    font-weight: 600;
}

.team-cat-link:hover {
    color: var(--secondary-color);
}

/* A–Z letter grid */
.team-az-filter {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .35rem;
}

.az-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.az-letter.is-active,
.az-letter.is-active:hover {
    background-color: #000000;
    color: #fff;
}

.az-letter:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.az-letter--disabled {
    opacity: .35;
    pointer-events: none;
    cursor: default;
}

/* ----- Card ----- */
.team-card {
    height: 100%;
}

/* Image */
.team-card__img-wrap {
    width: 100%;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.team-card__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.team-card__img-wrap--placeholder {
    height: 400px;
    background: #e9e9e9;
}

/* Give Back Css */

.give-block-card {
    max-width: 844px;
    padding: 20px 30px;
    border-radius: 20px;
    background: #fff;
    margin-top: -40px !important;
}



.give-accordion-section {
    background-color: #e6e6e6;
}


/* Custom Accordion */

.custom-accordion .accordion-heading {
    margin-bottom: 0;
}

.editor-styles-wrapper .custom-accordion .wp-block-accordion-panel {
    height: auto !important;
    opacity: 1 !important;
    overflow: visible !important;
    padding: 0 20px 20px !important;
}

.editor-styles-wrapper .custom-accordion .wp-block-accordion-item {
    filter: none !important;
}

.editor-styles-wrapper .custom-accordion .wp-block-accordion-heading__toggle-icon::before {
    color: #2b2b2b !important;
}

.custom-accordion.wp-block-accordion {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-inline: auto;
    width: 100%;
}

.custom-accordion .wp-block-accordion-item {
    border-radius: 20px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    transition: filter 0.3s ease;
}

.custom-accordion .wp-block-accordion-item.is-open {
    filter: drop-shadow(0 0 9px rgba(0, 0, 0, 0.19));
}

.custom-accordion .wp-block-accordion-heading__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    padding: 14px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 12px;
    text-align: left;
    text-decoration: none !important;
}

.custom-accordion .wp-block-accordion-heading__toggle:hover,
.custom-accordion .wp-block-accordion-heading__toggle:focus {
    text-decoration: none !important;
}

.custom-accordion .wp-block-accordion-heading__toggle-title {
    text-decoration: none !important;
    color: #2b2b2b;
    transition: color 0.25s ease;
    flex: 1;
    font-weight: 600;
    font-size: clamp(16px, 2.5vw, 22px);
}

.custom-accordion .wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title,
.custom-accordion .wp-block-accordion-heading__toggle:focus .wp-block-accordion-heading__toggle-title {
    text-decoration: none !important;
}

.custom-accordion .wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-title {
    color: var(--primary-color);
}

.custom-accordion .wp-block-accordion-heading__toggle-icon {
    font-size: 0;
    line-height: 0;
    color: transparent;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Cancel any theme transform on the wrapper */
    transform: none !important;
}

/* Also cancel the theme rule that targets this exact path */
.wp-block-accordion-item.is-open>.wp-block-accordion-heading .wp-block-accordion-heading__toggle-icon {
    transform: none !important;
}

.custom-accordion .wp-block-accordion-heading__toggle-icon::before {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    color: #2b2b2b;
    display: block;
    transition: color 0.25s ease;
    /* no transform ever */
    transform: none !important;
}

.custom-accordion .wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon::before {
    color: var(--primary-color);
    transform: none !important;
}

.custom-accordion .wp-block-accordion-panel {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, padding 0.32s ease;
    padding: 0 20px;
}

.custom-accordion .wp-block-accordion-item.is-open .wp-block-accordion-panel {
    opacity: 1;
    padding: 0 20px 20px;
    /* height is driven by JS — do not set auto here */
}

.custom-accordion .wp-block-accordion-panel p,
.custom-accordion .wp-block-accordion-panel .accordion-Description {
    color: #555555;
    margin-top: 0;
}

.custom-accordion .wp-block-accordion-panel img {
    border-radius: 20px;
    /* aspect-ratio: 1 / 1; */
    object-fit: cover;
    width: 100%;
    display: block;
}

.custom-accordion figure {
    margin: 10px 0 0 0;
}

.custom-accordion .wp-block-accordion-panel .wp-block-media-text {
    gap: 20px;
    align-items: flex-start;
}

.custom-accordion .wp-block-accordion-panel .wp-block-media-text__media {
    border-radius: 20px;
    overflow: hidden;
}

.custom-accordion .wp-block-accordion-panel .wp-block-media-text__media img {
    border-radius: 20px;
    /* aspect-ratio: 1 / 1; */
    object-fit: cover;
}

.wp-block-accordion-item.is-open>.wp-block-accordion-heading .wp-block-accordion-heading__toggle-icon {
    transform: none !important;
}


/* Newsletter Archive */

.newsletter-archives-section {
    padding: 60px 0 80px;
}

.newsletter-archives-container {
    max-width: 1470px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.newsletter-archive-card {
    max-width: 330px;
    border-radius: 20px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    padding: 22px 22px 28px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.newsletter-archive-card:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.newsletter-archive-card__year-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.newsletter-archive-card__icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    flex-shrink: 0;
}

.newsletter-archive-card__year {
    font-size: 24px;
    line-height: 36px;
    color: #2b2b2b;
    font-weight: 600;
    font-family: var(--font-mr);
}

.newsletter-archive-card__months li+li {
    margin-top: 4px;
}

.newsletter-archive-card__month-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(15px, 2.5vw, 18px);
    line-height: clamp(28px, 4vw, 35px);
    color: var(--primary-color);
    font-weight: 500;
    font-family: var(--font-mr);
    text-decoration: none;
    transition: color 0.2s ease;
}

.newsletter-archive-card__month-icon {
    position: relative;
    width: 10px;
    height: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: color 0.2s ease;
}

.newsletter-archive-card__month-icon i {
    position: absolute;
    font-size: 13px;
    color: inherit;
    transition: opacity 0.2s ease;
}

.newsletter-archive-card__month-icon--hover {
    opacity: 0;
}

.newsletter-archive-card__month-link:hover {
    color: #550101;
}

.newsletter-archive-card__month-link:hover .newsletter-archive-card__month-icon {
    color: var(--primary-color);
}

.newsletter-archive-card__month-link:hover .newsletter-archive-card__month-icon--default {
    opacity: 0;
}

.newsletter-archive-card__month-link:hover .newsletter-archive-card__month-icon--hover {
    opacity: 1;
}

/* Search Page */

.usc-search-page {
    background: #faf8f4;
}

.usc-search-hero {
    padding: 42px 0 28px;
}

.usc-search-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.usc-search-hero__content,
.usc-search-hero__panel,
.usc-search-card,
.usc-search-empty__card,
.usc-search-page .posts-navigation a {
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 45px rgba(43, 23, 10, 0.08);
}

.usc-search-hero__content {
    padding: 38px 42px;
    border-radius: 28px;
    background: #ffffff;
    color: #1f1f1f;
}

.usc-search-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    letter-spacing: 0.16em;
    font-size: 13px;
    color: var(--primary-color);
}

.usc-search-hero__eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background-color: var(--secondary-color);
}

.usc-search-hero__title {
    margin: 0 0 14px;
    font-size: clamp(36px, 4.6vw, 64px);
    line-height: 1;
    color: #181818;
}

.usc-search-hero__description {
    margin: 0;
    max-width: 680px;
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.75;
    color: #5b5b5b;
}

.usc-search-hero__breadcrumbs {
    margin-top: 24px;
    color: #5b5b5b;
}

.usc-search-hero__breadcrumbs a {
    color: #5b5b5b;
}

.usc-search-hero__breadcrumbs a:hover {
    color: var(--primary-color) !important;
}

.usc-search-hero__panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 30px 28px;
    border-radius: 28px;
    background: #ffffff;
}

.usc-search-hero__panel-label {
    color: #2b2b2b;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.usc-search-hero__panel .search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px 10px 18px;
    background: #f5f3ef;
    border: 1px solid #dfd9cf;
    border-radius: 999px;
}

.usc-search-hero__panel .search-form label {
    flex: 1;
    min-width: 0;
    margin: 0;
}

.usc-search-hero__panel .search-field {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #2b2b2b;
    font-family: var(--font-mr);
    font-size: 15px;
}

.usc-search-hero__panel .search-field::placeholder {
    color: #6a6154;
}

.usc-search-hero__panel .search-submit {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: transparent;
    position: relative;
}

.usc-search-hero__panel .search-submit::before {
    content: "\f002";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    color: #fff;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usc-search-hero__panel .search-submit:hover {
    background: #750000;
}

.usc-search-results {
    padding-top: 12px;
}

.usc-search-results__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.usc-search-results__summary {
    color: #2b2b2b;
    font-size: 18px;
    font-weight: 600;
}

.usc-search-results__query {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #f1ede6;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.usc-search-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e3ddd4;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.usc-search-card:hover {
    transform: translateY(-5px);
    border-color: rgba(153, 0, 0, 0.12);
    box-shadow: 0 20px 40px rgba(43, 23, 10, 0.1);
}

.usc-search-card__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #ece7de;
}

.usc-search-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.usc-search-card:hover .usc-search-card__media img {
    transform: scale(1.04);
}

.usc-search-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: clamp(48px, 8vw, 72px);
    color: var(--primary-color);
    background: #f1ede6;
}

.usc-search-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 24px 26px;
}

.usc-search-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
    color: #6b6b6b;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.usc-search-card__type {
    color: var(--primary-color);
    font-weight: 700;
}

.usc-search-card__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.28);
}

.usc-search-card__title {
    margin: 0 0 14px;
    font-size: clamp(25px, 2vw, 33px);
    line-height: 1.12;
}

.usc-search-card__title a {
    color: #181818;
    text-decoration: none;
}

.usc-search-card__title a:hover {
    color: var(--primary-color) !important;
}

.usc-search-card__excerpt {
    margin: 0 0 20px;
    color: #5b5b5b;
    font-size: 16px;
    line-height: 1.8;
}

.usc-search-card__footer {
    margin-top: auto;
}

.usc-search-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.usc-search-card__link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1ede6;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.usc-search-card__link:hover span {
    transform: translateX(2px);
    background: #e7e0d5;
}

.usc-search-empty {
    display: flex;
    justify-content: center;
}

.usc-search-empty__card {
    width: 100%;
    max-width: 720px;
    padding: 46px 34px;
    border-radius: 28px;
    background: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.usc-search-empty__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #f1ede6;
    color: var(--primary-color);
    font-family: var(--font-os);
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usc-search-empty__title {
    margin-bottom: 12px;
    color: #1d1d1d;
    font-size: clamp(32px, 4vw, 48px);
}

.usc-search-empty__text {
    max-width: 520px;
    margin: 0 auto 24px;
    color: #5c5c5c;
}

body .usc-search-empty__home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--primary-color) !important;
    color: #fff !important;
    text-decoration: none;
}

body .usc-search-empty__home:hover {
    color: var(--primary-color) !important;
    background: var(--secondary-color) !important;
}

.usc-search-page .posts-navigation {
    margin-top: 34px;
}

.usc-search-page .posts-navigation .nav-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.usc-search-page .posts-navigation a {
    display: block;
    padding: 16px 20px;
    border-radius: 18px;
    background: #fff;
    color: #1f1f1f;
    font-family: var(--font-mr);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.usc-search-page .posts-navigation a:hover {
    border-color: rgba(153, 0, 0, 0.2);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}


.grp-1, .grp-2{
	width:50%;
}




/* Responsive image heights */
@media (max-width: 991.98px) {

    .usc-search-hero__inner {
        grid-template-columns: 1fr;
    }

    .team-card__img,
    .team-card__img-wrap--placeholder {
        height: 320px;
    }
}

@media (max-width: 767.98px) {

    .newsletter-archives-section {
        padding: 40px 0 60px;
    }

    .usc-search-hero {
        padding-top: 28px;
    }

    .usc-search-hero__content,
    .usc-search-hero__panel,
    .usc-search-empty__card {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .usc-search-results__meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .usc-search-card__body {
        padding: 20px 18px 22px;
    }

    .newsletter-archive-card {
        max-width: 100%;
        padding: 20px;
    }

    .newsletter-archive-card__year {
        font-size: 22px;
        line-height: 30px;
    }

    .newsletter-archive-card__month-link {
        line-height: 32px;
    }

    .team-card__img,
    .team-card__img-wrap--placeholder {
        height: 300px;
        width: 70%;
    }

    .team-filter {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

/* Radius utility (matches r-20 class referenced in brief) */
.r-20 {
    border-radius: 20px;
}

/* Name */
.team-card__name {
    margin-bottom: .25rem;
    color: #000;
    line-height: 1.2;
}

/* Position */
.team-card__position {
    margin-bottom: .5rem;
}

/* Divider */
.team-card__divider {
    border: none;
    border-top: 1px solid #d0d0d0;
    margin: .75rem 0;
}

/* Email row */
.team-card__email-wrap {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.team-load-more-btn {
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'old standard tt', serif;
    margin-top: 2rem;
    padding: 0;
}

.team-load-more-btn:hover {
    color: var(--secondary-color);
}

/* Team members filter end */

.w-fig-fit img {
    width: 100% !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- ≤992px (lg / tablet) ---- */
@media (max-width: 992px) {

    .header-bottom .primary-menu>li:not(.open):hover>.sub-menu {
        display: none !important;
    }

    .header-bottom .primary-menu li.open>.sub-menu {
        display: block !important;
    }

    .fs-97,
    .usc-page-content .fs-97 {
        font-size: 50px;
    }

    .fs-60,
    .usc-page-content .fs-60 {
        font-size: 32px;
    }

    .fs-45,
    .usc-page-content .fs-45 {
        font-size: 24px;
    }

    .fs-30,
    .usc-page-content .fs-30 {
        font-size: 20px;
    }

    .fs-24,
    .usc-page-content .fs-24 {
        font-size: 17px;
    }

    .fs-22,
    .usc-page-content .fs-22 {
        font-size: 16px;
    }

    .fs-20,
    .usc-page-content .fs-20 {
        font-size: 15px;
    }

    .fs-18,
    .usc-page-content .fs-18 {
        font-size: 14px;
    }

    .fs-16,
    .usc-page-content .fs-16 {
        font-size: 13px;
    }

    .site-header .header-mid {
        padding: 14px 30px;
        flex-wrap: wrap;
    }

    .header-left {
        order: 2;
        width: 100%;
        justify-content: space-between;
        padding-top: 6px;
    }

    .header-img {
        order: 1;
    }

    .header-logo {
        order: 1;
    }

    .header-bottom {
        padding-bottom: 4px;
    }

    .header-bottom .primary-menu>li>a {
        font-size: 13px;
        padding: 12px 10px;
    }

    /* Make parent li a flex row so link + arrow sit side by side */
    .header-bottom .primary-menu li.menu-item-has-children {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    /* Link takes all space except the arrow */
    .header-bottom .primary-menu li.menu-item-has-children>a {
        flex: 1;
    }

    /* The arrow button */
    .submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--primary-color);
        flex-shrink: 0;
        border-radius: 6px;
        transition: background 0.2s ease;
    }

    .submenu-toggle:hover {
        background-color: rgba(153, 0, 0, 0.08);
    }

    .submenu-toggle i {
        font-size: 12px;
        transition: transform 0.2s ease;
        pointer-events: none;
    }

    /* Sub-menu takes full width below the flex row */
    .header-bottom .primary-menu li.menu-item-has-children>.sub-menu {
        width: 100%;
        flex-basis: 100%;
    }

    /* Remove the old ::after arrow from parent links on mobile
       since the button replaces it */
    .header-bottom .primary-menu>li.menu-item-has-children>a::after {
        display: none;
    }

    .header-bottom-divider {
        margin: 0 30px;
    }

    footer {
        padding: 50px 60px 30px;
    }

    .footer-top {
        gap: 40px 0;
    }

    .footer-logo {
        max-width: 180px;
    }

    /* Home */
    .banner {
        height: 600px;
    }

    .banner .wp-block-group__inner-container {
        padding-bottom: 20px;
    }

    .banner .has-background-dim-100 {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.68) 0%, rgba(155, 81, 224, 0) 50%) !important;
    }

    .tree-img {
        width: 120px;
        height: auto;
    }

    .tree-con>div>div {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .h-s3 {
        padding: 80px 0 80px;
    }

    .hs4-con {
        padding: 80px 0;
    }

    .h-section {
        padding: 80px 0;
    }

    .core-value-card-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }

    .core-value-card {
        max-width: none;
    }

    .py-125 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .py-100 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .w-s2-g>div {
        gap: 20px;
    }

    .residential-com-img {
        height: 300px;
    }

    .social-icon-box {
        width: 60px;
        height: 60px;
    }

    .social-icon-box img {
        width: 30px;
        height: 30px;
    }
}


/* ---- ≤767px (mobile nav) ---- */
@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .header-top {
        font-size: 13px;
        padding: 8px 16px;
    }

    .site-header .header-mid {
        padding: 12px 16px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .header-left {
        order: 2;
        width: 100%;
        justify-content: space-between;
    }

    .header-left .search-form {
        width: 160px;
    }

    .header-logo {
        order: 1;
        width: 100%;
    }

    .header-img {
        order: 3;
    }

    .header-img img {
        height: 50px;
    }

    /* Mobile nav — toggled via JS (.active) */
    .header-bottom {
        height: auto;
        overflow: hidden;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0px 16px;
        position: absolute;
        width: 0%;
        background-color: #fff;
        display: flex;
        transition: width 0.2s ease;
    }

    .header-bottom.active {
        width: 100%;
        padding: 10px 20px 16px;
    }

    .header-bottom.active .menu-menu-1-container {
        max-height: calc(100vh - 320px);
        /* overflow-y: auto; */
        width: 100%;
    }

    .header-bottom .primary-menu {
        flex-direction: column;
        width: 100%;
    }

    .header-bottom .primary-menu>li {
        width: 100%;
    }

    .header-bottom .primary-menu>li>a {
        font-size: 15px;
        padding: 12px 0;
        border-top: none;
        width: 100%;
        justify-content: space-between;
    }

    /* Mobile submenus — stacked, no float */
    .header-bottom .primary-menu .sub-menu,
    .header-bottom .primary-menu>li>.sub-menu>li>.sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--secondary-color);
        border-radius: 0;
        padding: 0 0 0 12px;
        margin: 0;
        display: none;
    }

    .header-bottom .primary-menu li.open>.sub-menu {
        display: block;
    }

    /* Disable hover-based dropdowns on mobile */
    .header-bottom .primary-menu li:hover>.sub-menu {
        display: none;
    }

    .header-bottom .primary-menu>li>.sub-menu>li>a,
    .header-bottom .primary-menu>li>.sub-menu>li>.sub-menu>li>a {
        padding: 10px 8px;
        font-size: 14px;
        border-bottom: 1px solid #f5f5f5;
    }

    .header-btn {
        margin-left: 0;
        margin-top: 14px;
    }

    .header-left .search-form {
        padding: 0px 0px 0px 16px;
    }

    .header-bottom-divider {
        margin: 0 20px;
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    footer {
        padding: 40px 20px 10px;
    }

    .footer-top {
        gap: 20px 0;
    }

    .footer-logo {
        max-width: 130px;
    }

    .header-logo a {
        max-width: 75%;
    }

    /* home */
    .banner-con {
        padding: 20px 16px 0;
    }

    .banner {
        height: 400px;
    }

    .banner .wp-block-group__inner-container {
        padding-bottom: 20px;
    }

    .banner .has-background-dim-100 {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.68) 0%, rgba(155, 81, 224, 0) 61%) !important;
    }

    .h-s2-row {
        flex-direction: column;
        gap: 0;
    }

    .tree-img {
        width: 100px;
        height: auto;
    }

    .badge-grid {
        padding: 10px;
        gap: 16px 0;
    }

    .badge-grid figure {
        height: 80px;
        width: 80px;
    }

    .badge-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .event-image {
        height: auto;
        width: 100%;
        flex-shrink: 0;
    }

    .event-row {
        flex-direction: column;
        padding: 28px 0;
        gap: 20px;
    }

    .home-sec2-in-con figure {
        height: fit-content !important;
    }

    .btn-1 a {
        font-size: 14px;
        padding: 8px 24px;
    }

    .hs4-con {
        padding: 50px 0;
    }

    .h-s3 {
        padding: 45px 0 50px;
    }

    .h-section {
        padding: 50px 0;
    }

    .h-s2-icon {
        height: 50px;
        width: 50px;
    }

    .h-s2-row>div {
        gap: 0 12px;
    }

    .core-value-card-grid {
        grid-template-columns: 1fr !important;
    }

    .py-125 {
        padding-top: 5%;
        padding-bottom: 50px;
    }

    .py-100 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .w-narrow,
    .w-small {
        padding-left: 20px;
        padding-right: 20px;
    }

    .w-s2-g>div {
        gap: 10px;
    }

    .team-member-img {
        height: 300px;
        max-width: 250px;
    }

    .other-details h2,
    .other-details h3,
    .other-details h4,
    .other-details h5,
    .other-details h6 {
        font-size: 18px;
    }

    .community-list-grid {
        grid-template-columns: 1fr !important;
    }

    .give-block-card {
        max-width: 90%;
        margin-top: -20px !important;
    }

    .residential-com-img {
        height: 200px;
    }

    .social-icon-box {
        width: 50px;
        height: 50px;
    }

    .social-icon-box img {
        width: 25px;
        height: 25px;
    }

    .sl-row-img {
        height: 220px;

    }

    .sl-row-img figure {
        height: 100%;
    }

}


/* ---- ≤1600px ---- */
@media (max-width: 1600px) {

    .fs-97,
    .usc-page-content .fs-97 {
        font-size: 80px;
    }

    .fs-60,
    .usc-page-content .fs-60 {
        font-size: 50px;
    }

    .fs-45,
    .usc-page-content .fs-45 {
        font-size: 38px;
    }

    .fs-40,
    .usc-page-content .fs-40 {
        font-size: 36px;
    }

    .fs-36,
    .usc-page-content .fs-36 {
        font-size: 32px;
    }

    .fs-30,
    .usc-page-content .fs-30 {
        font-size: 26px;
    }

    .fs-24,
    .usc-page-content .fs-24 {
        font-size: 19px;
    }

    .fs-22,
    .usc-page-content .fs-22 {
        font-size: 20px;
    }

    .fs-20,
    .usc-page-content .fs-20 {
        font-size: 18px;
    }

    .fs-18,
    .usc-page-content .fs-18 {
        font-size: 17px;
    }

    .fs-16,
    .usc-page-content .fs-16 {
        font-size: 15px;
    }
}

/* ---- ≤1200px (xl) ---- */
@media (max-width: 1200px) {

    .fs-97,
    .usc-page-content .fs-97 {
        font-size: 60px;
    }

    .fs-60,
    .usc-page-content .fs-60 {
        font-size: 38px;
    }

    .fs-45,
    .usc-page-content .fs-45 {
        font-size: 28px;
    }

    .fs-40,
    .usc-page-content .fs-40 {
        font-size: 26px;
    }

    .fs-36,
    .usc-page-content .fs-36 {
        font-size: 24px;
    }

    .fs-30,
    .usc-page-content .fs-30 {
        font-size: 22px;
    }

    .fs-24,
    .usc-page-content .fs-24 {
        font-size: 18px;
    }

    .fs-22,
    .usc-page-content .fs-22 {
        font-size: 17px;
    }

    .fs-20,
    .usc-page-content .fs-20 {
        font-size: 16px;
    }

    .fs-18,
    .usc-page-content .fs-18 {
        font-size: 15px;
    }

    .fs-16,
    .usc-page-content .fs-16 {
        font-size: 14px;
    }
}


/* ---- ≤768px (md / mobile) ---- */
@media (max-width: 768px) {

    .fs-97,
    .usc-page-content .fs-97 {
        font-size: 36px;
    }

    .fs-60,
    .usc-page-content .fs-60 {
        font-size: 26px;
    }

    .fs-45,
    .usc-page-content .fs-45 {
        font-size: 22px;
    }

    .fs-40,
    .usc-page-content .fs-40 {
        font-size: 20px;
    }

    .fs-36,
    .usc-page-content .fs-36 {
        font-size: 19px;
    }

    .fs-30,
    .usc-page-content .fs-30 {
        font-size: 22px;
    }

    .fs-24,
    .usc-page-content .fs-24 {
        font-size: 16px;
    }

    .fs-22,
    .usc-page-content .fs-22 {
        font-size: 15px;
    }

    .fs-20,
    .usc-page-content .fs-20 {
        font-size: 14px;
    }

    .fs-18,
    .usc-page-content .fs-18 {
        font-size: 13px;
    }

    .fs-16,
    .usc-page-content .fs-16 {
        font-size: 12px;
    }

    .fs-14,
    .usc-page-content .fs-14 {
        font-size: 12px;
    }

    .header-logo img {
        max-height: 35px;
    }
}

