.secondary-nav {
  color: #005595;
  text-align: center;
  background-color: #ebf3f9;
  border-bottom: 1px solid #cde5ff;
  display: none;
}

@media (min-width: 760px) {
  .secondary-nav {
    display: block;
  }
}

.secondary-nav nav {
  justify-content: center;
  display: flex;
}

.secondary-nav ul {
  margin: 0;
  list-style: none;
  display: flex;
}

.secondary-nav li:before {
  content: "·";
  font-weight: 700;
}

.secondary-nav li:first-child:before {
  content: "";
}

.secondary-nav a {
  color: inherit;
  border-bottom: none;
  padding: 14px 5px 11px;
  font-family: Zilla Slab, Georgia, serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-decoration: underline;
  display: inline-block;
}

.secondary-nav a:hover {
  color: #001b2f;
}

.sbf-badge {
  letter-spacing: normal;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: .875em;
  line-height: 1.28571;
}

.sbf-badge[data-badge-theme="blue"] {
  --sbf-badge-bg: var(--sbf-palette-blue-100);
  --sbf-badge-text: var(--sbf-palette-blue-500);
}

.sbf-badge[data-badge-theme="green"] {
  --sbf-badge-bg: var(--sbf-palette-green-200);
  --sbf-badge-text: var(--sbf-palette-green-700);
}

.sbf-badge[data-badge-theme="yellow"] {
  --sbf-badge-bg: var(--sbf-palette-yellow-200);
  --sbf-badge-text: var(--sbf-palette-black);
}

.sbf-badge[data-badge-theme="pink"] {
  --sbf-badge-bg: var(--sbf-palette-pink-100);
  --sbf-badge-text: var(--sbf-palette-pink-400);
}

.sbf-badge[data-badge-theme="purple"] {
  --sbf-badge-bg: var(--sbf-palette-purple-100);
  --sbf-badge-text: var(--sbf-palette-purple-400);
}

.sbf-badge[data-badge-theme="orange"] {
  --sbf-badge-bg: var(--sbf-palette-orange-200);
  --sbf-badge-text: var(--sbf-palette-black);
}

.sbf-badge[data-badge-theme="red"] {
  --sbf-badge-bg: var(--sbf-palette-red-100);
  --sbf-badge-text: var(--sbf-palette-red-200);
}

.sbf-badge[data-badge-theme="gold"] {
  --sbf-badge-bg: var(--sbf-palette-gold-200);
  --sbf-badge-text: var(--sbf-palette-black);
}

.sbf-badge[data-badge-theme="gray"] {
  --sbf-badge-bg: var(--sbf-palette-gray-200);
  --sbf-badge-text: var(--sbf-palette-black);
}

.sbf-badge {
  border-radius: var(--sbf-border-radius-4);
  padding: var(--sbf-space-4) var(--sbf-space-8);
  font-weight: var(--sbf-font-weight-700);
  letter-spacing: var(--sbf-letter-spacing-xl);
  text-transform: uppercase;
  background: var(--sbf-badge-bg, var(--sbf-palette-gray-300));
  color: var(--sbf-badge-text, var(--sbf-palette-black));
  text-decoration: none;
}

.sbf-badge:has(.sbf-badge__icon) {
  justify-content: center;
  align-items: center;
  gap: var(--sbf-space-4);
  display: flex;
}

.sbf-badge .sbf-badge__icon {
  width: 16px;
  height: 16px;
}

.sbf-toggletip__close-button, .sbf-tooltip-button, .sbf-toggletip-button {
  cursor: pointer;
  border: none;
  width: 20px;
  height: 20px;
  padding: 0;
  text-decoration: none;
}

.sbf-toggletip__close-button svg, .sbf-tooltip-button svg, .sbf-toggletip-button svg {
  width: 100%;
  height: 100%;
}

.sbf-toggletip__close-button:focus, .sbf-tooltip-button:focus, .sbf-toggletip-button:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
}

.sbf-tooltip, .sbf-toggletip {
  cursor: pointer;
  -webkit-text-decoration-color: var(--sbf-palette-blue-500);
  text-decoration-color: var(--sbf-palette-blue-500);
  text-underline-offset: 18%;
  text-decoration-thickness: calc(1em / 10);
  display: inline-block;
  position: relative;
  text-decoration-line: underline !important;
  text-decoration-style: dotted !important;
}

.sbf-tooltip.sbf-badge, .sbf-toggletip.sbf-badge {
  text-underline-offset: 0 !important;
  text-decoration: none !important;
}

.sbf-tooltip-button, .sbf-toggletip-button {
  background: none;
}

.sbf-tooltip-link, .sbf-toggletip-link {
  font-weight: var(--sbf-font-weight-600);
}

.sbf-tooltip-link--blue-500, .sbf-toggletip-link--blue-500 {
  color: #005595;
}

.sbf-tooltip-link--blue-500:hover, .sbf-toggletip-link--blue-500:hover, .sbf-tooltip-link--blue-500:active, .sbf-toggletip-link--blue-500:active {
  color: #002949;
}

.sbf-tooltip-link--yellow-200, .sbf-toggletip-link--yellow-200 {
  color: #f3d36e;
}

.sbf-tooltip-link--yellow-200:hover, .sbf-toggletip-link--yellow-200:hover, .sbf-tooltip-link--yellow-200:active, .sbf-toggletip-link--yellow-200:active {
  color: #edbe27;
}

.sbf-tooltip__element, .sbf-toggletip__element {
  padding: var(--sbf-space-16);
  text-align: left;
  border-radius: var(--sbf-border-radius-8);
  z-index: 10003;
  cursor: auto;
  background-color: var(--tooltip-bg);
  width: max-content;
  max-width: 320px;
  color: var(--tooltip-text);
  flex-direction: column;
  font-weight: normal;
  display: flex;
  position: absolute;
  box-shadow: 0 4px 12px #00000026;
}

@media (min-width: 480px) {
  .sbf-tooltip__element, .sbf-toggletip__element {
    max-width: 350px;
  }
}

.sbf-tooltip__element--light, .sbf-toggletip__element--light {
  --tooltip-bg: #fff;
  --tooltip-text: #353535;
  --tooltip-link-color: #005595;
  --tooltip-link-hover-color: #002949;
  --tooltip-btn-bg: #e5e5e5;
  --tooltip-btn-hover: #ccc;
  --tooltip-arrow-color: #fff;
}

.sbf-tooltip__element--dark, .sbf-toggletip__element--dark {
  --tooltip-bg: #353535;
  --tooltip-text: #fff;
  --tooltip-link-color: #f3d36e;
  --tooltip-link-hover-color: #edbe27;
  --tooltip-btn-bg: #6e6e6e;
  --tooltip-btn-hover: #555;
  --tooltip-arrow-color: #353535;
}

.sbf-tooltip__element a, .sbf-toggletip__element a {
  color: var(--tooltip-link-color);
  font-weight: var(--sbf-font-weight-600);
  text-decoration: underline;
}

.sbf-tooltip__element a:hover, .sbf-tooltip__element a:active, .sbf-tooltip__element a:focus, .sbf-toggletip__element a:hover, .sbf-toggletip__element a:active, .sbf-toggletip__element a:focus {
  color: var(--tooltip-link-hover-color);
}

.sbf-tooltip__element ul, .sbf-toggletip__element ul {
  margin: 0;
  list-style: none;
}

.sbf-tooltip__element .sbf-tooltip__element-arrow, .sbf-tooltip__element .sbf-toggletip__element-arrow, .sbf-toggletip__element .sbf-tooltip__element-arrow, .sbf-toggletip__element .sbf-toggletip__element-arrow {
  z-index: 10003;
  background-color: var(--tooltip-arrow-color);
  width: 12px;
  height: 12px;
  position: absolute;
  transform: rotate(45deg);
}

.sbf-tooltip__content, .sbf-toggletip__content {
  letter-spacing: normal;
  gap: var(--sbf-space-4);
  flex-direction: column;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: .875em;
  line-height: 1.28571;
  display: flex;
}

.sbf-tooltip__content a, .sbf-toggletip__content a {
  font-weight: var(--sbf-font-weight-600);
  text-decoration: underline;
}

.sbf-tooltip__copy, .sbf-toggletip__copy {
  margin: 0;
}

.sbf-tooltip__content {
  gap: var(--sbf-space-8);
}

.sbf-toggletip__element .sbf-toggletip__content .sbf-toggletip__content__link {
  color: var(--tooltip-link-color);
  font-weight: var(--sbf-font-weight-600);
  text-decoration: underline;
}

.sbf-toggletip__element .sbf-toggletip__content .sbf-toggletip__content__link:hover, .sbf-toggletip__element .sbf-toggletip__content .sbf-toggletip__content__link:active, .sbf-toggletip__element .sbf-toggletip__content .sbf-toggletip__content__link:focus {
  color: var(--tooltip-link-hover-color);
}

.sbf-toggletip__element .sbf-toggletip__footer a {
  color: var(--tooltip-link-color);
  font-weight: var(--sbf-font-weight-600);
  text-decoration: underline;
}

.sbf-toggletip__element .sbf-toggletip__footer a:hover, .sbf-toggletip__element .sbf-toggletip__footer a:active, .sbf-toggletip__element .sbf-toggletip__footer a:focus {
  color: var(--tooltip-link-hover-color);
}

.sbf-toggletip__heading {
  letter-spacing: -.008em;
  margin: 0 0 8px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.33333;
}

.sbf-toggletip__heading:has(.sbf-toggletip__close-button) {
  justify-content: space-between;
  align-items: center;
  gap: var(--sbf-space-24);
  display: flex;
}

.sbf-toggletip__footer {
  margin: var(--sbf-space-16) 0 0 0;
}

.sbf-toggletip__footer a {
  gap: var(--sbf-space-4);
  align-items: center;
  display: flex;
}

.sbf-toggletip__footer a svg {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0 0 0 var(--sbf-space-4);
}

.sbf-toggletip__close-button {
  background: var(--tooltip-btn-bg);
  border-radius: var(--sbf-border-radius-4);
}

.sbf-toggletip__close-button:hover {
  background: var(--tooltip-btn-hover);
}

.sbf-toggletip__element, .sbf-tooltip-template {
  display: none;
}

header {
  margin: 0;
}

main {
  background-color: #f8f8f8;
  padding: 0 0 40px;
}

section a {
  color: #005595;
}

section a:hover, section a:active {
  color: #002949;
}

section a {
  font-weight: 600;
  text-decoration: underline;
}

.sbf-ce-section {
  outline: 1px dotted #353535 !important;
}

.section-hero {
  padding: 0;
}

@media (min-width: 768px) {
  .section-hero {
    padding: 30px 10px 0;
  }
}

.section-hero .section-container {
  color: #f5f5f5;
  background-color: #353535;
  max-width: 880px;
  margin: 0 auto;
  padding: 18px 16px;
}

@media (min-width: 768px) {
  .section-hero .section-container {
    padding: 33px 45px;
  }
}

.section-hero .flex-container {
  display: block;
}

@media (min-width: 768px) {
  .section-hero .flex-container {
    align-items: center;
    display: flex;
  }
}

.section-hero .flex-item {
  width: 100%;
}

@media (min-width: 768px) {
  .section-hero .flex-item {
    flex-grow: 1;
    width: 50%;
  }
}

.section-hero h1 {
  letter-spacing: normal;
  margin: 0;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1.33333;
}

@media (min-width: 768px) {
  .section-hero h1 {
    letter-spacing: -.025em;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 1.875em;
    font-weight: 700;
    line-height: 1.16667;
  }
}

.section-hero p {
  letter-spacing: normal;
  margin: 0;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: .875em;
  line-height: 1.28571;
}

@media (min-width: 768px) {
  .section-hero p {
    letter-spacing: normal;
    text-align: right;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 1em;
    line-height: 1.375;
  }
}

.section-hero a {
  color: #f3d36e;
}

.section-hero a:hover, .section-hero a:active {
  color: #edbe27;
}

.section-result-list {
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .section-result-list {
    padding: 0 10px;
  }
}

.section-result-list .section-container {
  text-align: center;
  background-color: #fff;
  border-radius: 0 0 3px 3px;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 0 37px;
  box-shadow: 0 1px 3px #0000004d;
}

.section-result-list .section-container > p {
  letter-spacing: .005em;
  text-align: center;
  text-wrap: balance;
  max-width: 45ch;
  margin: 0 auto;
  padding: 32px 10px 22px;
  font-family: Zilla Slab, Georgia, serif;
  font-size: 1.125em;
  line-height: 1.33333;
}

.section-result-list .section-container > ul {
  width: 85%;
  margin: 0 auto;
  list-style-type: none;
}

@media (min-width: 768px) {
  .section-result-list .section-container > ul {
    width: 100%;
    margin: 0;
    padding: 0 45px;
  }
}

.section-result-list .section-container > ul > li {
  text-align: left;
  border-top: thin solid #dbdbdb;
  padding: 17.5px 0;
}

@media (min-width: 768px) {
  .section-result-list .section-container > ul > li {
    display: flex;
  }
}

.section-result-list .section-container > ul > li:nth-of-type(n+4) .rank-large {
  letter-spacing: -.025em;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.125;
}

.section-result-list .section-container > ul .photo-wrapper {
  background-color: #fff;
  border: 1px solid #eee;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin: 0 0 6px;
  display: flex;
}

.section-result-list .section-container > ul .photo-wrapper img {
  max-width: 100%;
  max-height: 100%;
}

.section-result-list .card {
  display: flex;
}

@media (min-width: 768px) {
  .section-result-list .card {
    width: 50%;
    display: inline-flex;
  }
}

.section-result-list .card__avatar {
  text-align: center;
  width: 70px;
  margin: 0 16px 0 0;
}

.section-result-list .card__avatar img {
  max-width: 70px;
  max-height: 70px;
}

.section-result-list .card__avatar a {
  border-radius: var(--sbf-border-radius-4);
  color: #fff;
  font-family: var(--sbf-font-family-sans);
  font-weight: var(--sbf-font-weight-700);
  border-color: #1c6b3d;
  border-width: var(--sbf-border-width-2);
  cursor: pointer;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: -.005em;
  text-align: center;
  background-color: #1c6b3d;
  border-style: solid;
  margin-bottom: 10px;
  text-decoration: none;
  transition: background 50ms linear, border-color 50ms linear, color 50ms linear, opacity 50ms linear;
  display: inline-block;
}

.section-result-list .card__avatar a:hover, .section-result-list .card__avatar a:focus {
  color: #f5f5f5;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #114326;
  border-color: #114326;
}

.section-result-list .card__avatar a:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
}

.section-result-list .card__avatar a.disabled, .section-result-list .card__avatar a[disabled] {
  opacity: var(--sbf-opacity-50);
  pointer-events: none;
}

.section-result-list .card__avatar a.disabled:hover, .section-result-list .card__avatar a.disabled:focus, .section-result-list .card__avatar a[disabled]:hover, .section-result-list .card__avatar a[disabled]:focus {
  color: #fff;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #1c6b3d;
  border-color: #1c6b3d;
}

.section-result-list .card__avatar a {
  font-size: var(--sbf-font-size-16);
  min-width: initial;
  letter-spacing: .5px;
  width: 100%;
  margin: 0 0 10px;
  padding: 8px;
  font-size: 14px;
  line-height: 18px;
}

.section-result-list .card__details {
  width: calc(100% - 86px);
  margin: 0;
  list-style-type: none;
}

.section-result-list .card__details li {
  letter-spacing: normal;
  color: #737373;
  margin: 0 0 2px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.375;
  display: flex;
}

.section-result-list .card__details li.card__detail--private {
  align-items: center;
  gap: 4px;
}

.section-result-list .card__details li a {
  letter-spacing: normal;
  margin: 0;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.125em;
  line-height: 1.33333;
}

@media (min-width: 768px) {
  .section-result-list .card__details li a {
    letter-spacing: -.005em;
    margin: 0;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 1.5em;
    line-height: 1.25;
  }
}

.section-result-list .card__details li i {
  width: 16px;
  margin: 0 4px 0 0;
  font-size: 14px;
  line-height: 17.5px;
}

@media (min-width: 768px) {
  .section-result-list .card__details li i {
    font-size: 16px;
    line-height: 20px;
  }
}

.section-result-list a {
  color: #005595;
}

.section-result-list a:hover, .section-result-list a:active {
  color: #002949;
}

.section-result-list .rank-large {
  display: none;
}

@media (min-width: 768px) {
  .section-result-list .rank-large {
    letter-spacing: -.035em;
    text-align: center;
    color: #6e6e6e;
    width: 12.5%;
    margin-top: 0;
    margin-bottom: 24px;
    padding: 0 10px;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 3.75em;
    font-weight: 700;
    line-height: 1.08333;
    display: inline-block;
  }
}

.section-result-list .rank-small {
  letter-spacing: normal;
  color: #7b7b7b;
  margin: 3px 5px 0 0;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.33333;
}

@media (min-width: 768px) {
  .section-result-list .rank-small {
    display: none;
  }

  .section-result-list .entity-stats {
    width: 37.5%;
    display: inline-block;
  }
}

.section-result-list .entity-stats p {
  letter-spacing: -.005em;
  text-align: center;
  margin: 0;
  padding: 10px 0;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .section-result-list .entity-stats p {
    text-align: right;
  }
}

.section-result-list .entity-stats p span {
  color: #353535;
  letter-spacing: 1px;
  text-transform: uppercase;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}

.section-result-list .entity-stats .entity-stats__raised {
  color: #1c6b3d;
}

.section-result-list .entity-stats .entity-stats__count {
  color: #c95000;
  border-top: thin solid #e5e5e5;
  font-weight: 600;
}

.section-result-list .scroll-top-link {
  text-align: right;
  margin: -32px 0 30px;
  display: none;
  position: sticky;
  bottom: 10px;
}

@media (min-width: 600px) {
  .section-result-list .scroll-top-link {
    display: block;
  }
}

.section-result-list .scroll-top-link a {
  letter-spacing: normal;
  text-transform: uppercase;
  padding: 8px 15px 8px 8px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.375;
  text-decoration: none;
  right: 18px;
}

.section-result-list .scroll-top-link a .icon.icon-arrow {
  width: 20px;
  height: 20px;
  top: 1px;
  right: 3px;
  transform: rotate(180deg);
}
