<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
â•­â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€•â•®
â”‚ Search bar          â”‚
â•°â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â•¯
*/

:root {
  --search-btn-width: 3.5rem;
}

.search-bar {
  position: relative;
  background: #7d9ef0;
}

.logo-bar::after {
  content: none !important;
}

.search-bar::after {
  content: "";
  /* display: none; */
  position: absolute;
  left: 50%;
  bottom: -1.4rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.5rem solid transparent;
  border-right: 1.5rem solid transparent;
  border-top: 1.5rem solid #7d9ef0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
}

.search-bar__inner {
  width: clamp(500px, 75%, 1400px);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 2rem;
  padding-block: 0.5rem;
}

.search-field__wrap {
  position: relative;
}

.search-field {
  padding-inline-start: calc(var(--search-btn-width) + 0.5rem);
  padding-block: 0.75em 0.6em;
  width: 100%;
  border-radius: 3rem;
}

.search-field__submit {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;

  width: var(--search-btn-width);

  border-top-left-radius: 3rem;
  border-bottom-left-radius: 3rem;
  border-color: transparent;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 26 29'%3E%3Cpath stroke='%23000' stroke-width='1.5' stroke-miterlimit='10' d='M11.2 20.419c4.407 0 7.98-3.742 7.98-8.358 0-4.615-3.573-8.357-7.98-8.357-4.408 0-7.981 3.742-7.981 8.357 0 4.616 3.573 8.358 7.98 8.358Zm4.81-1.691 9.419 9.862'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 75% 75%;

  cursor: pointer;
}

@media(max-width: 767.95px) {
  .search-bar::after {
    display: none;
  }
}

@media(max-width: 479.95px) {
  .search-bar__inner {
    padding-block: 0.75rem;
  }
}


.in-text-search-bar {
  
}

.in-text-search-bar .search-bar__inner {
  width: 100%;
}

.in-text-search-bar .search-field:not(:focus) {
  border-color: #565658;
}



/*
â•­â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€•â•®
â”‚ Search results      â”‚
â•°â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â•¯
*/

.internal--search {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background: white;
}

.search-results {

}

.search-results mark {
  font-weight: 700;
  background-color: #fff0cd;
}

.search-results__heading {
  margin-bottom: 0.25em;
}

.search-results__heading strong {
  color: #4669b9;
}

.search-results__item + .search-results__item {
  margin-block-start: 4rem;
}

.search-results__item h2 {
  margin-block-start: 0;
  margin-block-end: 0.25em;
}
.search-results__item h2 small {
  font-size: 70%;
  color: #656567;
}

.search-results__item p {
  margin-bottom: 0.75em;
  max-width: 70ch;
  line-height: 1.5;
  text-wrap: pretty;
}

.search-results__item .button {
  padding: 0.675em 1.5em;
}

.pagination a,
.pagination .active span {
  padding-inline: 1.2em;
}


/*
â•­â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€•â•®
â”‚ Little fixes        â”‚
â•°â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â•¯
*/

@media(max-width: 479.95px) {
  .top-alert {
    padding-inline: 1.5rem;
  }
}

.top-alert__text {
  line-height: 1.1;
}

.top-alert__link {
  white-space: nowrap; /* stop awkward wrapping when message is long */
}

/* Fix gap in bg colour */
.header--search {
  padding-top: 0.1px;
}</pre></body></html>