:root {
  --uwt-primary: #082c5e;
  --uwt-secondary: #0f6fa4;
  --uwt-text: #172946;
  --uwt-white: #ffffff;
  --uwt-light: #f4f9fc;
  --uwt-border: rgba(8, 44, 94, 0.12);
  --uwt-shadow: rgba(8, 44, 94, 0.22);
  --uwt-muted: rgba(255, 255, 255, 0.74);
  --uwt-border-light: rgba(255, 255, 255, 0.13);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; }
body { margin: 0; font-family: Inter, Arial, sans-serif; color: var(--uwt-text); background: #fff; overflow-x: hidden; }
a { color: inherit; }
img { max-width: 100%; height: auto; }
.uwt-container { width: min(1340px, calc(100% - 48px)); margin-inline: auto; }

/* =========================
   HEADER
   ========================= */
.uwt-header,
.uwt-header * { box-sizing: border-box; }
.uwt-header { width: 100%; background: var(--uwt-white); position: relative; z-index: 9999; font-family: Inter, Arial, sans-serif; }

.uwt-topbar { background: linear-gradient(90deg, var(--uwt-primary), var(--uwt-secondary)); color: var(--uwt-white); font-size: 14px; font-weight: 600; }
.uwt-topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.uwt-topbar-left,
.uwt-topbar-right { display: flex; align-items: center; gap: 20px; }
.uwt-topbar-left a { color: var(--uwt-white); text-decoration: none; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; opacity: .95; }
.uwt-topbar-left a:hover { opacity: 1; color: var(--uwt-white); }
.uwt-topbar-right { gap: 10px; }
.follow-text { margin-right: 8px; color: var(--uwt-white); font-size: 14px; font-weight: 700; white-space: nowrap; }
.social-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); color: var(--uwt-white); display: inline-flex; align-items: center; justify-content: center; text-decoration: none; transition: all .25s ease; flex-shrink: 0; }
.social-icon i { font-size: 14px; line-height: 1; }
.social-icon:hover { background: var(--uwt-white); color: var(--uwt-primary); border-color: var(--uwt-white); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,.16); }

.uwt-mainbar { background: rgba(255,255,255,.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--uwt-border); }
.uwt-mainbar-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; position: relative; }
.uwt-logo { display: flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.uwt-logo img,
.uwt-logo .custom-logo { display: block; width: auto; height: 68px; max-width: 260px; object-fit: contain; }
.uwt-logo .custom-logo-link { display: inline-flex; align-items: center; }

.uwt-nav { flex: 1 1 auto; display: flex; align-items: center; justify-content: center; overflow: visible; min-width: 0; }
.uwt-nav ul,
.uwt-nav ol,
.uwt-menu,
.uwt-menu ul,
.uwt-menu ol { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.uwt-nav li,
.uwt-menu li { list-style: none !important; margin: 0 !important; padding: 0 !important; position: relative; }
.uwt-nav li::marker,
.uwt-menu li::marker { content: "" !important; display: none !important; }
.uwt-menu { display: flex; align-items: center; justify-content: center; gap: clamp(6px, 1.05vw, 18px); flex-wrap: nowrap; }
.uwt-menu > li > a { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 10px 12px; border-radius: 999px; color: var(--uwt-text); font-size: 15px; font-weight: 800; line-height: 1.12; text-decoration: none !important; transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease; white-space: nowrap; word-break: keep-all; overflow-wrap: normal; }
.uwt-menu > li > a:hover,
.uwt-menu > li:hover > a,
.uwt-menu > .current-menu-item > a,
.uwt-menu > .current-menu-ancestor > a,
.uwt-menu > li > a[aria-current="page"] { color: var(--uwt-primary); background: rgba(15, 111, 164, 0.10); }
.uwt-menu > .current-menu-item > a,
.uwt-menu > .current-menu-ancestor > a,
.uwt-menu > li > a[aria-current="page"] { box-shadow: inset 0 0 0 1px rgba(15,111,164,.16); }
.uwt-menu > li > a::after { display: none !important; content: none !important; }
.uwt-menu > .menu-item-has-children::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 18px; z-index: 9999; }
.uwt-menu > .menu-item-has-children:hover::after,
.uwt-menu > .menu-item-has-children:focus-within::after { display: block; }

.uwt-menu .sub-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 235px; padding: 10px !important; border-radius: 18px; background: #fff; border: 1px solid rgba(8,44,94,.11); box-shadow: 0 24px 60px rgba(8,44,94,.18); opacity: 0; visibility: hidden; transform: translateY(10px); pointer-events: none; transition: opacity .22s ease, visibility .22s ease, transform .22s ease; z-index: 10000; }
.uwt-menu .sub-menu::before { content: ""; position: absolute; left: 22px; top: -7px; width: 14px; height: 14px; background: #fff; border-left: 1px solid rgba(8,44,94,.11); border-top: 1px solid rgba(8,44,94,.11); transform: rotate(45deg); }
.uwt-menu li:hover > .sub-menu,
.uwt-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.uwt-menu .sub-menu a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 13px; border-radius: 12px; color: var(--uwt-text); text-decoration: none !important; font-size: 14px; font-weight: 750; line-height: 1.25; white-space: nowrap; transition: background .2s ease, color .2s ease, transform .2s ease; }
.uwt-menu .sub-menu a:hover,
.uwt-menu .sub-menu .current-menu-item > a { background: var(--uwt-light); color: var(--uwt-secondary); transform: translateX(2px); }
.uwt-menu .sub-menu .sub-menu { top: 0; left: calc(100% + 10px); }
.uwt-menu .sub-menu .sub-menu::before { display: none; }
.uwt-menu .menu-item-has-children > a::before { content: "\f107"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 11px; opacity: .62; order: 2; }
.uwt-menu .sub-menu .menu-item-has-children > a::before { content: "\f105"; }
.submenu-toggle { display: none; }

.uwt-header-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.uwt-donate,
.uwt-shop { height: 46px; padding: 0 22px; border-radius: 999px; text-decoration: none !important; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: 15px; font-weight: 850; line-height: 1; white-space: nowrap; flex: 0 0 auto; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.uwt-donate { background: linear-gradient(135deg,var(--uwt-primary),var(--uwt-secondary)); color: var(--uwt-white) !important; box-shadow: 0 14px 30px var(--uwt-shadow); }
.uwt-shop { background: #fff; color: var(--uwt-primary) !important; border: 1px solid rgba(8,44,94,.16); box-shadow: 0 12px 28px rgba(8,44,94,.08); }
.uwt-donate:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(15,111,164,.32); color: var(--uwt-white) !important; }
.uwt-shop:hover { transform: translateY(-2px); background: rgba(15,111,164,.08); color: var(--uwt-secondary) !important; box-shadow: 0 16px 34px rgba(8,44,94,.12); }
.uwt-mobile-actions { display: none; }
.uwt-mobile-donate,
.uwt-mobile-shop { text-decoration: none !important; }

.uwt-menu-button { width: 44px; height: 44px; border: 1px solid var(--uwt-border); border-radius: 12px; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; background: var(--uwt-white); flex: 0 0 auto; }
.uwt-menu-button span { width: 20px; height: 2px; background: var(--uwt-primary); border-radius: 999px; transition: .25s ease; }
.uwt-menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.uwt-menu-button.is-open span:nth-child(2) { opacity: 0; }
.uwt-menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }



@media (min-width: 1181px) and (max-width: 1320px) {
  .uwt-mainbar-inner { gap: 16px; }
  .uwt-logo img,
  .uwt-logo .custom-logo { height: 58px; max-width: 225px; }
  .uwt-menu { gap: 4px; }
  .uwt-menu > li > a { font-size: 14px; padding-inline: 9px; }
  .uwt-donate,
  .uwt-shop { height: 44px; padding-inline: 16px; font-size: 14px; }
  .uwt-header-actions { gap: 8px; }
}

/* Remove unwanted gap between global header and first WPBakery/hero section */
.uwt-header { margin-bottom: 0 !important; }
.uwt-front-page-content,
.uwt-wpbakery-fullwidth-content,
.uwt-wpbakery-canvas-content { padding-top: 0 !important; margin-top: 0 !important; }
.uwt-front-page-content .uwt-page-article,
.uwt-wpbakery-fullwidth-content .uwt-page-article,
.uwt-wpbakery-canvas-content .uwt-page-article,
.uwt-entry-content { margin-top: 0 !important; padding-top: 0 !important; }
.uwt-entry-content > *:first-child,
.uwt-entry-content > .vc_row:first-child,
.uwt-entry-content > .wpb_row:first-child,
.uwt-entry-content > .vc_section:first-child { margin-top: 0 !important; }

/* =========================
   CONTENT / WPBAKERY
   ========================= */
.uwt-content { padding-block: 0; min-height: 50vh; }
.uwt-content h1 { color: var(--uwt-primary); }
.uwt-page-content,
.uwt-front-page-content,
.uwt-wpbakery-fullwidth-content,
.uwt-wpbakery-canvas-content { width: 100%; overflow-x: clip; }
.uwt-page-article,
.uwt-entry-content { width: 100%; }
.uwt-entry-content::before,
.uwt-entry-content::after { content: ""; display: table; clear: both; }
.uwt-page-title-wrap { padding: 54px 0 24px; }
.uwt-page-title { margin: 0; color: var(--uwt-primary); font-size: clamp(34px, 4vw, 56px); line-height: 1.05; }
.uwt-entry-content .vc_row,
.uwt-entry-content .wpb_row,
.uwt-entry-content .vc_section { margin-left: 0; margin-right: 0; }
.uwt-section-primary { background: var(--uwt-primary); color: #fff; }
.uwt-section-secondary { background: var(--uwt-secondary); color: #fff; }

/* =========================
   FOOTER
   ========================= */
.uwt-footer,
.uwt-footer * { box-sizing: border-box; }
.uwt-footer { position: relative; overflow: hidden; background: radial-gradient(circle at 10% 20%, rgba(15,111,164,.34), transparent 28%), radial-gradient(circle at 92% 8%, rgba(255,255,255,.11), transparent 24%), linear-gradient(135deg, var(--uwt-primary) 0%, #061f45 56%, var(--uwt-secondary) 135%); color: var(--uwt-white); font-family: Inter, Arial, sans-serif; padding: 58px 0 28px; margin: 0; }
.uwt-footer::before { content: ""; position: absolute; right: -190px; top: -160px; width: 540px; height: 540px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.uwt-footer::after { content: ""; position: absolute; left: -170px; bottom: -220px; width: 480px; height: 480px; border-radius: 50%; background: rgba(15,111,164,.24); filter: blur(8px); }
.uwt-footer-container { position: relative; z-index: 2; width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.uwt-footer-cta { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, 1fr); gap: 32px; align-items: center; padding: 30px; border: 1px solid var(--uwt-border-light); border-radius: 28px; background: rgba(255,255,255,.09); backdrop-filter: blur(18px); box-shadow: 0 24px 70px rgba(0,0,0,.18); margin-bottom: 56px; }
.uwt-footer-cta-text span { display: block; color: #bfe9ff; font-size: 13px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.uwt-footer-cta h2 { margin: 0; color: #fff; font-size: clamp(26px,3vw,42px); line-height: 1.08; letter-spacing: -.04em; max-width: 680px; }

.uwt-footer-newsletter { position: relative; min-width: 0; }
#error-message,
#success-message { display: none; }
.uwt-brevo-form-wrap,
.uwt-brevo-form-wrap .sib-form,
.uwt-brevo-form-wrap .sib-form-container,
.uwt-brevo-form-wrap #sib-container { padding: 0 !important; margin: 0 !important; background: transparent !important; border: 0 !important; max-width: 100% !important; text-align: left !important; font-family: Inter, Arial, sans-serif !important; }
.uwt-brevo-container { background: transparent !important; border: 0 !important; direction: ltr; }
.uwt-brevo-form { display: grid; gap: 14px; width: 100%; min-width: 0; }
.uwt-brevo-field { min-width: 0; }
.uwt-brevo-input-row { width: 100%; min-width: 0; height: 56px; border-radius: 999px; background: #fff; border: 1px solid rgba(255,255,255,.22); display: flex; align-items: center; gap: 12px; padding: 0 18px; box-shadow: 0 16px 34px rgba(0,0,0,.14); }
.uwt-brevo-input-row i { color: var(--uwt-secondary); font-size: 16px; flex-shrink: 0; }
.uwt-brevo-input-row input { width: 100% !important; min-width: 0 !important; height: 100% !important; border: 0 !important; outline: 0 !important; background: transparent !important; color: var(--uwt-primary) !important; font-size: 15px !important; font-weight: 700 !important; padding: 0 !important; font-family: Inter, Arial, sans-serif !important; }
.uwt-brevo-input-row input::placeholder { color: rgba(8,44,94,.42) !important; }
.uwt-brevo-consent { width: 100%; min-width: 0; }
.uwt-brevo-consent-label { display: flex !important; align-items: flex-start; gap: 12px; cursor: pointer; width: 100%; min-width: 0; }
.uwt-brevo-consent-label input[type="checkbox"] { appearance: none; -webkit-appearance: none; width: 20px !important; height: 20px !important; min-width: 20px !important; flex: 0 0 20px !important; margin: 2px 0 0 !important; border: 2px solid rgba(255,255,255,.65) !important; border-radius: 6px; background: transparent !important; display: inline-block !important; position: relative; cursor: pointer; transition: .2s ease; opacity: 1 !important; visibility: visible !important; }
.uwt-brevo-consent-label input[type="checkbox"]:checked { background: var(--uwt-secondary) !important; border-color: var(--uwt-secondary) !important; }
.uwt-brevo-consent-label input[type="checkbox"]:checked::after { content: ""; position: absolute; left: 6px; top: 1px; width: 4px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.uwt-consent-text { display: block; flex: 1; min-width: 0; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.65; font-weight: 500; overflow-wrap: anywhere; }
.uwt-brevo-submit { width: fit-content !important; min-width: 150px; height: 52px !important; border: 0 !important; border-radius: 999px !important; background: #fff !important; color: var(--uwt-primary) !important; padding: 0 24px !important; font-size: 15px !important; font-weight: 900 !important; font-family: Inter, Arial, sans-serif !important; text-transform: none !important; display: inline-flex !important; align-items: center; justify-content: center; gap: 10px; cursor: pointer; box-shadow: 0 18px 38px rgba(0,0,0,.18); transition: .25s ease; }
.uwt-brevo-submit:hover { transform: translateY(-2px); background: var(--uwt-secondary) !important; color: #fff !important; }
.uwt-brevo-submit svg { width: 16px; height: 16px; fill: currentColor; }
.uwt-brevo-message { max-width: 100% !important; margin: 0 0 14px !important; padding: 14px 16px !important; border-radius: 14px !important; font-family: Inter, Arial, sans-serif !important; font-size: 14px !important; text-align: left !important; border: 1px solid rgba(255,255,255,.14) !important; }
.uwt-brevo-error { color: #fff !important; background: rgba(255,73,73,.18) !important; border-color: rgba(255,73,73,.35) !important; }
.uwt-brevo-success { color: #fff !important; background: rgba(19,206,102,.16) !important; border-color: rgba(19,206,102,.32) !important; }
.uwt-brevo-message svg { display: none; }
.uwt-brevo-error-text { color: #fff !important; background: rgba(255,73,73,.16) !important; border: 0 !important; border-radius: 10px !important; font-size: 13px !important; line-height: 1.4 !important; padding: 8px 10px !important; margin: 8px 0 0 !important; font-family: Inter, Arial, sans-serif !important; }
.uwt-brevo-form .sib-form-block,
.uwt-brevo-form .sib-input,
.uwt-brevo-form .sib-optin,
.uwt-brevo-form .form__entry,
.uwt-brevo-form .form__label-row,
.uwt-brevo-form .entry__choice { padding: 0 !important; margin: 0 !important; }

.uwt-footer-main { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(150px, .72fr) minmax(170px, .9fr) minmax(260px, 1.15fr); gap: 50px; align-items: start; }
.uwt-footer-logo { display: inline-flex; margin-bottom: 24px; }
.uwt-footer-logo img,
.uwt-footer-logo .custom-logo { width: 260px; max-width: 100%; height: auto; display: block; filter: brightness(0) invert(1); }
.uwt-footer-logo .custom-logo-link { display: inline-flex; }
.uwt-footer-brand p { max-width: 410px; margin: 0; color: var(--uwt-muted); font-size: 15.5px; line-height: 1.75; }
.uwt-footer-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.uwt-footer-socials a { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: rgba(255,255,255,.1); border: 1px solid var(--uwt-border-light); text-decoration: none !important; transition: .25s ease; }
.uwt-footer-socials a:hover { background: #fff; color: var(--uwt-primary); transform: translateY(-3px); }
.uwt-footer-column h3,
.uwt-footer-contact h3 { margin: 0 0 22px; color: #fff; font-size: 19px; font-weight: 900; letter-spacing: -.02em; }
.uwt-footer-column ul,
.uwt-footer-column .uwt-footer-menu { list-style: none !important; padding: 0 !important; margin: 0 !important; display: grid; gap: 13px; }
.uwt-footer-column li { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.uwt-footer-column li::marker { content: "" !important; display: none !important; }
.uwt-footer-column a { color: var(--uwt-muted); text-decoration: none !important; font-size: 14.5px; font-weight: 650; transition: .2s ease; }
.uwt-footer-column a:hover { color: #fff; padding-left: 4px; }
.uwt-contact-card { padding: 22px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid var(--uwt-border-light); backdrop-filter: blur(14px); }
.uwt-contact-row { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.uwt-contact-row:first-child { padding-top: 0; }
.uwt-contact-row:last-child { padding-bottom: 0; border-bottom: 0; }
.uwt-contact-row > span { width: 42px; height: 42px; border-radius: 14px; background: #fff; color: var(--uwt-secondary); display: inline-flex; align-items: center; justify-content: center; font-size: 17px; }
.uwt-contact-row strong { display: block; color: #fff; font-size: 14px; margin-bottom: 7px; }
.uwt-contact-row a,
.uwt-contact-row p { display: block; color: var(--uwt-muted); font-size: 14px; line-height: 1.55; text-decoration: none !important; margin: 0; font-weight: 600; }
.uwt-contact-row a:hover { color: #fff; }
.uwt-footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--uwt-border-light); display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.uwt-footer-bottom p { margin: 0; color: rgba(255,255,255,.72); font-size: 13.5px; line-height: 1.55; font-weight: 600; max-width: 760px; }
.uwt-footer-legal { display: flex; align-items: center; gap: 18px; white-space: nowrap; }
.uwt-footer-legal a { color: rgba(255,255,255,.72); text-decoration: none !important; font-size: 13px; font-weight: 700; }
.uwt-footer-legal a:hover { color: #fff; }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1180px) {
  .uwt-container { width: min(100% - 36px, 1340px); }
  .uwt-mainbar-inner { min-height: 82px; gap: 16px; }
  .uwt-logo img,
  .uwt-logo .custom-logo { height: 58px; max-width: 230px; }
  .uwt-menu-button { display: flex; order: 3; }
  .uwt-header-actions { order: 2; margin-left: auto; gap: 10px; }
  .uwt-donate, .uwt-shop { height: 44px; padding-inline: 18px; }
  .uwt-nav { position: absolute; left: 0; right: 0; top: calc(100% + 1px); background: #fff; border: 1px solid var(--uwt-border); border-radius: 0 0 22px 22px; box-shadow: 0 24px 50px rgba(8,44,94,.14); padding: 18px; display: block; opacity: 0; visibility: hidden; transform: translateY(-10px); pointer-events: none; transition: .25s ease; }
  .uwt-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .uwt-mobile-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0 0 12px; }
  .uwt-mobile-donate, .uwt-mobile-shop { min-height: 48px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: 16px !important; font-weight: 800 !important; line-height: 1; padding: 13px 14px; }
  .uwt-mobile-donate { background: linear-gradient(135deg,var(--uwt-primary),var(--uwt-secondary)); color: #fff !important; box-shadow: 0 12px 28px rgba(8,44,94,.18); }
  .uwt-mobile-shop { background: #fff; color: var(--uwt-primary) !important; border: 1px solid rgba(8,44,94,.14); box-shadow: 0 10px 24px rgba(8,44,94,.08); }
  .uwt-menu { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; width: 100%; }
  .uwt-menu > .menu-item-has-children::after { display: none !important; content: none !important; }
  .uwt-menu > li > a { white-space: normal; word-break: normal; overflow-wrap: normal; }
  .uwt-menu > li > a,
  .uwt-menu .sub-menu a { display: flex; min-height: 48px; width: 100%; padding: 14px 16px; border-radius: 12px; background: var(--uwt-light); color: var(--uwt-text); white-space: normal; line-height: 1.2; }
  .uwt-menu > li > a:hover,
  .uwt-menu > li:hover > a,
  .uwt-menu > .current-menu-item > a,
  .uwt-menu > .current-menu-ancestor > a,
  .uwt-menu > li > a[aria-current="page"] { color: var(--uwt-secondary); background: rgba(15,111,164,.10); box-shadow: none; }
  .uwt-menu .menu-item-has-children > a::before { display: none; }
  .uwt-menu .sub-menu { position: static; min-width: 0; width: 100%; padding: 8px 0 0 12px !important; border: 0; border-radius: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; pointer-events: auto; display: none; transition: none; }
  .uwt-menu .sub-menu::before { display: none; }
  .uwt-menu li.is-submenu-open > .sub-menu { display: grid; gap: 8px; }
  .submenu-toggle { display: inline-flex; align-items: center; justify-content: center; position: absolute; right: 10px; top: 8px; width: 34px; height: 34px; border-radius: 10px; border: 1px solid rgba(8,44,94,.12); background: #fff; color: var(--uwt-primary); cursor: pointer; z-index: 2; }
  .submenu-toggle::before { content: "\f107"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 12px; transition: transform .2s ease; }
  .uwt-menu li.is-submenu-open > .submenu-toggle { background: var(--uwt-secondary); border-color: var(--uwt-secondary); color: #fff; }
  .uwt-menu li.is-submenu-open > .submenu-toggle::before { transform: rotate(180deg); }
  .uwt-menu .menu-item-has-children > a { padding-right: 54px; }
}

@media (max-width: 1100px) {
  .uwt-footer-main { grid-template-columns: 1fr 1fr; gap: 42px; }
  .uwt-footer-cta { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .uwt-topbar-inner { justify-content: center; }
  .uwt-topbar-right { display: none; }
  .uwt-topbar-left { gap: 14px; font-size: 12px; }
  .uwt-mainbar-inner { min-height: 76px; gap: 14px; }
  .uwt-logo img,
  .uwt-logo .custom-logo { height: 48px; max-width: 200px; }
  .uwt-donate, .uwt-shop { height: 42px; padding: 0 16px; font-size: 14px; }
  .uwt-menu { grid-template-columns: 1fr; }
  .uwt-footer { padding: 38px 0 24px; }
  .uwt-footer-container { width: min(100% - 32px, 1240px); }
  .uwt-footer-cta { padding: 24px; border-radius: 22px; margin-bottom: 42px; }
  .uwt-footer-main { grid-template-columns: 1fr; gap: 36px; }
  .uwt-footer-logo img,
  .uwt-footer-logo .custom-logo { width: 220px; }
  .uwt-contact-card { padding: 18px; }
  .uwt-footer-bottom { flex-direction: column; align-items: flex-start; }
  .uwt-footer-legal { flex-wrap: wrap; gap: 12px; }
  .uwt-brevo-submit { width: 100% !important; }
  .uwt-brevo-input-row { height: 52px; }
  .uwt-brevo-consent-label { gap: 10px; }
  .uwt-brevo-consent-label input[type="checkbox"] { width: 18px !important; height: 18px !important; min-width: 18px !important; flex-basis: 18px !important; }
  .uwt-brevo-consent-label input[type="checkbox"]:checked::after { left: 5px; top: 0; width: 4px; height: 8px; }
  .uwt-consent-text { font-size: 13px; line-height: 1.55; }
}

@media (max-width: 520px) {
  .uwt-container { width: min(100% - 24px, 1340px); }
  .uwt-topbar { display: none; }
  .uwt-mainbar-inner { min-height: 72px; }
  .uwt-logo img,
  .uwt-logo .custom-logo { height: 38px; max-width: 190px; }
  .uwt-header-actions { display: none; }
  .uwt-menu-button { margin-left: auto; }
}

@media (max-width: 420px) {
  .uwt-footer-container { width: min(100% - 24px, 1240px); }
  .uwt-footer-logo img,
  .uwt-footer-logo .custom-logo { width: 190px; }
  .uwt-footer-cta h2 { font-size: 25px; }
  .uwt-consent-text { font-size: 12.5px; line-height: 1.5; }
  .uwt-mobile-actions { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .uwt-logo img,
  .uwt-logo .custom-logo { height: 32px; max-width: 165px; }
}


/* =========================
   HEADER OVERLAP FIX v1.0.9
   Prevent logo/nav/CTA collision on laptop widths
   ========================= */
.uwt-mainbar-inner {
  column-gap: clamp(14px, 1.5vw, 28px);
}

.uwt-logo {
  flex: 0 1 auto;
  min-width: 0;
  max-width: clamp(178px, 16vw, 260px);
}

.uwt-logo-link,
.uwt-logo .custom-logo-link {
  display: inline-flex !important;
  align-items: center;
  max-width: 100%;
}

.uwt-logo img,
.uwt-logo .custom-logo {
  max-width: 100%;
}

.uwt-nav {
  min-width: 0;
  flex: 1 1 auto;
}

.uwt-menu {
  min-width: 0;
}

.uwt-menu > li > a {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  text-align: center;
}

.uwt-header-actions {
  flex: 0 0 auto;
  min-width: max-content;
}

@media (min-width: 1181px) and (max-width: 1500px) {
  .uwt-container {
    width: min(100% - 44px, 1340px);
  }

  .uwt-mainbar-inner {
    min-height: 86px;
    gap: 12px;
  }

  .uwt-logo {
    max-width: 190px;
  }

  .uwt-logo img,
  .uwt-logo .custom-logo {
    height: 54px;
    max-width: 190px;
  }

  .uwt-menu {
    gap: 2px;
  }

  .uwt-menu > li > a {
    font-size: 14px;
    padding: 10px 8px;
    min-height: 40px;
  }

  .uwt-header-actions {
    gap: 8px;
  }

  .uwt-donate,
  .uwt-shop {
    height: 42px;
    padding-inline: 14px;
    font-size: 14px;
    gap: 7px;
  }
}

@media (min-width: 1181px) and (max-width: 1280px) {
  .uwt-logo {
    max-width: 170px;
  }

  .uwt-logo img,
  .uwt-logo .custom-logo {
    height: 48px;
    max-width: 170px;
  }

  .uwt-menu > li > a {
    font-size: 13.5px;
    padding-inline: 6px;
  }

  .uwt-donate,
  .uwt-shop {
    padding-inline: 12px;
    font-size: 13.5px;
  }
}

/* =========================
   HEADER WRAP FIX: allow long labels to wrap cleanly on desktop/laptop
   ========================= */
@media (min-width: 1025px) {
  .uwt-nav,
  .uwt-menu,
  .uwt-nav ul {
    min-width: 0 !important;
  }

  .uwt-menu {
    gap: clamp(4px, 0.85vw, 16px) !important;
  }

  .uwt-menu > li {
    min-width: 0 !important;
    flex-shrink: 1 !important;
  }

  .uwt-menu > li > a {
    white-space: normal !important;
    line-height: 1.12 !important;
    text-align: center !important;
    justify-content: center !important;
    max-width: 112px !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .uwt-menu > li > a .menu-text,
  .uwt-menu > li > a span {
    white-space: normal !important;
    line-height: 1.12 !important;
  }
}

@media (min-width: 1200px) {
  .uwt-menu > li > a {
    max-width: 135px !important;
  }
}

@media (min-width: 1321px) {
  .uwt-menu > li > a {
    max-width: 150px !important;
  }
}

/* =========================
   UWT PROJECTS SHORTCODE
   Shortcode: [uwt_projects]
   ========================= */
.uwt-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 380px));
  justify-content: center;
  gap: 22px;
  width: 100%;
}

.uwt-project-card {
  background: #ffffff;
  border: 1px solid rgba(8, 44, 94, 0.10);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(8, 44, 94, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.uwt-project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 111, 164, 0.20);
  box-shadow: 0 18px 38px rgba(8, 44, 94, 0.13);
}

.uwt-project-thumb {
  position: relative;
  overflow: hidden;
  background: #eef6fb;
}

.uwt-project-thumb a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.uwt-project-thumb img,
.uwt-project-thumb-placeholder {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.uwt-project-thumb-placeholder {
  background:
    radial-gradient(circle at 20% 10%, rgba(15, 111, 164, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(8, 44, 94, 0.10), rgba(15, 111, 164, 0.14));
}

.uwt-project-card:hover .uwt-project-thumb img {
  transform: scale(1.05);
}

.uwt-project-badge {
  position: absolute;
  top: 18px;
  left: 16px;
  display: inline-block;
  background: linear-gradient(135deg, var(--uwt-secondary, #0f6fa4) 0%, var(--uwt-primary, #082c5e) 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  border-radius: 18px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 12px 24px rgba(8, 44, 94, 0.22);
}

.uwt-project-body {
  padding: 28px 20px 18px;
  text-align: center;
}

.uwt-project-title {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.uwt-project-title a {
  color: var(--uwt-primary, #082c5e);
  text-decoration: none;
}

.uwt-project-title a:hover {
  color: var(--uwt-secondary, #0f6fa4);
}

.uwt-project-desc {
  margin: 0 auto 12px;
  max-width: 300px;
  color: #5b6470;
  font-size: 16px;
  line-height: 1.6;
}

.uwt-project-readmore {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--uwt-secondary, #0f6fa4);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.uwt-project-readmore:hover {
  color: var(--uwt-primary, #082c5e);
}

.uwt-project-donate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  background: linear-gradient(90deg, var(--uwt-secondary, #0f6fa4) 0%, var(--uwt-primary, #082c5e) 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 850;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 18px rgba(8, 44, 94, 0.18);
}

.uwt-project-donate:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(8, 44, 94, 0.24);
}

.uwt-project-donate span {
  font-size: 22px;
  line-height: 1;
}

.uwt-project-meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(8, 44, 94, 0.10);
  color: #8b96a8;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.uwt-project-empty {
  text-align: center;
  color: #5b6470;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .uwt-project-grid {
    grid-template-columns: repeat(2, minmax(280px, 380px));
  }
}

@media (max-width: 767px) {
  .uwt-project-grid {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .uwt-project-card {
    max-width: 380px;
    border-radius: 22px;
  }

  .uwt-project-thumb img,
  .uwt-project-thumb-placeholder {
    height: 220px;
  }

  .uwt-project-body {
    padding: 22px 16px 16px;
  }

  .uwt-project-title {
    font-size: 21px;
  }

  .uwt-project-desc {
    font-size: 15px;
    line-height: 1.7;
  }

  .uwt-project-donate {
    min-height: 52px;
    font-size: 17px;
    border-radius: 14px;
  }

  .uwt-project-meta {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

/* =========================
   UWT Vacancies Shortcode
   ========================= */
.uwt-openroles-section {
  padding: clamp(28px, 5vw, 56px) 0;
}

.uwt-openroles-wrap {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.uwt-openroles-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.uwt-openrole-card {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e9ef;
  box-shadow: 0 12px 30px rgba(8, 44, 94, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.uwt-openrole-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 111, 164, 0.22);
  box-shadow: 0 20px 44px rgba(8, 44, 94, 0.10);
}

.uwt-openrole-topline {
  height: 4px;
  background: linear-gradient(90deg, var(--uwt-secondary, #0f6fa4), #6cc8f1);
}

.uwt-openrole-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 26px 26px 32px;
}

.uwt-openrole-main {
  min-width: 0;
}

.uwt-openrole-type {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #eaf6fd;
  color: var(--uwt-secondary, #0f6fa4);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.uwt-openrole-main h3 {
  margin: 0;
  color: #0c2234;
  font-size: clamp(21px, 2.2vw, 26px);
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.uwt-openrole-meta {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.uwt-openrole-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 10px 14px;
  border-radius: 20px;
  background: #f7fafc;
  border: 1px solid #e2ebf1;
}

.uwt-openrole-chip strong {
  color: #7b91a2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.uwt-openrole-chip em {
  color: #183042;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
}

.uwt-openrole-chip sup {
  font-size: 9px;
  vertical-align: super;
  line-height: 0;
  margin-left: 1px;
}

.uwt-openrole-action {
  display: flex;
  justify-content: flex-end;
}

.uwt-openrole-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--uwt-secondary, #0f6fa4) 0%, var(--uwt-primary, #082c5e) 100%);
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(8, 44, 94, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uwt-openrole-btn:hover,
.uwt-openrole-btn:focus,
.uwt-openrole-btn:active {
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(8, 44, 94, 0.38);
}

.uwt-openroles-empty {
  margin: 0;
  padding: 22px 24px;
  border-radius: 18px;
  background: #f7fafc;
  border: 1px solid #e2ebf1;
  color: #183042;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 900px) {
  .uwt-openrole-inner {
    grid-template-columns: 1fr;
    padding: 24px 22px 26px;
  }

  .uwt-openrole-action,
  .uwt-openrole-btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .uwt-openroles-wrap {
    width: min(100% - 24px, 1100px);
  }

  .uwt-openrole-card {
    border-radius: 20px;
  }

  .uwt-openrole-inner {
    padding: 22px 16px 22px;
  }

  .uwt-openrole-meta {
    flex-direction: column;
  }

  .uwt-openrole-chip {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    border-radius: 16px;
  }

  .uwt-openrole-btn {
    min-height: 50px;
    border-radius: 15px;
  }
}

/* UWT LOCATIONS / CHARITY SHOPS & DONATION POINTS */
.uwt-locations {
  padding: clamp(42px, 6vw, 70px) 20px;
}

.uwt-location-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.uwt-location-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 28px 24px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e5edf5;
  box-shadow: 0 14px 34px rgba(8, 44, 94, 0.07);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.uwt-location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(8, 44, 94, 0.11);
}

.uwt-location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 4px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg, var(--uwt-secondary, #0f6fa4), var(--uwt-primary, #082c5e));
}

.uwt-location-card-head {
  margin-bottom: 18px;
}

.uwt-location-card h3 {
  margin: 6px 0 10px;
  font-size: clamp(22px, 2.2vw, 24px);
  line-height: 1.2;
  font-weight: 850;
  color: var(--uwt-secondary, #0f6fa4);
}

.uwt-location-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(15, 111, 164, 0.08);
  border: 1px solid rgba(15, 111, 164, 0.12);
  color: #5f7994;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.uwt-location-address {
  margin: 0 0 18px;
  color: #18324b;
  font-size: 17px;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.uwt-location-contact-row {
  margin-bottom: 16px;
}

.uwt-location-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  background: #f7fbff;
  border: 1px solid #e3edf7;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.uwt-location-contact-link:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(15, 111, 164, 0.28);
}

.uwt-location-contact-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 111, 164, 0.12);
  color: var(--uwt-secondary, #0f6fa4);
  font-size: 14px;
}

.uwt-location-contact-text {
  min-width: 0;
  color: var(--uwt-secondary, #0f6fa4);
  font-size: 16px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.uwt-location-hours {
  margin-top: auto;
  padding: 14px 16px;
  min-height: 102px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(244, 249, 252, 0.85), rgba(244, 249, 252, 0.45));
}

.uwt-location-hours strong {
  display: block;
  margin-bottom: 6px;
  color: var(--uwt-secondary, #0f6fa4);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.uwt-location-hours span {
  display: block;
  color: #18324b;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 650;
}

.uwt-location-btn {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--uwt-secondary, #0f6fa4), var(--uwt-primary, #082c5e));
  color: #ffffff !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  display: block;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 28px rgba(8, 44, 94, 0.22);
}

.uwt-location-btn:hover,
.uwt-location-btn:focus {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(8, 44, 94, 0.28);
}

.uwt-locations-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px 24px;
  border-radius: 18px;
  background: #f7fafc;
  border: 1px solid #e2ebf1;
  color: #183042;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 992px) {
  .uwt-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .uwt-locations {
    padding: 42px 16px;
  }

  .uwt-location-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .uwt-location-card {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  .uwt-location-card::before {
    left: 20px;
    right: 20px;
  }

  .uwt-location-address {
    font-size: 16px;
    line-height: 1.75;
  }

  .uwt-location-contact-link {
    width: 100%;
    padding: 12px 14px;
  }

  .uwt-location-contact-text {
    font-size: 15px;
  }

  .uwt-location-contact-text--email {
    font-size: 14px;
  }

  .uwt-location-hours {
    min-height: auto;
  }
}

/* =========================
   UWT LATEST NEWS / POSTS SHORTCODE
   Shortcodes: [uwt_latest_news], [uwt_posts]
========================= */
.uwtLatestNews,
.uwtLatestNews * {
  box-sizing: border-box;
}

.uwtLatestNews {
  background: #ffffff;
  padding: 70px 20px 80px;
}

.uwtLatestNews-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.uwtLatestNews-head {
  text-align: center;
  margin-bottom: 34px;
}

.uwtLatestNews-title {
  margin: 0;
  color: var(--uwt-primary, #082c5e);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.uwtLatestNews-line {
  width: min(860px, 92%);
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, rgba(15, 111, 164, 0.35), transparent);
}

.uwtLatestNews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.uwtNewsCard {
  background: #ffffff;
  border: 1px solid rgba(8, 44, 94, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.uwtNewsCard:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 111, 164, 0.18);
  box-shadow: 0 24px 58px rgba(2, 6, 23, 0.12);
}

.uwtNewsCard-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eef4f8;
  text-decoration: none;
}

.uwtNewsCard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.65s ease, filter 0.35s ease;
}

.uwtNewsCard:hover .uwtNewsCard-img {
  transform: scale(1.06);
  filter: saturate(1.03) contrast(1.02);
}

.uwtNewsCard-media::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-18deg);
  transition: left 0.8s ease;
  pointer-events: none;
}

.uwtNewsCard:hover .uwtNewsCard-media::after {
  left: 135%;
}

.uwtNewsCard-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--uwt-secondary, #0f6fa4);
  font-size: 42px;
  background: linear-gradient(135deg, rgba(15, 111, 164, 0.12), rgba(8, 44, 94, 0.08));
}

.uwtNewsCard-body {
  padding: 22px 22px 24px;
  text-align: center;
}

.uwtNewsCard-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.uwtNewsCard-title a {
  color: var(--uwt-primary, #082c5e);
  text-decoration: none;
}

.uwtNewsCard-title a:hover,
.uwtNewsCard-title a:focus {
  color: var(--uwt-secondary, #0f6fa4);
}

.uwtNewsCard-date {
  font-size: 15px;
  color: #8a94a3;
  margin-bottom: 14px;
  font-weight: 600;
}

.uwtNewsCard-date sup {
  font-size: 9px;
  line-height: 0;
}

.uwtNewsCard-text {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.75;
  color: #5b6573;
}

.uwtNewsCard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff !important;
  font-weight: 650;
  font-size: 17px;
  background: linear-gradient(135deg, var(--uwt-secondary, #0f6fa4), var(--uwt-primary, #082c5e));
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.uwtNewsCard-btn:hover,
.uwtNewsCard-btn:focus {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.18);
  filter: saturate(1.04);
}

.uwtLatestNews-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px 24px;
  border-radius: 18px;
  background: #f7fafc;
  border: 1px solid #e2ebf1;
  color: #183042;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1024px) {
  .uwtLatestNews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .uwtLatestNews {
    padding: 50px 14px 60px;
  }

  .uwtLatestNews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .uwtNewsCard {
    border-radius: 18px;
  }

  .uwtNewsCard-body {
    padding: 18px 16px 20px;
  }

  .uwtNewsCard-title {
    font-size: 22px;
  }

  .uwtNewsCard-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .uwtNewsCard-btn {
    width: 100%;
    font-size: 16px !important;
  }
}

/* =========================================================
   SINGLE POST / NEWS ARTICLE TEMPLATE
   YouTube video + article + CTA + share + related posts
========================================================= */
.uwt-post-page,
.uwt-post-page * {
  box-sizing: border-box;
}

.uwt-post-container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.uwt-post-container-narrow {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
}

.uwt-post-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 94px;
  background:
    radial-gradient(circle at 12% 20%, rgba(15, 111, 164, 0.34), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.13), transparent 25%),
    linear-gradient(135deg, var(--uwt-primary, #082c5e) 0%, #061f45 56%, var(--uwt-secondary, #0f6fa4) 135%);
  color: #fff;
}

.uwt-post-hero::before {
  content: "";
  position: absolute;
  right: -170px;
  top: -190px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.uwt-post-hero::after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -230px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(15, 111, 164, 0.24);
  filter: blur(8px);
}

.uwt-post-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
}

.uwt-post-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.uwt-post-breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.uwt-post-breadcrumb a:hover {
  color: #fff;
}

.uwt-post-category {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #bfe9ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.uwt-post-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.uwt-post-intro {
  max-width: 780px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.7;
  font-weight: 500;
}

.uwt-post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.uwt-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 750;
}

.uwt-post-meta i {
  color: #bfe9ff;
}

.uwt-post-main {
  background: linear-gradient(180deg, #f4f9fc 0%, #fff 100%);
  padding: 0 0 90px;
}

.uwt-video-wrap {
  position: relative;
  z-index: 4;
  margin-top: -52px;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(8, 44, 94, 0.24);
  aspect-ratio: 16 / 9;
}

.uwt-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.uwt-article-card {
  margin-top: 38px;
  background: #fff;
  border: 1px solid rgba(8, 44, 94, 0.08);
  border-radius: 30px;
  padding: clamp(28px, 4vw, 56px);
  box-shadow: 0 20px 54px rgba(8, 44, 94, 0.08);
}

.uwt-article-card p {
  color: #34475c;
  font-size: 18px;
  line-height: 1.9;
  margin: 0 0 24px;
}

.uwt-article-card > p:first-child,
.uwt-article-card .lead {
  color: #17365f;
  font-size: 22px;
  line-height: 1.75;
  font-weight: 650;
}

.uwt-article-card h2,
.uwt-article-card h3,
.uwt-article-card h4 {
  color: var(--uwt-primary, #082c5e);
  letter-spacing: -0.04em;
  line-height: 1.16;
  margin: 40px 0 16px;
  font-weight: 900;
}

.uwt-article-card h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.uwt-article-card h3 {
  font-size: clamp(24px, 2.4vw, 32px);
}

.uwt-article-card ul,
.uwt-article-card ol {
  margin: 0 0 28px;
  padding-left: 22px;
  color: #34475c;
  font-size: 18px;
  line-height: 1.85;
}

.uwt-article-card li {
  margin-bottom: 10px;
}

.uwt-article-card a {
  color: var(--uwt-secondary, #0f6fa4);
  font-weight: 800;
}

.uwt-article-card img,
.uwt-article-card iframe,
.uwt-article-card video {
  max-width: 100%;
}

.uwt-article-card img {
  height: auto;
  border-radius: 22px;
}

.uwt-article-card blockquote {
  margin: 36px 0;
  padding: 28px 30px;
  border-left: 5px solid var(--uwt-secondary, #0f6fa4);
  border-radius: 22px;
  background: #f4f9fc;
  color: var(--uwt-primary, #082c5e);
  font-size: 23px;
  line-height: 1.55;
  font-weight: 850;
}

.uwt-article-card blockquote p {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

.uwt-post-cta {
  margin-top: 34px;
  padding: 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, var(--uwt-primary, #082c5e), var(--uwt-secondary, #0f6fa4));
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.uwt-post-cta::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.uwt-post-cta-text,
.uwt-post-cta-btn {
  position: relative;
  z-index: 2;
}

.uwt-post-cta span {
  display: block;
  color: #bfe9ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.uwt-post-cta h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.uwt-post-cta p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.65;
  max-width: 620px;
}

.uwt-post-cta-btn {
  min-width: 172px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: #fff;
  color: var(--uwt-primary, #082c5e) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.uwt-post-cta-btn:hover {
  transform: translateY(-2px);
  background: #eaf7ff;
}

.uwt-share-section {
  margin-top: 34px;
  padding: 26px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(8, 44, 94, 0.08);
  box-shadow: 0 16px 42px rgba(8, 44, 94, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.uwt-share-section h3 {
  margin: 0;
  color: var(--uwt-primary, #082c5e);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.uwt-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.uwt-share-buttons a,
.uwt-share-buttons button {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  border: 0;
  background: #f4f9fc;
  color: var(--uwt-primary, #082c5e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
}

.uwt-share-buttons a:hover,
.uwt-share-buttons button:hover {
  background: var(--uwt-secondary, #0f6fa4);
  color: #fff;
  transform: translateY(-2px);
}

.uwt-related-section {
  margin-top: 54px;
}

.uwt-section-head {
  text-align: center;
  margin-bottom: 28px;
}

.uwt-section-eyebrow {
  display: inline-flex;
  color: var(--uwt-secondary, #0f6fa4);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.uwt-section-title {
  margin: 0;
  color: var(--uwt-primary, #082c5e);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.uwt-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.uwt-related-card {
  background: #fff;
  border: 1px solid rgba(8, 44, 94, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.uwt-related-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 111, 164, 0.18);
  box-shadow: 0 24px 58px rgba(2, 6, 23, 0.12);
}

.uwt-related-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eef4f8;
}

.uwt-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.65s ease, filter 0.35s ease;
}

.uwt-related-card:hover .uwt-related-media img {
  transform: scale(1.06);
  filter: saturate(1.03) contrast(1.02);
}

.uwt-related-body {
  padding: 22px;
  text-align: center;
}

.uwt-related-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.uwt-related-title a {
  color: var(--uwt-primary, #082c5e);
  text-decoration: none;
}

.uwt-related-title a:hover {
  color: var(--uwt-secondary, #0f6fa4);
}

.uwt-related-date {
  font-size: 14px;
  color: #8a94a3;
  margin-bottom: 14px;
  font-weight: 650;
}

.uwt-related-text {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.75;
  color: #5b6573;
}

.uwt-related-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff !important;
  font-weight: 850;
  font-size: 14px;
  background: linear-gradient(135deg, var(--uwt-secondary, #0f6fa4), var(--uwt-primary, #082c5e));
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.14);
}

.uwt-related-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.18);
}

.uwt-no-related-posts {
  grid-column: 1 / -1;
  text-align: center;
  color: #64748b;
  font-size: 16px;
}

.uwt-post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 38px;
}

.uwt-post-nav-card {
  display: block;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(8, 44, 94, 0.08);
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(8, 44, 94, 0.07);
}

.uwt-post-nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(8, 44, 94, 0.11);
}

.uwt-post-nav-card span {
  display: block;
  color: var(--uwt-secondary, #0f6fa4);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.uwt-post-nav-card strong {
  display: block;
  color: var(--uwt-primary, #082c5e);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 850;
}

.uwt-post-nav-card.next {
  text-align: right;
}

.uwt-post-nav-empty {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 980px) {
  .uwt-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .uwt-post-cta {
    grid-template-columns: 1fr;
  }

  .uwt-post-cta-btn {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .uwt-post-container,
  .uwt-post-container-narrow {
    width: min(100% - 28px, 1120px);
  }

  .uwt-post-hero {
    padding: 52px 0 90px;
  }

  .uwt-post-breadcrumb {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .uwt-post-category {
    font-size: 11px;
    padding: 8px 13px;
  }

  .uwt-post-hero h1 {
    font-size: 36px;
    letter-spacing: -0.045em;
  }

  .uwt-post-intro {
    font-size: 17px;
    line-height: 1.65;
  }

  .uwt-post-meta {
    gap: 10px;
  }

  .uwt-post-meta span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .uwt-video-wrap {
    margin-top: -44px;
    border-radius: 22px;
  }

  .uwt-article-card {
    margin-top: 28px;
    border-radius: 22px;
    padding: 24px 18px;
  }

  .uwt-article-card p {
    font-size: 16px;
    line-height: 1.6;
  }

  .uwt-article-card > p:first-child,
  .uwt-article-card .lead {
    font-size: 18px;
  }

  .uwt-article-card blockquote {
    font-size: 19px;
    padding: 22px;
  }

  .uwt-post-cta {
    padding: 22px;
    border-radius: 22px;
  }

  .uwt-post-cta-btn {
    width: 100%;
  }

  .uwt-share-section {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 22px;
    padding: 22px;
  }

  .uwt-related-grid {
    grid-template-columns: 1fr;
  }

  .uwt-related-card {
    border-radius: 18px;
  }

  .uwt-related-body {
    padding: 18px 16px 20px;
  }

  .uwt-related-title {
    font-size: 21px;
  }

  .uwt-related-btn {
    width: 100%;
  }

  .uwt-post-navigation {
    grid-template-columns: 1fr;
  }

  .uwt-post-nav-card.next {
    text-align: left;
  }

  .uwt-post-nav-empty {
    display: none;
  }
}

@media (max-width: 420px) {
  .uwt-post-hero h1 {
    font-size: 31px;
  }

  .uwt-article-card {
    padding: 22px 16px;
  }

  .uwt-share-buttons a,
  .uwt-share-buttons button {
    width: 42px;
    height: 42px;
  }
}

/* =========================================================
   UWT CHARITY SOFT DESIGN UPDATE
   Softer, warmer article styling with less gradient/tech feel
========================================================= */
.uwt-post-hero {
  position: relative !important;
  overflow: hidden !important;
  padding: 70px 0 88px !important;
  background: #f3f9fc !important;
  color: #082c5e !important;
  border-bottom: 1px solid rgba(8, 44, 94, 0.08) !important;
}

.uwt-post-hero::before {
  content: "" !important;
  position: absolute !important;
  right: -120px !important;
  top: -120px !important;
  width: 360px !important;
  height: 360px !important;
  background: rgba(15, 111, 164, 0.08) !important;
  border: 0 !important;
  border-radius: 50% !important;
}

.uwt-post-hero::after {
  content: "" !important;
  position: absolute !important;
  left: -140px !important;
  bottom: -170px !important;
  width: 380px !important;
  height: 380px !important;
  background: rgba(8, 44, 94, 0.05) !important;
  border-radius: 50% !important;
  filter: none !important;
}

.uwt-post-hero-inner {
  position: relative !important;
  z-index: 2 !important;
  max-width: 920px !important;
  text-align: center !important;
  margin: 0 auto !important;
}

.uwt-post-breadcrumb {
  color: #6f8194 !important;
}

.uwt-post-breadcrumb a {
  color: #0f6fa4 !important;
}

.uwt-post-breadcrumb a:hover {
  color: #082c5e !important;
}

.uwt-post-category {
  background: #ffffff !important;
  border: 1px solid rgba(15, 111, 164, 0.14) !important;
  color: #0f6fa4 !important;
  box-shadow: 0 8px 20px rgba(8, 44, 94, 0.05) !important;
}

.uwt-post-hero h1 {
  color: #082c5e !important;
  font-size: clamp(36px, 5vw, 64px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.045em !important;
  font-weight: 900 !important;
}

.uwt-post-intro {
  color: #4b6278 !important;
}

.uwt-post-meta span {
  background: #ffffff !important;
  border: 1px solid rgba(8, 44, 94, 0.08) !important;
  color: #42566b !important;
  box-shadow: 0 8px 20px rgba(8, 44, 94, 0.04) !important;
}

.uwt-post-meta i {
  color: #0f6fa4 !important;
}

.uwt-video-wrap {
  box-shadow: 0 22px 56px rgba(8, 44, 94, 0.16) !important;
}

.uwt-article-card,
.uwt-share-section,
.uwt-related-card,
.uwt-post-nav-card {
  box-shadow: 0 14px 36px rgba(8, 44, 94, 0.07) !important;
}

.uwt-post-cta {
  margin-top: 34px !important;
  padding: 28px !important;
  border-radius: 26px !important;
  background: #ffffff !important;
  border: 1px solid rgba(8, 44, 94, 0.1) !important;
  color: #082c5e !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 24px !important;
  align-items: center !important;
  box-shadow: 0 18px 44px rgba(8, 44, 94, 0.07) !important;
  overflow: visible !important;
}

.uwt-post-cta::after {
  display: none !important;
}

.uwt-post-cta span {
  color: #0f6fa4 !important;
}

.uwt-post-cta h3 {
  color: #082c5e !important;
  letter-spacing: -0.035em !important;
  font-weight: 900 !important;
}

.uwt-post-cta p {
  color: #52667a !important;
}

.uwt-post-cta-btn {
  background: #0f6fa4 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(15, 111, 164, 0.22) !important;
}

.uwt-post-cta-btn:hover {
  background: #082c5e !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* Soften footer gradient so it feels more charity-led than tech */
.uwt-footer {
  background:
    radial-gradient(circle at 8% 18%, rgba(15, 111, 164, 0.14), transparent 30%),
    linear-gradient(180deg, #082c5e 0%, #061f45 100%) !important;
}

.uwt-footer-cta {
  background: rgba(255, 255, 255, 0.075) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12) !important;
}

@media (max-width: 980px) {
  .uwt-post-cta {
    grid-template-columns: 1fr !important;
  }

  .uwt-post-cta-btn {
    width: fit-content !important;
  }
}

@media (max-width: 760px) {
  .uwt-post-hero {
    padding: 52px 0 86px !important;
  }

  .uwt-post-hero h1 {
    font-size: 34px !important;
  }

  .uwt-post-cta {
    padding: 22px !important;
    border-radius: 22px !important;
  }

  .uwt-post-cta-btn {
    width: 100% !important;
  }
}


/* =========================
   DONATE DROPDOWN CTA v1.1.5
   ========================= */
.uwt-donate-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.uwt-donate-trigger .uwt-donate-chevron,
.uwt-mobile-donate .uwt-donate-chevron {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.uwt-donate-dropdown:hover .uwt-donate-chevron,
.uwt-donate-dropdown:focus-within .uwt-donate-chevron,
.uwt-mobile-donate-wrap.is-open .uwt-donate-chevron {
  transform: rotate(180deg);
}

.uwt-donate-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.uwt-donate-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 260px;
  padding: 10px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(8, 44, 94, 0.12);
  box-shadow: 0 24px 60px rgba(8, 44, 94, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  z-index: 10020;
}

.uwt-donate-menu::before {
  content: "";
  position: absolute;
  right: 30px;
  top: -7px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-left: 1px solid rgba(8, 44, 94, 0.12);
  border-top: 1px solid rgba(8, 44, 94, 0.12);
  transform: rotate(45deg);
}

.uwt-donate-dropdown:hover .uwt-donate-menu,
.uwt-donate-dropdown:focus-within .uwt-donate-menu,
.uwt-donate-dropdown.is-open .uwt-donate-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.uwt-donate-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 11px 12px;
  border-radius: 14px;
  color: var(--uwt-primary) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.uwt-donate-menu a i {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 111, 164, 0.09);
  color: var(--uwt-secondary);
  flex: 0 0 auto;
}

.uwt-donate-menu a:hover {
  background: #f4f9fc;
  color: var(--uwt-secondary) !important;
  transform: translateX(2px);
}

.uwt-mobile-donate-wrap {
  display: none;
}

@media (max-width: 1180px) {
  .uwt-mobile-actions {
    grid-template-columns: 1fr !important;
  }

  .uwt-mobile-donate-wrap {
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .uwt-mobile-donate {
    width: 100%;
    border: 0;
    cursor: pointer;
  }

  .uwt-mobile-donate-menu {
    display: none;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
    background: #f4f9fc;
    border: 1px solid rgba(8, 44, 94, 0.10);
  }

  .uwt-mobile-donate-wrap.is-open .uwt-mobile-donate-menu {
    display: grid;
  }

  .uwt-mobile-donate-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 11px 12px;
    border-radius: 12px;
    background: #ffffff;
    color: var(--uwt-primary) !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 18px rgba(8, 44, 94, 0.06);
  }

  .uwt-mobile-donate-menu a i {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 111, 164, 0.09);
    color: var(--uwt-secondary);
    flex: 0 0 auto;
  }
}

/* =========================
   EDITABLE DONATE MENU LOCATION v1.1.6
   Controlled from Appearance > Menus > Donate Dropdown Menu
   ========================= */
.uwt-donate-menu-list,
.uwt-donate-menu-list ul,
.uwt-mobile-donate-menu .uwt-donate-menu-list,
.uwt-mobile-donate-menu .uwt-donate-menu-list ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.uwt-donate-menu-list li,
.uwt-mobile-donate-menu .uwt-donate-menu-list li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.uwt-donate-menu-list li::marker,
.uwt-mobile-donate-menu .uwt-donate-menu-list li::marker {
  content: "" !important;
  display: none !important;
}

.uwt-donate-menu .uwt-donate-menu-list {
  display: grid !important;
  gap: 4px;
}

.uwt-donate-menu .uwt-donate-menu-list a {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 11px 12px 11px 34px;
  border-radius: 14px;
  color: var(--uwt-primary) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.uwt-donate-menu .uwt-donate-menu-list a::before {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--uwt-secondary);
  font-size: 11px;
  opacity: 0.9;
}

.uwt-donate-menu .uwt-donate-menu-list a:hover {
  background: #f4f9fc;
  color: var(--uwt-secondary) !important;
  transform: translateX(2px);
}

@media (max-width: 1180px) {
  .uwt-mobile-donate-menu .uwt-donate-menu-list {
    display: grid !important;
    gap: 8px;
  }

  .uwt-mobile-donate-menu .uwt-donate-menu-list a {
    position: relative;
    display: flex !important;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 11px 12px 11px 34px;
    border-radius: 12px;
    background: #ffffff;
    color: var(--uwt-primary) !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 18px rgba(8, 44, 94, 0.06);
  }

  .uwt-mobile-donate-menu .uwt-donate-menu-list a::before {
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--uwt-secondary);
    font-size: 11px;
  }
}

/* =========================================================
   UWT COMING SOON TEMPLATE
   Standalone page template: no header, no menu, no footer
========================================================= */
body.uwt-coming-soon-body {
  margin: 0;
  background: #f4f9fc;
}

body.uwt-coming-soon-body .uwt-header,
body.uwt-coming-soon-body .uwt-footer,
body.uwt-coming-soon-body header,
body.uwt-coming-soon-body footer {
  display: none !important;
}

.uwt-coming-soon-page,
.uwt-coming-soon-page * {
  box-sizing: border-box;
}

.uwt-coming-soon-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 5vw, 70px) 20px;
  background:
    radial-gradient(circle at 14% 16%, rgba(15, 111, 164, 0.12), transparent 28%),
    radial-gradient(circle at 90% 88%, rgba(8, 44, 94, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
  font-family: Inter, Arial, sans-serif;
  color: #082c5e;
}

.uwt-coming-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.uwt-coming-bg-shape-one {
  width: 430px;
  height: 430px;
  top: -170px;
  right: -150px;
  background: rgba(15, 111, 164, 0.08);
}

.uwt-coming-bg-shape-two {
  width: 360px;
  height: 360px;
  left: -150px;
  bottom: -160px;
  background: rgba(8, 44, 94, 0.06);
}

.uwt-coming-card {
  position: relative;
  z-index: 2;
  width: min(840px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 60px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 44, 94, 0.09);
  box-shadow: 0 24px 70px rgba(8, 44, 94, 0.12);
  text-align: center;
}

.uwt-coming-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.uwt-coming-logo,
.uwt-coming-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.uwt-coming-logo img,
.uwt-coming-logo .custom-logo {
  display: block;
  width: min(320px, 82vw);
  max-height: 92px;
  object-fit: contain;
}

.uwt-coming-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 15px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #edf7fc;
  color: #0f6fa4;
  border: 1px solid rgba(15, 111, 164, 0.16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.uwt-coming-card h1 {
  margin: 0;
  color: #082c5e;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.uwt-coming-content {
  max-width: 650px;
  margin: 20px auto 0;
  color: #4c6278;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  font-weight: 500;
}

.uwt-coming-content p {
  margin: 0 0 16px;
}

.uwt-coming-content p:last-child {
  margin-bottom: 0;
}

.uwt-coming-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.uwt-coming-btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: 0.22s ease;
}

.uwt-coming-btn:hover {
  transform: translateY(-2px);
}

.uwt-coming-btn-primary {
  background: #0f6fa4;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(15, 111, 164, 0.24);
}

.uwt-coming-btn-primary:hover {
  background: #082c5e;
}

.uwt-coming-btn-light {
  background: #ffffff;
  color: #082c5e !important;
  border: 1px solid rgba(8, 44, 94, 0.14);
  box-shadow: 0 12px 26px rgba(8, 44, 94, 0.08);
}

.uwt-coming-btn-light:hover {
  border-color: rgba(15, 111, 164, 0.26);
  color: #0f6fa4 !important;
}

.uwt-coming-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(8, 44, 94, 0.08);
}

.uwt-coming-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #42566b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.uwt-coming-contact a:hover {
  color: #0f6fa4;
}

.uwt-coming-contact i {
  color: #0f6fa4;
}

.uwt-coming-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.uwt-coming-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #edf7fc;
  border: 1px solid rgba(15, 111, 164, 0.14);
  color: #082c5e;
  text-decoration: none;
  transition: 0.22s ease;
}

.uwt-coming-socials a:hover {
  background: #0f6fa4;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .uwt-coming-soon-page {
    align-items: flex-start;
    padding: 24px 14px;
  }

  .uwt-coming-card {
    border-radius: 24px;
    padding: 28px 18px;
  }

  .uwt-coming-logo img,
  .uwt-coming-logo .custom-logo {
    width: min(250px, 80vw);
    max-height: 76px;
  }

  .uwt-coming-card h1 {
    font-size: 34px;
  }

  .uwt-coming-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .uwt-coming-btn {
    width: 100%;
  }

  .uwt-coming-contact {
    flex-direction: column;
    align-items: center;
  }
}



/* =========================
   PROJECT SINGLE CLEAN FIX
   Added only to keep Projects away from News/Post layout.
========================= */
.uwt-project-single-clean,
.uwt-project-single-clean * {
  box-sizing: border-box;
}

.uwt-project-single-clean {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #fff;
}

.uwt-project-single-clean > .vc_row {
  margin-left: 0;
  margin-right: 0;
}

.uwt-project-single-clean > *:first-child {
  margin-top: 0;
}



/* =========================
   VACANCY SINGLE TEMPLATE FIX
   Keeps Vacancies separate from News/Post layout.
========================= */
.uwt-vacancy-single-page,
.uwt-vacancy-single-page * {
  box-sizing: border-box;
}

.uwt-vacancy-single-page {
  background: linear-gradient(180deg, #f4f9fc 0%, #ffffff 100%);
  color: #10243d;
}

.uwt-vacancy-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 20px 86px;
  background:
    radial-gradient(circle at 12% 20%, rgba(15,111,164,.18), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(15,111,164,.11), transparent 25%),
    linear-gradient(180deg, #f4f9fc 0%, #eef7fc 100%);
  border-bottom: 1px solid rgba(8,44,94,.08);
}

.uwt-vacancy-hero::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -190px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(15,111,164,.10);
}

.uwt-vacancy-hero::after {
  content: "";
  position: absolute;
  left: -190px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(8,44,94,.06);
}

.uwt-vacancy-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1020px, 100%);
  margin: 0 auto;
  text-align: center;
}

.uwt-vacancy-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  color: #6a7e94;
  font-size: 14px;
  font-weight: 800;
}

.uwt-vacancy-breadcrumb a {
  color: var(--uwt-secondary, #0f6fa4);
  text-decoration: none;
}

.uwt-vacancy-breadcrumb a:hover {
  color: var(--uwt-primary, #082c5e);
}

.uwt-vacancy-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(8,44,94,.08);
  color: var(--uwt-secondary, #0f6fa4);
  box-shadow: 0 12px 28px rgba(8,44,94,.06);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.uwt-vacancy-hero h1 {
  margin: 0;
  color: var(--uwt-primary, #082c5e);
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
  letter-spacing: -.06em;
  font-weight: 950;
}

.uwt-vacancy-meta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.uwt-vacancy-meta span {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 150px;
  padding: 13px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(8,44,94,.08);
  box-shadow: 0 14px 30px rgba(8,44,94,.06);
}

.uwt-vacancy-meta strong {
  color: #6a7e94;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.uwt-vacancy-meta em {
  color: var(--uwt-primary, #082c5e);
  font-size: 15px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 850;
}

.uwt-vacancy-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 30px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--uwt-secondary, #0f6fa4), var(--uwt-primary, #082c5e));
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(8,44,94,.18);
  transition: transform .22s ease, box-shadow .22s ease;
}

.uwt-vacancy-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(8,44,94,.22);
}

.uwt-vacancy-content-wrap {
  padding: 70px 20px;
}

.uwt-vacancy-content-card {
  width: min(900px, 100%);
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(8,44,94,.08);
  border-radius: 30px;
  padding: clamp(26px, 4vw, 54px);
  box-shadow: 0 20px 54px rgba(8,44,94,.08);
}

.uwt-vacancy-content-card p,
.uwt-vacancy-content-card li {
  color: #34475c;
  font-size: 18px;
  line-height: 1.85;
}

.uwt-vacancy-content-card h2,
.uwt-vacancy-content-card h3,
.uwt-vacancy-content-card h4 {
  color: var(--uwt-primary, #082c5e);
  letter-spacing: -.04em;
  line-height: 1.18;
  font-weight: 950;
}

.uwt-vacancy-final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
  padding: 26px;
  border-radius: 24px;
  background: #f4f9fc;
  border: 1px solid rgba(8,44,94,.08);
}

.uwt-vacancy-final-cta span {
  display: block;
  color: var(--uwt-secondary, #0f6fa4);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.uwt-vacancy-final-cta h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
}

.uwt-vacancy-final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  background: var(--uwt-primary, #082c5e);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 900;
}

@media (max-width: 767px) {
  .uwt-vacancy-hero {
    padding: 52px 16px 64px;
  }

  .uwt-vacancy-hero h1 {
    font-size: 38px;
  }

  .uwt-vacancy-content-wrap {
    padding: 42px 14px;
  }

  .uwt-vacancy-content-card {
    border-radius: 22px;
    padding: 22px 16px;
  }

  .uwt-vacancy-content-card p,
  .uwt-vacancy-content-card li {
    font-size: 16px;
    line-height: 1.75;
  }

  .uwt-vacancy-final-cta {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .uwt-vacancy-final-cta a,
  .uwt-vacancy-hero-btn {
    width: 100%;
  }
}



/* =========================
   NEWS + VACANCIES ARCHIVE PAGES
========================= */
.uwt-listing-hero,
.uwt-listing-hero * {
  box-sizing: border-box;
}

.uwt-listing-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 20px 86px;
  background:
    radial-gradient(circle at 12% 22%, rgba(15,111,164,.18), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(15,111,164,.12), transparent 24%),
    linear-gradient(180deg, #f4f9fc 0%, #eef7fc 100%);
  border-bottom: 1px solid rgba(8,44,94,.08);
}

.uwt-listing-hero::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -190px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(15,111,164,.10);
}

.uwt-listing-hero::after {
  content: "";
  position: absolute;
  left: -190px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(8,44,94,.06);
}

.uwt-listing-hero__inner {
  position: relative;
  z-index: 2;
  width: min(940px, 100%);
  margin: 0 auto;
  text-align: center;
}

.uwt-listing-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(8,44,94,.08);
  color: var(--uwt-secondary, #0f6fa4);
  box-shadow: 0 12px 28px rgba(8,44,94,.06);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.uwt-listing-hero h1 {
  margin: 0;
  color: var(--uwt-primary, #082c5e);
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
  letter-spacing: -.06em;
  font-weight: 950;
}

.uwt-listing-hero p {
  max-width: 720px;
  margin: 20px auto 0;
  color: #445b74;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  font-weight: 550;
}

.uwt-news-archive-grid-section,
.uwt-vacancies-archive-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.uwt-archive-pagination {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.uwt-archive-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.uwt-archive-pagination a,
.uwt-archive-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(8,44,94,.10);
  color: var(--uwt-primary, #082c5e);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(8,44,94,.05);
}

.uwt-archive-pagination span.current,
.uwt-archive-pagination a:hover {
  background: var(--uwt-secondary, #0f6fa4);
  color: #ffffff;
}

@media (max-width: 767px) {
  .uwt-listing-hero {
    padding: 52px 16px 64px;
  }

  .uwt-listing-hero h1 {
    font-size: 38px;
  }

  .uwt-listing-hero p {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .uwt-archive-pagination a,
  .uwt-archive-pagination span {
    min-width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 13px;
  }
}



/* =========================
   EDITABLE PROJECT SINGLE PAGE
========================= */
.uwt-project-single-clean,
.uwt-project-single-clean * {
  box-sizing: border-box;
}

.uwt-project-single-clean {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #ffffff;
}

.uwt-project-single-clean > .vc_row {
  margin-left: 0;
  margin-right: 0;
}

.uwt-project-single-clean > *:first-child {
  margin-top: 0;
}

.uwt-project-empty-editor-note {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f4f9fc 0%, #ffffff 100%);
}

.uwt-project-empty-editor-note__inner {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 52px);
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(8,44,94,.08);
  box-shadow: 0 18px 50px rgba(8,44,94,.08);
  text-align: center;
}

.uwt-project-empty-editor-note__inner span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef7fc;
  color: var(--uwt-secondary, #0f6fa4);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.uwt-project-empty-editor-note__inner h1 {
  margin: 0;
  color: var(--uwt-primary, #082c5e);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.uwt-project-empty-editor-note__inner p {
  max-width: 620px;
  margin: 18px auto 0;
  color: #445b74;
  font-size: 18px;
  line-height: 1.65;
}

.uwt-project-empty-editor-note__inner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 28px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--uwt-secondary, #0f6fa4), var(--uwt-primary, #082c5e));
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 900;
}



/* =========================
   BREVO FOOTER SUCCESS FIX
========================= */
.uwt-footer-newsletter .uwt-brevo-message[hidden] {
  display: none !important;
}

.uwt-footer-newsletter.uwt-brevo-has-success .uwt-brevo-success {
  display: block !important;
}

.uwt-footer-newsletter.uwt-brevo-has-error .uwt-brevo-error {
  display: block !important;
}

.uwt-footer-newsletter.uwt-brevo-has-success .uwt-brevo-form {
  opacity: .72;
}

.uwt-brevo-submit.is-loading {
  pointer-events: none;
  opacity: .75;
}

.uwt-brevo-submit.is-loading .fa-arrow-right {
  display: none;
}

.uwt-brevo-submit.is-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  display: inline-block;
  animation: uwtBrevoSpin .8s linear infinite;
}

@keyframes uwtBrevoSpin {
  to { transform: rotate(360deg); }
}



/* =========================
   BREVO HARD SUBMIT FIX
========================= */
.uwt-footer-newsletter .uwt-brevo-message[hidden] {
  display: none !important;
}

.uwt-footer-newsletter.uwt-brevo-has-success .uwt-brevo-success,
.uwt-footer-newsletter.uwt-brevo-has-error .uwt-brevo-error {
  display: block !important;
}

.uwt-footer-newsletter.uwt-brevo-has-success .uwt-brevo-success {
  background: rgba(19,206,102,.20) !important;
  border-color: rgba(19,206,102,.42) !important;
}

.uwt-footer-newsletter.uwt-brevo-has-error .uwt-brevo-error {
  background: rgba(255,73,73,.22) !important;
  border-color: rgba(255,73,73,.45) !important;
}

.uwt-brevo-consent input:required:invalid + .uwt-consent-text {
  text-decoration: none;
}

.uwt-brevo-submit.is-loading {
  pointer-events: none;
  opacity: .75;
}

.uwt-brevo-submit.is-loading .fa-arrow-right {
  display: none;
}

.uwt-brevo-submit.is-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  display: inline-block;
  animation: uwtBrevoSpin .8s linear infinite;
}

@keyframes uwtBrevoSpin {
  to { transform: rotate(360deg); }
}



/* =========================
   NUNITO SANS HEADINGS
   Uses Nunito Sans with safe fallbacks.
   Nunito Sans is loaded through the theme font enqueue.
========================= */
:root {
  --uwt-heading-font: "Nunito Sans", "Nunito", "Montserrat", "Arial", sans-serif;
  --uwt-paragraph-font: "Nunito Sans", "Nunito", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.uwt-section-title,
.uwt-post-hero h1,
.uwt-post-cta h3,
.uwt-related-title,
.uwtNewsCard-title,
.uwt-project-title,
.uwt-openrole-main h3,
.uwt-vacancy-hero h1,
.uwt-vacancy-content-card h2,
.uwt-vacancy-content-card h3,
.uwt-listing-hero h1,
.uwt-footer-cta h2,
.uwt-footer-column h3,
.uwt-emergency-project-card h3,
.uwt-project-hero h1,
.uwt-project-empty-editor-note__inner h1 {
  font-family: var(--uwt-heading-font) !important;
}



/* =========================
   PROJECT SINGLE CLEAN TEMPLATE
   Keeps Projects away from News/Post design.
========================= */
.single-uwt_project .uwt-post-page,
.single-uwt_project .uwt-post-hero,
.single-uwt_project .uwt-post-main {
  display: none !important;
}

.uwt-project-single-clean,
.uwt-project-single-clean * {
  box-sizing: border-box;
}

.uwt-project-single-clean {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #ffffff;
}

.uwt-project-single-clean > .vc_row,
.uwt-project-single-clean > .wpb_row,
.uwt-project-single-clean > .vc_section {
  margin-left: 0;
  margin-right: 0;
}

.uwt-project-single-clean > *:first-child {
  margin-top: 0;
}

.uwt-project-empty-editor-note {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f4f9fc 0%, #ffffff 100%);
}

.uwt-project-empty-editor-note__inner {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 52px);
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(8,44,94,.08);
  box-shadow: 0 18px 50px rgba(8,44,94,.08);
  text-align: center;
}

.uwt-project-empty-editor-note__inner span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef7fc;
  color: var(--uwt-secondary, #0f6fa4);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.uwt-project-empty-editor-note__inner h1 {
  margin: 0;
  color: var(--uwt-primary, #082c5e);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.uwt-project-empty-editor-note__inner p {
  max-width: 620px;
  margin: 18px auto 0;
  color: #445b74;
  font-size: 18px;
  line-height: 1.65;
}

.uwt-project-empty-editor-note__inner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 28px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--uwt-secondary, #0f6fa4), var(--uwt-primary, #082c5e));
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 900;
}



/* =========================
   HEADER SEARCH
========================= */
.uwt-header-search {
  position: relative;
  flex: 0 0 auto;
}

.uwt-search-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(8,44,94,.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--uwt-primary, #082c5e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(8,44,94,.08);
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.uwt-search-toggle:hover,
.uwt-header-search.is-open .uwt-search-toggle {
  transform: translateY(-2px);
  background: rgba(15,111,164,.08);
  color: var(--uwt-secondary, #0f6fa4);
  box-shadow: 0 16px 34px rgba(8,44,94,.12);
}

.uwt-header-search-form {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 80;
  width: min(360px, calc(100vw - 32px));
  padding: 10px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(8,44,94,.12);
  box-shadow: 0 24px 60px rgba(8,44,94,.18);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.uwt-header-search.is-open .uwt-header-search-form {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.uwt-header-search-form::before {
  content: "";
  position: absolute;
  right: 18px;
  top: -7px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-left: 1px solid rgba(8,44,94,.12);
  border-top: 1px solid rgba(8,44,94,.12);
  transform: rotate(45deg);
}

.uwt-header-search-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 46px;
  border: 1px solid rgba(8,44,94,.12);
  border-radius: 999px;
  background: #f6f9fc;
  color: var(--uwt-primary, #082c5e);
  padding: 0 16px;
  font-size: 15px;
  font-weight: 700;
  outline: none;
}

.uwt-header-search-input:focus {
  border-color: rgba(15,111,164,.48);
  box-shadow: 0 0 0 4px rgba(15,111,164,.10);
  background: #ffffff;
}

.uwt-header-search-submit {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--uwt-primary, #082c5e), var(--uwt-secondary, #0f6fa4));
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1180px) {
  .uwt-search-toggle {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 991px) {
  .uwt-header-search {
    display: none;
  }
}



/* =========================
   SEARCH RESULTS PAGE
========================= */
.uwt-search-page,
.uwt-search-page * {
  box-sizing: border-box;
}

.uwt-search-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 20px 84px;
  background:
    radial-gradient(circle at 12% 22%, rgba(15,111,164,.18), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(15,111,164,.12), transparent 24%),
    linear-gradient(180deg, #f4f9fc 0%, #eef7fc 100%);
  border-bottom: 1px solid rgba(8,44,94,.08);
}

.uwt-search-hero::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -190px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(15,111,164,.10);
}

.uwt-search-hero::after {
  content: "";
  position: absolute;
  left: -190px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(8,44,94,.06);
}

.uwt-search-hero__inner {
  position: relative;
  z-index: 2;
  width: min(940px, 100%);
  margin: 0 auto;
  text-align: center;
}

.uwt-search-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(8,44,94,.08);
  color: var(--uwt-secondary, #0f6fa4);
  box-shadow: 0 12px 28px rgba(8,44,94,.06);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.uwt-search-hero h1 {
  margin: 0;
  color: var(--uwt-primary, #082c5e);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -.06em;
  font-weight: 950;
}

.uwt-search-page-form {
  width: min(720px, 100%);
  margin: 30px auto 0;
  padding: 9px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(8,44,94,.10);
  box-shadow: 0 18px 46px rgba(8,44,94,.10);
  display: flex;
  gap: 8px;
}

.uwt-search-page-form input {
  width: 100%;
  min-height: 52px;
  border: 0;
  outline: none;
  border-radius: 999px;
  padding: 0 20px;
  background: #f6f9fc;
  color: var(--uwt-primary, #082c5e);
  font-size: 16px;
  font-weight: 700;
}

.uwt-search-page-form button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--uwt-primary, #082c5e), var(--uwt-secondary, #0f6fa4));
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.uwt-search-results-section {
  padding: 70px 20px 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.uwt-search-results-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.uwt-search-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.uwt-search-card {
  background: #fff;
  border: 1px solid rgba(8,44,94,.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(8,44,94,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.uwt-search-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(8,44,94,.12);
}

.uwt-search-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef7fc;
  text-decoration: none;
}

.uwt-search-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.uwt-search-card:hover .uwt-search-card__media img {
  transform: scale(1.06);
}

.uwt-search-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.45), transparent 34%),
    linear-gradient(135deg, rgba(15,111,164,.18), rgba(8,44,94,.10));
  color: var(--uwt-secondary, #0f6fa4);
  font-size: 42px;
}

.uwt-search-card__type {
  position: absolute;
  top: 16px;
  left: 16px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--uwt-primary, #082c5e);
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(8,44,94,.12);
}

.uwt-search-card__body {
  padding: 24px 22px 26px;
  text-align: center;
}

.uwt-search-card__body h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.035em;
  font-weight: 950;
}

.uwt-search-card__body h2 a {
  color: var(--uwt-primary, #082c5e);
  text-decoration: none;
}

.uwt-search-card__body h2 a:hover {
  color: var(--uwt-secondary, #0f6fa4);
}

.uwt-search-card__body p {
  margin: 0 0 22px;
  color: #52657a;
  font-size: 15.5px;
  line-height: 1.7;
}

.uwt-search-card__button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--uwt-secondary, #0f6fa4), var(--uwt-primary, #082c5e));
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 900;
}

.uwt-search-card__button span {
  transition: transform .22s ease;
}

.uwt-search-card__button:hover span {
  transform: translateX(3px);
}

.uwt-search-empty {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 46px 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(8,44,94,.08);
  box-shadow: 0 18px 48px rgba(8,44,94,.08);
  text-align: center;
}

.uwt-search-empty span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--uwt-secondary, #0f6fa4);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.uwt-search-empty h2 {
  margin: 0;
  color: var(--uwt-primary, #082c5e);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
}

.uwt-search-empty p {
  margin: 14px 0 0;
  color: #52657a;
  font-size: 17px;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .uwt-search-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .uwt-search-hero {
    padding: 54px 16px 62px;
  }

  .uwt-search-hero h1 {
    font-size: 34px;
  }

  .uwt-search-page-form {
    border-radius: 24px;
    flex-direction: column;
    padding: 10px;
  }

  .uwt-search-page-form button {
    width: 100%;
    justify-content: center;
  }

  .uwt-search-results-section {
    padding: 44px 14px 64px;
  }

  .uwt-search-results-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}



/* =========================
   HEADER NUNITO SANS TYPOGRAPHY
   Uses Nunito Sans with safe fallbacks.
========================= */
.uwt-header,
.uwt-header a,
.uwt-header button,
.uwt-header input,
.uwt-topbar,
.uwt-topbar a,
.uwt-menu,
.uwt-menu a,
.uwt-shop,
.uwt-donate,
.uwt-donate-menu a,
.uwt-mobile-donate,
.uwt-mobile-shop,
.uwt-header-search-input,
.uwt-header-search-submit {
  font-family: var(--uwt-heading-font, "Nunito Sans", "Nunito", "Montserrat", "Arial", sans-serif) !important;
  font-weight: 600 !important;
}

.uwt-logo,
.uwt-logo a,
.uwt-logo img {
  font-weight: inherit;
}



/* =========================
   FOOTER NUNITO SANS TYPOGRAPHY
   Uses Nunito Sans. Keeps existing footer font weights unchanged.
========================= */
.uwt-footer,
.uwt-footer a,
.uwt-footer p,
.uwt-footer span,
.uwt-footer li,
.uwt-footer input,
.uwt-footer button,
.uwt-footer label,
.uwt-footer h1,
.uwt-footer h2,
.uwt-footer h3,
.uwt-footer h4,
.uwt-footer h5,
.uwt-footer h6 {
  font-family: var(--uwt-heading-font, "Nunito Sans", "Nunito", "Montserrat", "Arial", sans-serif) !important;
}


/* =========================
   NUNITO SANS PARAGRAPH TYPOGRAPHY
   Keeps header typography aligned with the heading font while setting p text to Nunito Sans.
========================= */
p,
.uwt-entry-content p,
.uwt-footer p {
  font-family: var(--uwt-paragraph-font, "Nunito Sans", "Nunito", Arial, sans-serif) !important;
}

.uwt-header p,
.uwt-fullwidth-header p {
  font-family: var(--uwt-heading-font, "Nunito Sans", "Nunito", "Montserrat", "Arial", sans-serif) !important;
}


/* =========================
   GLOBAL LETTER SPACING RESET
   Requested: letter-spacing 0em across the full theme.
========================= */
html,
body,
body *,
.uwt-header,
.uwt-header *,
.uwt-footer,
.uwt-footer *,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li,
button,
input,
textarea,
label,
small,
strong,
em,
div,
section,
article,
nav,
.uwt-section-title,
.uwt-page-title,
.uwt-post-hero h1,
.uwtNewsCard-title,
.uwt-project-title,
.uwt-openrole-main h3,
.uwt-vacancy-hero h1,
.uwt-listing-hero h1,
.uwt-search-hero h1,
.uwt-emergency-project-card h3,
.uwt-project-tab-card,
.uwt-project-tab-card *,
.uwt-project-panel-heading__title,
.uwt-search-card__type,
.uwt-search-eyebrow,
.uwt-listing-eyebrow,
.uwt-vacancy-label,
.uwt-openrole-type,
.uwt-project-badge {
  letter-spacing: 0em !important;
}



/* =========================
   HEADER LOGO + SHOP ICON UPDATE
========================= */
.uwt-shop-icon-only {
  width: 46px;
  min-width: 46px;
  height: 46px;
  padding: 0 !important;
  border-radius: 999px;
}

.uwt-shop-icon-only i {
  margin: 0;
  font-size: 16px;
}

.uwt-mobile-shop-icon-only {
  width: 100%;
  min-height: 48px;
  padding: 0 !important;
}

.uwt-mobile-shop-icon-only i {
  margin: 0;
  font-size: 17px;
}


/* =========================
   HEADER MENU ONE-LINE FIX
   Keeps Emergency Appeals and other menu labels on one line.
========================= */
.uwt-header-nav a,
.uwt-header-nav .menu-item > a {
  white-space: nowrap !important;
}

.uwt-header-nav ul,
.uwt-header-nav .uwt-menu {
  gap: 14px;
}

.uwt-header-nav a {
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 1200px) and (min-width: 992px) {
  .uwt-header-container {
    width: min(1380px, calc(100% - 28px));
  }

  .uwt-header-nav ul,
  .uwt-header-nav .uwt-menu {
    gap: 6px;
  }

  .uwt-header-nav a {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px !important;
  }
}


/* =========================
   FULLWIDTH UWT HEADER
========================= */
:root {
  --uwt-primary: #082c5e;
  --uwt-secondary: #0f6fa4;
  --uwt-white: #ffffff;
  --uwt-soft: #f4f8fc;
  --uwt-border: rgba(8, 44, 94, 0.10);
  --uwt-shadow: 0 18px 50px rgba(8, 44, 94, 0.12);
  --uwt-heading-font: "Nunito Sans", "Nunito", "Montserrat", "Arial", sans-serif;
}

.uwt-fullwidth-header,
.uwt-fullwidth-header * {
  box-sizing: border-box;
  letter-spacing: 0em !important;
}

.uwt-fullwidth-header {
  width: 100%;
  position: relative;
  z-index: 999;
  font-family: var(--uwt-heading-font) !important;
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(8, 44, 94, 0.08);
}

.uwt-fullwidth-header a {
  text-decoration: none !important;
}

.uwt-header-container {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
}

/* TOP STRIP */
.uwt-header-topstrip {
  min-height: 42px;
  background: linear-gradient(90deg, var(--uwt-primary), var(--uwt-secondary));
  color: #ffffff;
}

.uwt-header-topstrip .uwt-header-container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.uwt-topstrip-left,
.uwt-topstrip-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.uwt-topstrip-left a,
.uwt-topstrip-right a,
.uwt-topstrip-right span {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600 !important;
}

.uwt-topstrip-left a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.uwt-topstrip-right a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
}

/* BRAND ROW */
.uwt-header-brand-row {
  background: #ffffff;
  border-bottom: 1px solid rgba(8, 44, 94, 0.08);
}

.uwt-brand-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
}

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

.uwt-header-logo a,
.uwt-header-logo .custom-logo-link,
.uwt-header-logo .uwt-logo-link {
  display: inline-flex;
  align-items: center;
}

.uwt-header-logo img,
.uwt-header-logo .custom-logo {
  width: auto;
  max-width: 260px;
  max-height: 62px;
  display: block;
}

.uwt-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.uwt-header-shop,
.uwt-header-donate {
  min-height: 50px;
  border: 0;
  border-radius: 14px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--uwt-heading-font) !important;
  font-weight: 800 !important;
  cursor: pointer;
  transition: 0.22s ease;
}

.uwt-header-shop {
  padding: 0 18px;
  gap: 10px;
  background: #eef3f7;
  color: var(--uwt-primary) !important;
  font-size: 16px !important;
}

.uwt-header-shop i {
  font-size: 16px;
}

.uwt-header-shop:hover {
  background: #e3edf6;
  transform: translateY(-2px);
}

.uwt-donate-wrap {
  position: relative;
}

.uwt-header-donate {
  padding: 0 24px;
  gap: 10px;
  background: linear-gradient(135deg, var(--uwt-primary), var(--uwt-secondary));
  color: #ffffff !important;
  font-size: 16px !important;
  box-shadow: 0 14px 30px rgba(8, 44, 94, 0.20);
}

.uwt-header-donate:hover {
  transform: translateY(-2px);
  color: #ffffff !important;
}

.uwt-donate-dropdown,
.uwt-mobile-donate-menu {
  display: none;
}

.uwt-donate-wrap:hover .uwt-donate-dropdown {
  display: block;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 260px;
  padding: 12px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(8, 44, 94, 0.10);
  box-shadow: 0 24px 60px rgba(8, 44, 94, 0.16);
  z-index: 9999;
}

.uwt-donate-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.uwt-donate-menu-list a {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--uwt-primary) !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600 !important;
}

.uwt-donate-menu-list a:hover {
  background: #f4f8fc;
}

/* MENU ROW AFTER LOGO */
.uwt-header-menu-row {
  background: #ffffff;
  border-bottom: 1px solid rgba(8, 44, 94, 0.08);
}

.uwt-menu-inner {
  min-height: 66px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
}

.uwt-header-nav {
  justify-self: start;
}

.uwt-header-nav ul,
.uwt-header-nav .uwt-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.uwt-header-nav li {
  position: relative;
}

.uwt-header-nav a {
  min-height: 44px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--uwt-primary) !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px !important;
  font-weight: 800 !important;
  transition: 0.2s ease;
  white-space: nowrap !important;
}

.uwt-header-nav > ul > li > a:hover,
.uwt-header-nav > ul > li:hover > a,
.uwt-header-nav .current-menu-item > a,
.uwt-header-nav .current-menu-ancestor > a {
  background: rgba(15, 111, 164, 0.08);
}

.uwt-header-nav .menu-item-has-children > a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: #7a8ca3;
  transition: 0.22s ease;
}

.uwt-header-nav .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

.uwt-header-nav .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 290px;
  padding: 12px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(8, 44, 94, 0.10);
  box-shadow: 0 24px 70px rgba(8, 44, 94, 0.18);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.22s ease;
  z-index: 9999;
  list-style: none;
  margin: 0;
  display: block;
}

.uwt-header-nav .sub-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-left: 1px solid rgba(8, 44, 94, 0.10);
  border-top: 1px solid rgba(8, 44, 94, 0.10);
  transform: translateX(-50%) rotate(45deg);
}

.uwt-header-nav .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.uwt-header-nav .sub-menu li {
  width: 100%;
}

.uwt-header-nav .sub-menu a {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  justify-content: flex-start;
}

.uwt-header-nav .sub-menu a:hover {
  background: #f4f8fc;
}

/* MENU ROW SEARCH */
.uwt-header-search {
  position: relative;
  justify-self: end;
}

.uwt-menu-search-btn {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #f5f9fc;
  color: var(--uwt-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--uwt-heading-font) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.22s ease;
}

.uwt-menu-search-btn:hover {
  background: #e9f2f8;
  transform: translateY(-2px);
}

.uwt-header-search-form {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(360px, calc(100vw - 32px));
  padding: 10px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(8, 44, 94, 0.10);
  box-shadow: 0 24px 60px rgba(8, 44, 94, 0.16);
  display: flex;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.22s ease;
  z-index: 9999;
}

.uwt-header-search.is-open .uwt-header-search-form {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.uwt-header-search-form input {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(8, 44, 94, 0.12);
  border-radius: 999px;
  padding: 0 16px;
  font-family: var(--uwt-heading-font) !important;
  font-weight: 600 !important;
  color: var(--uwt-primary);
  outline: none;
}

.uwt-header-search-form button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--uwt-primary), var(--uwt-secondary));
  color: #ffffff;
  cursor: pointer;
}

/* MOBILE */
.uwt-mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(8, 44, 94, 0.14);
  border-radius: 14px;
  background: #f5f9fc;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.uwt-mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--uwt-primary);
  border-radius: 999px;
  display: block;
  transition: 0.22s ease;
}

.uwt-fullwidth-header.is-mobile-open .uwt-mobile-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.uwt-fullwidth-header.is-mobile-open .uwt-mobile-toggle span:nth-child(2) {
  opacity: 0;
}

.uwt-fullwidth-header.is-mobile-open .uwt-mobile-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.uwt-mobile-panel {
  display: none;
}

/* TABLET */
@media (max-width: 1100px) {
  .uwt-header-nav ul,
  .uwt-header-nav .uwt-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .uwt-header-nav {
    justify-self: center;
  }

  .uwt-menu-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 12px 0 16px;
  }

  .uwt-header-search {
    justify-self: center;
  }
}

/* MOBILE */
@media (max-width: 991px) {
  .uwt-header-topstrip,
  .uwt-header-menu-row,
  .uwt-header-actions {
    display: none;
  }

  .uwt-header-container {
    width: calc(100% - 24px);
  }

  .uwt-brand-inner {
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }

  .uwt-header-logo img,
  .uwt-header-logo .custom-logo {
    max-width: 205px;
    max-height: 52px;
  }

  .uwt-mobile-toggle {
    display: inline-flex;
  }

  .uwt-fullwidth-header.is-mobile-open .uwt-mobile-panel {
    display: block;
    padding: 16px 12px 18px;
    background: #ffffff;
    border-top: 1px solid rgba(8, 44, 94, 0.08);
  }

  .uwt-mobile-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 14px;
  }

  .uwt-mobile-action,
  .uwt-mobile-shop,
  .uwt-mobile-donate,
  .uwt-mobile-phone {
    min-height: 50px;
    border-radius: 14px;
    text-decoration: none !important;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--uwt-heading-font) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    cursor: pointer;
  }

  .uwt-mobile-action {
    background: #f4f8fc;
    color: var(--uwt-primary) !important;
  }

  .uwt-mobile-donate {
    width: 100%;
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--uwt-primary), var(--uwt-secondary));
    color: #ffffff !important;
  }

  .uwt-mobile-donate-wrap {
    grid-column: 1 / -1;
  }

  .uwt-mobile-donate-wrap.is-open .uwt-mobile-donate-menu {
    display: block;
    margin-top: 8px;
    padding: 10px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(8,44,94,.08);
  }

  .uwt-mobile-nav ul,
  .uwt-mobile-nav .uwt-mobile-menu {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
  }

  .uwt-mobile-nav li {
    width: 100%;
  }

  .uwt-mobile-nav a {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 14px;
    background: #f6f9fc;
    color: var(--uwt-primary) !important;
    text-decoration: none !important;
    border: 0;
    font-family: var(--uwt-heading-font) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .uwt-mobile-nav .menu-item-has-children > a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    color: #7a8ca3;
    transition: 0.22s ease;
  }

  .uwt-mobile-nav .menu-item-has-children.is-open > a::after {
    transform: rotate(180deg);
  }

  .uwt-mobile-nav .sub-menu {
    display: none;
    padding-top: 8px;
    gap: 8px;
    margin: 0;
    list-style: none;
  }

  .uwt-mobile-nav .menu-item-has-children.is-open > .sub-menu {
    display: grid;
  }

  .uwt-mobile-nav .sub-menu a {
    background: #ffffff;
    border: 1px solid rgba(8, 44, 94, 0.08);
  }

  .uwt-mobile-phone {
    margin-top: 14px;
    background: #f4f8fc;
    color: var(--uwt-primary) !important;
  }

  .uwt-header-search-form {
    position: fixed;
    top: 18px;
    left: 16px;
    right: 16px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .uwt-header-logo img,
  .uwt-header-logo .custom-logo {
    max-width: 180px;
  }
}



/* =========================
   HEADER SEARCH BUTTON FIX
========================= */
.uwt-menu-search-wrap {
  position: relative !important;
}

.uwt-menu-search-wrap .uwt-header-search-form {
  display: flex !important;
}

.uwt-menu-search-wrap.is-open .uwt-header-search-form {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.uwt-menu-search-wrap .uwt-header-search-form input[type="search"] {
  -webkit-appearance: none;
  appearance: none;
}

.uwt-menu-search-wrap .uwt-header-search-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.uwt-mobile-action.uwt-search-link {
  text-decoration: none !important;
}



/* =========================
   SEARCH ACTIVE BUTTON STYLE FIX
   Makes the full Search button active, not only the icon/circle.
========================= */
.uwt-menu-search-btn {
  position: relative;
  overflow: hidden;
  border-radius: 999px !important;
  background: #f5f9fc !important;
  color: var(--uwt-primary) !important;
  box-shadow: none;
}

.uwt-menu-search-btn i,
.uwt-menu-search-btn span {
  position: relative;
  z-index: 2;
  color: inherit !important;
  background: transparent !important;
}

.uwt-menu-search-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--uwt-primary), var(--uwt-secondary));
  opacity: 0;
  transition: opacity 0.22s ease;
  z-index: 1;
}

.uwt-menu-search-wrap.is-open .uwt-menu-search-btn,
.uwt-menu-search-btn:hover,
.uwt-menu-search-btn:focus-visible {
  color: #ffffff !important;
  background: var(--uwt-primary) !important;
  box-shadow: 0 12px 26px rgba(8, 44, 94, 0.18);
}

.uwt-menu-search-wrap.is-open .uwt-menu-search-btn::before,
.uwt-menu-search-btn:hover::before,
.uwt-menu-search-btn:focus-visible::before {
  opacity: 1;
}

.uwt-menu-search-btn:focus {
  outline: none;
}

/* Remove any theme/plugin icon background that can create the small-circle look */
.uwt-menu-search-btn .fa-magnifying-glass,
.uwt-menu-search-btn svg,
.uwt-menu-search-btn i::before {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}



/* =========================
   SEARCH BUTTON CLIPPING FIX
   Forces the full menu-row Search button to show icon + text.
========================= */
.uwt-menu-inner {
  overflow: visible !important;
}

.uwt-header-menu-row,
.uwt-header-menu-row .uwt-header-container {
  overflow: visible !important;
}

.uwt-menu-search-wrap {
  justify-self: end !important;
  overflow: visible !important;
  min-width: max-content !important;
}

.uwt-menu-search-btn,
button.uwt-menu-search-btn {
  width: auto !important;
  min-width: 118px !important;
  max-width: none !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  white-space: nowrap !important;
  overflow: visible !important;
  border-radius: 999px !important;
  line-height: 1 !important;
  text-indent: 0 !important;
  text-align: center !important;
  background: #f5f9fc !important;
  color: var(--uwt-primary) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
}

.uwt-menu-search-btn::before {
  display: none !important;
  content: none !important;
}

.uwt-menu-search-btn i,
.uwt-menu-search-btn span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: static !important;
  z-index: auto !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
  text-indent: 0 !important;
  transform: none !important;
}

.uwt-menu-search-btn .fa-magnifying-glass {
  font-size: 16px !important;
  flex: 0 0 auto !important;
}

.uwt-menu-search-btn span {
  font-size: 16px !important;
  font-weight: 800 !important;
  flex: 0 0 auto !important;
}

.uwt-menu-search-wrap.is-open .uwt-menu-search-btn,
.uwt-menu-search-btn:hover,
.uwt-menu-search-btn:focus-visible {
  background: linear-gradient(135deg, var(--uwt-primary), var(--uwt-secondary)) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(8, 44, 94, 0.18) !important;
}

.uwt-menu-search-wrap.is-open .uwt-menu-search-btn i,
.uwt-menu-search-wrap.is-open .uwt-menu-search-btn span,
.uwt-menu-search-btn:hover i,
.uwt-menu-search-btn:hover span,
.uwt-menu-search-btn:focus-visible i,
.uwt-menu-search-btn:focus-visible span {
  color: #ffffff !important;
}

@media (max-width: 1100px) and (min-width: 992px) {
  .uwt-menu-search-wrap {
    justify-self: center !important;
  }
}



/* =========================
   HEADER SPACING + HOME ICON + ALIGNMENT FIX
========================= */

/* Keep all header rows using the same alignment width */
.uwt-header-container {
  width: min(1380px, calc(100% - 48px)) !important;
}

/* Better top strip icon/text vertical alignment */
.uwt-topstrip-left,
.uwt-topstrip-right {
  align-items: center !important;
}

.uwt-topstrip-left a,
.uwt-topstrip-right span {
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
}

.uwt-topstrip-left a i {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  font-size: 14px !important;
  transform: translateY(0) !important;
}

/* More professional spacing between desktop menu items */
@media (min-width: 1111px) {
  .uwt-header-nav ul,
  .uwt-header-nav .uwt-menu {
    gap: 22px !important;
  }

  .uwt-header-nav a {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .uwt-menu-inner {
    gap: 34px !important;
  }
}

/* Keep menu from becoming too wide on medium desktop */
@media (max-width: 1320px) and (min-width: 1111px) {
  .uwt-header-nav ul,
  .uwt-header-nav .uwt-menu {
    gap: 14px !important;
  }

  .uwt-header-nav a {
    padding-left: 7px !important;
    padding-right: 7px !important;
  }
}

/* Turn first desktop menu item into a home icon */
@media (min-width: 992px) {
  .uwt-header-nav > ul > li:first-child > a,
  .uwt-header-nav .uwt-menu > li:first-child > a {
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
    justify-content: center !important;
    font-size: 0 !important;
    line-height: 0 !important;
    overflow: hidden !important;
  }

  .uwt-header-nav > ul > li:first-child > a::before,
  .uwt-header-nav .uwt-menu > li:first-child > a::before {
    content: "\f015";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
    color: var(--uwt-primary);
  }

  .uwt-header-nav > ul > li:first-child.current-menu-item > a::before,
  .uwt-header-nav .uwt-menu > li:first-child.current-menu-item > a::before,
  .uwt-header-nav > ul > li:first-child > a:hover::before,
  .uwt-header-nav .uwt-menu > li:first-child > a:hover::before {
    color: var(--uwt-primary);
  }
}

/* Tablet keeps the icon centred and menu readable */
@media (max-width: 1100px) and (min-width: 992px) {
  .uwt-header-nav ul,
  .uwt-header-nav .uwt-menu {
    gap: 14px !important;
  }
}

/* Mobile should keep normal text Home inside hamburger menu */
@media (max-width: 991px) {
  .uwt-mobile-nav .uwt-mobile-menu > li:first-child > a,
  .uwt-mobile-nav ul > li:first-child > a {
    font-size: 16px !important;
    font-weight: 800 !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 50px !important;
    padding: 0 16px !important;
    justify-content: space-between !important;
    overflow: visible !important;
  }

  .uwt-mobile-nav .uwt-mobile-menu > li:first-child > a::before,
  .uwt-mobile-nav ul > li:first-child > a::before {
    content: none !important;
    display: none !important;
  }
}



/* =========================
   HOME ICON PERFECT CENTER FIX
========================= */
@media (min-width: 992px) {
  .uwt-header-nav > ul > li:first-child > a,
  .uwt-header-nav .uwt-menu > li:first-child > a {
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-align: center !important;
    vertical-align: middle !important;
  }

  .uwt-header-nav > ul > li:first-child > a::before,
  .uwt-header-nav .uwt-menu > li:first-child > a::before {
    content: "\f015";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    line-height: 1 !important;
    width: 16px;
    height: 16px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--uwt-primary);
    margin: 0 !important;
    padding: 0 !important;
    transform: translateY(0) !important;
    position: relative;
    left: 0 !important;
    top: 0 !important;
  }
}


/* =========================
   EDITABLE FOOTER MENUS CLEAN FIX
========================= */
.uwt-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.uwt-footer-menu li {
  margin: 0 0 12px;
  padding: 0;
}

.uwt-footer-menu a {
  color: inherit;
  text-decoration: none;
}

.uwt-footer-menu a:hover {
  text-decoration: underline;
}


/* =========================
   H2 TITLE WEIGHT
========================= */
h2,
.uwt-footer-cta h2,
.uwt-article-card h2,
.uwt-vacancy-content-card h2,
.uwt-vacancy-final-cta h2,
.uwt-search-card__body h2,
.uwt-search-empty h2 {
  font-weight: 800 !important;
}


/* =========================
   HEADER DROPDOWN POLISH
========================= */
@media (min-width: 992px) {
  .uwt-header-nav .sub-menu a,
  .uwt-donate-wrap .uwt-donate-menu-list a {
    position: relative !important;
    min-height: 44px !important;
    padding: 0 14px 0 36px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  .uwt-header-nav .sub-menu a::before,
  .uwt-donate-wrap .uwt-donate-menu-list a::before {
    content: "\f105" !important;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--uwt-secondary);
    font-size: 10px;
    line-height: 1;
    opacity: 0.82;
  }

  .uwt-header-nav .sub-menu a:hover::before,
  .uwt-donate-wrap .uwt-donate-menu-list a:hover::before {
    opacity: 1;
  }

  .uwt-donate-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
    display: block;
    z-index: 9998;
  }

  .uwt-donate-wrap:hover .uwt-donate-dropdown,
  .uwt-donate-wrap:focus-within .uwt-donate-dropdown {
    display: block !important;
    position: absolute !important;
    right: 0 !important;
    top: calc(100% + 6px) !important;
    min-width: 260px !important;
    padding: 12px !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    border: 1px solid rgba(8, 44, 94, 0.10) !important;
    box-shadow: 0 24px 60px rgba(8, 44, 94, 0.16) !important;
    z-index: 9999 !important;
  }

  .uwt-donate-wrap .uwt-donate-dropdown::before {
    content: "";
    position: absolute;
    right: 34px;
    top: -7px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-left: 1px solid rgba(8, 44, 94, 0.10);
    border-top: 1px solid rgba(8, 44, 94, 0.10);
    transform: rotate(45deg);
  }
}


/* =========================
   UWT PROJECT BANNER ELEMENT
========================= */
.uwt-os-banner,
.uwt-os-banner * {
  box-sizing: border-box;
}

.uwt-os-banner {
  --uwt-primary: #082c5e;
  --uwt-secondary: #0f6fa4;
  width: 100%;
  padding: 30px 0;
  background: #ffffff;
  font-family: var(--uwt-heading-font, "Nunito Sans", "Nunito", Arial, sans-serif);
  overflow: hidden;
}

.uwt-os-banner__inner {
  width: min(1120px, calc(100% - 48px));
  min-height: 400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  overflow: hidden;
  border-radius: 28px;
  background: var(--uwt-primary);
  box-shadow: 0 24px 62px rgba(8, 44, 94, 0.16);
}

.uwt-os-banner__copy {
  position: relative;
  z-index: 2;
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 8%, rgba(15, 111, 164, 0.26), transparent 34%),
    linear-gradient(135deg, #082c5e 0%, #062a59 100%);
}

.uwt-os-banner__copy::after {
  content: "";
  position: absolute;
  top: 0;
  right: -72px;
  width: 120px;
  height: 100%;
  background: inherit;
  transform: skewX(-7deg);
  transform-origin: top;
  z-index: -1;
}

.uwt-os-banner__copy span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 15px;
  color: #d9f0ff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.uwt-os-banner__copy span::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.uwt-os-banner__copy h1 {
  max-width: 520px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 4.6vw, 62px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.uwt-os-banner__copy p {
  max-width: 500px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 650;
  letter-spacing: 0;
}

.uwt-os-banner__copy a {
  width: fit-content;
  min-height: 46px;
  margin-top: 26px;
  padding: 0 25px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--uwt-primary) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.uwt-os-banner__copy a::after {
  content: "\203A";
  margin-left: 10px;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.uwt-os-banner__copy a:hover,
.uwt-os-banner__copy a:focus-visible {
  background: var(--uwt-secondary);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.uwt-os-banner__image {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: #dfe8ef;
}

.uwt-os-banner__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 44, 94, 0.22), rgba(8, 44, 94, 0.02) 46%),
    linear-gradient(180deg, rgba(8, 44, 94, 0.02), rgba(8, 44, 94, 0.16));
  pointer-events: none;
}

.uwt-os-banner__image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.55s ease;
}

.uwt-os-banner__inner:hover .uwt-os-banner__image img {
  transform: scale(1.055);
}

@media (max-width: 920px) {
  .uwt-os-banner__inner {
    grid-template-columns: 1fr;
  }

  .uwt-os-banner__copy {
    order: 2;
  }

  .uwt-os-banner__copy::after {
    display: none;
  }

  .uwt-os-banner__image {
    order: 1;
    min-height: 285px;
  }

  .uwt-os-banner__image img {
    min-height: 285px;
  }
}

@media (max-width: 680px) {
  .uwt-os-banner {
    padding: 22px 0;
  }

  .uwt-os-banner__inner {
    width: min(100% - 28px, 1120px);
    min-height: auto;
    border-radius: 22px;
  }

  .uwt-os-banner__copy {
    padding: 28px 22px 30px;
  }

  .uwt-os-banner__copy h1 {
    font-size: 39px;
    line-height: 1.02;
  }

  .uwt-os-banner__copy p {
    font-size: 16px;
    line-height: 1.58;
  }

  .uwt-os-banner__copy a {
    width: 100%;
  }

  .uwt-os-banner__image,
  .uwt-os-banner__image img {
    min-height: 230px;
  }
}


/* =========================
   TOTAL THEME SHORTCODE COMPATIBILITY
========================= */
.uwt-total-compat-button-wrap {
  display: flex;
  width: 100%;
}

.uwt-total-compat-button-wrap.align-left {
  justify-content: flex-start;
}

.uwt-total-compat-button-wrap.align-center {
  justify-content: center;
}

.uwt-total-compat-button-wrap.align-right {
  justify-content: flex-end;
}

.uwt-total-compat-button {
  min-height: 48px;
  padding: 0 24px;
  border: 0 solid transparent;
  border-radius: 12px;
  background: var(--uwt-primary, #082c5e);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none !important;
  line-height: 1;
  font-family: var(--uwt-heading-font, "Nunito Sans", "Nunito", Arial, sans-serif);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(8, 44, 94, 0.16);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.uwt-total-compat-button:hover,
.uwt-total-compat-button:focus-visible {
  background: var(--uwt-secondary, #0f6fa4) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(8, 44, 94, 0.22);
}

.uwt-total-compat-button i {
  font-size: 0.9em;
  line-height: 1;
}
