/* ------------------------------------------------------------
   BaseTheme (Bootstrap-first) main.css
------------------------------------------------------------ */


/* ============================================================
   1) TOKENS (Design System)
============================================================ */

:root {

	
	 --white: #ffffff;
	 --yellow: #E1FF01;
	 --grey:#333C42;
	 --darkgrey: #1E1E1E;
	 --mediumgrey: #888888;
	 --periwinkle:#8DA1E9;
	 --teal:#23879E;
	 --purple:#6638B6;
	
}
.black {color: black;}
.white {color: var(--white);}
.yellow {color: var(--yellow);}
.purple {color: var(--purple);}
.grey {color: var(--grey);}
.darkgrey {color: var(--darkgrey);}
.teal {color: var(--teal);}
.periwinkle {color: var(--periwinkle);}
.mediumgrey {color: var(--mediumgrey);}


.bg_white {background-color: var(--white);}
.bg_yellow {background-color: var(--yellow);}
.bg_purple {background-color: var(--purple);}
.bg_grey {background-color: var(--grey);}
.bg_darkgrey {background-color: var(--darkgrey);}
.bg_teal {background-color: var(--teal);}
.bg_periwinkle {background-color: var(--periwinkle);}
.bg_mediumgrey {background-color: var(--mediumgrey);}

.bg-grey {
    background-color: var(--grey);
    color: #fff;
}

@font-face {
font-family: 'ABC Whyte';
src: url('./../fonts/abcwhyte-light-webfont.woff2') format('woff2'),
url('./../fonts/abcwhyte-light-webfont.woff') format('woff');
font-weight: 200;
font-style: normal;
}

@font-face {
font-family: 'ABC Whyte';
src: url('./../fonts/abcwhyte-lightitalic-webfont.woff2') format('woff2'),
url('./../fonts/abcwhyte-lightitalic-webfont.woff') format('woff');
font-weight: 200;
font-style: italic;
}

@font-face {
font-family: 'ABC Whyte';
src: url('./../fonts/abcwhyte-medium-webfont.woff2') format('woff2'),
url('./../fonts/abcwhyte-medium-webfont.woff') format('woff');
font-weight: 500;
font-style: normal;
}

@font-face {
font-family: 'ABC Whyte';
src: url('./fonts/abcwhyte-mediumitalic-webfont.woff2') format('woff2'),
url('./../fonts/abcwhyte-mediumitalic-webfont.woff') format('woff');
font-weight: 500;
font-style: italic;
}

@font-face {
font-family: 'ABC Whyte';
src: url('./../fonts/abcwhyte-regular-webfont.woff2') format('woff2'),
url('./../fonts/abcwhyte-regular-webfont.woff') format('woff');
font-weight: 400;
font-style: normal;
}

@font-face {
font-family: 'ABC Whyte';
src: url('./../fonts/abcwhyte-regularitalic-webfont.woff2') format('woff2'),
url('./../fonts/abcwhyte-regularitalic-webfont.woff') format('woff');
font-weight: 400;
font-style: italic;
}


.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}



/* ============================================================
   2) BASE 
============================================================ */

html, body { min-height: 100%;  }
body.site-body {
    min-height: 100%;
    background-color: black;
}


section { margin: auto;}


body {
  color: var(--grey);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; }
iframe { border: 0; }

*, *::before, *::after { box-sizing: border-box; }


/* ============================================================
   Screen reader text (WordPress standard)
============================================================ */

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

/* Allow screen-reader-text to be visible when focused (keyboard users) */
.screen-reader-text:focus {
  position: static !important;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: #000;
  color: #fff;
  z-index: 100000;
}

.visually-hidden {
  composes: screen-reader-text;
}

/* ============================================================
   3) GLOBAL INTERACTIONS
============================================================ */

a,
button,
.btn,
input,
select,
textarea {
  transition:
    color 250ms ease,
    background-color 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease,
    transform 250ms cubic-bezier(.2,.8,.2,1),
    opacity 250ms ease;
}

a { transition: color 0.3s linear; -webkit-transition: color 0.3s linear; -moz-transition: color 0.3s linear; text-decoration:none;}

/* ============================================================
   4) ACCESSIBILITY
============================================================ */

/* Skip to content (place after wp_body_open()) */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.75rem 1rem;
  background: #000;
  color: #fff;
  z-index: 10000;
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform 150ms cubic-bezier(.2,.8,.2,1);
}
.skip-link:focus { transform: translateY(0); }



/* ============================================================
   5) TYPOGRAPHY 
============================================================ */

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  margin-bottom: 0.6em;
}

/* ============================================================
   TYPOGRAPHY — RESPONSIVE CLAMP SCALE
   Min viewport: 320px | Max viewport: 1440px
   ============================================================ */

h1 {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 5vw + 28px, 110px);
  line-height: clamp(52px, 5vw + 30px, 110px);
  letter-spacing: 0;
  text-transform: uppercase;
}

h1.sub {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 2.5vw + 18px, 50px);
  line-height: clamp(36px, 2.5vw + 24px, 60px);
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 3vw + 16px, 60px);
  line-height: clamp(40px, 3vw + 22px, 70px);
  letter-spacing: 0;
  text-transform: uppercase;
}

h2.large {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(44px, 5vw + 24px, 100px);
  line-height: clamp(44px, 5vw + 24px, 100px);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0px;
}

h2.xlarge {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 5vw + 28px, 110px);
  line-height: clamp(52px, 5vw + 30px, 110px);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0px;
}



h2.small {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 3vw + 22px, 70px);
  line-height: 110% !important;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0px;
}



h3 {
  font-family: 'ABC Whyte', sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 1.5vw + 12px, 25px);
  line-height: clamp(26px, 1.5vw + 18px, 35px);
  letter-spacing: 0;
}



h3.newsletter {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 5vw + 28px, 110px);
  line-height: clamp(52px, 5vw + 30px, 110px);
  letter-spacing: 0;
  text-transform: uppercase;
}



.module-box__text p {  font-family: 'ABC Whyte', sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 1.5vw + 12px, 25px);
  line-height: clamp(26px, 1.5vw + 18px, 35px);
  letter-spacing: 0;}

h4 {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 2vw + 14px, 40px);
  line-height: clamp(32px, 2vw + 20px, 50px);
  letter-spacing: 0;
  text-transform: uppercase;
}

h5 {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 1.5vw + 12px, 30px);
  line-height: clamp(20px, 1.5vw + 12px, 30px);
  letter-spacing: 0;
  text-transform: uppercase;
}

h6 {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 1.5vw + 12px, 30px);
  line-height: clamp(28px, 1.5vw + 18px, 40px);
  letter-spacing: 0;
  text-transform: uppercase;
}

p, li {
  font-family: 'ABC Whyte', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1vw + 12px, 20px);
  line-height: clamp(24px, 1vw + 18px, 30px);
  letter-spacing: 0;
}


a {color:var(--purple); text-decoration:none;}
.bg_grey a, .bg_darkgrey a {color:var(--yellow); text-decoration:none;}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.smallquote {
  font-family: 'ABC Whyte', sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 1.5vw + 12px, 30px);
  line-height: clamp(26px, 1.5vw + 18px, 40px);
  letter-spacing: 0;
}

.largerquote {
  font-family: 'ABC Whyte', sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 1.5vw + 12px, 30px);
  line-height: clamp(26px, 1.5vw + 18px, 40px);
  letter-spacing: 0;
  text-align: center;
}

.quotemark {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(64px, 7vw + 32px, 150px);
  line-height: 0px;
  letter-spacing: 0;
  text-align: center;
}

.donatetitle {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(64px, 7vw + 32px, 150px);
  line-height: 1.1;
  letter-spacing: 0;
	margin-bottom: 0px !important;
}


.standfirst {
  font-family: 'ABC Whyte', sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1vw + 12px, 22px);
  line-height: clamp(24px, 1vw + 18px, 32px);
  letter-spacing: 0;
}

.author {
  font-family: 'ABC Whyte', sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 1.5vw + 12px, 25px);
  line-height: clamp(26px, 1.5vw + 18px, 35px);
  letter-spacing: 0;
}

.attribution{
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1vw + 12px, 22px);
  line-height: clamp(24px, 1vw + 18px, 32px);
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}


.teaser_category {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 0.5vw + 12px, 18px);
  line-height: clamp(22px, 0.5vw + 18px, 28px);
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}



.attribution_title {
  font-family: Anton, sans-serif;;
  font-weight: 400;
  font-size: clamp(14px, 0.5vw + 12px, 18px);
  line-height: clamp(22px, 0.5vw + 18px, 28px);
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.news_teaser {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 1.5vw + 12px, 32px);
  line-height: clamp(28px, 1.5vw + 18px, 42px);
  letter-spacing: 0;
  text-transform: uppercase;
}



.board_name {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1vw + 12px, 25px);
  line-height: clamp(24px, 1vw + 18px, 35px);
  letter-spacing: 0;
  text-transform: uppercase;
}

.board_title {
  font-family: 'ABC Whyte', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 0.5vw + 12px, 16px);
  line-height: clamp(22px, 0.5vw + 18px, 26px);
  letter-spacing: 0;
}

.row_label {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 1.5vw + 12px, 30px);
  line-height: clamp(28px, 1.5vw + 18px, 40px);
  letter-spacing: 0;
  text-transform: uppercase;
}

.deadline {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1vw + 12px, 22px);
  line-height: clamp(24px, 1vw + 18px, 32px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home_animated_text {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw + 18px, 70px);
  line-height: clamp(36px, 4vw + 18px, 70px);
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer_nav a {
  font-family: 'ABC Whyte', sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1vw + 12px, 22px);
  line-height: clamp(24px, 1vw + 18px, 32px);
  letter-spacing: 0;

}
img.sociallogo {height:27px; width:auto; padding-left:6px; margin-top:10px;} 

img.lwlogo {height:86px; width:auto; padding-left:8px; margin-top:20px;} 

.followtext {
  font-family: 'ABC Whyte', sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1vw + 12px, 22px);
  line-height: clamp(24px, 1vw + 18px, 32px);
  letter-spacing: 0.02em;

}


.right-col {

}

.right-col-inner {
  text-align: center; /* mobile */
}

@media (min-width: 992px) { /* lg breakpoint */
  .right-col {
  }
  .right-col-inner {

    text-align: left; /* body copy left-aligned */
  }
  .right-col-inner h4 {
    text-align: right; /* headline right-aligned within the block */s
  }
}

.followus {
  width: 100%;
	margin-bottom:50px;
}

.social-icons {

  justify-content: space-between; /* evenly spaces across full width */
  width: 100%;
  margin-top: 0.5rem;
}

@media (min-width: 992px) {
.social-icons .row {padding-right:60px}


}
.lw-logos {

  gap: 1.5rem;
  margin-top: 1.5rem;
}

.footerbutton {margin-bottom:40px;}

.languagesc { 

  margin-top: 1.5rem;
	  justify-content: space-between; /* evenly spaces across full width */
  width: 100%;
	margin-bottom:30px;
}

/* ============================================================
   HEADER NAV — desktop mega-dropdown
   Replaces the existing .header_nav block. Same markup, same JS
   (main.js toggles .is-open on the li and its .sub-menu — untouched),
   only the .sub-menu's positioning/layout changed:

   - .sub-menu used to be position:absolute relative to its own <li>
     (position:relative on .header_nav li), giving a small ~180px
     dropdown under just that item. It's now relative to
     .site-header instead (see the position:static override on
     .menu-item-has-children below, which removes the li as the
     nearest positioned ancestor), with left:0; right:0; so it spans
     the full viewport width edge-to-edge, matching the mockup.
   - The 3-column layout is done with column-count on the plain <ul>
     — no markup change needed, the browser distributes the existing
     <li> items into columns top-to-bottom automatically. With 9
     items this naturally gives 3 columns of 3, matching the mockup;
     it'll reflow for a different submenu item count too.
   - Scoped to min-width: 1076px, one pixel above the site's existing
     max-width: 1075px mobile mega-menu breakpoint, so this doesn't
     collide with the separate mobile nav system.
   ============================================================ */
.site-header {
  position: relative;
}


.header_nav > ul > li > a {
   font-family: Anton, sans-serif !important;
  font-weight: 400;
  font-size: clamp(16px, 1vw + 12px, 22px);
  line-height: clamp(24px, 1vw + 18px, 32px);
  letter-spacing: 0;
	text-transform:uppercase;
	color: var(--white);
}





.header_nav > ul > li > a:hover {color: var(--yellow);}



.header_nav .sub-menu-panel a{
	  font-size: clamp(14px, 0.5vw + 12px, 16px);
  line-height: clamp(22px, 0.5vw + 18px, 26px);
}
.header_nav .sub-menu-panel{
  font-family: 'ABC Whyte', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 0.5vw + 12px, 16px);

  letter-spacing: 0;
		text-transform:capitalize;
}
.header_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.header_nav li {
  position: relative;
  margin: 0 20px 0 0;

}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
}


.header_nav a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
	
}
.header_nav li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.2s ease;
  vertical-align: middle;
  margin-bottom: 2px;
}
.header_nav li.menu-item-has-children.is-open > a {
  color: var(--yellow);
}
.header_nav li.menu-item-has-children.is-open > a::after {
  transform: rotate(180deg) translateY(2px);
}

/* ── Desktop mega-dropdown panel ─────────────────────────────── */
@media (min-width: 992px) {
  .header_nav li.menu-item-has-children {
    /* removes this li as the .sub-menu's containing block, so
       left/right below resolve against .site-header instead */
    position: static;
  }
  .header_nav .sub-menu {
   background: var(--grey);   /* ← add this line */

    max-width: 1500px; /* matches the site's section {max-width:1500px} cap */
    margin: 0 auto;    /* centers the capped box within the full-bleed left:0/right:0 span */
    background: var(--grey);
    list-style: none;
       padding: 0px 40px 48px;
    column-count: 3;
    column-gap: 60px;
    text-align: left;
    z-index: 20;
  }
  .header_nav .sub-menu.is-open {
    display: block;
  }
  .header_nav .sub-menu li {
    margin: 0 0 22px;
    break-inside: avoid;
  }
  .header_nav .sub-menu a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    white-space: normal;
    color: var(--white);
  }
   .header_nav .sub-menu a::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 3px;
    vertical-align: middle;
    background-image: url('./../images/icons/menuarrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .header_nav .sub-menu a:hover {
    color: var(--yellow);
  }
  .header_nav .sub-menu a:hover::before {
    color: var(--yellow);
  }
	
}

/* ============================================================
   MOBILE NAV — hamburger + full-screen overlay
   New — there was no working mobile nav before. Uses the same
   .header_nav / .menu-item-has-children / .sub-menu markup and the
   same JS toggle already wired for the desktop dropdowns; only the
   presentation changes below 1076px. The new .mobile-nav-toggle
   button needs adding to header.php — see the note alongside it.
   ============================================================ */
.mobile-nav-toggle {
  display: none;
}
@media (max-width: 992px) {
  .header-nav-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 32px;
    height: 24px;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;

  z-index: 1000;  
  }
  .mobile-nav-toggle__bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--yellow);
    transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
  }
  .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    width: 100%;
  }
  .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    width: 100%;
  }

  /* the menu itself becomes an off-canvas panel, hidden until toggled */
  .header_nav {
    position: fixed;
    inset: 0;
    background: var(--darkgrey);
    padding: 100px 24px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .header_nav.is-open {
    transform: translateX(0);
  }
  .header_nav ul {
    flex-direction: column;
    width: 100%;
  }
  .header_nav li {
    margin: 0 0 4px;
    width: 100%;
  }
  .header_nav > ul > li > a {
    display: block;
    padding: 16px 0;
    font-size: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  /* submenus expand inline as an accordion rather than floating */
  .header_nav .sub-menu {
    display: none;
    position: static;
    background: none;
    margin: 0;
    padding: 0 0 0 16px;
    column-count: 1;
  }
  .header_nav .sub-menu.is-open {
    display: block;
  }
  .header_nav .sub-menu li {
    margin: 0;
  }
  .header_nav .sub-menu a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    color: var(--white);
  }

	/* Donate link, injected into the menu markup itself via items_wrap
     (see header-nav-markup.php) so it lives inside the same
     .header_nav element and therefore inside the off-canvas panel.
     Hidden entirely outside this mobile breakpoint. */
  .mobile-nav-donate {
    display: block;
    margin-top: 32px;
    text-align: center;
  }
}
body.mobile-nav-open {
  overflow: hidden;
}

.mobile-nav-donate {
  display: none;
}
body.mobile-nav-open {
  overflow: hidden;
}
 


@media (min-width: 992px) {
  #headercontainer .col-lg-8.text-end .header_nav {
    display: inline-block;
    vertical-align: middle;
  }
  #headercontainer .col-lg-8.text-end button.donatebutton {
    vertical-align: middle;
    margin-left: 40px;
  }
}


/* ============================================================
   ALIGNMENT FIX ONLY — apply on top of your existing header nav CSS,
   nothing else changes. Two blocks below replace two existing rules;
   everything else you have (icon paths, colours, breakpoints, mobile
   overlay) stays exactly as-is.
   ============================================================ */

/* 1) DESKTOP — replace the existing ".header_nav .sub-menu { ... }"
   rule (the one with max-width:1500px; margin:0 auto;) with this.
   The panel's width/centering now comes from a real .container
   (added by the walker in header-nav-alignment-fix.php), which
   matches the rest of the header at every breakpoint automatically —
   no more hand-picked max-width number to keep in sync. */
@media (min-width: 992px) {
.header_nav .sub-menu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-width: 1500px;   /* matches the global section{max-width:1500px} rule */
  margin: 0 auto;       /* centers that 1500px box within the full-bleed span */
  background: var(--grey);
  z-index: 20;
}
  .header_nav .sub-menu {
    display: none;
    background: var(--grey);
    list-style: none;
    margin: 0;
    padding: 0px 10px 48px; /* horizontal padding now comes from .container itself */

  }
.header_nav .sub-menu.is-open {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  column-gap: 60px;   /* tighter than the old 60px column-gap — tune to taste */
  row-gap: 6px;
  justify-content: start;   /* keeps the grid hugging the left edge instead of stretching */
}
.header_nav .sub-menu li {
  margin: 0;   /* row-gap handles spacing now, not per-item margin */
}
}







/* 2) MOBILE — the walker now wraps every submenu in .sub-menu-panel
   > .container, including on mobile, where you don't want Bootstrap's
   container padding/max-width fighting the off-canvas accordion.
   Add this alongside your existing mobile .header_nav .sub-menu rules
   to neutralise the wrapper there. */
@media (max-width: 992px) {
  .header_nav .sub-menu-panel,
  .header_nav .sub-menu-panel .container {
    position: static;
    max-width: none;
    width: auto;
    padding: 0;
    margin: 0;
	  
	  
  }
	
}


/* ============================================================
   HEADER NAV DROPDOWN —
   ============================================================ */

@media (min-width: 992px) {


  .header_nav .sub-menu-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
  }

  /* Title (left) + link columns (right) sit side by side */
  .header_nav .sub-menu-panel__inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding-top: 40px;
  }

  .header_nav .sub-menu-panel__title {
    flex: 0 0 auto;
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 2vw + 14px, 40px);
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
	  margin-left:10px;
  }

  .header_nav .sub-menu.is-open {
    flex: 1 1 auto;
  }
}

/* Mobile: no side-by-side layout, title not needed in the accordion */
@media (max-width: 992px) {
  .header_nav .sub-menu-panel__title {
    display: none;
  }
  .header_nav .sub-menu-panel__inner {
    display: block;
  }
}



.header_nav .sub-menu-panel {
  display: none;
}
.header_nav li.menu-item-has-children.is-open > .sub-menu-panel {
  display: block;
}



.footer_nav ul {list-style:none; padding-left:0px; margin-left:0px; }
.footer_nav ul li a:hover {color:var(--periwinkle);}
.footer_nav ul li a {color:white; margin-bottom:20px; display:inline-block;}
.lowerfooter {padding-top:20px;}


.footer_nav2 ul {list-style:none; padding-left:0px; margin-left:0px; }
.footer_nav2 ul li {display:inline-block; margin-right:20px; line-height:200%;   font-size: clamp(14px, 0.5vw + 12px, 16px);}
.footer_nav2 ul li a:hover {color:var(--periwinkle);}
.footer_nav2 ul li a {color:white; display:inline-block;}

@media (max-width: 992px) {
.footer_nav2 {text-align:center;}}

@media (min-width: 992px) {	
.footer_nav2 {padding-top:50px;}}




.companyinfo strong {  font-size: clamp(16px, 1vw + 12px, 20px);
  line-height: clamp(24px, 1vw + 18px, 30px);}

a.yellowtext,
a.purpletext {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 1vw + 12px, 28px);
  line-height: clamp(20px, 1vw + 12px, 26px);
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
}


a  .arrowright{
  
  font-size: clamp(14px, 0.5vw + 12px, 18px);
  line-height: clamp(22px, 0.5vw + 18px, 28px);
   vertical-align: middle;
position: relative; top: -1px
}




.paddingbtm40 {padding-bottom:40px;}


a.yellowtext {color: var(--yellow);}
a.purpletext  {color: var(--purple);}
a.yellowtext:hover {color: var(--periwinkle);}
a.purpletext:hover  {color: var(--periwinkle);}

hr.hrgrey { 
	height: 2px;
    color: #1E1E1E;
    background: #1E1E1E;
    font-size: 0;
    border: 0;
	opacity: 1;
}

hr.hryellow { 
	height: 2px;
    color: var(--yellow);
    background:  var(--yellow);
    font-size: 0;
    border: 0;
	opacity: 1;
}

hr.hrwhite { 
	height: 2px;
    color: var(--white);
    background:  var(--white);
    font-size: 0;
    border: 0;
	opacity: 1;
}

.bg_grey .yellowbutton, .bg_darkgrey .yellowbutton, .yellowbutton {display:inline-block; color: black; padding:10px 40px; background-color:var(--yellow);   font-family: Anton, sans-serif;
  font-weight: 400;   font-size: clamp(18px, 1.5vw + 12px, 28px); text-transform:uppercase;   transition: background-color 0.3s ease; border:0px}

.bg_grey .yellowbutton:hover, .bg_darkgrey .yellowbutton:hover, .yellowbutton:hover  {background-color:var(--periwinkle);}








.blackbutton {display:inline-block; color: white; padding:10px 40px; background-color:black;   font-family: Anton, sans-serif;
  font-weight: 400;   font-size: clamp(18px, 1.5vw + 12px, 28px); text-transform:uppercase;   transition: background-color 0.3s ease;}

.blackbutton:hover  {background-color:var(--grey);}



/* Classic WP content rhythm  */
.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child  { margin-bottom: 0; }

.entry-content p { margin-bottom: 1rem; }

.entry-content ul,
.entry-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.entry-content blockquote {
  border-left: 4px solid #dee2e6;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #A0A4A6;
}

.entry-content a { text-underline-offset: 0.15em; }
.entry-content a:hover { opacity: 0.85; }


/*  =================
   7) WORDPRESS CORE ALIGNMENTS 
============================================================ */

.alignleft   { float: left;  margin: 0.25rem 1.5rem 1rem 0; }
.alignright  { float: right; margin: 0.25rem 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }

/* Wide/full support  */
.alignwide {
  max-width: 1200px; /* adjust per project */
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.entry-content::after,
.bt-wysiwyg::after {
  content: "";
  display: table;
  clear: both;
}


/* ============================================================
   8) HEADER / NAV 
============================================================ */

.navbar-brand img {
  max-height: 48px;
  width: auto;
  display: block;
}


a.donatebutton {display:inline-block; color: var(--grey); padding:5px 30px; background-color:var(--yellow);   font-family: Anton, sans-serif;
  font-weight: 400; font-size:22px; text-transform:uppercase;   transition: background-color 0.3s ease; border:0px;}
a.donatebutton:hover {background-color:var(--periwinkle); }

button.donatebutton {display:inline-block; color: var(--grey); padding:5px 30px; background-color:var(--yellow);   font-family: Anton, sans-serif;
  font-weight: 400; font-size:22px; text-transform:uppercase;   transition: background-color 0.3s ease; border:0px;}
button.donatebutton:hover {background-color:var(--periwinkle); }


/* ============================================================
   DONATE MODAL
   Same overlay/box pattern as your existing team/partner modals —
   position:fixed overlay, centered box, opacity+visibility toggle via
   .is-open. Add this alongside those, doesn't touch their CSS.
   ============================================================ */
.donate-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(30, 30, 30, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}
.donate-modal-overlay.is-open {
	opacity: 1;
	visibility: visible;
}
.donate-modal {
	position: relative;
	background: var(--darkgrey);
	color: var(--white);
	max-width: 700px;
	width: 100%;
	padding: 48px 56px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.donate-modal__close {
	position: absolute;
	top: 0;
	right: 0;
	width: 44px;
	height: 44px;
	background: transparent;
	color: var(--white);
	border: none;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	z-index: 1;
}
.donate-modal__rule {
	margin: 0 0 24px;
	width: 100%;
}
.donate-modal__title {
	font-family: Anton, sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: clamp(28px, 2.5vw + 16px, 40px);
	line-height: 1.05;
	color: var(--white);
	margin: 0 0 20px;
}
.donate-modal__intro {
	font-family: 'ABC Whyte', sans-serif;
	font-weight: 500;
	font-size: clamp(16px, 1vw + 12px, 18px);
	margin: 0 0 40px;
}
.donate-modal__options {
	display: flex;
	gap: 40px;
		  justify-content: center;
}
.donate-modal__option {
	display: flex;
	flex-direction: column;
	  justify-content: center;
	gap: 16px;
	text-decoration: none;
}
.donate-modal__flag {
	display: block;
	width: 140px;
	height: auto;
	transition: transform 0.25s ease;
}
.donate-modal__option:hover .donate-modal__flag {
	transform: scale(1.05);
}
.donate-modal__label {
	font-family: 'ABC Whyte', sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: var(--white);
}
.donate-modal__option:hover .donate-modal__label {
	color: var(--yellow);
}
body.donate-modal-open {
	overflow: hidden;
}
@media (max-width: 575.98px) {
	.donate-modal {
		padding: 32px 24px;
	}
	.donate-modal__options {
		gap: 24px;
	}
	.donate-modal__flag {
		width: 100px;
	}
}

/* ============================================================
   9) MODULE SYSTEM
============================================================ */

.module { padding-block: 3rem; }
.module--tight { padding-block: 2rem; }
.module--loose { padding-block: 4rem; }

.module--bg-surface { background: #EFEFEF; }
.module--bg-white   { background: #ffffff; }
.module--bg-dark    { background: #000000; color: #ffffff; }
.module--bg-dark a  { color: #ffffff; }


/* ============================================================
   10) UTILITIES 
============================================================ */


/* ============================================================
   11) COMPONENTS 
============================================================ */

/* Buttons */


/* Slick slider helpers */

.my-slider .slide { padding-inline: 0.75rem; }
.my-slider { margin-inline: -0.75rem; }


/* ============================================================
   12) RESPONSIVE VIDEO
============================================================ */

.responsive-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 2rem 0;
}

.responsive-video iframe,
.responsive-video object,
.responsive-video embed,
.responsive-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.languagesc {margin-top:40px;}


 a.glink span {color:white !important;}



.gt_selector {	
	background: #4d4d4d;
	border: none;
	border-radius: 0;
	color: var(--white);
	font-family: 'ABC Whyte', sans-serif;
	font-size: 12px;
	padding: 8px;
	box-shadow: none;}
.footer {padding-bottom:60px; padding-top:60px;}

/* ============================================================
   13) REDUCED MOTION 
============================================================ */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* ============================================================
   14) BREAKPOINT PLACEHOLDERS
============================================================ */

@media (min-width: 992px) {
.righthandfooter {padding-left:50px;}

}


/* ============================================================
   15) DEBUG (uncomment when building layouts)
============================================================ */

/*
.module { outline: 1px dashed rgba(255,0,0,0.3); }
*/


/* ============================================================
/* ACCESSIBILITY 
============================================================ */

.header .nav-toggle {
  position: relative;
  z-index: 9999; /* Ensure it's above overlays */
  pointer-events: auto; /* Ensure it can be clicked */
}

.header,
.site-container {
  overflow: visible !important;
}



@media only screen and (max-width: 700px) {
	.newdesigns .eee  {font-language-override:30px;}
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  left: auto;
}


@media (max-width: 500px) {
  .gt_float_switcher {
    font-size: 16px;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
  }
}




@media (max-width: 1075px), (min-width: 1076px) and (max-height: 500px) {
  body.mega-menu-dropdown-mobile-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100vh;
  }

  /* Apply scrollable overlay ONLY when menu is open */
  body.mega-menu-dropdown-mobile-open #mega-menu-wrap-dropdown {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 10px;
    bottom: 0;
    z-index: 99999;
    height: 100vh;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    padding-top: 3rem;

  }

  /* Keep the toggle button above everything */
  .mega-menu-toggle {
    position: relative;
    z-index: 100000;
  }
}


@media (max-width: 767px), (max-height: 400px) {
  #gt_float_wrapper {
    transform: scale(0.5);
    transform-origin: bottom right;
  }
}



/* ============================================================
/* NAV
============================================================ */

.logochange {height:24px; width:auto;}
.doorlogo {height:40px; width:auto;}
#headercontainer {

    display: flex;
    align-items: center;

}

#headercontainer .row {
    width: 100%;
    margin: 0;
		padding-top:20px;
	padding-bottom:20px;
}

#headercontainer h3 {
    margin: 0;
    line-height: 1;
}

#headercontainer img {
    display: block;
}

/* ============================================================
   MEDIA QUERIES
============================================================ */

@media (max-width: 575.98px) {}


