:root {
  --hspace-1: .75rem;
  --hspace-2: calc(2 * var(--hspace-1));
  --hspace-3: calc(3 * var(--hspace-1));
  --hspace-4: calc(4 * var(--hspace-1));
  --vspace-1: .75rem;
  --vspace-2: calc(2 * var(--vspace-1));
  --vspace-3: calc(3 * var(--vspace-1));
  --vspace-4: calc(4 * var(--vspace-1));
}

@media (min-width: 45rem) {
  :root {
    --hspace-1: 1rem;
  }
}
@media (min-width: 60rem) {
  :root {
    --hspace-1: 1.25rem;
  }
}
@media (min-height: 45rem) {
  :root {
    --vspace-1: 1rem;
  }
}
@media (min-height: 60rem) {
  :root {
    --vspace-1: 1.25rem;
  }
}
:root {
  --font-sans: "Roboto", "Courier", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  --font-serif: "Crimson Pro", Georgia, serif;
}

:root {
  --yellow: #ffc20e;
  --blue-1: #0a3254;
  --blue-2: #1f4056;
  --blue-3: #4f7796;
  --blue-4: #7aadd3;
  --blue-5: #153661;
  --blue-nav: #121a39;
  --midnight-blue: rgb(13,8,41);
  --light-gray: #e2dddb;
  --dark-gray: #231f20;
  --gray-1: #fefefe;
  --gray-2: #ddd;
  --gray-3: #ccc;
  --link-color: #0054C2;
  --form-input-bg-color: var(--light-gray);
  --submit-button-fg: #fff;
  --main-menu-border-color: #6a6a6a;
  --main-menu-border-color-lighter: #9f9f9f;
  --footer-text-color: #fff;
  --footer-link-color: #fff;
}

.bg-blue-nav {
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--blue-nav);
}

.bg-blue-1 {
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--blue-1);
}
.bg-blue-1 a {
  color: #fff;
  text-decoration: underline;
}
.bg-blue-1 .serif-body, .bg-blue-1.serif-body {
  color: #fff;
}
.bg-blue-1 .serif-body a, .bg-blue-1.serif-body a {
  color: #fff;
  text-decoration: underline;
}
.bg-blue-1 .button,
.bg-blue-1 .more-link a,
.bg-blue-1 .view .more-link a {
  color: #fff;
  border-color: #fff;
}
.bg-blue-1 .button:hover,
.bg-blue-1 .more-link a:hover,
.bg-blue-1 .view .more-link a:hover {
  background: rgba(0, 0, 0, 0.4);
}

.bg-blue-2 {
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--blue-2);
}
.bg-blue-2 a {
  color: #fff;
  text-decoration: underline;
}
.bg-blue-2 .serif-body, .bg-blue-2.serif-body {
  color: #fff;
}
.bg-blue-2 .serif-body a, .bg-blue-2.serif-body a {
  color: #fff;
  text-decoration: underline;
}
.bg-blue-2 .button,
.bg-blue-2 .more-link a,
.bg-blue-2 .view .more-link a {
  color: #fff;
  border-color: #fff;
}
.bg-blue-2 .button:hover,
.bg-blue-2 .more-link a:hover,
.bg-blue-2 .view .more-link a:hover {
  background: rgba(0, 0, 0, 0.4);
}

.bg-blue-3 {
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--blue-3);
}
.bg-blue-3 a {
  color: #fff;
  text-decoration: underline;
}
.bg-blue-3 .serif-body, .bg-blue-3.serif-body {
  color: #fff;
}
.bg-blue-3 .serif-body a, .bg-blue-3.serif-body a {
  color: #fff;
  text-decoration: underline;
}
.bg-blue-3 .button,
.bg-blue-3 .more-link a,
.bg-blue-3 .view .more-link a {
  color: #fff;
  border-color: #fff;
}
.bg-blue-3 .button:hover,
.bg-blue-3 .more-link a:hover,
.bg-blue-3 .view .more-link a:hover {
  background: rgba(0, 0, 0, 0.4);
}

.bg-eee {
  color: var(--dark-gray);
  background: #eee;
}

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

#header {
  z-index: 2;
}

#main {
  z-index: 1;
  position: relative;
}

.full-width {
  width: 100%;
}

.max-width {
  width: 80vw;
  max-width: 960px;
  margin: 0 auto;
  margin-trim: block;
}

@supports not (margin-trim: block) {
  .max-width > :first-child {
    margin-top: 0;
  }
  .max-width > :first-child > :first-child {
    margin-top: 0;
  }
  .max-width > :last-child {
    margin-bottom: 0;
  }
}
.padding-sides-2 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.hidden {
  display: none;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.page-wrapper > main {
  flex-grow: 1;
}
.page-wrapper > header,
.page-wrapper > main,
.page-wrapper > footer {
  flex-shrink: 0;
}

@media (min-width: 60rem) {
  .columns--50-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2.5rem;
  }
  .columns--35-65 {
    display: grid;
    grid-template-columns: 35fr 65fr;
    grid-gap: 2.5rem;
  }
}
.width-50 {
  width: 50%;
  margin: 0;
}

.sidebar-column {
  margin: 2.5rem 0 0 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--light-gray);
}
.sidebar-column h2 {
  font-size: 1.25rem;
  color: var(--blue-1);
}
.sidebar-column p, .sidebar-column li {
  line-height: 1.5;
}
.sidebar-column h2:first-child {
  margin-top: 0;
}
.sidebar-column p + .button {
  margin-top: 1.25rem;
}

@media (min-width: 60rem) {
  .with-sidebar {
    display: flex;
  }
  .main-column {
    width: 60%;
  }
  .sidebar-column {
    width: 40%;
    margin: 0 0 2.5rem 0;
    padding: 0 0 0 5rem;
    border: none;
  }
  .sidebar-column .block + .block {
    margin: 2.5rem 0 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--light-gray);
  }
}
@media (min-width: 70rem) {
  .main-column {
    width: 65%;
  }
  .sidebar-column {
    width: 35%;
  }
}
.content-section {
  position: relative;
  padding-top: var(--vspace-4);
  padding-bottom: var(--vspace-4);
}

.title-section {
  position: relative;
  padding-top: var(--vspace-2);
  padding-bottom: 0;
}

.tabs-section {
  position: relative;
  padding-top: var(--vspace-1);
  padding-bottom: 0;
}

.messages-section {
  position: relative;
  padding-top: var(--vspace-1);
  padding-bottom: 0;
}

.messages-section + * {
  margin-top: var(--vspace-2);
}

.field-type-blockreference + p,
p + .field-type-blockreference {
  margin-top: var(--vspace-2);
}

.padding-top-0,
.content-section.padding-top-0 {
  padding-top: 0;
}

.padding-top-1,
.content-section.padding-top-1 {
  padding-top: var(--vspace-1);
}

.padding-top-2,
.content-section.padding-top-2 {
  padding-top: var(--vspace-2);
}

.padding-top-4,
.content-section.padding-top-4 {
  padding-top: var(--vspace-4);
}

.padding-bottom-0,
.content-section.padding-bottom-0 {
  padding-bottom: 0;
}

.padding-bottom-1,
.content-section.padding-bottom-1 {
  padding-bottom: var(--vspace-1);
}

.padding-bottom-2,
.content-section.padding-bottom-2 {
  padding-bottom: var(--vspace-2);
}

.padding-bottom-4,
.content-section.padding-bottom-4 {
  padding-bottom: var(--vspace-4);
}

.block,
.block > .content {
  margin-trim: block;
}

@supports not (margin-trim: block) {
  .block > :first-child,
  .block > .content > :first-child {
    margin-top: 0;
  }
  .block > :first-child > :first-child,
  .block > .content > :first-child > :first-child {
    margin-top: 0;
  }
  .block > :last-child,
  .block > .content > :last-child {
    margin-bottom: 0;
  }
}
.bg-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.bg-image-left {
  display: none;
}

.bg-image-right {
  display: none;
}

@media (min-width: 60rem) {
  .bg-image-left {
    display: block;
    left: 0;
    right: calc(50% + 2.5rem);
  }
  .bg-image-right {
    display: block;
    left: calc(50% + 2.5rem);
    right: 0;
  }
}
.bg-image img {
  display: block;
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  max-height: none;
  max-width: none;
  height: auto;
  width: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.bg-position--h50v0 img {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.bg-position--h50v10 img {
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-10%);
  transform: translateX(-50%) translateY(-10%);
}

.bg-position--h50v20 img {
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-20%);
  transform: translateX(-50%) translateY(-20%);
}

.bg-position--h50v30 img {
  top: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-30%);
  transform: translateX(-50%) translateY(-30%);
}

.bg-position--h50v40 img {
  top: 40%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-40%);
  transform: translateX(-50%) translateY(-40%);
}

.bg-position--h50v50 img {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.bg-position--h50v60 img {
  top: 60%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-60%);
  transform: translateX(-50%) translateY(-60%);
}

.bg-position--h50v70 img {
  top: 70%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-70%);
  transform: translateX(-50%) translateY(-70%);
}

.bg-position--h50v80 img {
  top: 80%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-80%);
  transform: translateX(-50%) translateY(-80%);
}

.bg-position--h50v90 img {
  top: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-90%);
  transform: translateX(-50%) translateY(-90%);
}

.bg-position--h50v100 img {
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-100%);
  transform: translateX(-50%) translateY(-100%);
}

@supports (object-fit: cover) {
  .bg-image img {
    position: relative;
    min-width: auto;
    min-height: auto;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .bg-position--h50v0 img {
    object-position: 50% top;
  }
  .bg-position--h50v10 img {
    object-position: 50% 10%;
  }
  .bg-position--h50v20 img {
    object-position: 50% 20%;
  }
  .bg-position--h50v40 img {
    object-position: 50% 40%;
  }
  .bg-position--h50v50 img {
    object-position: 50% 50%;
  }
  .bg-position--h50v60 img {
    object-position: 50% 60%;
  }
  .bg-position--h50v70 img {
    object-position: 50% 70%;
  }
  .bg-position--h50v80 img {
    object-position: 50% 80%;
  }
  .bg-position--h50v90 img {
    object-position: 50% 90%;
  }
  .bg-position--h50v100 img {
    object-position: 50% bottom;
  }
}
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.4375;
  color: #000;
  background: #fff;
}

p {
  margin: 1rem 0;
}

p strong,
p b {
  font-weight: 500;
}

a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}
a svg {
  fill: currentColor;
}

hr {
  height: 2px;
  margin: 1em 0;
  background: var(--light-gray);
  border: none;
}

.hr-thin {
  height: 1px;
  margin: 0;
  background: var(--light-gray);
  border: none;
}

video {
  max-width: 100%;
  height: auto;
}

h2 {
  margin: 1rem 0;
  line-height: 1.25;
}

h2.section-title-small {
  margin: 0 0 var(--vspace-2) 0;
}

h2.section-title {
  font-family: "Oswald", "Courier", sans-serif;
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 var(--vspace-2) 0;
}

h2.section-title-large,
.serif-body h2.section-title-large {
  margin: -0.75rem 0 var(--vspace-3) 0;
  font-family: "Oswald", "Courier", sans-serif;
  font-size: 3rem;
  line-height: 1.25;
  font-weight: 700;
  font-weight: 500;
}

h2.section-title .view-all {
  display: inline-block;
  margin-inline: 1rem;
  font-size: 0.5em;
  text-transform: uppercase;
}
h2.section-title .view-all:after {
  content: "";
  display: inline-block;
  border-bottom: 3px solid var(--link-color);
  border-right: 3px solid var(--link-color);
  height: 7px;
  width: 7px;
  vertical-align: middle;
  margin-inline: 0.3rem;
  transform: rotate(-45deg) translatey(-3px);
}

h3 {
  margin: 1rem 0;
  font-size: 1.25rem;
  line-height: 1.25;
}

.text-large {
  font-size: 1.125rem;
}

@media (min-width: 45rem) {
  .text-large {
    font-size: 1.25rem;
  }
}
table {
  font-size: 0.9375rem;
  border-collapse: collapse;
}

th {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: var(--blue-3);
  border: 1px solid var(--blue-3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

tbody tr {
  border: 1px solid var(--blue-4);
}

th,
td {
  padding: 0.375rem 0.625rem;
  text-align: left;
}

table.membership {
  display: block;
}
table.membership thead {
  display: none;
}
table.membership tbody {
  display: block;
}
table.membership tr {
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
  padding: 0;
  width: 100%;
}
table.membership td:nth-child(1) {
  font-weight: 900;
}
table.membership .mobile-only {
  font-weight: 500;
  color: var(--blue-2);
}

@media (min-width: 49rem) {
  table.membership {
    display: table;
  }
  table.membership tr {
    display: table-row;
  }
  table.membership tbody tr:first-child {
    border-top: none;
  }
  table.membership th, table.membership td {
    display: table-cell;
  }
  table.membership thead {
    display: table-header-group;
  }
  table.membership tbody {
    display: table-row-group;
  }
  table.membership td:nth-child(1) {
    font-weight: normal;
  }
  table.membership td:nth-child(4) {
    min-width: 9ch;
  }
  .mobile-only {
    display: none;
  }
}
@media (min-width: 60rem) {
  table.membership td:nth-child(1) {
    min-width: 15ch;
  }
  table.membership td:nth-child(2) {
    min-width: 12ch;
  }
  table.membership td:nth-child(4) {
    min-width: 15ch;
  }
}
.cols-2 > :first-child {
  margin-top: 0;
}

.cols-2 + p,
p + .cols-2 {
  margin-top: 2.5rem;
}

@media (min-width: 60rem) {
  .cols-2 {
    columns: 2;
    column-gap: 2.5rem;
  }
  .cols-2 > p {
    break-inside: avoid;
    margin: 0;
    padding-bottom: 1rem;
  }
  .cols-2 > .keep-together {
    break-inside: avoid;
    padding: 0 0 0.75rem 0;
  }
  .cols-2 > .keep-together h2 {
    margin-top: 0;
    padding: 0;
  }
  .cols-2 > .keep-together p {
    margin: 0;
    padding: 0 0 1rem 0;
  }
  .cols-2 > .keep-together h2 + p {
    margin-top: 1rem;
  }
  .cols-2 > .keep-together:first-child {
    margin-top: 0;
  }
  .cols-2 > .keep-together:last-child {
    padding-bottom: 0;
  }
}
input,
textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.4375;
}

input[type=text],
input[type=email],
input[type=password],
textarea {
  display: block;
  width: 15rem;
  max-width: 90%;
  margin: 0;
  padding: 0.375rem 0.5rem;
  color: var(--dark-gray);
  background: #fff;
  border: 1px solid #999;
  border-radius: 4px;
}

input[type=submit],
input[type=button] {
  padding: 0.375rem 1rem;
  color: var(--link-color);
  background: #fff;
  border: 1px solid var(--link-color);
  border-radius: 4px;
}
input[type=submit]:hover,
input[type=button]:hover {
  cursor: pointer;
  color: #fff;
  background: var(--link-color);
}

fieldset {
  margin: 1rem 0;
  padding: 0.25rem 1.5rem 1.5rem 1.5rem;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
}
fieldset .form-item {
  margin: 0.5rem 0;
}
fieldset .action {
  margin: 1.5rem 0 0 0;
}

form {
  margin: 2.5rem 0;
}
form:first-child {
  margin-top: 0;
}
form:last-child {
  margin-bottom: 0;
}

.field + form {
  margin-top: var(--vspace-2);
}

.form-item {
  margin: 0 0 0.75rem 0;
  margin-bottom: var(--vspace-1);
}
.form-item .description {
  margin: 0.25rem 0 0 0;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  line-height: 1.375;
}

.form-actions {
  margin: 2.5rem 0 0 0;
  margin-top: var(--vspace-2);
}

.container-inline .form-submit {
  margin-left: 1rem;
}

.page-header {
  background: var(--blue-1) url(../images/bhef-header.jpg) no-repeat 50% 0;
  border-bottom: 0.5rem solid var(--yellow);
}

.page-header-nav {
  display: grid;
  grid-auto-columns: 1fr auto auto;
  grid-auto-flow: column;
  gap: 1.5rem;
  align-items: center;
  padding: 0 1.25rem 0 0;
}

.header-logo {
  width: 120px;
  margin: 0;
  padding: 1rem;
}
.header-logo img {
  max-width: 100%;
  height: auto;
}

.topnav {
  position: relative;
}

.header-button {
  display: block;
  margin: 0;
  padding: 0.375rem 1rem 0.5rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.4375;
  color: #fff;
  text-decoration: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--link-color);
  border-radius: 4px;
}
.header-button:hover {
  text-decoration: none;
  background: color-mix(in oklch, var(--link-color), #000 25%);
  cursor: pointer;
}

.topnav-hamburger {
  display: block;
  position: relative;
  right: 0;
  padding: 0.375rem 1rem 0.5rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.4375;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: transparent;
  border: none;
  cursor: default;
  -webkit-appearance: none;
}

.topnav-hamburger:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  margin: 0.5em 0 0 0.5em;
  border-left: 0.3125em solid transparent;
  border-top: 0.4375em solid rgba(255, 255, 255, 0.6);
  border-right: 0.375em solid transparent;
}

.topnav-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 280px;
  margin: 0;
  padding: 0.5rem 0 1rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  background: var(--midnight-blue);
  z-index: 100;
}

.topnav-hamburger:hover + .topnav-menu,
.topnav-hamburger:focus-within + .topnav-menu {
  opacity: 1;
  visibility: visible;
}

.topnav-menu:hover,
.topnav-menu:focus-within {
  opacity: 1;
  visibility: visible;
}

.topnav-hamburger:hover,
.topnav-hamburger:focus-within,
.topnav:has(.topnav-menu:hover) .topnav-hamburger,
.topnav:has(.topnav-menu:focus-within) .topnav-hamburger {
  background: var(--midnight-blue);
}

.topnav-menu--item {
  margin: 0;
  padding: 0;
}

.topnav-button,
.topnav-link {
  display: block;
  margin: 0;
  padding: 0.375rem 1rem 0.5rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.4375;
  text-decoration: none;
  text-align: left;
  white-space: nowrap;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: transparent;
  border: none;
  cursor: default;
  -webkit-appearance: none;
}

.topnav-link {
  text-decoration: underline;
}

.topnav-link:hover,
.topnav-link:focus {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: underline;
  cursor: pointer;
}

.topnav-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
}
.topnav-submenu li {
  margin: 0;
  padding: 0;
}
.topnav-submenu a {
  display: block;
  padding: 0.375rem 1rem 0.375rem 2rem;
  text-decoration: underline;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.4375;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  background: transparent;
}
.topnav-submenu a:active, .topnav-submenu a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.header-breadcrumb {
  background: rgba(255, 255, 255, 0.25);
}

@media (min-width: 52rem) {
  .topnav-hamburger {
    display: none;
  }
  .topnav-menu {
    position: relative;
    top: 0;
    display: grid;
    grid-auto-flow: column;
    gap: 0.75rem;
    opacity: 1;
    visibility: visible;
    padding: 0;
    background: transparent;
  }
  .topnav-menu--item {
    position: relative;
  }
  .topnav-button:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: top;
    margin: 0.5em 0 0 0.5em;
    border-left: 0.3125em solid transparent;
    border-top: 0.4375em solid rgba(255, 255, 255, 0.6);
    border-right: 0.375em solid transparent;
  }
  .topnav-link {
    text-decoration: none;
  }
  .topnav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 19ch;
    padding: 0.25rem 0 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    background: var(--midnight-blue);
    box-shadow: 0 0.15em 0.25em rgba(0, 0, 0, 0.25);
  }
  .topnav-submenu a {
    padding: 0.375rem 1rem;
    text-decoration: none;
  }
  .topnav-button:hover + .topnav-submenu,
  .topnav-button:focus-within + .topnav-submenu,
  .topnav-submenu:hover,
  .topnav-submenu:focus-within {
    opacity: 1;
    visibility: visible;
  }
  .topnav-button:hover,
  .topnav-button:focus-within,
  .topnav-menu--item:has(.topnav-submenu:hover) .topnav-button,
  .topnav-menu--item:has(.topnav-submenu:focus-within) .topnav-button {
    background: var(--midnight-blue);
  }
  .topnav-link:hover,
  .topnav-link:focus {
    background: var(--midnight-blue);
    text-decoration: underline;
  }
}
@media (min-width: 60rem) {
  .header-logo {
    width: 220px;
  }
  .page-header-nav {
    gap: 2rem;
  }
}
.page-footer .content {
  padding: 2rem;
  font-size: 0.75rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--blue-2);
  background: var(--light-gray);
}

.footer-left ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-left li {
  display: block;
  margin: 0 0 0.5rem 0;
  padding: 0;
  text-align: center;
}

.footer-right {
  margin: 2rem 0 0 0;
}
.footer-right p {
  margin: 0;
  text-align: center;
}

.region-footer-bottom #mc_embed_signup_scroll label {
  line-height: 0.8;
}

.region-footer-bottom #mc_embed_signup_scroll input {
  margin: 0.5rem 0 0 0;
  font-size: 1rem;
}

@media (min-width: 45rem) {
  .page-footer .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-left ul {
    margin: 0;
    padding: 0;
  }
  .footer-left li {
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  .footer-left li:after {
    display: inline-block;
    height: 0.8em;
    content: "";
    margin: -0.15em 0.5rem 0 0.75rem;
    border-right: 2px solid var(--dark-gray);
    vertical-align: middle;
  }
  .footer-left li:last-child:after {
    display: none;
  }
}
@media (min-width: 60rem) {
  .page-footer .content {
    justify-content: space-between;
    flex-direction: row;
  }
  .footer-right {
    margin: 0;
  }
  .footer-right p {
    text-align: right;
  }
}
.breadcrumb {
  margin: 0;
  padding: 0;
  font-family: "Oswald", "Courier", sans-serif;
  font-size: 1.25rem;
  line-height: 1.125;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #4F7796;
}
.breadcrumb a {
  color: #4F7796;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.page-header .breadcrumb {
  margin: 0;
  padding: 0.5rem 0 0 0;
  font-family: "Oswald", "Courier", sans-serif;
  font-size: 1.25rem;
  line-height: 1.125;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page-header .breadcrumb a {
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
}
.page-header .breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb p {
  margin: 0;
}

.page-title-icon {
  height: 2.5rem;
  width: auto;
  margin: 0 0 1.5rem 0;
}

h1.page-title {
  margin: 0;
  font-family: "Oswald", "Courier", sans-serif;
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--blue-3);
}

@media (min-width: 45rem) {
  h1.page-title {
    font-size: 3.25rem;
    line-height: 1.125;
  }
}
:root {
  --hero-title-size: 3rem;
  --hero-title-leading: 1.25;
  --hero-title-top-space: 0;
  --hero-title-bottom-space: var(--vspace-3);
  --hero-body-size: 1.125rem;
  --hero-body-width: 100%;
}

@media (min-width: 30rem) {
  :root {
    --hero-title-size: 3.5rem;
  }
}
@media (min-width: 45rem) {
  :root {
    --hero-title-size: 4.5rem;
    --hero-body-size: 1.25rem;
    --hero-body-width: 60vw;
  }
}
@media (min-width: 60rem) {
  :root {
    --hero-title-size: 5.5rem;
    --hero-title-leading: 1.125;
    --hero-body-size: 1.5rem;
    --hero-body-width: 45vw;
  }
}
@media (min-height: 45rem) and (min-width: 45rem) {
  :root {
    --hero-title-top-space: var(--vspace-2);
  }
}
html {
  scroll-behavior: smooth;
}

.hero--max-width {
  width: 80vw;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero-a {
  min-height: 100vh;
  background-color: var(--blue-1);
}
.hero-a .bg-image img {
  opacity: 0.2;
  filter: grayscale(1);
}

.hero-b {
  min-height: 50vh;
  background-color: var(--blue-1);
}
.hero-b .bg-image img {
  opacity: 0.2;
  filter: grayscale(1);
}

.hero-c {
  min-height: 25vh;
  background-color: #03182b;
}
.hero-c .bg-image img {
  opacity: 0.2;
  filter: grayscale(1);
  mix-blend-mode: soft-light;
}

.hero-pretitle {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  line-height: 1.375;
  font-size: var(--hero-body-size);
  color: #fff;
  max-width: var(--hero-body-width);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

.hero-title {
  margin: var(--hero-title-top-space) 0 var(--hero-title-bottom-space) 0;
  font-family: "Oswald", sans-serif;
  font-size: 5.5rem;
  line-height: 1.25;
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-leading);
  font-weight: 500;
  color: var(--yellow);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-pretitle + .hero-title {
  margin-top: 1rem;
}

.hero-body {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  line-height: 1.375;
  font-size: var(--hero-body-size);
  color: #fff;
  max-width: var(--hero-body-width);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-button {
  display: inline-block;
  margin: 1rem 0 0 0;
  padding: 0.5em 1em;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.25;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
}
.hero-button:hover {
  text-decoration: none;
  color: #fff;
  background: var(--blue-1);
  border-color: #fff;
  cursor: pointer;
}

.hero-button--with-icon {
  padding: 0.5em 0.8125em 0.5em 1em;
}
.hero-button--with-icon svg {
  vertical-align: top;
  margin: 2px 0 0 0.3125rem;
}

.hero2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.75rem;
  line-height: 1.125;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero2--pretitle {
  margin: 0 0 0.3125rem 0;
  color: var(--blue-4);
}

.hero2--title {
  margin: 0 0 2rem 0;
  font-size: 4.75rem;
  line-height: 1.0625;
  color: #fff;
}

.hero2--body {
  margin: 0;
  color: #ffd781;
}

.hero2--body > :last-child {
  margin-bottom: 0;
}

.main-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.main-bg img {
  display: block;
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  max-height: none;
  max-width: none;
  height: auto;
  width: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.main-bg--top img {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.button-wrapper {
  margin: 0;
}

.button-wrapper + .button-wrapper {
  margin-top: 2rem;
}

.text-area + .button-wrapper {
  margin-top: 1.5rem;
}

.button-wrapper + .text-area {
  margin-top: 2rem;
}

.button {
  display: inline-block;
  margin: 0;
  padding: 0.5em 1em;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.25;
  color: var(--link-color);
  text-decoration: none !important;
  border: 1px solid var(--link-color);
  border-radius: 4px;
}
.button:hover {
  text-decoration: none;
  color: #fff;
  background: var(--link-color);
  cursor: pointer;
}

p + .button,
ul + .button,
p + .button-wrapper,
ul + .button-wrapper {
  margin: 2rem 0 1rem 0;
}

.column:has(p + .button + p + .button) .button {
  margin-top: 1rem;
}

.column:has(p + .button + p + .button) p:has(+ .button) {
  margin-top: 2rem;
}

.column:has(p + .button-wrapper + p + .button-wrapper) .button-wrapper {
  margin-top: 1rem;
}

.column:has(p + .button-wrapper + p + .button-wrapper) p:has(+ .button-wrapper) {
  margin-top: 2rem;
}

.view .more-link {
  margin: 2.5rem 0 0 0;
  margin-top: var(--vspace-2);
  text-align: left;
}

.view .more-link a {
  display: inline-block;
  margin: 0;
  padding: 0.5em 1em;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.25;
  color: var(--link-color);
  text-decoration: none !important;
  border: 1px solid var(--link-color);
  border-radius: 4px;
  text-transform: capitalize;
}
.view .more-link a:hover {
  text-decoration: none;
  color: #fff;
  background: var(--link-color);
  cursor: pointer;
}

.serif-body {
  font-family: var(--font-serif);
  font-size: 1.3125rem;
  line-height: 1.5;
  color: var(--dark-gray);
}
.serif-body.text-large {
  font-size: 1.5rem;
}
.serif-body a {
  color: #0059FF;
}
.serif-body h2 {
  margin: 1.75rem 0 0.5rem 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.375;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--blue-2);
}
.serif-body h2:first-child {
  margin-top: 0;
}
.serif-body p:first-child {
  margin-top: 0;
}
.serif-body p strong,
.serif-body p b {
  font-weight: 700;
}
.serif-body .field label {
  font-weight: bold;
}
.serif-body .field label:after {
  content: ": ";
}
.serif-body form {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.375;
}
.serif-body img {
  max-width: 100%;
  height: auto;
}

.hybrid-body {
  font-family: var(--font-serif);
  font-size: 1.3125rem;
  line-height: 1.5;
  color: var(--dark-gray);
}
.hybrid-body.text-large {
  font-size: 1.5rem;
}
.hybrid-body a {
  color: #0059FF;
}
.hybrid-body h2 {
  margin: 1.75rem 0 0.5rem 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.375;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--blue-2);
}
.hybrid-body h2:first-child {
  margin-top: 0;
}
.hybrid-body p:first-child {
  margin-top: 0;
}
.hybrid-body p strong,
.hybrid-body p b {
  font-weight: 700;
}
.hybrid-body .field label {
  font-weight: bold;
}
.hybrid-body .field label:after {
  content: ": ";
}
.hybrid-body form {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.375;
}
.hybrid-body p:has(> em:first-child):has(> strong:last-child) {
  margin: var(--vspace-2) 0 1rem 0;
}
.hybrid-body p:has(> em:first-child):has(> strong:last-child) > em:first-child {
  display: block;
  margin: 0;
}
.hybrid-body p:has(> em:first-child):has(> strong:last-child) > strong:last-child {
  display: block;
  margin: 0;
  font-family: "Oswald", "Courier", sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 500;
  text-transform: uppercase;
}
.hybrid-body p:has(> em:first-child):has(> strong:last-child) br {
  display: none;
}
.hybrid-body img {
  max-width: 100%;
  height: auto;
}

.text-area img {
  max-width: 100%;
  height: auto;
}

.large-text {
  font-size: 1.375rem;
}

.details-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem 1.5rem;
}

.details-tab {
  display: contents;
}

.details-tab--summary {
  order: 0;
  display: block;
  margin: 0;
  padding: 0.75rem 1.5rem;
  font-family: "Oswald", "Courier", sans-serif;
  font-size: 1.25rem;
  line-height: 1.125;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--blue-5);
  background: #fff;
  border: 2px solid var(--blue-5);
  cursor: pointer;
}

.details-tab--summary:hover,
.details-tab--summary:focus {
  color: #fff;
  background: var(--blue-3);
  border-color: var(--blue-3);
}

.details-tab--summary::-webkit-details-marker {
  display: none;
}

.details-tab[open] > .details-tab--summary {
  color: #fff;
  background: var(--blue-5);
  border-color: var(--blue-5);
  cursor: default;
  pointer-events: none;
}

::details-content {
  order: 1;
}

.details-tab--content {
  order: 1;
  width: 100%;
}

.blog-news-signup form {
  margin: 0;
}

.blog-news-signup .mc-widget {
  display: inline-block;
  margin: 0 0.5rem 0 0;
}

.blog-news-signup input[type=email] {
  margin: 0;
  width: 15rem;
  max-width: 90%;
}

.blog-body {
  font-family: var(--font-serif);
  font-size: 1.3125rem;
  line-height: 1.5;
  color: var(--dark-gray);
}
.blog-body img {
  max-width: 100%;
  height: auto;
}
.blog-body h1 {
  margin: var(--vspace-1) 0 0 0;
  font-family: var(--font-serif);
  font-weight: normal;
  font-size: 2.75rem;
  line-height: 1.1;
}
.blog-body h1 strong, .blog-body h1 b {
  font-weight: normal;
}
.blog-body .submitted {
  margin: 0.75rem 0 var(--vspace-2) 0;
  font-size: 1.125rem;
  color: #555;
}
.blog-body h2 {
  margin: 2.25rem 0 0.5rem 0;
  font-family: var(--font-serif);
  font-weight: normal;
  font-size: 2.25rem;
  line-height: 1.125;
  color: var(--blue-2);
}
.blog-body h2 strong, .blog-body h2 b {
  font-weight: normal;
}
.blog-body h2:first-child {
  margin-top: 0;
}
.blog-body h3 {
  margin: 1.75rem 0 0.5rem 0;
  font-size: 1em;
  line-height: 1.5;
  font-weight: 700;
  color: var(--dark-gray);
}
.blog-body h3 strong, .blog-body h3 b {
  font-weight: 700;
}
.blog-body p:first-child {
  margin-top: 0;
}
.blog-body p strong,
.blog-body p b {
  font-weight: 700;
}
.blog-body hr {
  margin: 2rem 0;
}

.vflex {
  display: flex;
  flex-direction: column;
}
.vflex > * {
  margin-top: 0;
  margin-bottom: 0;
}
.vflex > * > :first-child {
  margin-top: 0;
}
.vflex > * > :last-child {
  margin-bottom: 0;
}

.vflex-1 {
  gap: var(--vspace-1);
}

.vflex-2 {
  gap: var(--vspace-2);
}

.vflex-3 {
  gap: var(--vspace-3);
}

.vflex-4 {
  gap: var(--vspace-4);
}

.node-type-publications h1.page-title,
.page-node-download h1.page-title {
  font-size: 2rem;
  line-height: 1.25;
  text-transform: none;
}
.node-type-publications .field,
.page-node-download .field {
  margin: 0;
}
.node-type-publications p + .field,
.page-node-download p + .field {
  margin-top: var(--vspace-2);
}
.node-type-publications .field + .field,
.page-node-download .field + .field {
  margin-top: 0.5rem;
}
.node-type-publications .field-thumbnail,
.page-node-download .field-thumbnail {
  margin: calc(-1 * var(--vspace-2)) 0 var(--vspace-2) 0;
}
.node-type-publications .field-thumbnail img,
.page-node-download .field-thumbnail img {
  display: block;
  box-shadow: rgba(50, 50, 93, 0.25) 0 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border-radius: 2px;
}

@media (min-width: 45rem) {
  .node-type-publications h1.page-title,
  .page-node-download h1.page-title {
    font-size: 2.5rem;
  }
  .node-type-publications .field-thumbnail:first-child + p,
  .node-type-publications .field-thumbnail:first-child + h2,
  .node-type-publications .node-publications--body p:first-child,
  .node-type-publications .node-publications--body h2:first-child,
  .page-node-download .field-thumbnail:first-child + p,
  .page-node-download .field-thumbnail:first-child + h2,
  .page-node-download .node-publications--body p:first-child,
  .page-node-download .node-publications--body h2:first-child {
    margin-top: 0;
  }
  .node-publications.with-thumbnail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
  }
}
.node-type-press-releases h1.page-title {
  font-size: 2rem;
  line-height: 1.25;
  text-transform: none;
}

@media (min-width: 45rem) {
  .node-type-press-releases h1.page-title {
    font-size: 2.5rem;
  }
}
.pager {
  margin: 2.5rem 0 0 0;
  margin-top: var(--vspace-2);
}

.pager-current {
  display: inline-block;
  margin: 0;
  padding: 0.375em 0.75em;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.25;
}

.pager-previous a {
  display: inline-block;
  margin: 0;
  padding: 0.375em 0.75em;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.25;
  color: #fff;
  border: 1px solid var(--blue-4);
  border-radius: 4px;
  background: var(--blue-4);
  text-transform: capitalize;
}
.pager-previous a:hover {
  text-decoration: none;
  color: #fff;
  background: var(--link-color);
  border-color: var(--link-color);
  cursor: pointer;
}

.pager-next a {
  display: inline-block;
  margin: 0;
  padding: 0.375em 0.75em;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.25;
  color: #fff;
  border: 1px solid var(--blue-4);
  border-radius: 4px;
  background: var(--blue-4);
  text-transform: capitalize;
}
.pager-next a:hover {
  text-decoration: none;
  color: #fff;
  background: var(--link-color);
  border-color: var(--link-color);
  cursor: pointer;
}

.testimonial {
  width: 100%;
  margin: 0 0 2.5rem 0;
  color: var(--dark-gray);
}

@media (min-width: 30rem) {
  .testimonial {
    display: grid;
    grid-template-columns: minmax(6rem, 10rem) minmax(200px, 1fr);
  }
}
@media (min-width: 60rem) {
  .testimonials {
    display: grid;
    grid-gap: 2.5rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .testimonial {
    display: block;
    width: 100%;
    margin: 0;
    color: var(--dark-gray);
  }
}
.testimonial-figure {
  margin: 0;
  padding: 0;
}
.testimonial-figure img {
  display: block;
  width: 80%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  border: none;
}

.testimonial-body {
  margin: 1rem 0 0 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
}

.testimonial-name {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.25;
  font-weight: 500;
  margin: 0.25rem 0 0 0;
  text-transform: uppercase;
}

.testimonial-title {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
  font-style: italic;
}

.blurb {
  width: 100%;
  margin: 0 0 2.5rem 0;
  margin-bottom: var(--vspace-4);
  color: var(--dark-gray);
}
.blurb h2 {
  margin: 1.25rem 0 0 0;
  margin-top: var(--vspace-1);
  font-size: 1.25rem;
}

.blurb-icon {
  margin: 0;
  padding: 0;
}
.blurb-icon img {
  display: block;
  height: 3rem;
  width: auto;
  fill: #ff0;
  margin: 0;
}

.blurb-body {
  margin: 1.5rem 0 0 0;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.75;
}
.blurb-body strong a,
.blurb-body a strong {
  color: inherit;
}

@media (min-width: 60rem) {
  .blurbs {
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
  .blurb {
    width: 30%;
    margin: 0;
  }
  .blurb-body {
    font-size: 1rem;
    margin-top: var(--vspace-1);
  }
}
.blurb-button-wrapper {
  margin: 1.5rem 0;
}

.blurb-button {
  display: inline-block;
  margin: 0;
  padding: 0.5em 1em;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.25;
  color: var(--link-color);
  border: 1px solid var(--link-color);
  border-radius: 4px;
}
.blurb-button:hover {
  text-decoration: none;
  color: #fff;
  background: var(--link-color);
  cursor: pointer;
}

.expandable {
  margin: 1.5rem 0;
}

.expandable--summary {
  display: inline-block;
}
.expandable--summary::marker {
  content: "";
}
.expandable--summary h3 {
  position: relative;
  margin: 0;
  padding-right: 1.5rem;
}
.expandable--summary h3::before,
.expandable--summary h3::after {
  content: "";
  border-top: 3px solid var(--link-color);
  height: 0;
  width: 1rem;
  inset-block-start: 50%;
  inset-inline-end: 0;
  position: absolute;
  top: calc(50% - 0.1rem);
  right: 0;
}
.expandable--summary h3::after {
  transform: rotate(90deg);
  transform-origin: 50%;
}
.expandable--summary h3:hover {
  color: var(--link-color);
  cursor: pointer;
}

.expandable[open] .expandable--summary h3::after {
  transform: rotate(0deg);
}

.blog-featured,
.blog-teaser {
  font-family: var(--font-serif);
  font-size: 1.4375rem;
  line-height: 1.625;
  color: var(--dark-gray);
  margin: 0;
}
.blog-featured .pre-title,
.blog-teaser .pre-title {
  margin: 0 0 0.25rem 0;
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
}
.blog-featured img,
.blog-teaser img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}
.blog-featured .title,
.blog-teaser .title {
  font-family: var(--font-serif);
  font-size: 2.375rem;
  line-height: 1.25;
  font-weight: 300;
  margin: 0;
}
.blog-featured .title a,
.blog-teaser .title a {
  text-decoration: none;
  color: #000;
}
.blog-featured .title a:active, .blog-featured .title a:hover,
.blog-teaser .title a:active,
.blog-teaser .title a:hover {
  color: #138;
}
.blog-featured .read-more,
.blog-teaser .read-more {
  display: inline;
  font-size: 0.7em;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.blog-featured .read-more:after,
.blog-teaser .read-more:after {
  font-weight: normal;
  display: inline-block;
  vertical-align: top;
  font-size: 1.6em;
  line-height: 1;
  content: " >";
  scale: 0.5 1;
  margin: 0.3em 0 0 0.15rem;
}

.blog-list-wrapper > .view-content,
.blog-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-list-wrapper > .view-content img,
.blog-list img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}
.blog-list-wrapper > .view-content .article,
.blog-list .article {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 50%;
  margin: 0 0 1rem 0;
  padding: 0;
}
.blog-list-wrapper > .view-content .article-title,
.blog-list .article-title {
  margin: 0.5rem 0 0 0;
}
.blog-list-wrapper > .view-content .article-submitted,
.blog-list .article-submitted {
  margin: 0.25rem 0 0 0;
  font-size: 0.875rem;
  color: #999;
}
.blog-list-wrapper > .view-content .article-summary,
.blog-list .article-summary {
  margin: 1rem 0 0 0;
}
.blog-list-wrapper > .view-content .article-summary p,
.blog-list .article-summary p {
  margin: 0 0 1rem 0;
}

@supports (display: grid) {
  .blog-list-wrapper > .view-content,
  .blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
    gap: 2.5rem;
    overflow: visible;
  }
  .blog-list-wrapper > .view-content .article,
  .blog-list .article {
    width: auto;
    margin: 0;
  }
}
.blog-list-3 {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-list-3 img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
}
.blog-list-3 .article {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 33%;
  margin: 0 0 1rem 0;
  padding: 0;
}
.blog-list-3 .article-title {
  margin: 0.5rem 0 0 0;
}
.blog-list-3 .article-submitted {
  margin: 0.25rem 0 0 0;
  font-size: 0.875rem;
  color: #999;
}
.blog-list-3 .article-summary {
  margin: 1rem 0 0 0;
}
.blog-list-3 .article-summary p {
  margin: 0 0 1rem 0;
}

@supports (display: grid) {
  .blog-list-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(15rem, 100%), 1fr));
    gap: 2.5rem;
    overflow: visible;
  }
  .blog-list-3 .article {
    width: auto;
    margin: 0;
  }
}
.h2-more {
  display: inline-block;
  margin: 0 0 0 0.5rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.h2-more a:after {
  font-weight: normal;
  display: inline-block;
  vertical-align: top;
  font-size: 1.6em;
  line-height: 1;
  content: " >";
  scale: 0.5 1;
  margin: -0.12em 0 0 0.15rem;
}

.view-blog-list .pager,
.blog-list-pager {
  margin: var(--vspace-4) 0 0 0;
}

.view-blog-list .views-exposed-widgets {
  margin: 0 0 var(--vspace-1) 0;
}

.view-blog-list .views-exposed-widgets input {
  margin: 0 0 var(--vspace-1) 0;
}

.view-blog-list .views-exposed-widgets input[type=text] {
  margin: 0 0 var(--vspace-1) 0;
  width: 15rem;
  max-width: 90%;
}

.view-blog-list .views-exposed-widgets .views-exposed-widget {
  display: inline-block;
  margin: 0 0.5rem 0 0;
}

.news-blog-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-blog-list-item {
  margin: 1.5rem 0;
  padding: 0;
}

.news-blog-list-item .article-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1.2;
}

.news-blog-list-item .article-title:after {
  content: " ";
  display: inline-block;
  margin: 0 0.75rem 0 0;
}

.news-blog-list-item .article-title a {
  color: #000;
}

.news-blog-list-item .article-title a:hover,
.news-blog-list-item .article-title a:focus {
  text-decoration: none;
  color: #138;
}

.news-blog-list-item .article-submitted {
  display: inline-block;
  color: #999;
}

.news-blog-list-more {
  display: inline;
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-blog-list-more a:after {
  font-weight: normal;
  display: inline-block;
  vertical-align: top;
  font-size: 1.6em;
  line-height: 1;
  content: " >";
  scale: 0.5 1;
  margin: -0.05em 0 0 0.15rem;
}

.events-list {
  margin: 1rem 0;
}

.event-featured {
  font-family: var(--font-serif);
  font-size: 1.4375rem;
  line-height: 1.625;
  color: var(--dark-gray);
  margin: 0;
}
.event-featured .pre-title {
  margin: 0 0 0.25rem 0;
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
}
.event-featured img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
}
.event-featured .title {
  font-family: var(--font-serif);
  font-size: 2.375rem;
  line-height: 1.25;
  font-weight: 300;
  margin: 0;
}
.event-featured .title a {
  text-decoration: none;
  color: #000;
}
.event-featured .title a:active, .event-featured .title a:hover {
  color: #138;
}

.node-speaker-gallery .field-speakers {
  display: grid;
}
.node-speaker-gallery .field-speakers a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.node-speaker-gallery .field-speakers a:hover {
  color: var(--link-color);
}
.node-speaker-gallery .field-speakers figure {
  margin: 0;
  padding: 0;
}
.node-speaker-gallery .field-speakers figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0.5rem 0 0 0;
  line-height: 1.25;
}
.node-speaker-gallery .field-speakers img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
}
.node-speaker-gallery .field-speakers .field-speaker-name {
  font-weight: bold;
}

.node-speaker-gallery.node .field-speakers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(12rem, 100%), 1fr));
  gap: var(--vspace-2);
  margin: var(--vspace-2) 0;
  font-size: 1.25rem;
}

.node-speaker-gallery.embedded-gallery .field-speakers {
  grid-template-columns: repeat(auto-fill, minmax(min(8rem, 100%), 1fr));
  gap: var(--vspace-1);
  margin: var(--vspace-1) 0 var(--vspace-2) 0;
  font-size: 0.8125rem;
}

@media (min-width: 45rem) {
  .node-speaker-gallery.embedded-gallery .field-speakers {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 60rem) {
  .node-speaker-gallery.embedded-gallery .field-speakers {
    grid-template-columns: repeat(6, 1fr);
  }
  .node-speaker-gallery.node .field-speakers {
    grid-template-columns: repeat(3, 1fr);
  }
}
.node-photo-gallery .field-gallery-photos {
  display: grid;
}
.node-photo-gallery .field-gallery-photos a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.node-photo-gallery .field-gallery-photos a:hover {
  color: var(--link-color);
}
.node-photo-gallery .field-gallery-photos figure {
  margin: 0;
  padding: 0;
}
.node-photo-gallery .field-gallery-photos figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0.5rem 0 0 0;
  line-height: 1.25;
}
.node-photo-gallery .field-gallery-photos img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
}
.node-photo-gallery .field-gallery-photos .field-speaker-name {
  font-weight: bold;
}

.node-photo-gallery.node .field-gallery-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(12rem, 100%), 1fr));
  gap: var(--vspace-2);
  margin: var(--vspace-2) 0;
  font-size: 1.25rem;
}

.node-photo-gallery.embedded-gallery .field-gallery-photos {
  grid-template-columns: repeat(auto-fill, minmax(min(8rem, 100%), 1fr));
  gap: var(--vspace-1);
  margin: var(--vspace-1) 0 var(--vspace-2) 0;
  font-size: 0.8125rem;
}

@media (min-width: 45rem) {
  .node-photo-gallery.embedded-gallery .field-gallery-photos {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 60rem) {
  .node-photo-gallery.embedded-gallery .field-gallery-photos {
    grid-template-columns: repeat(6, 1fr);
  }
  .node-photo-gallery.node .field-gallery-photos {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-list-item {
  margin: 0;
  padding: 0;
}

@supports (display: grid) {
  .news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
    grid-gap: 2rem 2.5rem;
  }
}
.members-list p {
  margin: 0 0 1rem 0;
  break-inside: avoid-column;
}

@media (min-width: 30rem) {
  .members-list {
    columns: 2;
    column-gap: 2.5rem;
  }
}
.member-logos-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(12rem, 100%), 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
}

.member-logo {
  grid-row: span 2;
  display: grid;
  grid-template-rows: subgrid;
  gap: 1.5rem;
  margin: 0;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--gray-3);
}

.member-logo--caption {
  margin: 0;
}

.member-logo--label {
  margin: 0;
  font-size: 0.8125rem;
}

.member-logo--name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: bold;
}

.member-logo--title {
  margin: 0;
  font-size: 0.9375rem;
}

.member-logo--image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-logo--image a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-logo--image img {
  max-width: 100%;
  height: auto;
}

.member-logo--image img.s-100 {
  max-width: 100%;
}

.member-logo--image img.s-95 {
  max-width: 95%;
}

.member-logo--image img.s-90 {
  max-width: 90%;
}

.member-logo--image img.s-85 {
  max-width: 85%;
}

.member-logo--image img.s-80 {
  max-width: 80%;
}

.member-logo--image img.s-75 {
  max-width: 75%;
}

.member-logo--image img.s-70 {
  max-width: 70%;
}

.member-logo--image img.s-65 {
  max-width: 65%;
}

.member-logo--image img.s-60 {
  max-width: 60%;
}

.member-logo--image img.s-55 {
  max-width: 55%;
}

.member-logo--image img.s-50 {
  max-width: 50%;
}

.publications-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.publications-list img {
  max-width: 100%;
  height: auto;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border-radius: 2px;
}
.publications-list .publication {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 33%;
  margin: 0 0 1rem 0;
  padding: 0 1rem 0 0;
}
.publications-list .publication-title {
  margin: 0.5rem 0 0 0;
}

@supports (display: grid) {
  .publications-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(11rem, 100%), 1fr));
    grid-gap: 2.5rem;
  }
  .publications-list .publication {
    width: auto;
    margin: 0;
    padding: 0;
  }
}
.view-publications-list .pager,
.publications-list-pager {
  margin: 4.5rem 0 0 0;
  margin-top: var(--vspace-4);
}

.view-publications-list .views-exposed-widgets {
  margin: 0 0 2.5rem 0;
  margin-bottom: var(--vspace-1);
}

.view-publications-list .views-exposed-widgets input {
  margin: 0 0 0.5rem 0;
  margin-bottom: var(--vspace-1);
}

.view-publications-list .views-exposed-widgets input[type=text] {
  margin: 0 0 0.75rem 0;
  margin-bottom: var(--vspace-1);
  width: 15rem;
  max-width: 90%;
}

.view-publications-list .views-exposed-widgets .views-exposed-widget {
  display: inline-block;
  margin: 0 0.5rem 0 0;
}

.staff-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.staff-list-item {
  margin: 0 0 1rem 0;
  padding: 0;
  break-inside: avoid-column;
}

.staff-list--name {
  font-size: 1.1875rem;
  font-weight: 500;
}

.staff-list--title {
  font-style: italic;
}

@media (min-width: 30rem) {
  .staff-list {
    columns: 2;
    column-gap: 2.5rem;
  }
}
.staff-bio + .staff-bio {
  margin-top: 1.75rem;
  overflow: auto;
}

.staff-bio--image {
  display: block;
  float: left;
  margin: 0.25rem 1.5rem 0.5rem 0;
  max-width: 150px;
  height: auto;
  width: 50%;
}

@media (min-width: 30rem) {
  .staff-bio--image {
    width: 40%;
  }
}
@media (min-width: 45rem) {
  .staff-bio--image {
    width: 30%;
  }
}
:root {
  --sponsor-logo-height: 20rem;
  --sponsor-logo-width: 30rem;
}

.sponsors-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem 4rem;
  margin: 0 0 3rem 0;
  padding: 0;
  list-style: none;
}
.sponsors-list li {
  margin: 0;
  padding: 0;
}
.sponsors-list img {
  display: block;
  height: auto;
  width: auto;
}

.sponsors-list img.s-100 {
  max-height: var(--sponsor-logo-height);
  max-width: var(--sponsor-logo-width);
}

.sponsors-list img.s-95 {
  max-height: calc(0.95 * var(--sponsor-logo-height));
  max-width: calc(0.95 * var(--sponsor-logo-width));
}

.sponsors-list img.s-90 {
  max-height: calc(0.9 * var(--sponsor-logo-height));
  max-width: calc(0.9 * var(--sponsor-logo-width));
}

.sponsors-list img.s-85 {
  max-height: calc(0.85 * var(--sponsor-logo-height));
  max-width: calc(0.85 * var(--sponsor-logo-width));
}

.sponsors-list img.s-80 {
  max-height: calc(0.8 * var(--sponsor-logo-height));
  max-width: calc(0.8 * var(--sponsor-logo-width));
}

.sponsors-list img.s-75 {
  max-height: calc(0.75 * var(--sponsor-logo-height));
  max-width: calc(0.75 * var(--sponsor-logo-width));
}

.sponsors-list img.s-70 {
  max-height: calc(0.7 * var(--sponsor-logo-height));
  max-width: calc(0.7 * var(--sponsor-logo-width));
}

.sponsors-list img.s-65 {
  max-height: calc(0.65 * var(--sponsor-logo-height));
  max-width: calc(0.65 * var(--sponsor-logo-width));
}

.sponsors-list img.s-60 {
  max-height: calc(0.6 * var(--sponsor-logo-height));
  max-width: calc(0.6 * var(--sponsor-logo-width));
}

.sponsors-list img.s-55 {
  max-height: calc(0.55 * var(--sponsor-logo-height));
  max-width: calc(0.55 * var(--sponsor-logo-width));
}

.sponsors-list img.s-50 {
  max-height: calc(0.5 * var(--sponsor-logo-height));
  max-width: calc(0.5 * var(--sponsor-logo-width));
}

/*# sourceMappingURL=bh22.css.map */
