@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --teal: #1A3A4A;
  --logo-blue: #336699;
  --green: #3A7D44;
  --grey: #888888;
  --bg-grey: #F5F5F5;
  --nav-dark: #2B2B2B;
  --resource-blue: #2563eb;
  --resource-border: #93c5fd;
  --resource-bg: #f0f7ff;
  --sponsored-bg: #f5f0e1;
  --sponsored-border: #d4c4a0;
}

*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: disc; margin: 0; padding: 0; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 16px; }

/* Sticky header */
.sticky-header {
  display: contents;
}

/* Compact sticky nav — single row after scroll */
@media (min-width: 1025px) {
  .sticky-header.is-scrolled .main-nav-inner {
    flex-wrap: nowrap;
    align-items: stretch;
    height: 52px;
    min-height: 52px;
    max-height: 52px;
    gap: 0;
    padding: 0;
  }

  .sticky-header.is-scrolled .nav-brand {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    flex: 0 0 auto;
    height: 100%;
    margin-right: 0;
    padding: 0;
    background: #3567a2;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
  }

  .sticky-header.is-scrolled .nav-brand img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: left center;
  }

  .sticky-header.is-scrolled .nav-links {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sticky-header.is-scrolled .nav-links::-webkit-scrollbar {
    display: none;
  }

  .sticky-header.is-scrolled .header-separator {
    display: none;
  }

  .sticky-header.is-scrolled .nav-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0 9px;
    font-size: 11px;
    letter-spacing: 0.02em;
  }

  .sticky-header.is-scrolled .nav-link:not(:first-of-type) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .sticky-header.is-scrolled .nav-search {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: 0;
    padding: 0 14px;
    background: #3567a2;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .sticky-header.is-scrolled .nav-search input {
    width: 130px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .sticky-header.is-scrolled .nav-link {
    padding: 0 7px;
    font-size: 10px;
  }
}

/* Top bar */
.top-bar {
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  min-width: 0;
}
.logo img {
  width: auto;
  max-width: 100%;

}
.top-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.search-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4b5563;
}
.search-group label { font-weight: 600; white-space: nowrap; }
.search-group input {
  width: 220px;
  padding: 7px 12px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 13px;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #4b5563;
}
.social-icons a:hover { opacity: 0.75; }
/* Social row that rides inside the mobile menu */
.nav-social { display: none; }

/* Nav */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #3567a2;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}
.main-nav-inner {
  display: flex;
  align-items: center;
  min-height: 46px;
  gap: 10px;
  width: 100%;
  padding: 0 14px;
}
.sticky-header:not(.is-scrolled) .main-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}
.sticky-header.is-scrolled .main-nav-inner {
  max-width: none;
  margin: 0;
}
.nav-brand {
  display: none;
  align-items: center;
  align-self: stretch;
  flex: 0 0 auto;
  width: auto;
  height: 46px;
  margin-right: 12px;
  overflow: hidden;
}
.nav-brand img {
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
  text-transform: uppercase;
}
.nav-link {
  padding: 12px 10px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  white-space: nowrap;
  position: relative;
}
/*
.nav-link + .nav-link {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}*/
.header-separator {
  color: #847f7f;
  margin-top: -4px;
}
.nav-link:hover {
  background: var(--green);
  color: #fff;
}
.nav-link.active {
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
}
.nav-link.active:hover {
  background: #29507e;
  color: #fff;
}
.nav-search {
  display: none;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
}
.is-scrolled .nav-brand,
.is-scrolled .nav-search {
  display: flex;
}

/* Tablet/mobile — logo row sticks, menu drops out of the hamburger in that row */
@media (max-width: 1024px) {
  .sticky-header {
    display: block;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .main-nav {
    position: static;
    box-shadow: none;
  }
  /* No empty blue strip when the menu is closed */
  .main-nav:not(.is-open) {
    display: none;
  }
  .nav-brand {
    display: none;
  }
  .sticky-header.is-scrolled .nav-brand,
  .sticky-header.is-scrolled .nav-search {
    display: none;
  }
  .sticky-header.is-scrolled .top-bar-inner {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .sticky-header.is-scrolled .logo img {
    max-height: 44px;
  }
  .main-nav.is-open .nav-search {
    display: flex;
  }
}
.nav-search input {
  width: 145px;
  padding: 6px 9px;
  border: 0;
  border-radius: 3px 0 0 3px;
  font-size: 12px;
}
.nav-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 29px;
  border: 0;
  border-radius: 0 3px 3px 0;
  background: var(--green);
  color: #fff;
  cursor: pointer;
}
.nav-search button:hover {
  background: var(--logo-blue);
}
.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;
}

.fa-solid,.fas {
  font-weight: 900;
  font-size: medium !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 4px;
  background: var(--green);
  border-radius: 4px 4px 0 0;
}

/* Ticker */
.ticker-bar {
  background: var(--bg-grey);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.ticker-inner {
  display: flex;
  align-items: stretch;
}
.ticker-label {
  background: var(--green);
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ticker-wrap {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  font-size: 14px;
  color: #1f2937;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  padding-left: 100%;
  animation: ticker 90s linear infinite;
  will-change: transform;
}
.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
a.ticker-item:hover {
  text-decoration: underline;
  color: var(--green);
}
.ticker-item + .ticker-item::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 1.25rem;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  pointer-events: none;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Layout — .container supplies max-width: 1400px; do not override here */
.page-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 16px;
}
.page-grid > main,
.page-grid > .left-sidebar,
.page-grid > .sticky-side {
  min-width: 0;
}
.partner-logo-slider {
  display: none;
}
.banner {
  display: block;
}

/* Left sidebar */
.mission-teaser {
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}
.mission-parent { color: #336699; font-size: 1rem; }
.mission-advocates { color: var(--green); font-size: 1rem; }
.mission-org { color: #afafaf; font-size: 1rem; }
.mission-teaser p {
  margin: 0 0 8px;
  padding: 0;
  /*font-size: 13px;*/
  line-height: 1.55;
  color: #374151;
}
.mission-more p {
  margin: 0 0 12px;
}
.mission-more p:last-child {
  margin-bottom: 8px;
}
.mission-statement-link {
  font-weight: 700 !important;
  font-size: 15px !important;
  color: var(--green);
}
.mission-statement-link:hover {
  text-decoration: underline;
  color: var(--logo-blue);
}

/* Article-driven links inside mission tout content */
.mission-teaser a,
.mission-teaser-body a,
.mission-teaser .modern-tout-text a {
  color: var(--green);
  font-weight: 700 !important;
  font-size: 15px !important;
  text-decoration: none !important;
}
.mission-teaser a:hover,
.mission-teaser-body a:hover,
.mission-teaser .modern-tout-text a:hover {
  color: var(--logo-blue);
  text-decoration: underline;
}
.sidebar-featured-resources-block {
  margin: 16px 0 0;
}
.sidebar-featured-resources {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef5ef;
  font-size: 13px;
  font-weight: 800;
  color: #0e75dc;
}
.sidebar-featured-resources i {
  color: #0e75dc;
}
.featured-resource-list {
  padding: 0;
  border: 0;
  border-radius: 0;
}
.featured-resource-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-radius: 4px;
  color: #333;
  font-size: 12px;
}
.featured-resource-link i {
  width: 12px;
  color: var(--green);
  font-size: 8px;
  text-align: center;
}
.featured-resource-link:hover {
  background: #eef5ef;
  color: var(--green);
}
.featured-resource-link--all {
  margin-top: 4px;
  font-weight: 700;
  color: var(--green);
}
.featured-resource-link--all i {
  font-size: 12px;
}
.mission-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: var(--green);
  font-weight: 600;
  font-size: 13px;
}
.read-more.mission-toggle {
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--green);
}
.mission-toggle:hover {
  background: none;
  color: var(--logo-blue);
  text-decoration: underline;
}
.mission-toggle::after {
  content: ">>";
  display: inline-block;
  margin-left: 8px;
  font-size: 1.00em;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.15s ease;
}
.mission-toggle[aria-expanded="true"]::after {
  content: ">";
  transform: rotate(-90deg);
}
.sidebar-heading {
  padding: 0;
  margin: 22px 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sidebar-heading--first {
  margin-top: 0;
}
.mission-teaser + .sidebar-heading {
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
  margin-top: 22px;
}
.featured-resource-list + .sidebar-heading {
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
  margin-top: 22px;
}
.left-sidebar nav + .sidebar-promo-link,
.left-sidebar nav + .sidebar-promo,
.sidebar-promo-link + .sidebar-heading,
.sidebar-promo + .sidebar-heading {
  margin-top: 22px;
}
.left-sidebar nav {
  padding: 0;
  border: 0;
  border-radius: 0;
}
.cat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-radius: 4px;
  color: #333;
  font-size: 12px;
}
.cat-link i { width: 14px; color: #111827; text-align: center; }
.cat-link:hover { background: #eef5ef; color: var(--green); }
.cat-link.active { background: var(--green); color: #fff; }
.sidebar-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 16px 0;
}
.follow-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.follow-btn.fb { background: #1877F2; }
.follow-btn.x { background: #000; }
.follow-btn.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.follow-btn.yt { background: #FF0000; }
.sidebar-promo-link,
.sidebar-promo,
.sidebar-promo a {
  display: block;
  margin-bottom: 18px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: var(--green);
  border: 2px solid var(--green);
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.sidebar-promo {
  padding: 0;
  background: transparent;
  border: 0;
}
.sidebar-promo a {
  margin-bottom: 0;
}
.sidebar-promo-link:hover,
.sidebar-promo a:hover {
  background: var(--logo-blue);
  border-color: var(--logo-blue);
  color: #fff;
  text-decoration: none;
}
.sidebar-ad-slot {
  padding: 14px;
  border: 1.5px solid var(--sponsored-border);
  border-radius: 6px;
  background: var(--sponsored-bg);
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  color: #374151;
}
.sidebar-ad-label,
.sidebar-ad-slot strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.sidebar-ad-label:hover {
  color: var(--teal);
  text-decoration: none;
}
.sidebar-ad-slot p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.4;
  color: #374151;
}
.sidebar-ad-link,
.left-sidebar .sidebar-ad-slot a,
.sidebar-ad-slot a {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
  padding: 10px 14px;
  border: 0;
  border-radius: 5px;
  background: var(--green);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.sidebar-ad-link:hover,
.left-sidebar .sidebar-ad-slot a:hover,
.sidebar-ad-slot a:hover {
  background: var(--logo-blue);
  color: #fff !important;
  text-decoration: none !important;
}

/* Editor's Picks compact strip */
.editors-picks-strip {
  min-height: 50px;
  margin-bottom: 26px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #65666a;
  border-radius: 8px;
  max-width: 100%;
}
.editors-picks-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef5ef;
  font-size: 13px;
  font-weight: 800;
  color: #0e75dc;
  white-space: nowrap;
}
.editors-picks-label i {
  color: #0e75dc;
  font-size: 13px;
  animation: blinkStar 1.1s ease-in-out infinite;
}
@keyframes blinkStar {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(58, 125, 68, 0));
  }
  50% {
    opacity: 0.35;
    transform: scale(1.25);
    filter: drop-shadow(0 0 5px rgba(58, 125, 68, 0.7));
  }
}
.editors-picks-marquee {
  flex: 1;
  min-width: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}
.editors-picks-marquee::before,
.editors-picks-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  z-index: 1;
  pointer-events: none;
}
.editors-picks-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255,255,255,0));
}
.editors-picks-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255,255,255,0));
}
.editors-picks-track {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  animation: editorsPicksScroll 22s linear infinite;
}
.editors-picks-marquee:hover .editors-picks-track {
  animation-play-state: paused;
}
@keyframes editorsPicksScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}
@media (prefers-reduced-motion: reduce) {
  .editors-picks-label i,
  .editors-picks-track {
    animation: none;
  }
  .editors-picks-marquee {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .editors-picks-marquee::-webkit-scrollbar {
    display: none;
  }
}
.resource-chip {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 7px 14px;
  border-radius: 999px;
  background: #edf0f4;
  color: #111827;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.resource-chip:hover {
  background: #eef5ef;
  color: var(--green);
}
.editors-picks-all {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}
.editors-picks-all:hover {
  color: var(--green);
  text-decoration: underline;
}

/* Hero / articles */
.partner-logo-slider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #F3FAF3;
  overflow: hidden;
}
.partner-logo-viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.partner-logo-viewport::-webkit-scrollbar {
  display: none;
}
.partner-logo-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: partnerLogoSlide 72s linear infinite;
}
.partner-logo-slider:hover .partner-logo-track {
  animation-play-state: paused;
}
.partner-logo-arrow {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}
.partner-logo-arrow:hover {
  background: var(--logo-blue);
  color: #fff;
}
.partner-logo-track a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 clamp(140px, 22vw, 198px);
  height: 96px;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.partner-logo-track img {
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
  height: auto;
}
@keyframes partnerLogoSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}
@media (prefers-reduced-motion: reduce) {
  .partner-logo-track {
    animation: none;
  }
  .partner-logo-slider {
    overflow-x: auto;
  }
}
.banner {
 /* margin-bottom: 8px;*/
  border-radius: 4px;
  overflow: hidden;
  height: 218px !important;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /*aspect-ratio: 16 / 6;
  object-fit: cover;*/
}
.home-welcome {
  margin: 0 0 12px;
  padding:18px 0 18px;
  border-bottom: 1px dashed #ccc;
  text-align: center;
  color: var(--logo-blue);
}
.home-welcome-title {
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.35;
  color: var(--teal);
}
.home-welcome-text {
  margin: 0 auto;
  max-width: 680px;
  font-size: 15px;
  font-style: normal;
  line-height: 1.7;
  color: #374151;
  text-align: justify;
}
.content-note {
  margin: 0 0 20px;
  padding: 10px 14px;
  font-size: 13px;
  color: #6b7280;
  font-style: normal;
  background: var(--bg-grey);
  border-radius: 4px;
}
.article-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}
.article-item[data-href] {
  cursor: pointer;
}
.article-item[data-href]:hover .article-title {
  color: var(--green);
  text-decoration: underline;
}
.article-thumb {
  width: 160px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}
.article-thumb-link {
  display: block;
  color: inherit;
}
.article-thumb-link:hover {
  text-decoration: none;
}
.article-cat {
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.article-cat-span {
  color: var(--green);
  font-weight: bold;
}
.article-title {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.35;
  margin-bottom: 6px;
}
.article-meta {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}
.article-excerpt {
  font-size: 14px;
  color: #374151;
  margin-bottom: 2px;
  line-height: 1.6;
}
.article-title a:hover,
.article-excerpt a:hover {
  text-decoration: none;
  color: var(--green);
}
.article-excerpt .read-more {
  margin-left: 6px;
  vertical-align: baseline;
}
.read-more {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
}
.read-more:hover {
  background: var(--logo-blue);
  text-decoration: none;
}
.read-more.mission-toggle,
.read-more.mission-toggle:hover {
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--green);
}
.read-more.mission-toggle:hover {
  color: var(--logo-blue);
  text-decoration: underline;
}
.share-row {
  display: flex;
  width: 100%;
  gap: 12px;
  padding: 0 10px;
  box-sizing: border-box;
}
.share-btn {
  flex: 1;
  min-width: 0;
  height: 28px;
  border: none;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
}
.share-btn--fb { background: #1877F2; }
.share-btn--li { background: #0A66C2; }
.share-btn--x { background: #000; }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  margin-bottom: 5px;
  /*border-top: 1px solid #e5e7eb;*/
}
.page-btn {
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.page-btn:hover {
  background: var(--logo-blue);
  border-color: var(--logo-blue);
  color: #fff;
}
.page-btn:disabled,
.page-btn[disabled] {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}
.page-info { font-size: 14px; color: #6b7280; }

.archive-pagination {
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.archive-page-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-wrap: wrap;
}
.archive-year-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  flex: 0 0 auto;
}
.archive-year-select {
  min-width: 140px;
  padding: 7px 10px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  color: #111827;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.archive-year-select:focus {
  outline: 2px solid var(--logo-blue);
  outline-offset: 1px;
}

/* Current Events pages */
.current-events-recent .archive-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.current-events-recent .page-header {
  padding-bottom: 0;
  border-bottom: 1px solid #e5e7eb;
}
.current-events-recent .page-header hr {
  margin: 10px 0 6px;
}
.current-events-intro {
  max-width: 760px;
  margin: 0 0 12px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
}
.current-events-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.current-events-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef5ef;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}
.current-events-action:hover,
.archive-year-card:hover,
.recent-article-link:hover,
.archive-article-list a:hover {
  text-decoration: underline;
}
.sidebar-recent-list,
.sidebar-year-list {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e5e7eb !important;
  padding-bottom: 18px !important;
}
.sidebar-recent-list .recent-article-link {
  position: relative;
  padding-left: 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  text-decoration: none;
}
.sidebar-recent-list .recent-article-link::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}
.sidebar-recent-list .recent-article-link:hover {
  color: var(--green);
  text-decoration: underline;
}
.sidebar-recent-list .recent-article-link:hover::before {
  color: var(--teal);
}
.recent-article-link,
.sidebar-year-list a {
  display: block;
  color: #374151;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}
.sidebar-recent-list .recent-article-link.is-active {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}
.sidebar-year-list a.is-active,
.sidebar-year-list a:hover {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}
.recent-article-link strong {
  display: block;
  color: var(--teal);
  font-size: 13px;
}
.recent-article-link span {
  display: block;
  margin-top: 2px;
  color: #6b7280;
  font-size: 12px;
}
.archive-section {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}
.archive-section-title {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 1.25rem;
  line-height: 1.35;
}
.archive-section-intro {
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}
.archive-year-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.archive-year-card {
  display: block;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: inherit;
}
.archive-year-card strong {
  display: block;
  color: var(--teal);
  font-size: 1.15rem;
}
.archive-year-card span {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 12px;
}
.archive-year-block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #eef0f2;
}
.archive-year-heading {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.archive-article-list {
  margin: 0;
  padding-left: 18px;
  color: #374151;
  font-size: 14px;
  line-height: 1.65;
}
.current-events-recent .page-header .pagination {
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.current-events-recent .page-header .page-info {
  order: 0;
  width: auto;
  text-align: left;
  line-height: 1.35;
  white-space: nowrap;
}
/*
.current-events-recent .page-header .page-btn:hover:not(:disabled) {
  background: #fff;
  border-color: #d1d5db;
  color: var(--teal);
}
.current-events-recent .page-header .page-btn:disabled {
  color: #9ca3af;
  cursor: default;
}
*/
/* Testimonials */
.testimonials-section {
  margin-top: 24px;
  padding: 18px;
  border: 0;
  border-radius: 6px;
  background: #F3FAF3;
}
.testimonials-header {
  margin-bottom: 16px;
}
.testimonials-title {
  margin: 0 0 6px;
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  line-height: 1.3;
  color: var(--teal);
}
.testimonials-header p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.testimonials-slider {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.testimonials-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 22px;
  transition: transform 0.4s ease;
  will-change: transform;
}
.testimonials-slider .testimonial-card {
  flex: 0 0 auto;
  min-width: 0;
  box-sizing: border-box;
}
.testimonials-section .testimonial-card cite {
  flex-shrink: 0;
}
.testimonials-section .testimonial-card p,
.testimonials-section .testimonial-quote {
  flex: 1 1 auto;
  min-height: 0;
  margin-bottom: 12px;
  padding-bottom: 10px;
}
.testimonials-section .testimonial-quote .testimonials-more {
  display: inline;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--green);
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  text-decoration: underline;
  white-space: nowrap;
}
.testimonials-section .testimonial-quote .testimonials-more:hover {
  background: none;
  color: var(--logo-blue);
  text-decoration: underline;
}
.testimonials-arrow {
  flex: 0 0 25px;
  align-self: center;
  width: 25px;
  height: 25px;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.testimonials-arrow:hover {
  background: var(--logo-blue);
  color: #fff;
  border-color: var(--logo-blue);
}
.testimonials-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.testimonials-arrow:disabled:hover {
  background: #fff;
  color: var(--green);
  border-color: var(--green);
}
.testimonials-slider.is-static .testimonials-arrow {
  display: none;
}
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 34px 20px 16px;
  border: 1px solid #e5e7eb;
  border-bottom: 4px solid var(--green);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  left: 18px;
  color: var(--green);
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.testimonial-card p {
  flex: 1;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  line-height: 1.55;
  color: #374151;
}
.testimonial-card.is-truncated {
  cursor: default;
}
.testimonial-card.is-truncated .testimonial-quote-full {
  display: none;
}

/* Testimonials listing page (fuseaction=testimonials) */
.testimonials-list {
  margin: 0;
  padding: 0;
}
.testimonials-list-item {
  margin: 0;
  padding: 4px 0 18px;
  scroll-margin-top: 120px;
}
.testimonials-list-item:target {
  background: #f3faf3;
  border-radius: 6px;
  padding-left: 10px;
  padding-right: 10px;
}
.testimonials-list-author {
  margin: 0 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--teal);
}
.testimonials-list-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
  white-space: pre-wrap;
}
.testimonials-list-rule {
  margin: 8px 0 18px;
  border: 0;
  border-top: 1px solid #d1d5db;
}

.testimonial-card cite {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  color: var(--green);
}
.testimonial-card cite::before {
  content: "\f007";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eef5ef;
  color: var(--green);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.testimonials-more {
  display: block;
  width: fit-content;
  margin: 16px auto 0;
  padding: 10px 34px;
  border: 1.5px solid var(--green);
  border-radius: 4px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.testimonials-more:hover {
  background: var(--logo-blue);
  color: #fff;
  text-decoration: none;
}
.testimonials-more--section {
  margin-top: 16px;
}
.testimonials-message {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid #dbe8db;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}
.testimonials-message i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 7px solid #f7fbf7;
  border-radius: 50%;
  background: #eef5ef;
  color: var(--green);
  font-size: 1.2rem;
}
.testimonials-message p {
  margin: 0;
  padding-left: 20px;
  border-left: 1px solid #d1d5db;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}
.testimonials-message p::before,
.testimonials-message p::after {
  color: var(--green);
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 0;
}
.testimonials-message p::before {
  content: "\201C";
  margin-right: 8px;
}
.testimonials-message p::after {
  content: "\201D";
  margin-left: 8px;
}

/* Bottom full-width link section */
.bottom-link-section {
  margin: 0;
  padding: 18px 0 34px;
  background: #fff;
}
.bottom-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.bottom-link-col h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d1d5db;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green);
}
.bottom-link-col h4::before {
  color: var(--green);
  font-family: "Font Awesome 6 Free";
  font-size: 1rem;
  font-weight: 900;
}
.bottom-link-col:nth-child(1) h4::before { content: "\f19d"; }
.bottom-link-col:nth-child(2) h4::before { content: "\f02d"; }
.bottom-link-col:nth-child(3) h4::before { content: "\f24e"; }
.bottom-link-col:nth-child(4) h4::before { content: "\f19c"; }
.bottom-link-col ul {
  margin: 0;
  padding: 0;
}
.bottom-link-col li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  list-style: none;
  margin-bottom: 13px;
  padding-left: 0;
}
.bottom-link-col li::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 0.45em;
  background: var(--green);
  border-radius: 1px;
}
.bottom-link-col a {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--teal);
}
.bottom-link-col a:hover {
  color: var(--green);
  text-decoration: underline;
}

/* Right sidebar */
.sticky-side {
  position: static;
  align-self: start;
}
.profile-box {
  text-align: center;
  margin-bottom: 24px;
  margin-top: 18px;
  border: 1.5px solid var(--green);
  border-radius: 6px;
  overflow: hidden;
}
.profile-box img,
.profile-box-body img {
  display: block;
  width: calc(100% + 4px);
  max-width: none;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  /* Body has 14px padding; -2px leaves 12px from the box border on all sides */
  margin: -2px -2px 12px;
}
.profile-name {
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}
.profile-box-body {
  font-weight: 700;
  color: var(--teal);
  line-height: 1.4;
  padding: 14px;
}
.profile-box a,
.profile-box .read-more,
.profile-box-body a {
  display: inline-block;
  width: auto;
  min-width: 70%;
  box-sizing: border-box;
  margin: 8px 0 0;
  padding: 8px 14px;
  border-radius: 4px;
  background: var(--green);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.profile-box a:hover,
.profile-box .read-more:hover,
.profile-box-body a:hover {
  background: var(--logo-blue);
  color: #fff !important;
  text-decoration: none !important;
}
.support-contact-box {
  margin-bottom: 18px;
  padding: 14px 14px;
  border: 1.5px solid var(--green);
  border-radius: 6px;
  background: #fff;
  color: #374151;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.support-contact-body {
  line-height: 1.5;
}
.support-contact-title {
  display: inline-block;
  margin-bottom: 2px;
  font-weight: 800;
  color: var(--teal);
  text-decoration: underline;
}
.support-contact-name {
  margin-bottom: 14px;
}
.support-contact-button,
.support-contact-box > a,
.support-contact-box .support-contact-body > a,
.support-contact-box a:not([href^="mailto:"]) {
  display: block;
  margin: 0 0 10px;
  padding: 9px 12px;
  border-radius: 5px;
  background: var(--green);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.support-contact-button:hover,
.support-contact-box > a:hover,
.support-contact-box .support-contact-body > a:hover,
.support-contact-box a:not([href^="mailto:"]):hover {
  background: var(--logo-blue);
  color: #fff !important;
  text-decoration: none !important;
}
.support-contact-box a strong {
  font-weight: 600;
  color: inherit;
}
.support-contact-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 13px;
  line-height: 1.4;
}
.support-contact-email i {
  flex-shrink: 0;
  color: var(--green);
}

.support-contact-body i {
  flex-shrink: 0;
  color: var(--green);
  vertical-align: bottom;
  font-size: large !important;
}

.support-contact-email a,
.support-contact-box a[href^="mailto:"] {
  display: inline;
  margin: 0;
  padding: 0;
  background: none !important;
  color: inherit !important;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  text-decoration: none !important;
  overflow-wrap: anywhere;
}
.support-contact-email a:hover,
.support-contact-box a[href^="mailto:"]:hover {
  background: none !important;
  color: var(--teal) !important;
  text-decoration: underline !important;
}
.widget-heading {
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 18px 0 12px;
  padding: 0 8px;
}
.blog-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  border: 1.5px solid var(--green);
  color: var(--teal);
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  border-radius: 4px;
  margin-bottom: 8px;
  transition: all 0.15s;
}
.blog-btn:last-of-type {
  margin-bottom: 18px;
}
.blog-btn:hover {
  background: var(--logo-blue);
  color: #fff;
}
.blog-btn:hover .arrow { color: #fff; }
.blog-btn .arrow { color: var(--green); flex-shrink: 0; }

.advocatz-box {
  border: 3px solid var(--green);
  border-radius: 6px;
  padding: 16px 10px;
  margin-top: 18px;
  margin-bottom: 18px;
  text-align: center;
}
.advocatz-box h4 {
  margin: 0 0 8px;
  font-size: 1.625rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  color: #3878b8;
  line-height: 1.2;
}
.advocatz-box p {
  margin: 0 0 16px;
  font-size: 15px;
  color: #4b5563;
}
.advocatz-box .visit-btn {
  display: inline-block;
  font-size: 12px;
  padding: 6px 12px;
}

.visit-btn {
  display: block;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
}
.visit-btn:hover {
  background: var(--logo-blue);
  opacity: 1;
}

.accountability-award {
  margin-top: 18px;
  padding: 16px;
  border: 1.5px solid var(--green);
  border-radius: 6px;
  text-align: left;
}
.accountability-award-logo {
  display: block;
  margin-bottom: 14px;
  text-align: center;
}
.accountability-award-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.accountability-award-logo:hover {
  opacity: 0.9;
}
.accountability-award-title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  text-align: center;
  line-height: 1.3;
}
.accountability-award-body {
  font-size: 14px;
  line-height: 1.55;
  color: #374151;
}
.accountability-award-body strong {
  display: block;
  margin: 0;
  font-weight: 600;
}
.accountability-award-body strong a {
  display: block;
  box-sizing: border-box;
  margin: 0;
  padding: 9px 12px;
  border-radius: 5px;
  background: var(--green);
  color: #fff !important;
  font-size: 13px; /* 2px smaller than standard green sidebar buttons */
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.accountability-award-body strong a:hover {
  background: var(--logo-blue);
  color: #fff !important;
  text-decoration: none !important;
}
.accountability-award-body a {
  color: var(--green);
  font-weight: 600;
}
/* Direct-child links only when a <strong> title exists (e.g. More Details).
   Fraud with a single bare <a> title will not match. */
.accountability-award-body:has(strong) > a {
  display: inline-block;
  width: auto;
  min-width: 70%;
  box-sizing: border-box;
  margin: 12px 0 0;
  padding: 8px 14px;
  border-radius: 4px;
  background: var(--green);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.accountability-award-body:has(strong) > a:hover {
  background: var(--logo-blue);
  color: #fff !important;
  text-decoration: none !important;
}
.accountability-award-desc {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.55;
  color: #374151;
}
.accountability-winners {
  margin: 0 0 12px;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.5;
  color: #374151;
}
.accountability-winners li {
  margin-bottom: 4px;
}
.accountability-more {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--green);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
}
.accountability-more:hover {
  background: var(--logo-blue);
  color: #fff;
  text-decoration: none;
}

/* Footer */
.site-footer {
  background: #3567a2;
  color: #fff;
  margin-top: 0;
  clear: both;
  position: relative;
  z-index: 2;
}
.footer-utility {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
  text-align: center;
  font-size: 12px;
  color: #fff;
}
.footer-utility .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 0;
}
.footer-utility a {
  color: #fff;
  padding: 2px 4px;
  border-radius: 3px;
  white-space: nowrap;
}
.footer-utility .footer-sep {
  color: rgba(255, 255, 255, 0.55);
  padding: 0 4px;
  user-select: none;
}
.footer-utility a:hover {
  background: var(--green);
  color: #fff;
  text-decoration: none;
}

.demo-label {
  background: #fef3c7;
  border-bottom: 1px solid #fcd34d;
  padding: 8px 0;
  font-size: 13px;
  text-align: center;
  color: #92400e;
}
.demo-label a {
  color: #b45309;
  font-weight: 600;
  text-decoration: underline;
}

.no-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e8e8e8;
  color: #888;
  font-size: 13px;
  text-align: center;
  gap: 6px;
  height: 120px;
    width: 160px;
}

.no-image svg {
  width: 28px;
  height: 28px;
  opacity: 0.5;
}


@media (max-width: 1024px) {
  .top-bar-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .logo {
    flex: 1 1 auto;
    order: 1;
  }
  .logo img {
    max-height: 46px;
  }
  .top-right {
    order: 3;
    flex: 0 0 100%;
    justify-content: space-between;
  }
  .page-grid {
    grid-template-columns: 1fr;
  }
  .page-grid > main {
    order: 1;
  }
  .page-grid > .left-sidebar {
    order: 2;
  }
  .page-grid > .sticky-side {
    order: 3;
  }
  .left-sidebar,
  .sticky-side {
    position: static;
  }
  .main-nav-inner {
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    min-height: 0;
    gap: 0;
    padding: 0;
  }
  .nav-brand {
    width: 124px;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    order: 2;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: var(--logo-blue);
    color: #fff;
    line-height: 1;
  }
  .nav-toggle i {
    font-size: 22px;
  }
  .nav-toggle span {
    display: none;
  }
  .nav-toggle[aria-expanded="true"] .fa-bars::before {
    content: "\f00d";
  }
  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
  }
  .header-separator {
    display: none;
  }
  .nav-search {
    flex-direction: column;
    gap: 6px;
    order: 4;
    width: 100%;
    margin: 0 0 10px;
    padding: 10px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.08);
  }
  .nav-search input {
    flex: 1;
    width: 100%;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 14px;
  }
  .nav-search button {
    width: auto;
    min-width: 100%;
    height: auto;
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: 700;
  }
  .main-nav.is-open .nav-search button i {
    display: none;
  }
  .main-nav.is-open .nav-search button::before {
    content: "Search";
  }
  .main-nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 0 0 100%;
    width: 100%;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #2f5d94;
  }
  .main-nav.is-open .nav-search {
    display: flex;
    flex: 0 0 100%;
    width: 100%;
  }
  .main-nav.is-open .nav-social {
    display: flex;
    order: 5;
    flex: 0 0 100%;
    justify-content: center;
    gap: 24px;
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 20px;
  }
  .main-nav.is-open .nav-social a {
    color: #fff;
  }
  .nav-link {
    justify-content: center;
    padding: 13px 0;
    border-left: 0;
    border-top: 0;
    border-bottom: 1px solid #847f7f;
    border-radius: 0;
    background: transparent;
    text-align: center;
  }
  .nav-link:nth-of-type(even) {
    background: transparent;
  }
  .nav-link.active {
    background: #29507e;
  }
  .nav-link.active::after {
    display: none;
  }
  .nav-link:hover {
    background: #29507e;
    color: #fff;
  }
  .nav-link + .nav-link {
    margin-top: 0;
    border-top: 0;
  }
  .bottom-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-track {
    gap: 16px;
  }
  .nav-link.active:hover {
    background: #29507e;
    color: #fff;
  }
}
@media (max-width: 641px)  {
  .ticker-label,
  .editors-picks-label {
    display: none;
  }
}
@media (max-width: 640px) {
  .container {
    padding-right: 12px;
    padding-left: 12px;
  }
  .top-bar-inner {
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
  }
  .logo {
    width: auto;
    min-width: 0;
    justify-content: flex-start;
  }
  .logo img {
    max-height: 50px;
  }
  .top-right {
    display: none;
  }
  .search-group {
    flex-direction: row;
    align-items: center;
    gap: 0;
    min-width: 0;
    width: 100%;
  }
  .search-group label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .search-group input {
    width: 100%;
    min-width: 0;
  }
  .social-icons {
    justify-content: flex-end;
    width: auto;
    gap: 10px;
  }
  .ticker-inner {
    flex-direction: column;
  }
  .ticker-label {
    justify-content: center;
  }
  .editors-picks-strip {
    flex-wrap: wrap;
    gap: 10px;
  }
  .editors-picks-marquee {
    order: 3;
    flex-basis: 100%;
  }
  .editors-picks-all {
    margin-left: 0;
  }
  .partner-logo-slider {
    gap: 6px;
    padding: 10px 8px;
  }
  .partner-logo-arrow {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }
  .partner-logo-track {
    gap: 10px;
  }
  .partner-logo-track a {
    flex-basis: 136px;
    height: 78px;
    padding: 8px;
  }
  .partner-logo-track img {
    max-height: 58px;
  }
  .article-item {
    flex-direction: column;
  }
  .article-thumb {
    width: 100%;
  }
  .banner {
    height: auto !important;
    margin-bottom: 8px;
  }
  .banner img {
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  .page-grid {
    padding-top: 12px;
    gap: 16px;
  }
  .home-welcome {
    padding: 12px 0 16px;
    margin-bottom: 8px;
  }
  .home-welcome-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
  }
  .archive-pagination {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .archive-year-filter {
    width: 100%;
  }
  .archive-year-select {
    width: 100%;
    min-width: 0;
  }
  .archive-page-nav {
    margin-left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
  }
  .archive-page-nav .page-info {
    text-align: center;
    white-space: nowrap;
    font-size: 13px;
  }
  .archive-page-nav .page-btn {
    justify-content: center;
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
  }
  .archive-page-nav .page-btn:first-child {
    justify-self: start;
  }
  .archive-page-nav .page-btn:last-child {
    justify-self: end;
  }
  .testimonials-message {
    align-items: flex-start;
    flex-direction: column;
  }
  .testimonials-message p {
    padding-left: 0;
    border-left: 0;
  }
  .share-row {
    padding: 0;
  }
  .pagination {
    gap: 10px;
    flex-wrap: wrap;
  }
  .page-info {
    order: -1;
    width: 100%;
    text-align: center;
  }
  .bottom-link-grid {
    grid-template-columns: 1fr;
  }
  .footer-utility {
    line-height: 1.6;
    padding: 16px 0;
  }
  .footer-utility .container {
    gap: 6px 2px;
  }
  .footer-utility a {
    display: inline-block;
    padding: 4px 6px;
  }
  .footer-utility .footer-sep {
    display: none;
  }
  .site-footer {
    margin-top: 16px;
  }
}

/* Inner page layouts */
.page-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.page-header-no-border {
  border-bottom: none;
  padding-bottom: 0;
}

.page-title {
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  line-height: 1.3;
  color: var(--teal);
}
.page-intro {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
}
.page-meta {
  margin-top: 10px;
  font-size: 13px;
  color: #6b7280;
}
.page-meta a {
  color: var(--green);
  font-weight: 700;
}
.page-meta a:hover {
  color: var(--logo-blue);
  text-decoration: underline;
}

.article-detail {
  padding-bottom: 24px;
}
.article-detail-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.article-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.article-detail-top .article-cat {
  margin-bottom: 0;
}
.article-detail-title {
  margin: 0 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 1.85rem;
  line-height: 1.3;
  color: var(--teal);
}
.article-detail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: 13px;
  color: #6b7280;
}
.print-link {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.print-link:hover {
  color: var(--logo-blue);
  text-decoration: underline;
}
.article-detail .share-row {
  width: auto;
  max-width: none;
  gap: 10px;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}
.article-detail .share-btn {
  flex: 0 0 auto;
  width: 40px;
  height: 22px;
  font-size: 10px;
  margin: 0px 10px;
}
.article-detail-body {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
}
.article-detail-body p {
  margin: 0 0 16px;
}
.article-detail-body h2 {
  margin: 28px 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 1.35rem;
  color: var(--teal);
}
.article-detail-body a {
  color: var(--logo-blue);
  text-decoration: underline;
}
.article-detail-body a:hover {
  color: var(--green);
}
.article-lead {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}
.standard-article-page .article-detail-title {
  font-size: 1.35rem;
}
.standard-article-page .article-detail-body {
  font-size: 14px;
  line-height: 1.65;
}
.standard-article-page .article-lead {
  font-size: 14px;
}
.standard-article-page .article-detail-body p {
  margin-bottom: 12px;
}
.article-hero {
  float: left;
  width: auto;
  max-width: min(100%, 280px);
  margin: 0 20px 16px 0;
}
.article-hero img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}
.article-detail-body {
  overflow: auto;
}
.article-detail-body img {
  width: auto;
  max-width: min(100%, 175px);
  height: auto;
}
.article-detail-body .article-hero img {
  max-width: 100%;
}
.article-hero figcaption {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.article-hero-caption {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  font-style: normal;
}
.article-hero-credit {
  font-size: 12px;
  color: #6b7280;
}
.article-hero-credit a {
  color: var(--logo-blue);
  text-decoration: underline;
}

.archive-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.archive-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}
.archive-item-date {
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
}
.archive-item-title {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.archive-item-title a {
  color: var(--teal);
}
.archive-item-title a:hover {
  color: var(--green);
  text-decoration: underline;
}

.resource-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.resource-toolbar-actions {
  display: flex;
  gap: 8px;
}
.resource-toolbar-btn {
  padding: 7px 12px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.resource-toolbar-btn:hover {
  background: var(--logo-blue);
  border-color: var(--logo-blue);
  color: #fff;
}
.resource-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 1 auto;
  min-width: 220px;
}
.resource-search-box label {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}
.resource-search-box input {
  flex: 0 1 220px;
  width: 220px;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 13px;
}
.resource-search-box button {
  padding: 8px 14px;
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.resource-sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.resource-section {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.resource-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #f3faf3;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer;
}
.resource-section-head:hover {
  background: #e9f6e9;
}
.resource-section-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid var(--green);
  border-radius: 4px;
  background: #fff;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.resource-section-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0;
  line-height: 1.35;
}
.resource-section-panel {
  padding: 10px 14px 14px;
}
.resource-subsection-title {
  margin: 16px 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  line-height: 1.35;
}
.resource-subsection-title:first-child {
  margin-top: 4px;
}
.resource-link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.resource-link-list li {
  padding: 7px 0;
  border-bottom: 1px solid #f1f5f9;
}
.resource-link-list li:last-child {
  border-bottom: 0;
}
.resource-link-list a {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}
.resource-link-list a::before {
  content: "\f0c1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--green);
  font-size: 14px;
  margin-top: 3px;
}
.resource-link-list a:hover {
  color: var(--green);
  text-decoration: underline;
}

.contact-page {
  width: 100%;
}
.contact-org-title {
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--logo-blue);
  line-height: 1.3;
}
.contact-address {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
}
.contact-form-heading {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--teal);
}
.contact-form {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.form-row {
  margin-bottom: 14px;
}
.form-row label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font: inherit;
  font-size: 14px;
}
.form-row textarea {
  min-height: 180px;
  resize: vertical;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #f3f4f6;
  color: #374151;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.form-submit--contact {
  margin-top: 6px;
  padding: 12px 24px;
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.form-submit:hover {
  background: #e5e7eb;
  color: #111827;
}
.form-submit--contact:hover {
  background: var(--logo-blue);
  color: #fff;
}
.form-submit .fa-check {
  color: var(--green);
  font-size: 12px;
}

/* Contact form confirmation */
.contact-confirm {
  max-width: 640px;
  margin: 6px 0 10px;
  padding: 26px 26px 24px;
  border: 1px solid #d9e2e8;
  border-top: 4px solid var(--green);
  border-radius: 6px;
  background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 60%);
}
.contact-confirm--error {
  border-top-color: #c0392b;
  background: linear-gradient(180deg, #fdf6f5 0%, #ffffff 60%);
}
.contact-confirm-icon {
  margin-right: 9px;
  color: var(--green);
  font-size: 1.1em;
}
.contact-confirm--error .contact-confirm-icon {
  color: #c0392b;
}
.contact-confirm-title {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}
.contact-confirm-text {
  margin: 0 0 12px;
  color: #374151;
  font-size: 15px;
  line-height: 1.6;
}
.contact-confirm-note {
  margin: 0 0 20px;
  color: #6b7280;
  font-size: 13.5px;
  line-height: 1.6;
}
.contact-confirm-note a {
  color: var(--logo-blue);
  font-weight: 600;
}
.contact-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}
.contact-confirm-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.contact-confirm-btn:hover {
  background: var(--logo-blue);
  color: #fff;
  text-decoration: none;
}
.contact-confirm-link {
  color: var(--logo-blue);
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .contact-confirm {
    padding: 20px 18px;
  }
  .contact-confirm-title {
    font-size: 1.1rem;
  }
}
@media (max-width: 640px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.contribute-page {
  width: 100%;
}
.contribute-title {
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--logo-blue);
  line-height: 1.3;
}
.contribute-page p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.65;
  color: #374151;
}
.contribute-page a {
  color: var(--logo-blue);
  font-weight: 600;
}
.contribute-page a.contribute-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contribute-page a:hover {
  color: var(--green);
  text-decoration: underline;
}
.contribute-page a.contribute-link i {
  font-size: 0.85em;
  margin-left: 4px;
}
.contribute-section-title {
  margin: 22px 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--logo-blue);
  line-height: 1.3;
}
.contribute-steps {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  counter-reset: contribute-step;
}
.contribute-steps > li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  counter-increment: contribute-step;
}
.contribute-steps > li::before {
  content: counter(contribute-step) ".";
  flex-shrink: 0;
  min-width: 1.4rem;
  margin-top: 0.15em;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.65;
}
.contribute-step-content {
  flex: 1;
  min-width: 0;
}
.contribute-step-content p {
  margin: 0 0 12px;
}
.contribute-paypal {
  margin: 4px 0 0;
}
.contribute-detail {
  margin: 0;
  padding: 12px 14px;
  border-radius: 4px;
  background: var(--bg-grey);
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
}
.contribute-rates-list,
.contribute-info-list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.contribute-rates-list li,
.contribute-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.55;
  color: #374151;
}
.contribute-rates-list li::before,
.contribute-info-list li::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 0.45em;
  background: var(--green);
  border-radius: 1px;
}
.contribute-signature {
  margin-top: 18px;
}
.contribute-footer-address {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #374151;
}
.paypal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 4px;
  background: #ffc439;
  color: #003087;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.paypal-btn:hover {
  background: #f2ba36;
  color: #003087;
  text-decoration: none;
}

.recent-articles-widget {
  margin-top: 28px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fafbfc;
}
.recent-articles-widget h3 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
}
.recent-articles-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.recent-articles-widget li {
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}
.recent-articles-widget li:last-child {
  border-bottom: 0;
}
.recent-articles-widget a {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--teal);
}
.recent-articles-widget a:hover {
  color: var(--green);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .archive-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Modern typography version overrides */
.article-detail-body,
.standard-article-page .article-detail-body,
.article-excerpt {
  font-size: 16px;
  line-height: 1.75;
}

/*.mission-teaser p {
  font-size: 14px;
  line-height: 1.6;
}*/

.featured-resource-link,
.recent-article-link,
.sidebar-year-list a,
.cat-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}


.support-contact-box,
.blog-btn,
.advocatz-box,
.accountability-award-desc,
.accountability-winners,
.profile-box,
.recent-articles-widget a {
  font-size: 14px;
  line-height: 1.55;
}

.sidebar-heading,
.widget-heading {
  font-size: 17px;
  line-height: 1.25;
}

.article-cat {
  font-size: 16px;
}

.article-title {
  font-size: 24px;
  line-height: 1.2;
  margin-top: 0px !important;
}

.article-detail-title,
.standard-article-page .article-detail-title {
  font-size: 2.25rem;
  line-height: 1.18;
}

.article-meta,
.article-detail-meta,
.page-meta {
  font-size: 14px;
}

.nav-link {
  font-size: 13px;
}

.search-group label,
.search-group input,
.nav-search input {
  font-size: 15px;
}

.page-btn,
.read-more,
.visit-btn,
.support-contact-button,
.current-events-action,
.sidebar-ad-link,
button {
  font-size: 15px;
}

.site-footer,
.bottom-link-col,
.bottom-link-col a {
  font-size: 13px;
}

/* Stronger coverage for modern cloned pages */
.left-sidebar,
.left-sidebar p,
.left-sidebar a,
.mission-teaser p,
.featured-resource-link,
.cat-link,
.sidebar-promo-link,
.sidebar-ad-slot p,
.sidebar-ad-link,
.sidebar-recent-list .recent-article-link,
.sidebar-year-list a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.left-sidebar .sidebar-ad-slot a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  background: var(--green);
  text-decoration: none;
}

.sticky-side,
.sticky-side p,
.profile-name,
.support-contact-email,
.blog-btn,
.advocatz-box p,
.accountability-award-desc,
.accountability-winners,
.accountability-more {
  font-size: 14px;
  line-height: 1.55;
}

.sticky-side .support-contact-email {
  font-size: 13px;
  line-height: 1.4;
}

.page-intro,
.resource-link-list,

.resource-section-panel,
.resource-section-panel p,
.resource-section-panel li,
.article-detail-body,
.article-detail-body p,
.standard-article-page .article-detail-body,
.standard-article-page .article-detail-body p {
  font-size: 16px;
  line-height: 1.75;
}

.resource-section-title,
.page-title,
.article-title,
.article-detail-title {
  line-height: 1.2;
}

.resource-section-title {
  font-size: 18px;
}

.resource-subsection-title {
  font-size: 17px;
}

.resource-search-box input {
  font-size: 15px;
}

.resource-search-box button,
.resource-toolbar-btn,
.resource-section-toggle {
  font-size: 15px;
}

/* ColdFusion integration helpers */
.pa-modern .modern-logo {
  gap: 10px;
}

.pa-modern .modern-logo-text {
  display: inline-block;
  font-weight: 800;
  color: var(--logo-blue);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.pa-modern .nav-brand .modern-logo-text {
  color: #fff;
  font-size: 16px;
  padding: 0 12px;
}

.modern-tout-zone {
  margin-top: 18px;
}

.modern-tout-zone table,
.modern-tout-zone img {
  max-width: 100%;
}

.mission-teaser-body,
.modern-tout-text {
  font-size: 14px;
  line-height: 1.55;
  color: #374151;
}

.mission-teaser-body p,
.modern-tout-text p {
  margin: 0 0 12px;
}

.mission-teaser-body p:last-child,
.modern-tout-text p:last-child {
  margin-bottom: 0;
}

.modern-tout-graphic,
.modern-tout-mixed {
  margin: 0;
  padding: 14px 0;
  text-align: center;
}
/* Hairline between stacked partner/graphic logos in the left nav */
.modern-tout-graphic + .modern-tout-graphic {
  border-top: 1px solid #e5e7eb;
  margin-top: 4px;
  padding-top: 18px;
}
.modern-tout-graphic:first-child {
  padding-top: 0;
}
.modern-tout-graphic:last-child {
  padding-bottom: 0;
}
.modern-tout-graphic a {
  display: block;
  line-height: 0;
}
.modern-tout-graphic img,
.modern-tout-mixed img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
}
.modern-tout-mixed .modern-tout-text {
  margin-top: 8px;
  text-align: left;
}
.sidebar-dynamic {
  margin-top: 8px;
}

.modern-message {
  margin: 20px 0;
  padding: 16px 18px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #f9fafb;
  color: #1f2937;
}

.modern-message--success {
  border-color: #86efac;
  background: #f0fdf4;
}

.modern-message--error {
  border-color: #fecaca;
  background: #fef2f2;
}

.search-group-heading {
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
  color: var(--teal);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-title-image {
  max-width: 100%;
  margin: 16px 0;
}

.article-detail-description,
.article-external-link {
  margin-top: 14px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.65;
}

.article-external-link a {
  color: var(--resource-blue);
  font-weight: 700;
}

.archive-splash {
  margin-bottom: 24px;
}

.modern-copyright {
  margin-top: 10px;
  color: #d1d5db;
  font-size: 13px;
}

.footer-copy {
  padding: 12px 0 28px;
  color: #9ca3af;
  font-size: 13px;
  text-align: right;
}

.sidebar-dynamic,
.sidebar-touts,
.sidebar-related {
  margin-top: 24px;
}

.sidebar-subnav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.sidebar-related-body {
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
}

.sidebar-related-body a {
  color: var(--resource-blue);
}

.sidebar-touts img,
.sidebar-dynamic img {
  max-width: 100%;
  height: auto;
}

.contribute-detail p {
  margin: 0 0 8px;
}
