:root { 
	/* Primary */
	--navy: #1B365D;
	--blue: #174A7C;
	--red: #EE3524;
	--gray: #6E7073;
	--light-tan: #F0EDE1;
	--tan: #F5E0AF;
	--dark-tan: #A68D68;

	/* Red */
	--red-100: #780000;
	--red-80:  #EE3524;
	--red-60:  #ED6053;
	--red-40:  #FFA799;

	/* Blue */
	--blue-100: #132742;
	--blue-80:  #174A7C;
	--blue-60:  #4C90D3;
	--blue-40:  #CDDDF4;

	/* Yellow */
	--yellow-100: #C24E13;
	--yellow-80:  #ED9924;
	--yellow-60:  #F2CD47;
	--yellow-40:  #FDEFB9;

	/* Green */
	--green-100: #2F470E; 
	--green-80:  #659737;
	--green-60:  #A4CE40;
	--green-40:  #E8FEB1;

	/* Gray */
	--gray-100: #3D3E40;
	--gray-80:  #A7A9AC;
	--gray-60:  #D1D3D4;
	--gray-40:  #E0E0E0;
	--gray-20:  #EEEEEE;
	--gray-00:  #F1F1F2;

	/* OEI-specific */
	--negative-impact: #8C1C2A;
	--logic-model:     #EDB931;
	--outputs:         #F4DF91;
	--outcomes:        #C8E4BF;
	--evidence:        #75C375;
	--strong-evidence: #1C8C46;
	
	/* Text */
	--font-sans: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
	--font-serif: "PermianSlabSerifTypeface", Georgia, "Times New Roman", Times, serif;
	--font-size-base: 16px;
	--line-height-base: 1.4;
	--text-color: var(--gray-100);
	--menu-color: #131E29;
}

/* ===========================
   Main Text and Global Styles
   =========================== */

body {
	margin: 0;
	font-family: var(--font-sans);
	font-weight: 400;
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	color: var(--text-color);
    background: #f9f9f9 url("data:image/svg+xml,%3Csvg width='332' height='332' viewBox='0 0 332 332' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M118.084 54.6027L106.425 95.8569L63.1774 98.686L100.636 121.478L90.4114 164.313L124.006 136.62L160.96 160.621L145.384 120.575L178.766 91.8192L133.447 93.5724L118.084 54.6027Z' fill='%23F1F1F2'/%3E%3Cpath d='M203.451 98.5266L212.214 143.606L172.233 163.25L217.141 169.002L225.559 212.288L243.14 172.867L287.543 179.813L256.272 148.773L275.778 109.71L235.797 129.368L203.451 98.5266Z' fill='%23F1F1F2'/%3E%3Cpath d='M161.663 173.85L134.044 207.427L93.0406 193.135L118.575 229.01L93.5053 264.327L133.739 251.67L159.273 287.558L160.004 245.454L202.162 231.321L160.229 216.087L161.663 173.85Z' fill='%23F1F1F2'/%3E%3Cpath d='M3.07936 197.678C-14.4083 107.691 44.3619 20.5739 134.336 3.0813C224.311 -14.4113 311.43 44.3489 328.918 134.322C346.406 224.295 287.636 311.426 197.661 328.918C107.673 346.411 20.567 287.651 3.07936 197.678ZM194.939 313.338C276.309 297.519 329.449 218.73 313.635 137.364C297.82 56.0106 219.053 2.86879 137.683 18.6878C56.3125 34.5068 3.17231 113.283 18.9869 194.663C34.8015 276.029 113.582 329.171 194.952 313.352L194.939 313.338Z' fill='%23F1F1F2'/%3E%3C/svg%3E") no-repeat calc(100% + 48px) 75px;
    background-attachment: fixed;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/* Push footer to viewport bottom on short pages (not position:fixed). */
.oei-header,
.oei-nav,
.oei-alert {
	flex-shrink: 0;
}
.site-content,
#main-content {
	flex: 1 0 auto;
}

body.oei-hide-footer .oei-footer,
body.oei-hide-footer #modal-footer {
	display: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--navy);
  margin: 0 0 .5em;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }

* { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce){
  * { transition: none !important; }
}

.container { 
	width:min(1100px, 92%); 
	margin-inline:auto; 
}
a { 
	color: var(--blue-60); 
}
.site-header, .site-footer { padding:1rem 0; }
.primary-nav { margin-top:.5rem; }

:root{
  --hover-dur: 200ms;
  --hover-fast: 160ms;
  --hover-ease: cubic-bezier(.2,.7,.2,1);
}

:where(a, button, [role="button"], .btn, .oei-alert__link, .nav a, .card, .chip, .tag){
  transition:
    color            var(--hover-dur) var(--hover-ease),
    background-color var(--hover-dur) var(--hover-ease),
    border-color     var(--hover-dur) var(--hover-ease),
    box-shadow       var(--hover-dur) var(--hover-ease),
    opacity       var(--hover-dur) var(--hover-ease),
    transform        var(--hover-fast) var(--hover-ease);
}

/* Reusable Classes */
.background-blend-mode-multiply {
	background-blend-mode: multiply;
}

.hero-row {
	.vc_column_container {
		background: rgb(255 255 255 / 25%);
		padding: .25rem;
		
		.vc_column-inner {
			padding: 2rem !important;
			background: var(--navy);
			background: rgb(from var(--navy) r g b / 0.95);
			color: #fff;
			
			h1, h2, h3, h4, h5 {
				color: #fff;
			}
		}
	}
}


/* ===========================
   Accessibility
   =========================== */
.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;
}

.screen-reader-text:focus {
  position: fixed !important;
  top: 8px; left: 8px; z-index: 10000;
  width: auto; height: auto;
  padding: .5rem .75rem;
  background: #fff; color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,.15);
  clip: auto !important; white-space: normal;
}

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}

:focus { outline: none; }

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


/* ===========================
   Custom WP Bakery Elements
   =========================== */

.oei-panel { 
	background:#fff; 
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
	margin-bottom: 2rem;
	
	.oei-panel__inner { 
		padding:1.5rem;
		display: flex;
        flex-direction: column;
        gap: 1.5rem;
		
		> * {
			margin: 0;
		}
	}
}

/* ===========================
   Header brand bar
   =========================== */
.oei-header__brandbar{
  background-color:#445C7C;
  position:relative;
  overflow:hidden;
  padding:13px 0;
	max-height: 115px;

  &::before{
    content:"";
    position:absolute;
    inset:0;
    background-repeat:no-repeat;
    background-size:cover;
    background-position:top center;
    filter:grayscale(100%);
    opacity:.15;
    pointer-events:none;
  }

  > *{ position:relative; z-index:1; }

  a.oei-toplink{
    position:absolute; top:0; right:0;
    color:#fff; text-decoration:none; opacity:.6;
    &:hover{ opacity:1; }
  }
}

/* Home icon as first menu item - active state */
.oei-menu > li.menu-item-home.current-menu-item > a,
body.home .oei-menu > li.menu-item-home > a{
  border-top:4px solid var(--red);
  color:var(--gray);
}

/* Home icon styling */
.oei-menu > li.menu-item-home > a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   Primary nav (desktop first)
   =========================== */
.oei-nav {
	background:#fff;
	border-bottom:2px solid var(--gray-20);
	z-index:200;
	position:sticky; 
	top:0;
	font-size: 1rem;
	line-height: 1;

	.oei-nav__logo-small {
		width: 0;
		height: 0;
		align-self: center;
		margin-right: .25rem;
		background: no-repeat center/contain var(--logo-small, url('/assets/img/logos/tn-logo.svg'));
		opacity: 0; 
		transform: translateY(-40px);
		transition: opacity .2s ease, transform .2s ease, wider .2s ease;
	}

	&.sticky {
		box-shadow:0 2px 8px rgba(0,0,0,.08);
		z-index:200;
		font-size: .875rem;

		.oei-nav__logo-small {
			display:inline-block;
			opacity:1; 
			transform:none;
			width: 38px;
			height: 40px;
		}
		
	}


  .oei-nav__inner{
    display:flex;
    align-items: flex-start;
    margin-bottom: -2px;
  }

  .oei-nav__home,
  .oei-nav__print{
    padding:  calc(.75em - 4px) .5em .75em;
	  font-size: 1em;
    color: var(--gray);
    border-top: 4px solid transparent;
    transition:
      color 180ms var(--hover-ease, cubic-bezier(.2,.7,.2,1)),
      border-color 180ms var(--hover-ease, cubic-bezier(.2,.7,.2,1));
    background: transparent;
    border-left: none;
    border-right: none;
    border-bottom: none;
    cursor: pointer;

    &:hover,
    &:focus-visible {
      color: var(--menu-color);
      border-top: 4px solid var(--red);
    }
  }

  .oei-nav__toggle{
    display: none; /* Hidden on desktop */
    align-items: center;
    gap: .5rem;
    padding: calc(.75em - 4px) .75em .75em;
    font-size: 1rem;
    font-family: var(--font-sans);
    letter-spacing: -0.025rem;
    color: var(--gray);
    background: transparent;
    border: none;
    cursor: pointer;
    /* No hover/active border styling for toggle */
  }
  
  .oei-nav__toggle-icon{
    display: inline-flex;
    align-items: center;
  }
  
  .oei-nav__toggle-text{
    display: inline;
  }

  .oei-nav__print{
    margin-left:auto;
    background:transparent;
    border-left:none; border-right:none; border-bottom:none;
    cursor:pointer;
  }

  /* Menu base */
  .oei-menu {
	  list-style:none; 
	  margin:0; 
	  padding:0;
	  display:flex; 
	  align-items: flex-start;
	  flex:1 1 auto; /* fill remaining space */

    > li {
      position:relative;

      > a {
        display:inline-block;
        padding: calc(.75em - 4px) .5em .75em; /* account for top border */
        color:var(--menu-color);
        text-decoration:none;
        border-top:4px solid transparent;
        transition:
          color 180ms var(--hover-ease, cubic-bezier(.2,.7,.2,1)),
          border-color 180ms var(--hover-ease, cubic-bezier(.2,.7,.2,1));

        &:hover,
        &:focus-visible {
          color:var(--gray);
          border-top-color:var(--red);
        }
      }

      /* Current item */
      &.current-menu-item > a,
      > a[aria-current="page"] {
        border-top-color:var(--red);
      }

      /* Items with children */
      &.menu-item-has-children{
        /* Font Awesome caret-down (FA7 codepoint \f0d7) */
        > a::after{
          content:"\f0d7";
          display:inline-block;
          margin-left:.35rem;
          vertical-align:middle;
          font:900 .7rem/1 "Font Awesome 7 Free","Font Awesome 6 Free",ui-sans-serif,system-ui,Arial,sans-serif;
          transition:transform 300ms ease;
        }
        &:hover > a::after,
        &:focus-within > a::after{ transform:rotate(180deg); }

        /* Dropdown panel */
        .sub-menu{
          position:absolute;
          left:0; top:calc(100% - 1px);
          background:#fff;
          border:1px solid var(--gray-20);
          border-top:0; /* no top border; aligns to menu bar */
          padding:0;
          transform:translateY(6px);
          opacity:0; visibility:hidden;
          transition:opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
          z-index:201;

          > li{ position:relative; list-style:none; }

          > li > a{
            display:block;
            padding:.625rem .875rem;
            color:var(--navy,#1B365D);
            text-decoration:none;
            white-space:nowrap;
            border-top:1px solid var(--gray-00);
          }
          > li:first-child > a{ border-top:0; }

          a:hover,
          a:focus-visible{ background:var(--gray-00); }
        }

        /* Show dropdown on hover and keyboard focus */
        &:hover > .sub-menu,
        &:focus-within > .sub-menu{
          opacity:1; visibility:visible; transform:translateY(0); transition-delay:0s;
        }
      }
    }
  }

  /* ============
     Mobile (≤40em)
     ============ */
  @media (max-width:40em){
    .oei-nav__inner{ 
      flex-wrap:wrap; 
      gap:0;
      padding: 0;
      align-items: center;
    }

    /* Show toggle button on mobile - left side */
    .oei-nav__toggle{
      display: inline-flex;
      padding: 10px 0 10px 10px;
      margin-left: -10px;
      order: 0;
      text-align: left;
      justify-content: flex-start;
      flex: 0 0 auto;
    }
    
    .oei-nav__toggle.active{
      color: var(--gray);
      opacity: 0.7;
    }
    
    /* Print button - right of toggle */
    .oei-nav__print{ 
      order: 1;
      margin-left: auto;
      padding: 10px 10px 10px 0;
      flex: 0 0 auto;
    }
    
    /* Hide print button when sticky on mobile */
    &.sticky .oei-nav__print{
      display: none;
    }
    
    /* Right align toggle when sticky on mobile */
    &.sticky .oei-nav__toggle{
      margin-left: auto;
      text-align: right;
      justify-content: flex-end;
      padding: 10px 10px 10px 0;
    }
    

    /* Closed by default; add .is-open (JS) to show */
    .oei-menu{
      display:none; 
      width:100%; 
      flex-basis:100%;
      order: 10; /* Push menu below other items */
      margin: 0;
      padding: 0;
      
      &.is-open{ 
        display:block; 
      }

      > li{ 
        border-bottom:1px solid var(--gray-20,#EEEEEE);
        list-style: none;
      }
      
      > li > a{ 
        display:block; 
        padding:.875rem 0; 
        border-top:none;
        position: relative;
      }

      .menu-item-has-children{
        > a::after{ 
          display: none; /* Hide desktop caret */
        }
        
        > a{
          padding-right: 2.5rem; /* Make room for expand icon */
        }
        
        > a .menu-expand{
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%);
          padding: .5rem;
          cursor: pointer;
          display: inline-flex;
          align-items: center;
          color: var(--gray);
        }
        
        > a .menu-expand i{
          transition: transform 200ms ease;
        }
        
        .sub-menu{
          display: none; /* Hidden by default on mobile */
          position:static; 
          border:0; 
          box-shadow:none;
          transform:none; 
          opacity:1; 
          visibility:visible;
          padding:.25rem 0 .5rem 1rem;
          margin: 0;

          > li{ 
            list-style: none;
            border-bottom: 1px solid var(--gray-20);
          }
          
          > li > a{ 
            padding:.5rem 0; 
            border:0;
            display: block;
          }
        }
        
        &.expanded .sub-menu{
          display: block;
        }
      }
    }
    
    /* Prevent body scroll when menu is open */
    body.active-menu{
      overflow: hidden;
    }
    
    /* Nav active state */
    .oei-nav.active{
      height: 100%;
    }
  }
}

/* Spacer element inserted by JS when .fixed is active to prevent layout jump */
.oei-nav-spacer{ height:46px; } /* match nav row height */

/* ===========================
   Alert Banner
   =========================== */

.oei-alert {
	background: var(--yellow-80);

	.oei-alert__link {
		display: block;
		text-decoration: none;
		color: #000;
		background: var(--yellow-80);

		&:hover,
		&:focus-visible {
			background: var(--yellow-100);
			color: #000;
		}
	}

	.oei-alert__inner {
		padding: .5rem;
		text-align: center;
	}
}

/* ===== Footer ===== */
.oei-footer{
  color: var(--text-color);
  background:#fff;
  margin-top:2rem;
  clear: both;
  flex-shrink: 0;
}

.oei-footer__top{
  background: white;
  color: var(--menu-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1500;
  min-height: 50px;
  padding: 0;
}

.oei-footer__bottom{
  font-size: 0.75rem;
  background: var(--navy);
  letter-spacing: -0.05rem;
  position: relative;
  min-height: 50px;
  z-index: 1400;
  padding: 0;
}

.oei-footer__bottom .container {
  padding: 0;
}

.oei-footer__bottom * {
  color: white;
}

.oei-footer__row{
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  gap:1rem;
}

.oei-footer__top .oei-footer__row {
  padding: 0;
}

.oei-footer__bottom .oei-footer__row {
  padding: 0;
}

.inline-list{ 
  list-style:none; 
  margin:0; 
  padding:0; 
  display:flex; 
  flex-wrap:wrap; 
  gap:.75rem 1rem; 
}

/* Footer top links */
.oei-footer__top .inline-list a{ 
  text-decoration:none; 
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  display: inline-block;
  padding: 17px 0 15px;
  color: #414042;
}

.oei-footer__top .inline-list a:hover,
.oei-footer__top .inline-list a:focus-visible{ 
  color: var(--gray-80);
}

/* Footer bottom links */
.oei-footer__bottom .inline-list a{ 
  font-size: 0.825rem;
  color: #fff;
  display: inline-block;
  padding: 15px 5px;
  font-family: var(--font-sans);
  letter-spacing: -0.025rem;
  line-height: 1.5;
  text-decoration: none;
}

.oei-footer__bottom .inline-list a:hover,
.oei-footer__bottom .inline-list a:focus-visible{ 
  color: var(--red-40);
}

.oei-footer__list--right{ text-align:right; }

.oei-footer__link{ 
  display:inline-flex; 
  align-items:center; 
  gap:.45rem; 

  i {
    color: var(--gray-80);
  }
}

/* Starball */
.oei-footer__starball{ 
  width: 70px;
  height: 70px;
  position: absolute;
  left: 50%;
  margin-left: -35px;
  bottom: -30px;
  display: block;
  z-index: 1;
}

.oei-footer__starball img{ 
  display:block; 
  width:100%; 
  height:auto; 
}

/* Dropdowns */
.oei-footer__top .has-drop{ 
  position:relative; 
}

.oei-footer__top .has-drop > a[data-toggle="drop"]{ 
  text-decoration:none; 
}

.oei-footer__top .has-drop > a[data-toggle="drop"] .fa-caret-down{ 
  margin-left:.35rem; 
  transition: transform 200ms ease; 
}

.oei-footer__top .has-drop.is-open > a[data-toggle="drop"] .fa-caret-down{ 
  transform: rotate(180deg); 
}

.oei-footer__top .drop{
  display: none;
  position:absolute; 
  bottom: 0;
  left: 0;
  min-width: 150px;
  margin-bottom: 52px;
  text-align: center;
  background:#fff; 
  border:1px solid var(--gray-20); 
  border-radius:4px;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
  z-index: 1000;
}

.oei-footer__top .drop.right {
  right: 0;
  left: auto;
}

.oei-footer__top .drop .box{ 
  padding: 15px;
  text-align: left;
  margin: 0 0 12px 0;
}

.oei-footer__top .drop .box:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 10px 10px 0;
  border-color: #FFFFFF transparent;
  display: block;
  width: 0;
  z-index: 1;
  bottom: 2px;
  left: 50%;
  margin-left: -5px;
}

.oei-footer__top .drop.right:after {
  right: 25px;
  left: auto;
}

.oei-footer__top .has-drop.is-open .drop{ 
  display: block;
}

/* Font size dropdown specific */
.oei-footer__top #footer-fontsize .drop {
  min-width: 190px;
}

.oei-footer__top #footer-fontsize .drop .box {
  text-align: center;
}

/* Translate dropdown specific */
.oei-footer__top #footer-translate .drop {
  min-width: 175px;
}

/* Font size controls */
.fontsize-controls .button{
  border:1px solid var(--gray-20); background:#fff; padding:.35rem .6rem; border-radius:4px; cursor:pointer;
}
.fontsize-controls .button:hover, .fontsize-controls .button:focus-visible{ background: var(--gray-00); }
.fontsize-controls .button.active{ border-color: var(--navy); }

/* Small screens */
@media (max-width: 40em){
  .oei-footer__top {
    padding: 10px 0 30px;
  }
  
  .oei-footer__top .oei-footer__row{ 
    flex-direction:column; 
    align-items:flex-start; 
    padding: 0 5px;
  }
  
  .oei-footer__top .inline-list {
    width: 100%;
    justify-content: center;
  }
  
  .oei-footer__top .inline-list > li {
    margin: 0 5px;
  }
  
  .oei-footer__top .inline-list a {
    padding: 10px 0 5px;
    font-size: 1em;
  }
  
  .oei-footer__list--right{ 
    text-align:left; 
  }
  
  .oei-footer__top .drop{ 
    right:auto; 
    left:0; 
    margin-bottom: 27px !important;
  }
  
  .oei-footer__top .drop.right {
    right: 0;
    left: auto;
  }
  
  .oei-footer__starball {
    width: 40px;
    height: 40px;
    margin-left: -20px;
    bottom: -10px;
  }
  
  .oei-footer__bottom {
    padding: 30px;
    text-align: left;
    color: #fff;
  }
  
  .oei-footer__bottom .oei-footer__row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .oei-footer__bottom .inline-list {
    width: 100%;
  }
  
  .oei-footer__bottom .inline-list a {
    padding: 5px;
    color: #fff;
  }
  
  .oei-footer__top #footer-fontsize .drop {
    min-width: 115px;
  }
}

/* ===== Glossary ===== */

.oei-glossary__filters {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.oei-glossary__search-form {
  display: flex;
  gap: 0;
  align-items: stretch;
  flex: 1;
  min-width: 200px;
}

.oei-glossary__search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.oei-glossary__search-input:focus {
  border-color: var(--navy, #1B365D);
  box-shadow: 0 0 0 2px rgba(27, 54, 93, 0.1);
}

.oei-glossary__search-input::placeholder {
  color: #999;
}

.oei-glossary__search-button {
  padding: 0.75rem 1.25rem;
  background: var(--navy, #1B365D);
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.oei-glossary__search-button:hover,
.oei-glossary__search-button:focus {
  background: var(--navy);
  outline: none;
}

.oei-glossary__search-button:focus {
  box-shadow: 0 0 0 2px rgba(27, 54, 93, 0.3);
}

.oei-glossary__search-button i {
  font-size: 1rem;
}

.oei-glossary__jump-to {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.oei-glossary__jump-label {
  font-size: 1rem;
  color: #666;
  white-space: nowrap;
}

.oei-glossary__jump-select {
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  color: #333;
  background: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  min-width: 80px;
  width: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.oei-glossary__jump-select:focus {
  border-color: var(--navy, #1B365D);
  box-shadow: 0 0 0 2px rgba(27, 54, 93, 0.1);
}

.oei-glossary__jump-select:hover {
  border-color: #999;
}

.oei-glossary__highlight {
  background-color: var(--yellow-40);
  padding: 0 0.1em;
  border-radius: 2px;
  font-weight: inherit;
}

.oei-glossary__no-results {
  text-align: center;
  padding: 2rem;
  color: var(--gray-80);
  font-style: italic;
}

.oei-glossary__item  { 
	background:#fff; 
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
	margin-bottom: 2rem;
	transition: box-shadow 0.3s ease;
	
	.oei-glossary__inner { 
		padding:1.5rem;
		display: flex;
    flex-direction: column;
    gap: 1.5rem;
		
		> * {
			margin: 0;
		}

    .oei-glossary__definition {
      p {
        margin-top: 0;
      }

      p:last-child {
        margin-bottom: 0;
      }

      ul {
        @media (min-width: 641px) {
          column-count: 2;
          column-gap: 3rem;
        }

        li {
          @media (min-width: 641px) {
            break-inside: avoid;
            page-break-inside: avoid; /* Fallback for older browsers */
          }
        }
      }
    }
	}
}

.oei-glossary__item--jumped {
	box-shadow: 0 0 0 3px var(--yellow-40), 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* Visually hidden utility (if not already in your CSS) */
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Program inventory (tn_program) — single program */
.oei-program-single__back-bar {
  border-top: 1px solid var(--navy);
  background: var(--gray-40);
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
}
.oei-program-single__back-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: min(1100px, 92%);
  margin-inline: auto;
  padding: 0.5rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--navy);
  text-decoration: none;
}
.oei-program-single__back-link:hover,
.oei-program-single__back-link:focus-visible {
  color: var(--blue);
}
.oei-program-single__back-icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
}
.oei-program-single__back-label {
  flex: 1 1 auto;
  min-width: 0;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 10%;
}
.oei-program-single__back-link:hover .oei-program-single__back-label,
.oei-program-single__back-link:focus-visible .oei-program-single__back-label {
  text-decoration-thickness: 10%;
}
.oei-program-single {
  padding-bottom: 2rem;
  padding-top: 1rem;
}
.oei-program-single__panel {
  background: #fff;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  margin-top: 1rem;
}
.oei-program-single__panel--hero {
  margin-top: 0;
}
.oei-program-single__title {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--navy);
  margin: 0 0 1.5rem;
}
.oei-program-single__panel--hero:has(.oei-program-single__evidence-row) .oei-program-single__title {
  margin-bottom: 1rem;
}
.oei-program-single__evidence-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}
.oei-program-single__evidence-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  border: 2px solid var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oei-program-single__evidence-badge-letter {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--gray-100);
}
.oei-program-single__evidence-badge--no-effects {
  background: #fff;
}
.oei-program-single__evidence-badge--mixed-effects {
  background: var(--gray-40);
}
.oei-program-single__evidence-badge--negative-effects {
  background: var(--negative-impact);
  padding: 0;
}
.oei-program-single__evidence-badge--strong-evidence {
  background: var(--strong-evidence);
  padding: 0;
}
.oei-program-single__evidence-badge--outcomes {
  background: var(--outcomes);
  padding: 0;
}
.oei-program-single__evidence-badge--outputs {
  background: var(--outputs);
  padding: 0;
}
.oei-program-single__evidence-badge--logic-model {
  background: var(--logic-model);
  padding: 0;
}
.oei-program-single__evidence-rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem;
}
.oei-program-single__evidence-kicker {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--navy);
  flex-shrink: 0;
}
.oei-program-single__evidence-step-label {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--gray-100);
}
.oei-program-single__evidence-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: center;
  margin-left: 0.125rem;
}
.oei-program-single__evidence-tip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.25rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: help;
  border-radius: 4px;
  line-height: 1;
  font-size: 1.125rem;
}
.oei-program-single__evidence-tip-btn:hover,
.oei-program-single__evidence-tip-btn:focus-visible {
  color: var(--gray-100);
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}
.oei-program-single__evidence-tip-bubble {
  /* Fixed + high z-index so the bubble paints above sticky nav (200) / dropdowns (201); position set via JS (--oei-evidence-tip-*). */
  position: fixed;
  left: var(--oei-evidence-tip-x, 50%);
  top: var(--oei-evidence-tip-y, 0);
  right: auto;
  bottom: auto;
  transform: translate(-50%, calc(-100% - 10px));
  z-index: 10050;
  box-sizing: border-box;
  min-width: 220px;
  max-width: min(22rem, calc(100vw - 2rem));
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--gray-40, #ccc);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--gray-100);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.oei-program-single__evidence-tip-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
  border: 7px solid transparent;
  border-top-color: #fff;
  filter: drop-shadow(0 1px 0 var(--gray-40, #ccc));
}
.oei-program-single__evidence-tip-bubble__title {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--navy);
}
.oei-program-single__evidence-tip-bubble__body {
  display: block;
  font-weight: 400;
}
.oei-program-single__evidence-tip:hover .oei-program-single__evidence-tip-bubble,
.oei-program-single__evidence-tip:focus-within .oei-program-single__evidence-tip-bubble {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.oei-program-single__ident {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: flex-start;
}
.oei-program-single__ident-row {
  flex: 1 1 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: baseline;
  min-width: min(100%, 280px);
}
.oei-program-single__label {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--navy);
  flex-shrink: 0;
}
.oei-program-single__value {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--gray-100);
}
.oei-program-single__h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--navy);
  margin: 0 0 1rem;
}
.oei-program-single__prose {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--gray-100);
}
.oei-program-single__prose > :first-child {
  margin-top: 0;
}
.oei-program-single__prose > :last-child {
  margin-bottom: 0;
}
.oei-program-single__cta-wrap {
  margin: 1.5rem 0 0;
}

.oei-program-single__cta-wrap .oei-button,
.tn-program-card__cta-wrap .oei-button {
  margin: 0;
}
.oei-program-single__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.oei-program-single__panel--half {
  margin-top: 0;
  min-height: 100%;
}
.oei-program-single__detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: baseline;
  margin-bottom: 1.25rem;
}
.oei-program-single__detail-row:last-child {
  margin-bottom: 0;
}

.oei-program-single__research-block {
  margin-top: 1rem;
}
.oei-program-single__research-block:first-of-type {
  margin-top: 0;
}
.oei-program-single__research-desc {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--gray-100);
}

.oei-program-single__accordion-card {
  background: #fff;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
  border-radius: 0;
}
.oei-program-single__accordion-item {
  border-bottom: 1px solid var(--gray-60);
}
.oei-program-single__accordion-item:last-child {
  border-bottom: none;
}
.oei-program-single__summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  padding: 1rem;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  background: var(--gray-20);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--blue);
  border-bottom: 1px solid transparent;
  transition: background-color var(--hover-dur) var(--hover-ease);
}
.oei-program-single__accordion-item.is-open > .oei-program-single__summary {
  background: #fff;
  border-bottom-color: transparent;
}
.oei-program-single__acc-panel {
  display: grid;
  /* minmax(0, …) avoids implicit min-content sizing so the row can collapse fully */
  grid-template-rows: minmax(0, 0fr);
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.oei-program-single__accordion-item.is-open > .oei-program-single__acc-panel {
  grid-template-rows: minmax(0, 1fr);
}
/* Wrapper clips content; padding stays on .acc-body so the grid track can shrink to 0 */
.oei-program-single__acc-panel-inner {
  min-height: 0;
  overflow: hidden;
}
.oei-program-single__acc-body {
  padding: 1rem 1rem 2rem 3rem;
  background: #fff;
  color: var(--gray-100);
  font-size: 1rem;
  line-height: 1.4;
}
@media (prefers-reduced-motion: reduce) {
  .oei-program-single__acc-panel {
    transition-duration: 0.01ms;
  }
  .oei-program-single__acc-icon i {
    transition-duration: 0.01ms !important;
  }
}
.oei-program-single__acc-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.oei-program-single__acc-icon i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.oei-program-single__accordion-item:not(.is-open) .oei-program-single__acc-icon i {
  transform: rotate(-90deg);
}
.oei-program-single__acc-title {
  flex: 1;
}
.oei-program-single__acc-body--logic {
  padding-top: 1rem;
}
.oei-program-single__logic-text {
  margin: 0;
  max-width: 58.625rem;
}
.oei-program-single__metric-group--sep {
  margin-top: 1rem;
  padding-top: 1rem;
}
.oei-program-single__metric-numtitle {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.oei-program-single__metric-num {
  font-weight: 700;
  flex-shrink: 0;
}
.oei-program-single__metric-title {
  margin: 0;
  flex: 1;
}
.oei-program-single__metric-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.oei-program-single__metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-20);
}
.oei-program-single__metric-rows .oei-program-single__metric-row:first-child {
  border-top: 1px solid var(--gray-20);
}
.oei-program-single__metric-year {
  font-weight: 700;
  min-width: 3rem;
}
.oei-program-single__metric-val {
  flex: 1;
  min-width: 8rem;
}

/* Program inventory archive (tn_program) — full-width layout + filter sidebar */

.tn-program-archive--wide {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.tn-program-archive__layout {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}
.tn-program-archive__sidebar {
  flex: 0 0 320px;
  width: 320px;
  border: 1px solid var(--navy);
  background: var(--gray-00);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: var(--oei-archive-sidebar-top, 0);
  align-self: stretch;
  min-height: calc(100vh - var(--oei-archive-sidebar-top, 0));
  max-height: calc(100vh - var(--oei-archive-sidebar-top, 0));
  overflow-y: auto;
  z-index: 20;
}
.tn-program-archive__sidebar-top {
  background: var(--blue-100);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}
.tn-program-archive__search-bar {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 34px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.tn-program-archive__search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.5rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--gray-100);
}
.tn-program-archive__search-input::placeholder {
  color: var(--gray);
}
.tn-program-archive__search-btn {
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
}
.tn-program-archive__search-btn:hover,
.tn-program-archive__search-btn:focus-visible {
  background: var(--blue);
}
.tn-program-archive__search-btn i {
  font-size: 1rem;
}
.tn-program-archive__results-row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}
.tn-program-archive__results-count {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.4;
  flex: 1;
  min-width: 0;
}
.tn-program-archive__results-label {
  font-weight: 700;
  flex-shrink: 0;
}
.tn-program-archive__results-detail {
  font-weight: 400;
  flex: 1;
  min-width: 0;
}
.tn-program-archive__reset {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  border: 1px solid #ee3524;
  border-radius: 999px;
  background: #fff;
  padding: 0.25rem 0.5rem;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #ee3524;
  cursor: pointer;
  white-space: nowrap;
}
.tn-program-archive__reset:hover,
.tn-program-archive__reset:focus-visible {
  background: #fff5f4;
}
.tn-program-archive__reset i {
  font-size: 12px;
}
.tn-program-archive__reset[hidden] {
  display: none !important;
}
.tn-program-archive__filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--blue-100);
  border-bottom: 4px solid var(--blue);
  color: #fff;
  flex-shrink: 0;
}
.tn-program-archive__filters-title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
}
.tn-program-archive__filters-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.tn-program-archive__filters-toggle-all {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}
.tn-program-archive__filters-toggle-all.is-muted {
  opacity: 0.5;
  cursor: default;
}
.tn-program-archive__filters-toggle-all:not(.is-muted):hover,
.tn-program-archive__filters-toggle-all:not(.is-muted):focus-visible {
  text-decoration: underline;
}
.tn-program-archive__filters-toggle-all i {
  font-size: 12px;
}
.tn-program-archive__filters-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 auto;
  min-height: 0;
}
.tn-program-archive__active-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.tn-program-archive__active-pills[hidden] {
  display: none !important;
}
.tn-program-archive__active-pill-remove {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid #fff;
  border-radius: 999px;
  background: var(--blue);
  padding: 0.25rem 0.5rem;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  max-width: 100%;
}
.tn-program-archive__active-pill-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tn-program-archive__active-pill-icon {
  flex-shrink: 0;
  font-size: 12px;
  line-height: 1;
}
.tn-program-archive__filters-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 auto;
  min-height: 0;
}
.tn-program-archive__accordions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2rem;
}
.tn-program-archive__accordion {
  margin: 0;
}
.tn-program-archive__accordion-heading {
  margin: 0;
}
.tn-program-archive__accordion-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  border: 0;
  border-bottom: 2px solid #ee3524;
  background: transparent;
  padding: 0.25rem 0.5rem;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  gap: 0.25rem;
}
.tn-program-archive__accordion-title {
  flex-shrink: 0;
}
.tn-program-archive__accordion-count {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--blue);
  text-align: left;
}
.tn-program-archive__accordion-count[hidden] {
  display: none;
}
.tn-program-archive__accordion-trigger:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}
.tn-program-archive__accordion-icon {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 12px;
  line-height: 1.4;
  color: var(--navy);
  transition: transform 0.2s ease;
}
.tn-program-archive__accordion:not(.is-collapsed) .tn-program-archive__accordion-icon {
  transform: rotate(180deg);
}
.tn-program-archive__accordion.is-collapsed .tn-program-archive__accordion-panel {
  display: none;
}
.tn-program-archive__accordion-panel {
  padding: 0.75rem 0.5rem 0;
}
.tn-program-archive__accordion-empty {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--gray);
}
.tn-program-archive__filter-list {
  margin: 0;
  padding: 0 !important;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tn-program-archive__filter-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.4;
  color: var(--gray-100);
  cursor: pointer;
}
.tn-program-archive__filter-text {
  font-weight: 400;
}
.tn-program-archive__filter-checkbox:checked + .tn-program-archive__filter-text {
  font-weight: 700;
}
.tn-program-archive__filter-checkbox {
  flex-shrink: 0;
  margin: 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--gray-100);
  border-radius: 4px;
}
.tn-program-archive__filter-helper {
  margin: 0.5rem 0 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--gray-100);
}
.tn-program-archive__chart-filter {
  cursor: pointer;
}
.tn-program-archive__main {
  flex: 1 1 auto;
  min-width: 0;
  padding: 1.5rem 1.5rem 3rem;
  border-top: 1px solid var(--navy);
  border-left: 0;
  position: relative;
}
.tn-program-archive__scroll-top {
  position: fixed;
  bottom: 1.5rem;
  z-index: 145;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, background-color 0.2s ease;
}
.tn-program-archive__scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.tn-program-archive__scroll-top[hidden] {
  display: inline-flex;
}
.tn-program-archive__scroll-top:hover,
.tn-program-archive__scroll-top:focus-visible {
  background: var(--blue);
}
.tn-program-archive__scroll-top i {
  font-size: 1rem;
  line-height: 1;
}
.tn-program-archive__main.has-chart-sticky .tn-program-archive__grid {
  padding-top: var(--oei-chart-sticky-height, 0);
}
@media (max-width: 40em) {
  .tn-program-archive__layout {
    flex-direction: column;
  }
  .tn-program-archive__sidebar {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    max-height: none;
    position: static;
    border-right: 1px solid var(--navy);
  }
  .tn-program-archive__main {
    border-left: 1px solid var(--navy);
    padding: 1rem;
  }
}

/* Programs by Evidence Step chart (Figma Evidence Step panel) */
.tn-program-archive__chart-panel {
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tn-program-archive__chart-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--navy);
}
.tn-program-archive__chart {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1.5rem;
  width: 100%;
}
.tn-program-archive__chart-column {
  flex: 1 1 0;
  min-width: min(100%, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.tn-program-archive__chart-column--zero {
  opacity: 0.5;
}

.tn-program-archive__chart-column--zero .tn-program-archive__chart-bar {
  min-height: 0 !important;
  border-width: 1px;
}

.tn-program-archive__chart-bar {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid var(--gray-100);
  flex-shrink: 0;
}
#tn-program-evidence-chart-full .tn-program-archive__chart-bar {
  min-height: 0.375rem;
}
.tn-program-archive__chart-bar--logic-model {
  background: var(--logic-model);
}
.tn-program-archive__chart-bar--outputs {
  background: var(--outputs);
}
.tn-program-archive__chart-bar--outcomes {
  background: var(--outcomes);
}
.tn-program-archive__chart-bar--evidence {
  background: var(--evidence);
}
.tn-program-archive__chart-bar--strong-evidence {
  background: var(--strong-evidence);
}
.tn-program-archive__chart-bar--other {
  background: #fff;
}
.tn-program-archive__chart-label {
  margin: 0;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--gray-100);
  word-break: break-word;
}

/* Sticky compact chart (Figma Evidence Steps Sticky) */
.tn-program-archive__chart-region {
  position: relative;
}
.tn-program-archive__chart-sticky {
  position: fixed;
  top: var(--oei-chart-sticky-top, 0);
  z-index: 150;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.tn-program-archive__chart-sticky.is-active {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}
.tn-program-archive__chart-sticky-bar {
  display: flex;
  width: 100%;
  align-items: stretch;
}
.tn-program-archive__chart-sticky-segment {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
  border: 2px solid var(--gray-100);
  margin-left: -2px;
}
.tn-program-archive__chart-sticky-segment:first-child {
  margin-left: 0;
}
.tn-program-archive__chart-sticky-segment--zero {
  opacity: 0.5;
}
.tn-program-archive__chart-sticky-segment--logic-model {
  background: var(--logic-model);
}
.tn-program-archive__chart-sticky-segment--outputs {
  background: var(--outputs);
}
.tn-program-archive__chart-sticky-segment--outcomes {
  background: var(--outcomes);
}
.tn-program-archive__chart-sticky-segment--evidence {
  background: var(--evidence);
}
.tn-program-archive__chart-sticky-segment--strong-evidence {
  background: var(--strong-evidence);
}
.tn-program-archive__chart-sticky-segment--other {
  background: #fff;
}
.tn-program-archive__chart-sticky-count {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--gray-100);
  word-break: break-word;
}
.tn-program-archive__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tn-program-archive__sentinel {
  min-height: 3rem;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--gray-80);
}
.tn-program-archive__sentinel--busy {
  color: var(--gray-100);
}
.tn-program-archive__empty {
  margin: 0;
}

.tn-program-card {
  margin: 0;
}
.tn-program-card__inner {
  background: #fff;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tn-program-card__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.tn-program-card__agency {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--blue);
}
.tn-program-card__title {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--navy);
  margin: 0;
}
.tn-program-card__title a {
  color: inherit;
  text-decoration: none;
}
.tn-program-card__title a:hover,
.tn-program-card__title a:focus-visible {
  text-decoration: underline;
}
.tn-program-card__ident {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.tn-program-card__evidence {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
}
.tn-program-card .oei-program-single__evidence-badge {
  width: 24px;
  height: 24px;
}
.tn-program-card .oei-program-single__evidence-badge-letter {
  font-size: 14px;
}
.tn-program-card .oei-program-single__evidence-kicker {
  font-size: 14px;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--blue);
}
.tn-program-card .oei-program-single__evidence-step-label {
  font-size: 12px;
  line-height: 1;
  color: var(--blue);
}
.tn-program-card__pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1.4;
  max-width: 100%;
}
.tn-program-card__pill-label {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.tn-program-card__pill-value {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1;
  min-width: 0;
}
.tn-program-card__pill-value--active,
.tn-program-card__agency-part.tn-program-card__pill-value--active,
.tn-program-card__inline-value.tn-program-card__pill-value--active {
  background: var(--blue-40);
  border-radius: 4px;
  padding: 0.125rem 0.25rem;
}
.tn-program-archive mark,
.tn-program-card mark,
.tn-program-card__mark {
  background-color: var(--blue-40);
  color: inherit;
  padding: 0;
  border-radius: 0;
}
.tn-program-archive__sentinel--hidden {
  display: none !important;
}
.tn-program-card__description {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--gray-100);
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tn-program-card__cta-wrap {
  margin: 0;
}

/* ===========================
   OEI buttons
   =========================== */

.oei-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 8px 12px;
  border: 0;
  border-radius: 2px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  box-sizing: border-box;
  appearance: none;
}

.oei-button--primary {
  background: var(--blue);
  color: #fff;
}

.oei-button--secondary {
  background: #fff;
  color: var(--blue);
}

.oei-button--primary:hover,
.oei-button--primary:focus-visible,
.oei-button--secondary:hover,
.oei-button--secondary:focus-visible {
  background: var(--red);
  color: #fff;
}

.oei-button__label {
  display: inline-block;
}

.oei-button__icon {
  flex: 0 0 auto;
  font-size: 1em;
  line-height: 1;
}

.oei-button-wrap {
  display: block;
  clear: both;
  width: 100%;
  margin-top: 1rem;
}

.oei-button-wrap--align-left {
  text-align: left;
}

.oei-button-wrap--align-center {
  text-align: center;
}

.oei-button-wrap--align-right {
  text-align: right;
}

.oei-button-wrap .oei-button {
  vertical-align: top;
}

/* Legacy .button class used in page content (excludes program inventory + TN utility controls). */
a.button:not(.bar):not(.active):not(.grey):not(.gray):not(.red):not(.orange):not(.green):not(.blue),
button.button:not(.bar):not(.active):not(.grey):not(.gray):not(.red):not(.orange):not(.green):not(.blue),
input.button:not(.bar):not(.active):not(.grey):not(.gray):not(.red):not(.orange):not(.green):not(.blue),
span.button:not(.bar):not(.active):not(.grey):not(.gray):not(.red):not(.orange):not(.green):not(.blue),
div.button:not(.bar):not(.active):not(.grey):not(.gray):not(.red):not(.orange):not(.green):not(.blue) {
  background: var(--blue);
  color: #fff !important;
  font-weight: 400;
  border: 0;
  border-radius: 2px;
}

a.button.secondary:not(.bar),
button.button.secondary:not(.bar),
input.button.secondary:not(.bar),
span.button.secondary:not(.bar),
div.button.secondary:not(.bar) {
  background: #fff;
  color: var(--blue) !important;
}

a.button:not(.bar):not(.active):not(.grey):not(.gray):not(.red):not(.orange):not(.green):not(.blue):hover,
a.button:not(.bar):not(.active):not(.grey):not(.gray):not(.red):not(.orange):not(.green):not(.blue):focus-visible,
button.button:not(.bar):not(.active):not(.grey):not(.gray):not(.red):not(.orange):not(.green):not(.blue):hover,
button.button:not(.bar):not(.active):not(.grey):not(.gray):not(.red):not(.orange):not(.green):not(.blue):focus-visible,
input.button:not(.bar):not(.active):not(.grey):not(.gray):not(.red):not(.orange):not(.green):not(.blue):hover,
input.button:not(.bar):not(.active):not(.grey):not(.gray):not(.red):not(.orange):not(.green):not(.blue):focus-visible,
span.button:not(.bar):not(.active):not(.grey):not(.gray):not(.red):not(.orange):not(.green):not(.blue):hover,
span.button:not(.bar):not(.active):not(.grey):not(.gray):not(.red):not(.orange):not(.green):not(.blue):focus-visible,
div.button:not(.bar):not(.active):not(.grey):not(.gray):not(.red):not(.orange):not(.green):not(.blue):hover,
div.button:not(.bar):not(.active):not(.grey):not(.gray):not(.red):not(.orange):not(.green):not(.blue):focus-visible,
a.button.secondary:not(.bar):hover,
a.button.secondary:not(.bar):focus-visible,
button.button.secondary:not(.bar):hover,
button.button.secondary:not(.bar):focus-visible,
input.button.secondary:not(.bar):hover,
input.button.secondary:not(.bar):focus-visible,
span.button.secondary:not(.bar):hover,
span.button.secondary:not(.bar):focus-visible,
div.button.secondary:not(.bar):hover,
div.button.secondary:not(.bar):focus-visible {
  background: var(--red);
  color: #fff !important;
}

.fontsize-controls .button:hover,
.fontsize-controls .button:focus-visible {
  background: var(--gray-00);
  color: inherit !important;
}

/* ===========================
   Content shortcodes
   =========================== */

.oei-impact-continuum {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 2rem;
  width: 100%;
}

.oei-impact-continuum__track {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 2rem;
  margin-bottom: -2.875rem;
}

.oei-impact-continuum__line {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.oei-impact-continuum__markers {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0 8rem;
  list-style: none;
}

.oei-impact-continuum__marker {
  display: flex;
  flex: 0 0 4rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  text-align: center;
}

.oei-impact-continuum__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--gray-100);
  border-radius: 50%;
  box-sizing: border-box;
  background: #fff;
}

.oei-impact-continuum__circle--negative {
  background: var(--negative-impact);
}

.oei-impact-continuum__circle--none {
  background: #fff;
}

.oei-impact-continuum__circle--mixed {
  background: var(--gray-40);
}

.oei-impact-continuum__circle--positive {
  background: var(--strong-evidence);
}

.oei-impact-continuum__letter {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--gray-100);
}

.oei-impact-continuum__label {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--gray-100);
  white-space: nowrap;
}

.oei-evidence-framework {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.oei-evidence-framework__columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto auto;
  align-items: stretch;
  width: 100%;
}

.oei-evidence-framework__column {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  min-width: 0;
}

.oei-evidence-framework__title {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-height: 3.25rem;
  padding: 0.5rem 0.75rem;
  border: 2px solid #000;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: #000;
}

.oei-evidence-framework__title--logic-model {
  background: var(--logic-model);
}

.oei-evidence-framework__title--outputs {
  background: var(--outputs);
}

.oei-evidence-framework__title--outcomes {
  background: var(--outcomes);
}

.oei-evidence-framework__title--evidence {
  background: var(--evidence);
}

.oei-evidence-framework__title--strong-evidence {
  background: var(--strong-evidence);
}

@supports not (grid-template-rows: subgrid) {
  .oei-evidence-framework__title {
    min-height: calc(1rem + 2.8em);
  }
}

.oei-evidence-framework__content {
  padding: 0.75rem;
}

.oei-evidence-framework__content p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #000;
}

.oei-evidence-framework__axis {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0 4rem;
}

.oei-evidence-framework__arrow {
  display: block;
  width: 100%;
  object-fit: fill;
}

.oei-evidence-framework__arrow--vertical {
  display: none;
}

.oei-evidence-framework__axis-label {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: normal;
  text-align: center;
  color: #000;
}

@media (max-width: 768px) {
  .oei-impact-continuum__markers {
    padding: 0 2rem;
  }

  .oei-impact-continuum__label {
    white-space: normal;
  }
}

@media (max-width: 40em) {
  .oei-impact-continuum__markers {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1.5rem;
    padding: 0;
  }

  .oei-impact-continuum__marker {
    flex: 0 0 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }
}

@media (max-width: 768px) {
  .oei-evidence-framework {
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
  }

  .oei-evidence-framework__columns {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
  }

  .oei-evidence-framework__column {
    display: flex;
    flex-direction: column;
    grid-row: auto;
    grid-template-rows: none;
  }

  .oei-evidence-framework__title {
    min-height: 3.25rem;
    height: auto;
  }

  .oei-evidence-framework__axis {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: stretch;
    gap: 0.5rem;
    order: -1;
    padding: 0 0.75rem 0 0;
  }

  .oei-evidence-framework__axis-label {
    flex: 0 0 auto;
    align-self: center;
    order: 1;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    white-space: nowrap;
  }

  .oei-evidence-framework__arrow--horizontal {
    display: none;
  }

  .oei-evidence-framework__arrow--vertical {
    display: block;
    order: 2;
    flex: 1 1 auto;
    align-self: stretch;
    width: 1.375rem;
    min-height: 0;
    height: auto;
  }
}