@font-face {
  font-family: norwester;
  src: url('/newsite/fonts/norwester.otf') format("opentype");
}

body h1, h2, h3 {
  font-family: norwester;
  font-weight: 100;
}

body ol, body ul {
  padding-left: 40px;
}

.nbesevents-home-h1 {
  font-size: 6em;
}

@media (max-width: 767px) {
  .rd-navbar-fixed .rd-navbar-nav {
    margin-top: 50px;
  }
  .rd-navbar-fixed .rd-navbar-brand {
    width: calc(100% - 112px);
  }
  .rd-navbar-toggle {
    margin-top: 25px;
  }
  .section-full-width {
    padding-top: 105px;
  }
  .rd-navbar-fixed .rd-navbar-brand img {
    height: 126px;
  }
  body ul.breadcrumbs-custom__path {
    padding-left: 0px;
  }
  .nbesevents-home-h1 {
    font-size: 3em;
  }
}

/* ── Year filter bar ───────────────────────────────────────────────────────── */
#year-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.year-filter-label {
  font-size: 0.85em;
  color: #555;
  margin-right: 4px;
  white-space: nowrap;
}

.year-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 2px solid #aaa;
  background: #f5f5f5;
  color: #555;
  font-size: 0.85em;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  margin-bottom: 4px;
}

.year-tag input[type="checkbox"] {
  display: none;          /* hidden – visual state driven by .active class */
}

.year-tag:hover {
  border-color: #666;
  background: #e8e8e8;
  color: #222;
}

.year-tag.active {
  background: #003867;    /* matches the site's primary blue-ish tone */
  border-color: #003867;
  color: #fff;
}

.year-tag.active:hover {
  background: #002e53;
  border-color: #002e53;
}

@media (max-width: 767px) {
  #year-filter-bar {
    gap: 6px;
  }
  .year-tag {
    font-size: 0.8em;
    padding: 4px 11px;
  }
}