@charset "UTF-8";
/**
 * Debug the site breakpoint
 * element only exists if WP_DEBUG is true
 */
.debug:after {
  box-sizing: border-box;
  position: fixed;
  display: block;
  bottom: 10px;
  right: 10px;
  padding: 5px 28px 5px 20px;
  font-size: 12px;
  font-weight: bold;
  color: #777;
  border-radius: 3px;
  background-color: #f7f7f7;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  z-index: 100000;
}
@media (min-width: 400px) {
  .debug:after {
    content: "Small (850px)  | " attr(data-template);
    background: linear-gradient(to right, #f7f7f7, #f7f7f7 95%, #ffde03 95%, #ffde03 100%);
  }
}
@media (min-width: 850px) {
  .debug:after {
    content: "Medium (850px) | " attr(data-template);
    background: linear-gradient(to right, #f7f7f7, #f7f7f7 95%, #ff0266 95%, #ff0266 100%);
  }
}
@media (min-width: 1000px) {
  .debug:after {
    content: "Large (1000px) | " attr(data-template);
    background: linear-gradient(to right, #f7f7f7, #f7f7f7 95%, #0336ff 95%, #0336ff 100%);
  }
}
@media (min-width: 1200px) {
  .debug:after {
    content: "X-Large (1200px) | " attr(data-template);
    background: linear-gradient(to right, #f7f7f7, #f7f7f7 95%, #4A148C 95%, #4A148C 100%);
  }
}

.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  padding: 0.625rem;
  left: 0;
  color: black;
  font-weight: 600;
  font-size: 1.1875rem;
  background: #ffeb3b;
  text-decoration: none;
  z-index: 10000;
}

.skip-link:focus {
  left: 0;
  top: 0;
  text-decoration: underline;
  color: white;
}

input:focus,
button[type=submit]:focus {
  outline: 0.1875rem solid #ffeb3b;
}

a:focus,
p a:focus,
h1 a:focus,
h2 a:focus,
h3 a:focus,
h4 a:focus {
  background-color: #ffeb3b;
  box-shadow: 0 0 #ffeb3b, 0 0.1875rem black;
  color: black;
  outline: 0.1875rem solid transparent;
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

figure {
  min-height: 1px;
}

html {
  line-height: 1.5;
}

body {
  font-family: "Frutiger W01", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #212b32;
  max-width: 91.25rem;
  background-color: white;
  margin: 0 auto;
  border-left: 0.0625rem solid #efefef;
  border-right: 0.0625rem solid #efefef;
}
body.login {
  border: 0;
}

p,
ul,
ol,
input,
textarea,
label,
.gfield_label,
select {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 850px) {
  p,
  ul,
  ol,
  input,
  textarea,
  label,
  .gfield_label,
  select {
    font-size: 1.1875rem;
  }
}

a {
  display: inline-block;
  color: #005eb8;
}

a:hover {
  text-decoration-thickness: 0.1875rem;
}

p a {
  display: inline;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Frutiger W01", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
}

h1 {
  font-size: 2.375rem;
}
@media (min-width: 850px) {
  h1 {
    font-size: 3.25rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media (min-width: 850px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1rem;
}
@media (min-width: 850px) {
  h4 {
    font-size: 1.1875rem;
  }
}

ul,
ol {
  padding-left: 1.5rem;
}

.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}

hr {
  border-top: 0.0625rem solid #aeb7bd;
}

/**
 * Responsive images
 */
img {
  max-width: 100%;
  height: auto;
}

.u-wrapper {
  margin: 0 1.25rem;
}
@media (min-width: 850px) {
  .u-wrapper {
    margin: 0 3.75rem;
  }
}
@media (min-width: 1000px) {
  .u-wrapper {
    margin: 0 6.25rem;
  }
}

/**
* Forms
*/
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

input[type=text],
input[type=search],
input[type=tel],
input[type=number],
input[type=file],
input[type=email],
input[type=password],
input[type=url],
textarea {
  width: 100%;
  font-weight: 400;
  font-family: "Frutiger W01", Arial, sans-serif;
  font-size: 1rem;
  border: 0.0625rem solid #4c6272;
  border-radius: 0.1875rem;
  color: #212b32;
  background-color: white;
  padding: 0.625rem;
}
@media (min-width: 850px) {
  input[type=text],
  input[type=search],
  input[type=tel],
  input[type=number],
  input[type=file],
  input[type=email],
  input[type=password],
  input[type=url],
  textarea {
    font-size: 1.1875rem;
  }
}
input[type=text]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=file]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
  outline: 0.1875rem solid #ffeb3b;
  border: 0.125rem solid #000;
}

label,
.gfield_label {
  display: inline-block;
  color: #212b32;
  font-weight: 600;
  margin-bottom: 0.5rem;
  word-break: break-word;
}

textarea {
  resize: vertical;
}

button {
  font-family: "Frutiger W01", Arial, sans-serif;
}
button:focus {
  outline: 0.1875rem solid #ffeb3b;
}

.gform_button:focus {
  background-image: url("../imgs/icons/chevron-right-black.svg");
  background-color: #ffeb3b;
  color: #231f20;
  box-shadow: 0 0 #ffeb3b, 0 0.1875rem #231f20;
  outline: 0.1875rem solid transparent;
}

input[type=file] {
  margin: 0;
  cursor: pointer;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  height: auto;
  width: 100%;
  text-decoration: none;
}

input[type=checkbox] {
  display: inline-block;
  appearance: none;
  width: 1.875rem;
  height: 1.875rem;
  border: 0.125rem solid #4c6272;
  border-radius: 0.1875rem;
  padding: 0.1875rem;
  margin: 0 1rem 0 0;
  background-color: white;
  cursor: pointer;
}
input[type=checkbox]:focus {
  background-color: #ffeb3b;
}

input[type=checkbox]:checked {
  border-color: #005eb8;
  background-color: #005eb8;
  background-image: url("../imgs/icons/tick-white.svg");
}
input[type=checkbox]:checked:disabled {
  background-color: #aeb7bd;
}
input[type=checkbox]:checked:focus {
  background-color: #ffeb3b;
  background-image: url("../imgs/icons/tick.svg");
}

input[type=checkbox]:disabled,
input[type=radio]:disabled {
  border-color: #aeb7bd;
  background-color: #f0f4f5;
  cursor: default;
}
input[type=checkbox]:disabled + label,
input[type=radio]:disabled + label {
  color: #4c6272;
}

input[type=radio] {
  display: inline-block;
  appearance: none;
  width: 1.875rem;
  height: 1.875rem;
  border: 0.125rem solid #4c6272;
  border-radius: 50%;
  padding: 0.1875rem;
  margin: 0 1.5rem 0 0;
  background-color: white;
}
input[type=radio]:focus {
  background-color: #ffeb3b;
}

input[type=radio]:checked {
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 20 20' fill='white' xmlns='http://www.w3.org/2000/svg'><circle cx='10' cy='10' r='5'/></svg>");
  background-color: #005eb8;
}

input[type=search] {
  border: none;
  border-radius: 0;
}
input[type=search]::placeholder {
  font-family: "Frutiger W01", Arial, sans-serif;
  color: #231f20;
  opacity: 1;
}

select {
  font-size: 1rem;
  padding: 0.625rem;
}
@media (min-width: 850px) {
  select {
    font-size: 1.1875rem;
  }
}
@supports (display: block) {
  select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding: 0.625rem 1.875rem 0.625rem 0.625rem;
    background-image: url("../imgs/icons/custom-select.svg");
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: right 0.75rem center;
    background-size: 1.125rem 1.125rem;
    border: 0.0625rem solid #4c6272;
    border-radius: 0.1875rem;
  }
}
select:focus {
  outline: 0.1875rem solid #ffeb3b;
}

select[multiple=multiple] {
  background-image: none;
  padding: 0.625rem;
}

.gform_wrapper.gravity-theme.gform-theme--no-framework .gform-body * {
  box-sizing: border-box;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_label {
  font-size: 1rem;
}
@media (min-width: 850px) {
  .gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_label {
    font-size: 1.1875rem;
  }
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gchoice {
  display: flex;
  margin-bottom: 0.5rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_fields {
  margin-left: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield {
  width: 100%;
  list-style: none;
  margin-bottom: 1.875rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_radio {
  list-style: none;
  padding: 0;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_fields select,
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_fields input[type=text],
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_fields input[type=tel],
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_fields input[type=number],
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_fields input[type=email],
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_fields input[type=password],
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_fields input[type=url] {
  font-family: "Frutiger W01", Arial, sans-serif;
  font-size: 1rem;
}
@media (min-width: 850px) {
  .gform_wrapper.gravity-theme.gform-theme--no-framework .gform_fields select,
  .gform_wrapper.gravity-theme.gform-theme--no-framework .gform_fields input[type=text],
  .gform_wrapper.gravity-theme.gform-theme--no-framework .gform_fields input[type=tel],
  .gform_wrapper.gravity-theme.gform-theme--no-framework .gform_fields input[type=number],
  .gform_wrapper.gravity-theme.gform-theme--no-framework .gform_fields input[type=email],
  .gform_wrapper.gravity-theme.gform-theme--no-framework .gform_fields input[type=password],
  .gform_wrapper.gravity-theme.gform-theme--no-framework .gform_fields input[type=url] {
    width: 50%;
    font-size: 1.1875rem;
  }
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_list_group select,
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_list_group .select {
  width: 100%;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_required {
  font-weight: 400;
  padding-left: 0.3125rem;
  font-size: 1rem;
}
@media (min-width: 850px) {
  .gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_required {
    font-size: 1.1875rem;
  }
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_description {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
@media (min-width: 850px) {
  .gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_description {
    font-size: 1.1875rem;
  }
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gsection_title {
  margin-bottom: 0;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_fileupload {
  margin-bottom: 0.375rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_checkbox,
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_radio {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_checkbox li,
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_radio li {
  display: flex;
  align-items: center;
  margin-bottom: 0.375rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_checkbox label,
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_radio label {
  font-weight: 400;
  margin: 0;
  flex: 1 0;
  font-size: 1rem;
}
@media (min-width: 850px) {
  .gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_checkbox label,
  .gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_radio label {
    font-size: 1.1875rem;
  }
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_consent {
  display: flex;
  align-items: center;
  margin-bottom: 0.375rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_consent label {
  margin: 0;
  font-weight: 400;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_name {
  display: flex;
  margin-left: -1.5rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_name .name_first,
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_name .name_last {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1.5rem;
  width: 50%;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_name .name_first label,
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_name .name_last label {
  font-weight: 400;
  margin: 0 0.75rem 0 0;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_name .name_first input[type=text],
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_name .name_last input[type=text] {
  order: 2;
  width: 100%;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_password_strength {
  padding: 0.25rem 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  background-color: #d9e2e3;
  border-radius: 0.1875rem;
  font-weight: 600;
  width: 100%;
}
@media (min-width: 850px) {
  .gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_password_strength {
    width: 50%;
  }
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_password_strength.short {
  background-color: rgba(213, 40, 27, 0.2);
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_password_strength.bad {
  background-color: rgba(255, 165, 0, 0.2);
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_password_strength.good {
  background-color: rgba(0, 128, 0, 0.2);
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_password_strength.strong {
  background-color: rgba(0, 128, 0, 0.2);
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .avatar-preview {
  width: 5rem;
}
@media (min-width: 850px) {
  .gform_wrapper.gravity-theme.gform-theme--no-framework .avatar-preview {
    display: inline-flex;
    width: 10rem;
  }
  .gform_wrapper.gravity-theme.gform-theme--no-framework .avatar-preview + .gfield {
    flex: 1 0;
    margin-left: 1.5rem;
  }
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .avatar-preview__img {
  border-radius: 50%;
  width: 5rem;
}
@media (min-width: 850px) {
  .gform_wrapper.gravity-theme.gform-theme--no-framework .avatar-preview__img {
    width: 10rem;
  }
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .clear-multi {
  display: flex;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_time {
  display: flex;
  flex-wrap: wrap;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_time label {
  width: 100%;
  font-weight: 400;
  margin-bottom: 0;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_time input,
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_time select {
  width: 100%;
  flex: 1;
  margin-bottom: 0;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_time i {
  padding: 0.625rem 0.625rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_time_hour {
  width: 6.25rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_time_minute {
  width: 5rem;
  margin-right: 0.625rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_time_ampm {
  width: 6.875rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_address {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 850px) {
  .gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_address {
    margin-left: -1.5rem;
  }
  .gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_address .ginput_full {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 1.5rem;
    margin-bottom: 0.375rem;
  }
  .gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_address .ginput_left,
  .gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_address .ginput_right {
    width: 50%;
    padding-left: 1.5rem;
    margin-bottom: 0.375rem;
  }
  .gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_address label {
    width: 100%;
    font-weight: 400;
  }
  .gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_address input,
  .gform_wrapper.gravity-theme.gform-theme--no-framework .ginput_container_address .select {
    width: 100%;
  }
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_select {
  padding: 0.625rem 1.875rem 0.625rem 0.625rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_hidden {
  display: none;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_error {
  border: 0.1875rem solid #d5281b;
  border-radius: 0.625rem;
  padding: 0.625rem 0 0 0;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield_error > * {
  padding: 0 0.625rem 0 0.625rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .validation_message {
  margin: 0.9375rem 0 0 0;
  background: #d5281b;
  color: white;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .validation_message:before {
  content: "*";
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_full_width,
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_full_width_wrapper,
.gform_wrapper.gravity-theme.gform-theme--no-framework .standard-content .gform_full_width_wrapper {
  max-width: 100%;
  width: 100%;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework #gform_1 .gform_fields {
  grid-row-gap: 0;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework #gform_1 .gfield_label {
  margin-bottom: 1rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework #gform_1 .gfield_checkbox {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework #gform_1 .gchoice {
  width: 50%;
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework #gform_1 .gchoice label {
  font-size: 1.1875rem;
}
@media (min-width: 1000px) {
  .gform_wrapper.gravity-theme.gform-theme--no-framework #gform_1 .gfield_checkbox {
    margin-left: -1.5rem;
  }
  .gform_wrapper.gravity-theme.gform-theme--no-framework #gform_1 .gchoice {
    width: 25%;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.gform_wrapper.gravity-theme.gform-theme--no-framework #gform_1 .gfield {
  background: white;
  padding: 0 1.5rem;
  margin-bottom: 3rem;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework #gform_1 .gfield .gfield_label {
  display: none;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework #gform_1 .gsection.gfield {
  background: white;
  border-bottom: none;
  padding: 1.75rem 1.5rem 1.25rem;
  margin: 0;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework #gform_1 .gsection.gfield .gsection_description {
  margin: 0;
  padding: 0;
}

.preferences-form-group {
  background: white;
  padding: 0.75rem;
}

.noscroll {
  overflow: hidden;
}

.noscroll-modal {
  overflow: hidden;
}

#cookie-notice {
  z-index: 75 !important;
}

#cn-notice-text {
  font-size: 0.875rem;
}
@media (min-width: 850px) {
  #cn-notice-text {
    font-size: 1rem;
  }
}

table {
  width: 100%;
  table-layout: fixed;
  overflow-wrap: break-word;
  border-collapse: collapse;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

td, th {
  font-size: 1rem;
  vertical-align: top;
  padding: 0.5rem 1rem 0.5rem 0;
  border: none;
  border-bottom: 0.0625rem solid #d8dde0;
}
@media (min-width: 850px) {
  td, th {
    padding: 1rem 1.5rem 1rem 0;
  }
}
td:last-child, th:last-child {
  padding-right: 0;
}

th {
  font-size: 1.1875rem;
  text-align: left;
  border-bottom-width: 0.125rem;
}

thead {
  border-bottom: none;
}

tfoot {
  border-top: none;
}

/**
 * Block widths
 */
.newsgroup,
.featured-pages,
.promoted-pages,
.tweet-group,
.popular-links,
.promotion {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}
@media (min-width: 850px) {
  .newsgroup,
  .featured-pages,
  .promoted-pages,
  .tweet-group,
  .popular-links,
  .promotion {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
  }
}
@media (min-width: 1000px) {
  .newsgroup,
  .featured-pages,
  .promoted-pages,
  .tweet-group,
  .popular-links,
  .promotion {
    margin-left: -6.25rem;
    margin-right: -6.25rem;
  }
}

.wp-block-heading,
.wp-block-paragraph,
.wp-block-list,
.wp-block-table,
.wp-block-quote,
.wp-block-image,
.wp-block-audio,
.wp-block-embed,
.action-link,
.button,
.care-card,
.contents-list,
.do-dont,
.gform_wrapper,
.details,
.expander,
.editor-notice,
.panel,
.wp-block-quote,
.comments-form,
.comments-group,
.related-content,
.warning-callout {
  max-width: 51.875rem;
  margin-bottom: 2.25rem;
}

/**
 * Table
 */
.wp-block-table table {
  margin-bottom: 0;
}
.wp-block-table table th {
  border-bottom: 0.0625rem solid #212b32;
}
.wp-block-table table td {
  border-bottom: 0.0625rem solid #aeb7bd;
}

/**
 * Audio embed
 */
.wp-block-audio audio {
  width: 100%;
}
.wp-block-audio figcaption {
  margin-top: 0.625rem;
  font-size: 1rem;
}

/**
 * Aspect ratios
 */
.wp-has-aspect-ratio iframe,
.wp-has-aspect-ratio object,
.wp-has-aspect-ratio embed {
  width: 100%;
}

.wp-embedded-content {
  width: 100%;
  max-width: 100%;
}

/**
 * Embeded 16x9 content
 */
figure.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  position: relative;
}
figure.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
  padding-top: 56.25%;
  display: block;
  content: "";
}
figure.wp-embed-aspect-16-9 .wp-block-embed__wrapper .wp-embedded-content,
figure.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,
figure.wp-embed-aspect-16-9 .wp-block-embed__wrapper object,
figure.wp-embed-aspect-16-9 .wp-block-embed__wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * Captivate FM embed has a bunch of responsive styles so we need to adapt
 * the containing element ratio to best fit
 */
.wp-block-embed-captivate-fm .wp-block-embed__wrapper {
  position: relative;
}
.wp-block-embed-captivate-fm .wp-block-embed__wrapper:before {
  padding-top: 57.1428571429%;
  display: block;
  content: "";
}
@media (min-width: 465px) and (max-width: 760px) {
  .wp-block-embed-captivate-fm .wp-block-embed__wrapper:before {
    padding-top: 130%;
    display: block;
    content: "";
  }
}
@media (min-width: 760px) {
  .wp-block-embed-captivate-fm .wp-block-embed__wrapper:before {
    padding-top: 33.3333333333%;
    display: block;
    content: "";
  }
}
.wp-block-embed-captivate-fm .wp-block-embed__wrapper .wp-embedded-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * Embeded Image blocks
 */
.wp-block-image figure {
  display: table;
}
.wp-block-image figure figcaption {
  display: table-caption;
  caption-side: bottom;
}
.wp-block-image img {
  margin-bottom: 0;
}

/**
 * Worpress Gallery styles
 */
/**
* legacy layout. still required for pages not updated with the newer structure
**/
.wp-block-gallery {
  display: block;
}

.blocks-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -1.25rem;
}

.blocks-gallery-item {
  display: block;
  padding-left: 1.25rem;
  padding-bottom: 1.25rem;
}

.blocks-gallery-item figure {
  position: relative;
  margin: 0;
  height: 100%;
  width: 100%;
}

.blocks-gallery-item__caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.75rem;
  background: white;
  border-bottom: 0.0625rem solid #e8edee;
}

.wp-block-gallery.is-cropped .blocks-gallery-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.wp-block-gallery.columns-1 .blocks-gallery-item {
  width: 100%;
}

.wp-block-gallery.columns-2 .blocks-gallery-item {
  width: 50%;
}

.wp-block-gallery.columns-3 .blocks-gallery-item {
  width: 33.33333%;
}

.wp-block-gallery.columns-4 .blocks-gallery-item {
  width: 25%;
}

/**
* updated layout
**/
.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -1.25rem;
}
.wp-block-gallery > * {
  display: block;
  padding-left: 1.25rem;
  padding-bottom: 1.25rem;
}

.wp-block-gallery .wp-block-image {
  position: relative;
  margin: 0;
  width: 100%;
  min-width: 12.5rem;
}

.wp-block-gallery.is-cropped .wp-block-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.wp-block-gallery .wp-block-image figcaption {
  position: absolute;
  bottom: 0;
  width: calc(100% - 1.25rem);
  padding: 0.75rem;
  background: white;
  border-bottom: 0.0625rem solid #e8edee;
}

.wp-block-gallery.columns-1 .wp-block-image {
  width: 100%;
}

.wp-block-gallery.columns-2 .wp-block-image {
  width: 50%;
}

.wp-block-gallery.columns-3 .wp-block-image,
.wp-block-gallery.columns-default .wp-block-image {
  width: 33.33333%;
}

.wp-block-gallery.columns-4 .wp-block-image {
  width: 25%;
}

/**
 * Component: Button
 */
.button, .app-list__submit, .cookie-banner-button--accept,
.cookie-banner-accept--hide,
.govuk-button, .cookie-banner-button--reject {
  display: block;
  margin: 0;
  padding: 0.5rem 2.25rem 0.5rem 1.25rem;
  cursor: pointer;
  border: 0.0625rem solid transparent;
  border-radius: 0.1875rem;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  height: auto;
  width: fit-content;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Frutiger W01", Arial, sans-serif;
  text-decoration: none;
  line-height: 1.5;
  background-color: #005eb8;
  background-image: url("../imgs/icons/chevron-right-white.svg");
  color: white;
  background-position: center right 0.75rem;
  background-repeat: no-repeat;
  background-size: 0.6875rem 0.6875rem;
  text-align: left;
}
.button:hover, .app-list__submit:hover, .cookie-banner-button--accept:hover,
.cookie-banner-accept--hide:hover,
.govuk-button:hover, .cookie-banner-button--reject:hover {
  background-color: #003087;
  color: white;
  text-decoration: none;
}
.button:focus, .app-list__submit:focus, .cookie-banner-button--accept:focus,
.cookie-banner-accept--hide:focus,
.govuk-button:focus, .cookie-banner-button--reject:focus {
  background-image: url("../imgs/icons/chevron-right-black.svg");
}
@media (min-width: 1000px) {
  .button, .app-list__submit, .cookie-banner-button--accept,
  .cookie-banner-accept--hide,
  .govuk-button, .cookie-banner-button--reject {
    font-size: 1.1875rem;
  }
}

.button--secondary {
  background-color: white;
  color: #005eb8;
  background-image: url("../imgs/icons/chevron-right.svg");
  border: 0.0625rem solid #e8edee;
}
.button--secondary:hover {
  background-color: white;
  color: #003087;
  border-color: #003087;
}

.button--block {
  display: block;
  width: 100%;
}

.button--centered {
  display: block;
  width: 100%;
  background-image: none;
  text-align: center;
}

.button--teams {
  background-image: url("../imgs/icons/teams.svg");
}
.button--teams:focus {
  background-image: url("../imgs/icons/teams-black.svg");
}

.button--calendar,
.button--teams {
  background-color: transparent;
  color: #005eb8;
  background-position: center left 0.75rem;
  background-repeat: no-repeat;
  padding-left: 2.75rem;
  padding-right: 0.75rem;
  background-size: 1.25rem 1.25rem;
  border: 0.125rem solid #d8dde0;
}
.button--calendar:hover,
.button--teams:hover {
  background-color: white;
  border-color: #003087;
  color: #003087;
}

.button--calendar {
  background-image: url("../imgs/icons/calendar.svg");
  border: none;
  text-decoration: underline;
}

.button--yellow {
  background-color: #ffb81c;
  color: #212b32;
  background-repeat: no-repeat;
  background-image: url("../imgs/icons/chevron-right-black.svg");
  border: 0.0625rem solid white;
}
.button--yellow:hover {
  background-color: white;
  border-color: #003087;
  color: #003087;
  background-image: url("../imgs/icons/chevron-right.svg");
}

.button--deep-aqua {
  background-color: #0b727c;
  color: white;
  background-repeat: no-repeat;
  background-image: url("../imgs/icons/chevron-right-white.svg");
  border: 0.0625rem solid white;
}
.button--deep-aqua:hover {
  background-color: white;
  border-color: #0b727c;
  color: #003087;
  background-image: url("../imgs/icons/chevron-right.svg");
}

/**
 * Styling for the Civic Cookie Control plugin.
*/
.cookie-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  background-color: #e8edee;
}

.cookie-banner--main,
.cookie-banner--accept,
.cookie-banner--reject {
  padding: 2.25rem 0.75rem;
  max-width: 91.25rem;
  margin: 0 auto;
}

.cookie-banner h2 {
  font-size: 1.5rem;
}

.cbg-hidden {
  display: none;
}

.cookie-banner-button--accept,
.cookie-banner-accept--hide,
.govuk-button {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  width: fit-content;
}
@media (min-width: 850px) {
  .cookie-banner-button--accept,
  .cookie-banner-accept--hide,
  .govuk-button {
    display: inline-block;
  }
}
.cookie-banner-button--accept:focus,
.cookie-banner-accept--hide:focus,
.govuk-button:focus {
  background-color: #ffeb3b;
  color: #231f20;
  box-shadow: 0 0 #ffeb3b, 0 0.1875rem #231f20;
  outline: 0.1875rem solid transparent;
}

.cookie-banner-accept--hide {
  margin-bottom: 0;
}

.cookie-banner-button--reject {
  display: block;
  width: fit-content;
}
@media (min-width: 850px) {
  .cookie-banner-button--reject {
    display: inline-block;
  }
}

.govuk-body {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  max-width: 37.5rem;
}
@media (min-width: 1000px) {
  .govuk-body {
    font-size: 1.1875rem;
  }
}

.govuk-body:last-child {
  margin-bottom: 1.5rem;
}

.govuk-cookiecontrol-radios {
  margin-bottom: 1rem;
}

.govuk-radios__item {
  display: flex;
}
.govuk-radios__item input[type=radio] {
  display: inline-block;
  appearance: none;
  width: 1.875rem;
  height: 1.875rem;
  border: 0.125rem solid #4c6272;
  border-radius: 50%;
  padding: 0.1875rem;
  margin: 0 1rem 0 0;
  background-color: white;
}
.govuk-radios__item input[type=radio]:checked {
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 20 20' fill='white' xmlns='http://www.w3.org/2000/svg'><circle cx='10' cy='10' r='5'/></svg>");
  background-color: #005eb8;
}

.govuk-radios__label {
  padding: 0.125rem 0.1875rem;
  font-weight: 600;
}

#ccc {
  display: none;
}

.govuk-link {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 1000px) {
  .govuk-link {
    font-size: 1.1875rem;
  }
}

.govuk-fieldset {
  border: 0;
}

.govuk-fieldset__legend {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 850px) {
  .govuk-fieldset__legend {
    font-size: 1.1875rem;
    margin-bottom: 1rem;
  }
}

.ccc-govuk-form-group {
  margin-bottom: 1.5rem;
}

.govuk-notification-banner {
  border: 0.3125rem solid #005eb8;
  background-color: #005eb8;
  margin-bottom: 1.25rem;
}
.govuk-notification-banner.govuk-notification-banner--success {
  border-color: #006747;
  background-color: #006747;
}

.govuk-notification-banner__header {
  padding: 0.125rem 0.9375rem 0.3125rem;
  border-bottom: 0.0625rem solid;
  color: white;
}
@media (min-width: 850px) {
  .govuk-notification-banner__header {
    padding: 0.125rem 1.25rem 0.3125rem;
  }
}

.govuk-notification-banner__content {
  background: white;
  padding: 0.9375rem;
  font-size: 1rem;
}
@media (min-width: 850px) {
  .govuk-notification-banner__content {
    font-size: 1.1875rem;
    padding: 1.25rem;
  }
}

.govuk-notification-banner__title {
  margin-bottom: 0;
}

.standard-content #af-wrapper a.highlight-admin {
  color: #212b32 !important;
}
.standard-content #af-wrapper .button-neutral {
  background-color: #005eb8 !important;
}
.standard-content #af-wrapper #bottom-navigation a,
.standard-content #af-wrapper .forum-post-date,
.standard-content #af-wrapper .forum-post-date a,
.standard-content #af-wrapper #forum-search input[type=search],
.standard-content #af-wrapper span.mention-nice-name {
  font-size: 1rem;
}
.standard-content #af-wrapper #forum-search input[type=search]::placeholder {
  font-style: normal;
  color: #212b32 !important;
}
.standard-content #af-wrapper #forum-navigation a:focus,
.standard-content #af-wrapper #forum-navigation-mobile a:focus {
  color: #212b32 !important;
}

@font-face {
  font-family: "Frutiger W01";
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.eot?#iefix");
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.eot?#iefix") format("eot"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.woff2") format("woff2"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.woff") format("woff"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.ttf") format("truetype"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.svg#7def0e34-f28d-434f-b2ec-472bde847115") format("svg");
}
@font-face {
  font-family: "Frutiger W01";
  font-display: swap;
  font-style: normal;
  font-weight: 600;
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.eot?#iefix");
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.eot?#iefix") format("eot"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.woff2") format("woff2"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.woff") format("woff"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.ttf") format("truetype"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.svg#eae74276-dd78-47e4-9b27-dac81c3411ca") format("svg");
}
#make-revision-submit-div {
  padding-bottom: 8em !important;
}
#make-revision-submit-div .dialog-title {
  font-size: 1.1875rem;
}
#make-revision-submit-div .ow-btn-group .revision {
  margin-bottom: 1rem;
}

.pika-single {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 9999;
  background: white;
  border: 1px solid #ccc;
  font-family: "Frutiger W01", Arial, sans-serif;
  max-width: 23.125rem;
}
.pika-single.is-bound {
  position: absolute;
}
.pika-single.is-hidden {
  display: none;
}

.pika-lendar {
  width: 100%;
  margin: 0.5rem;
}

.pika-title {
  display: flex;
  position: relative;
  text-align: center;
}
.pika-title select {
  display: none;
}

.pika-label {
  order: 2;
  padding: 0.3125rem 0.1875rem;
  font-size: 1.1875rem;
  font-weight: bold;
}

.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 1.25rem;
  height: 1.875rem;
  text-indent: 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 0.5;
}
.pika-prev:hover,
.pika-next:hover {
  opacity: 1;
}
.pika-prev.is-disabled,
.pika-next.is-disabled {
  cursor: default;
  opacity: 0.2;
}

.pika-prev,
.is-rtl .pika-next {
  order: 1;
  margin-right: auto;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
}

.pika-next,
.is-rtl .pika-prev {
  order: 4;
  margin-left: auto;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
}

.pika-select {
  display: inline-block;
}

.pika-table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  margin: 0;
}
.pika-table tbody {
  background: #f5f5f5;
}
.pika-table tr {
  border: none;
}
.pika-table th, .pika-table td {
  width: 14.2857142857%;
  min-width: 3rem;
  padding: 0;
  border: 0.0625rem solid #ccc;
}
.pika-table th {
  color: #005eb8;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  border: none;
}
.pika-table abbr {
  text-decoration: none;
}

.pika-button {
  cursor: pointer;
  display: block;
  outline: none;
  margin: 0;
  width: 100%;
  padding: 0.5rem 0.3125rem;
  color: #212b32;
  font-size: 0.875rem;
  font-family: "Frutiger W01", Arial, sans-serif;
  text-align: right;
  background: white;
  border: none;
}
.is-today .pika-button {
  color: #005eb8;
  font-weight: 600;
}
.is-selected .pika-button {
  color: white;
  font-weight: 600;
  background: #005eb8;
  box-shadow: inset 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.2);
}
.is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
}
.pika-button:hover {
  color: #212b32;
  background: #efefef;
  box-shadow: none;
}
.pika-button .is-selection-disabled {
  pointer-events: none;
  cursor: default;
}

.searchwp-live-search-results {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
  height: 0;
  overflow: hidden;
  z-index: 9999995; /* Exceed SearchWP Modal Search Form overlay. */
  position: absolute;
  display: none;
}

.searchwp-live-search-results-showing {
  display: block;
  opacity: 1;
  height: auto;
  overflow: auto;
}

.searchwp-live-search-no-results {
  padding: 3em 2em 0;
  text-align: center;
}

.searchwp-live-search-no-min-chars:after {
  content: "Continue typing";
  display: block;
  text-align: center;
  padding: 2em 2em 0;
}

@keyframes searchwp-spinner-line-fade-quick {
  0%, 39%, 100% {
    opacity: 0.25;
  }
  40% {
    opacity: 1;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**
 * Login Styles
 *
 * Please note: the specificity is higher than usual due to WP's login styles.
 */
.login {
  background-color: #005eb8;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

#login {
  display: block;
  width: 90%;
  max-width: 34.375rem;
  margin: 0 auto;
  padding: 1.25rem;
  background: #f8f9fd;
  font-size: 1.5rem;
  border-radius: 0.3125rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.5);
}

#login h1 a {
  display: block;
  width: 15.625rem;
  padding: 0;
  background-image: url("../imgs/logo.svg");
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  text-decoration: none;
  pointer-events: none;
  text-indent: -9999px;
}

#login h2 {
  font-size: 1.1875rem;
}

#login form {
  background: none;
  border: 0;
  box-shadow: unset;
  padding: 0;
}
#login form > p {
  margin: 0;
}

.login-wrapper {
  border: 0.0625rem solid #e8edee;
  border-radius: 0.125rem;
  background: white;
  padding: 1rem;
  margin-top: 0.75rem;
}
.login-wrapper label {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
.login-wrapper .input {
  margin-bottom: 0.75rem;
}
.login-wrapper #login_error {
  background: #fdf3f2;
  border: 0.0625rem solid #d5281b;
  border-radius: 0.1875rem;
  font-size: 1rem;
  padding: 0 0.25rem;
  margin-bottom: 0.5rem;
}

.login-toggle__message {
  position: relative;
  margin: 0;
  font-size: 0.875rem;
  text-align: center;
  padding: 0.5rem 0;
}
.login-toggle__message span {
  position: relative;
  background: #f8f9fd;
  padding: 0 0.5rem;
  z-index: 5;
}
.login-toggle__message:after {
  content: "";
  position: absolute;
  border-top: solid 0.0625rem #ccc;
  width: 100%;
  height: 0.0625rem;
  top: 50%;
  left: 0;
  z-index: 2;
}

.wp-hide-pw {
  display: none !important;
}

.privacy-policy-page-link {
  display: none;
}

.forgetmenot {
  display: none;
}

.language-switcher {
  display: none;
}

#nav {
  font-size: 0.875rem;
  margin: 0;
}

.submit .button {
  width: 100%;
  margin-bottom: 0.75rem;
}

.login-wrapper.login-wrapper--hidden {
  display: none;
}

.accordion {
  border: 0.0625rem solid #c9c9c9;
  text-decoration: none;
  background: white;
}

.accordion__button {
  border: 0;
  width: 100%;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 600;
  color: #005eb8;
  background: url("../imgs/icons/chevron-down.svg") center right 0.75rem no-repeat;
  background-size: 1.5rem 1.5rem;
  padding: 0.75rem 3rem 0.75rem 0.75rem;
  cursor: pointer;
}
.accordion__button:hover {
  text-decoration: underline;
}
.accordion__button:focus {
  outline: none;
}

.accordion__button--active {
  background: url("../imgs/icons/chevron-up.svg") center right 0.75rem no-repeat;
  background-size: 1.5rem 1.5rem;
}

.accordion__content {
  padding: 0.75rem;
  border-top: 0.0625rem solid #e8edee;
}

.accordion__content-item {
  margin-bottom: 1.5rem;
}
.accordion__content-item:last-child {
  margin-bottom: 0;
}

.a-z-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.0625rem solid #41b6e6;
  font-size: 1.1875rem;
  font-weight: 600;
  border-radius: 0.1875rem;
  color: #005eb8;
  background-color: white;
  width: 100%;
}
@media (min-width: 850px) {
  .a-z-button {
    font-size: 1.5rem;
  }
}
@media (min-width: 1000px) {
  .a-z-button {
    font-size: 1.625rem;
  }
}
.a-z-button:hover {
  background: #005eb8;
  border: 0.0625rem solid #005eb8;
  color: white;
}
.a-z-button:after {
  padding-top: 100%;
  display: block;
  content: "";
}

.a-z-button--disabled {
  color: #4c6272;
  background-color: #e8edee;
  border: 0.0625rem solid #4c6272;
  pointer-events: none;
}
.a-z-button--disabled:hover, .a-z-button--disabled:visited {
  color: #ccc;
}

.a-z-button--active {
  background: #005eb8;
  border: 0.0625rem solid #005eb8;
  color: white;
}

.a-z-group__title {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  .a-z-group__title {
    font-size: 1.5rem;
  }
}

.a-z-group__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
}
@media (min-width: 850px) {
  .a-z-group__grid {
    justify-content: normal;
    grid-template-columns: repeat(5, 1fr);
  }
}

.alert-banner {
  background-color: #ffeb3b;
  margin: 0 auto;
  position: relative;
  padding: 0.75rem 0;
  width: 100%;
}

.alert-banner__title {
  text-align: center;
  margin: 0;
}
.alert-banner__title a {
  color: #005eb8;
  font-weight: 600;
}

.alert-takeover {
  font-size: 1.1875rem;
  background: #d5281b;
  color: white;
  text-align: center;
  width: 100%;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
}
@media (min-width: 1000px) {
  .alert-takeover {
    padding: 3rem 0;
    margin: 3rem 0;
  }
}

.alert-takeover__title {
  font-size: 1.75rem;
  font-weight: 600;
  max-width: 100%;
  margin: 0 auto 1.5rem auto;
}
@media (min-width: 850px) {
  .alert-takeover__title {
    font-size: 2.375rem;
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1000px) {
  .alert-takeover__title {
    font-size: 2.625rem;
  }
}

.alert-takeover__content {
  font-size: 1.1875rem;
  margin: 0 auto 0.75rem auto;
  max-width: 80%;
}
@media (min-width: 850px) {
  .alert-takeover__content {
    margin: 0 auto 1.5rem auto;
    font-size: 1.5rem;
  }
}
@media (min-width: 1000px) {
  .alert-takeover__content {
    margin: 0 auto 2rem auto;
    font-size: 1.625rem;
  }
}

.blockquote,
.wp-block-quote,
blockquote {
  position: relative;
  padding: 1rem;
  padding-left: 5.4375rem;
  background-color: white;
  background-image: url("../imgs/icons/quotemarks.svg");
  background-repeat: no-repeat;
  background-position: top 1rem left 1rem;
  background-size: 3.4375rem 3.4375rem;
}
@media (min-width: 850px) {
  .blockquote,
  .wp-block-quote,
  blockquote {
    padding: 1.5rem;
    padding-left: 6.4375rem;
    background-position: top 1.5rem left 1.5rem;
  }
}
.blockquote a,
.wp-block-quote a,
blockquote a {
  color: inherit;
}
.blockquote p,
.wp-block-quote p,
blockquote p {
  font-size: 1.1875rem;
  line-height: 1.33333;
}
@media (min-width: 850px) {
  .blockquote p,
  .wp-block-quote p,
  blockquote p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1000px) {
  .blockquote p,
  .wp-block-quote p,
  blockquote p {
    font-size: 1.625rem;
  }
}
.blockquote p:last-child,
.wp-block-quote p:last-child,
blockquote p:last-child {
  margin-bottom: 0;
}
.blockquote cite,
.wp-block-quote cite,
blockquote cite {
  font-size: 1.1875rem;
  font-weight: 600;
  font-style: normal;
}

.breadcrumbs {
  width: 100%;
  background-color: #e8edee;
  font-size: 1rem;
  margin: 0;
  padding: 0.75rem 0;
}
@media (min-width: 850px) {
  .breadcrumbs {
    padding: 1rem 0;
  }
}
.breadcrumbs a {
  text-decoration: underline;
}
.breadcrumbs span,
.breadcrumbs .current-item {
  margin: 0 0.25rem;
}
.breadcrumbs span:first-child,
.breadcrumbs .current-item:first-child {
  margin-left: 0;
}

.breadcrumbs--light {
  color: white;
  background-color: unset;
}
.breadcrumbs--light a {
  color: white;
}
.breadcrumbs--light span,
.breadcrumbs--light .current-item {
  color: white;
}

.button-menu-toggle {
  display: block;
  width: 100%;
  border: none;
  background-color: #003087;
  text-align: right;
  color: white;
  font-size: 1.1875rem;
  padding: 0.5rem 0.5rem;
  cursor: pointer;
}

.button-menu-toggle__text {
  vertical-align: middle;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
}

.button-menu-toggle__svg {
  vertical-align: middle;
  display: inline-block;
  height: 1.8125rem;
  width: 1.8125rem;
  border-radius: 0;
}

.button-menu-toggle__line {
  stroke: #ffeb3b;
  stroke-width: 9;
  transform-origin: 50% 50%;
  transition: transform 200ms;
}

.button-menu-toggle__line--1 {
  transform: translateY(-20px) rotate(0deg);
  -ms-transform: translateY(-20px) rotate(0deg);
}

.button-menu-toggle__line--1--open {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transition: transform 200ms;
  stroke: #ffeb3b;
}

.button-menu-toggle__line--2 {
  opacity: 1;
  transition: opacity 200ms;
}

.button-menu-toggle__line--2--open {
  opacity: 0;
  transition: opacity 0.125s;
  stroke: #ffeb3b;
}

.button-menu-toggle__line--3 {
  transform: translateY(20px) rotate(0deg);
  -ms-transform: translateY(20px) rotate(0deg);
}

.button-menu-toggle__line--3--open {
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transition: transform 200ms;
  stroke: #ffeb3b;
}

.card-article {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: white;
  border-radius: 0.3125rem;
}
@media (min-width: 850px) {
  .card-article {
    height: 100%;
  }
}

.card-article__image {
  position: relative;
  width: 100%;
  margin: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top-left-radius: 0.3125rem;
  border-top-right-radius: 0.3125rem;
}
.card-article__image:before {
  padding-top: 75%;
  display: block;
  content: "";
}

.card-article__content {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
}
.card-article__content > :last-child {
  margin-bottom: 0;
}
@media (min-width: 400px) {
  .card-article__content {
    padding: 1.5rem;
    height: auto;
  }
}

.card-article__title {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #005eb8;
  line-height: 1.2;
  hyphens: auto;
  -ms-hyphens: auto;
}
@media (min-width: 400px) {
  .card-article__title {
    font-size: 1.1875rem;
  }
}
@media (min-width: 850px) {
  .card-article__title {
    font-size: 1rem;
  }
}
@media (min-width: 1000px) {
  .card-article__title {
    font-size: 1.1875rem;
  }
}
@media (min-width: 1200px) {
  .card-article__title {
    font-size: 1.5rem;
  }
}
.card-article__title > a {
  display: block;
  color: inherit;
}

.card-article__date {
  line-height: 1;
  position: relative;
  font-size: 1rem;
  padding-left: 1.625rem;
  margin-bottom: 0.5rem;
  color: #425563;
}
.card-article__date:before {
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  position: absolute;
  left: 0;
  top: -0.0625rem;
  content: "";
  background-image: url("../imgs/icons/clock.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 850px) {
  .card-article__date {
    margin-bottom: 0.75rem;
  }
}

.card-article__excerpt {
  margin-bottom: 0.75rem;
}

.card-article__meta {
  display: block;
  font-size: 0.875rem;
}
@media (min-width: 850px) {
  .card-article__meta {
    margin: auto 0 0 0;
    font-size: 1rem;
  }
}

.card-article--slim {
  padding: 1rem 0;
  background: none;
  min-height: 0;
}
.card-article--slim .card-article__date:before {
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  position: absolute;
  left: 0;
  top: -0.0625rem;
  content: "";
  background-image: url("../imgs/icons/clock-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.card-article--slim .card-article__title {
  margin-bottom: 0;
}
.card-article--slim .card-article__excerpt,
.card-article--slim .card-article__meta {
  display: none;
}
.card-article--slim .card-article__content {
  padding: 0;
}
@media (min-width: 1000px) {
  .card-article--slim {
    padding: 1.25rem 0;
  }
}

.card-article--light {
  color: white;
}
.card-article--light .card-article__date {
  color: white;
}
.card-article--light .card-article__title {
  color: white;
  margin-bottom: 0;
}

@media (min-width: 850px) {
  .card-article--landscape {
    display: flex;
    flex-direction: row;
  }
  .card-article--landscape .card-article__image {
    flex: 1;
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0.3125rem;
  }
  .card-article--landscape .card-article__content {
    width: 50%;
  }
}

.card-article--landscape-on-smallscreen {
  display: flex;
  flex-direction: row;
}
@media (min-width: 850px) {
  .card-article--landscape-on-smallscreen {
    flex-direction: column;
  }
}
.card-article--landscape-on-smallscreen .card-article__image {
  max-width: 50%;
  border-top-left-radius: 0.3125rem;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0.3125rem;
}
@media (min-width: 850px) {
  .card-article--landscape-on-smallscreen .card-article__image {
    max-width: 100%;
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem;
    border-bottom-left-radius: 0;
  }
}
.card-article--landscape-on-smallscreen .card-article__content {
  width: 50%;
  height: auto;
  flex: 1 0 auto;
}
@media (min-width: 850px) {
  .card-article--landscape-on-smallscreen .card-article__content {
    width: 100%;
  }
}

.card-event {
  background: white;
  border-radius: 0.1875rem;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

.card-event__date {
  display: inline-block;
  border-radius: 0.1875rem;
  color: #231f20;
  font-weight: 400;
  font-size: 1rem;
  background: #a0dbf3;
  padding: 0 0.5rem;
  margin-bottom: 1rem;
}

.card-event__content {
  flex: 1 0;
}

.card-event__title {
  margin-bottom: 1rem;
  line-height: 1.2;
}
.card-event__title a {
  color: #005eb8;
}
@media (min-width: 1200px) {
  .card-event__title {
    font-size: 1.5rem;
  }
}

.card-event__meta {
  margin: 0;
  font-size: 1rem;
}
@media (min-width: 1000px) {
  .card-event__meta {
    font-size: 1.1875rem;
  }
}
.card-event__meta:first-of-type {
  margin-top: 1rem;
}
@media (min-width: 1000px) {
  .card-event__meta:first-of-type {
    margin-top: 1.25rem;
  }
}
.card-event__meta a {
  line-height: 1.625rem;
}

.card-event__meta-title {
  display: inline-block;
}

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

.card-list__letter {
  font-size: 1.1875rem;
}
@media (min-width: 1000px) {
  .card-list__letter {
    font-size: 1.5rem;
  }
}

.card-list__item {
  margin-bottom: 1.5rem;
}
.card-list__item:last-child {
  margin-bottom: 0;
}

.card-list__group--two-columns {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 40.625rem) {
  .card-list__group--two-columns {
    margin-left: -1.5rem;
  }
}

.card-list__group--two-columns .card-list__item {
  width: 100%;
}
@media (min-width: 40.625rem) {
  .card-list__group--two-columns .card-list__item {
    width: 50%;
    padding-left: 1.5rem;
  }
  .card-list__group--two-columns .card-list__item:last-child {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 850px) {
  .card-list__group--two-columns .card-list__item {
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .card-list__group--two-columns .card-list__item {
    width: 50%;
  }
}

.card-list__group--three-column-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-template-rows: 1fr;
  column-gap: 2.375rem;
  row-gap: 1.875rem;
  margin: 0;
}
@media (min-width: 1000px) {
  .card-list__group--three-column-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card-list__group--three-column-grid .card-list__item {
  width: 100%;
  margin: 0;
  padding: 0;
}
@media (min-width: 1000px) {
  .card-list__group--three-column-grid .card-list__item {
    height: 100%;
  }
}

.card-list__return-to-top {
  margin: 0.75rem 0 1.5rem 0;
  font-size: 1rem;
  padding-left: 1rem;
  background-image: url("../imgs/icons/chevron-up.svg");
  background-size: 0.625rem;
  background-repeat: no-repeat;
  background-position: left center;
}
@media (min-width: 850px) {
  .card-list__return-to-top {
    font-size: 1.1875rem;
  }
}

.child-pages-menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-left: -1.5rem;
}

.child-pages-menu__item {
  display: flex;
  width: 100%;
  padding-left: 1.5rem;
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  .child-pages-menu__item {
    width: 33.3333%;
  }
}

.child-pages-menu__link {
  position: relative;
  padding: 0.625rem 1.25rem 0.625rem 0;
  width: 100%;
  border-bottom: 1px solid #e8edee;
  font-size: 1.1875rem;
}
.child-pages-menu__link:after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  top: 1.125rem;
  right: 0;
  background: url("../imgs/icons/chevron-right.svg") no-repeat center;
}
@media (min-width: 1000px) {
  .child-pages-menu__link {
    font-size: 1.1875rem;
    margin-right: 1.375rem;
  }
  .child-pages-menu__link:after {
    width: 1.0625rem;
    height: 1.0625rem;
    top: 1rem;
  }
}

.container {
  width: 100%;
  display: block;
  background-color: #e8edee;
}

.container--padded {
  padding: 1.5rem 0;
}
@media (min-width: 850px) {
  .container--padded {
    padding: 3rem 0;
  }
}

.container--light {
  background: white;
}

.content-sidebar-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  background-color: #e8edee;
}

.content-sidebar-group__content {
  width: 100%;
}
@media (min-width: 850px) {
  .content-sidebar-group__content {
    width: auto;
    flex: 1 0;
  }
}

.content-sidebar-group__content-item,
.content-sidebar-group__sidebar-item {
  margin: 0 0 1.5rem 0;
}
.content-sidebar-group__content-item:last-child,
.content-sidebar-group__sidebar-item:last-child {
  margin: 0;
}

.content-sidebar-group__sidebar {
  width: 100%;
  margin: 1.5rem 0 0 0;
}
@media (min-width: 850px) {
  .content-sidebar-group__sidebar {
    width: 35%;
    margin: 0 0 0 1.5rem;
  }
}
@media (min-width: 1200px) {
  .content-sidebar-group__sidebar {
    width: 30%;
    margin: 0 0 0 4.6875rem;
  }
}

.content-sidebar-group__sidebar--before {
  margin: 0 0 1.5rem 0;
}
@media (min-width: 850px) {
  .content-sidebar-group__sidebar--before {
    margin: 0 1.5rem 0 0;
  }
}
@media (min-width: 1200px) {
  .content-sidebar-group__sidebar--before {
    margin: 0 4.6875rem 0 0;
  }
}

.editor-notice {
  margin: 0;
  padding: 0.75rem;
  border: 0.0625rem solid #e8edee;
  border-left-color: #005eb8;
  border-left-width: 0.25rem;
}

.editor-notice__message {
  margin: 0;
}
.editor-notice__message:before {
  content: "Warning: ";
  font-weight: bold;
}

.featured-pages {
  background: white;
  padding: 1.5rem 0;
  position: relative;
}
@media (min-width: 850px) {
  .featured-pages {
    padding: 2.25rem 0;
  }
}
.featured-pages .featured-page-item {
  min-height: unset;
}

.featured-pages__heading {
  margin: 0 0 0.75rem 0;
}

.featured-pages__list {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 0 -1.25rem;
  padding: 0;
}

.featured-pages__list-item {
  padding: 0;
  padding-left: 1.25rem;
  margin-bottom: 1.125rem;
  width: 100%;
}
@media (min-width: 850px) {
  .featured-pages__list-item {
    width: 50%;
  }
}
@media (min-width: 1000px) {
  .featured-pages__list-item {
    width: 25%;
  }
}

.featured-pages__toggle {
  display: flex;
  margin-left: auto;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #005eb8;
  text-decoration: underline;
  background: white url("../imgs/icons/chevron-down.svg") no-repeat;
  background-position: top 0.5rem right 0;
  background-size: 0.875rem 1rem;
  padding: 0.25rem 1.5rem 0.25rem 0;
  font-weight: unset;
}
.featured-pages__toggle:hover {
  text-decoration: none;
  background-color: unset;
  color: #005eb8;
}
.featured-pages__toggle:focus {
  background-color: #ffeb3b;
  color: #231f20;
  box-shadow: 0 0 #ffeb3b, 0 0.1875rem #231f20;
  outline: 0.1875rem solid transparent;
  text-decoration: none;
  background-image: url("../imgs/icons/chevron-down-black.svg");
}
@media (min-width: 850px) {
  .featured-pages__toggle {
    font-size: 1.1875rem;
    background-position: top 0.75rem right 0;
  }
}

.hidden-item {
  display: none;
}

.featured-pages__inner-wrapper {
  border-bottom: 0.0625rem solid #005eb8;
  padding-bottom: 0.5rem;
}

.featured-pages__toggle--active {
  background: white url("../imgs/icons/chevron-up.svg") no-repeat;
  background-position: top 0.5rem right 0;
  background-size: 0.875rem 1rem;
}
.featured-pages__toggle--active:focus {
  background-image: url("../imgs/icons/chevron-up-black.svg");
}
@media (min-width: 850px) {
  .featured-pages__toggle--active {
    background-position: top 0.75rem right 0;
  }
}

.featured-page-item {
  display: block;
  height: 100%;
  padding: 0.75rem 2.25rem 0.75rem 1rem;
  border-radius: 0.1875rem;
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  color: #005eb8;
  background: #b2e1f5 url("../imgs/icons/chevron-right.svg") no-repeat;
  background-position: top 1rem right 0.625rem;
  background-size: 0.875rem 0.875rem;
}
@media (min-width: 1200px) {
  .featured-page-item {
    min-height: 5.625rem;
  }
}
.featured-page-item:hover {
  background-image: url("../imgs/icons/chevron-right-white.svg");
  background-color: #005eb8;
  color: white;
  text-decoration: underline;
}
.featured-page-item:focus {
  background-color: #ffeb3b;
  color: #231f20;
  background-image: url("../imgs/icons/chevron-right-black.svg");
  box-shadow: inset 0 -0.1875rem 0 0 #231f20;
  outline: none;
}

.featured-page-item--external {
  position: relative;
  padding-bottom: 3.125rem;
}
.featured-page-item--external:after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  background: no-repeat center url("../imgs/icons/target-blue.svg");
}
.featured-page-item--external:hover:after {
  background-image: url("../imgs/icons/target-white.svg");
}
.featured-page-item--external:focus:after {
  background-image: url("../imgs/icons/target-black.svg");
}

.filter-date {
  position: relative;
}

.filter-date__label {
  display: block;
  font-size: 1.1875rem;
  margin-bottom: 0;
}

.filter-date__explanation {
  display: block;
  margin-bottom: 0.75rem;
}

.filter-date__input {
  width: 100%;
  background-color: white;
  margin: 0;
  border: 0.0625rem solid #768692;
  border-radius: 0.1875rem;
}
.filter-date__input:focus {
  border-color: #ffeb3b;
}

.filter-date--error {
  display: block;
  padding: 0 1.125rem;
  border-left: 0.3125rem solid #d5281b;
}
.filter-date--error .filter-date__input {
  border: 0.0625rem solid #d5281b;
}

.filter-date__error-message {
  display: block;
  margin: 0.625rem 0;
  font-weight: 700;
  color: #d5281b;
}

.filter-group__mobile-toggle {
  display: block;
  border: none;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  padding: 0.625rem 2.1875rem 0.625rem 0.625rem;
  background: #ffffff url("../imgs/icons/custom-select.svg") no-repeat;
  background-size: 1rem 1rem;
  background-position: right 0.625rem center;
  border-radius: 0;
  color: #212b32;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  text-decoration: none;
  text-align: left;
}
.filter-group__mobile-toggle:hover {
  text-decoration: none;
  color: #212b32;
}
.filter-group__mobile-toggle:focus {
  outline: #005eb8 solid;
}
@media (min-width: 850px) {
  .filter-group__mobile-toggle {
    display: none;
  }
}

.filter-group__title {
  display: none;
}
@media (min-width: 850px) {
  .filter-group__title {
    display: block;
    font-size: 1.1875rem;
    font-weight: 600;
  }
}
@media (min-width: 1000px) {
  .filter-group__title {
    font-size: 1.5rem;
  }
}

.filter-group__container {
  background: white;
  border: 0.0625rem solid #efefef;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 850px) {
  .filter-group__container {
    background: transparent;
    border: none;
    padding: 0;
  }
}

.filter-group__item {
  margin-bottom: 1.5rem;
  align-self: flex-end;
}
.filter-group__item:last-of-type {
  margin-bottom: 0;
}

.filter-group__search,
.filter-group__a-z {
  margin-bottom: 3rem;
}

.filter-group__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  border-top: 0.0625rem solid #e8edee;
  padding-top: 1.5rem;
}
.filter-group__controls .button {
  margin-left: 1.125rem;
}

.filter-group__reset {
  display: block;
  font-size: 1rem;
  text-decoration: underline;
  margin-right: 0.75rem;
  color: #005eb8;
}
@media (min-width: 850px) {
  .filter-group__reset {
    font-size: 1.1875rem;
  }
}

.filter-group__button-primary {
  display: inline-block;
  margin: 0;
  padding: 0.5rem 2.25rem 0.5rem 1.25rem;
  cursor: pointer;
  border: 0.0625rem solid transparent;
  border-radius: 0.1875rem;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  height: auto;
  width: auto;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.5;
  background-color: #005eb8;
  background-image: url("../imgs/icons/chevron-right-white.svg");
  color: white;
  background-position: center right 0.75rem;
  background-repeat: no-repeat;
  background-size: 0.6875rem 0.6875rem;
}
.filter-group__button-primary:hover {
  background-color: #003087;
  color: white;
  text-decoration: none;
}
.filter-group__button-primary[type=submit]:focus {
  background-color: #ffeb3b;
  background-image: url("../imgs/icons/chevron-right-black.svg");
  color: black;
  text-decoration: none;
  outline: #000 0.1875rem solid;
}
@media (min-width: 1000px) {
  .filter-group__button-primary {
    font-size: 1.1875rem;
  }
}

.filter-dropdown {
  width: 100%;
}

.filter-dropdown__label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
@media (min-width: 1000px) {
  .filter-dropdown__label {
    font-size: 1.1875rem;
  }
}

.filter-dropdown__description {
  display: block;
  margin-bottom: 0.75rem;
}

.filter-dropdown select {
  width: 100%;
  margin: 0;
  border-radius: 0.1875rem;
  font-family: "Frutiger W01", Arial, sans-serif;
  color: #231f20;
}
.filter-dropdown select:focus {
  outline: #005eb8 0.125rem solid;
}

.filter-search {
  width: 100%;
}

.filter-search__label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  .filter-search__label {
    font-size: 1.5rem;
  }
}

.filter-search__input-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  margin: 0;
  border: 0.0625rem solid #4c6272;
  background-color: white;
  padding: 0.25rem;
  border-radius: 0.1875rem;
}

.filter-search__field {
  display: block;
  flex: 1 0;
  min-width: 0;
  height: 100%;
  border: none;
  margin: 0 0.25rem 0 0;
  padding-left: 0.625rem;
  background-color: white;
}

.filter-search__submit {
  display: block;
  margin: 0;
  text-indent: -9999px;
  width: 2.8125rem;
  height: 2.8125rem;
  padding: 0.625rem;
  border-radius: 0.1875rem;
  background: #005eb8 url("./../imgs/icons/search.svg") no-repeat center;
  background-size: 1.5625rem 1.5625rem;
  border: none;
}

/**
 * Component: Filter Summary
 */
.filter-summary {
  display: block;
}

.in-this-section__title {
  margin-bottom: 0;
  border-bottom: 0.125rem solid #aeb7bd;
  padding-bottom: 0.5rem;
}

.in-this-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.in-this-section__item {
  border-bottom: 0.0625rem solid #d8d8d8;
}

.in-this-section__link {
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 2.25rem 0.5rem 0;
  background-image: url("../imgs/icons/chevron-right.svg");
  background-size: 0.75rem 0.75rem;
  background-repeat: no-repeat;
  background-position: right top 1rem;
  width: 100%;
}
.in-this-section__link:hover {
  text-decoration: underline;
}

.in-this-section__current {
  display: inline-block;
  color: #425563;
  padding: 0.5rem 2.25rem 0.5rem 0;
  font-weight: 600;
  background-image: url("../imgs/icons/chevron-right-slate.svg");
  background-size: 0.75rem 0.75rem;
  background-repeat: no-repeat;
  background-position: right top 1rem;
  width: 100%;
}

.searchwp-live-search {
  width: 100%;
  max-width: 17.5rem;
}

.searchwp-live-search-results {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
  height: 0;
  overflow: hidden;
  text-indent: -9999px;
  z-index: 9999995; /* Exceed SearchWP Modal Search Form overlay. */
  position: absolute;
  display: none;
  font-size: 1rem;
  background: white;
  border: 0.0625rem solid #212b32;
  border-radius: 0 0 0.1875rem 0.1875rem;
}

.searchwp-live-search-results-showing {
  display: block;
  text-indent: 0;
  opacity: 1;
  margin-top: -0.0625rem;
  height: auto;
  overflow: auto;
}

.searchwp-live-search-result {
  display: block;
  padding: 0.5rem 0.75rem;
  border-top: 0.0625rem solid #e8edee;
}
.searchwp-live-search-result:first-child {
  border-top: 0;
}

.searchwp-live-search-result__text {
  margin-bottom: 0;
}

.searchwp-live-search-no-results {
  padding: 0.75rem;
  margin-bottom: 0;
  text-align: center;
}

.searchwp-live-search-no-min-chars:after {
  content: "Continue typing";
  display: block;
  text-align: center;
  padding: 5.9375rem 0.625rem 0.9375rem 0.625rem;
}

@keyframes searchwp-spinner-line-fade-quick {
  0%, 39%, 100% {
    opacity: 0.25;
  }
  40% {
    opacity: 1;
  }
}
.mega-menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1.5rem;
  width: 100%;
}

.mega-menu__title {
  font-size: 1rem;
  width: 100%;
  font-weight: 600;
}
@media (min-width: 1000px) {
  .mega-menu__title {
    font-size: 1.1875rem;
  }
}

.mega-menu__text {
  font-size: 1rem;
  text-align: right;
  margin: 0.625rem 0;
  flex-basis: 100%;
}
.mega-menu__text a {
  text-decoration: underline;
}
@media (min-width: 1000px) {
  .mega-menu__text {
    font-size: 1.1875rem;
  }
}

.mega-menu__content {
  flex: 1;
}

.mega-menu__panel {
  width: 30%;
  max-width: 18.75rem;
  padding: 1.875rem;
  background-color: #005eb8;
  margin-left: 1.5rem;
}
.mega-menu__panel .button {
  display: block;
  width: auto;
}

.mega-menu__panel-title {
  color: white;
  font-weight: 600;
}

.nav-footer {
  display: flex;
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-footer__item {
  margin-right: 1.5rem;
}

.nav-footer__link {
  font-weight: 400;
}

.nav-primary {
  display: none;
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  font-weight: 600;
  position: relative;
  background-color: #003087;
}
@media (min-width: 850px) {
  .nav-primary {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.1875rem;
  }
}
.nav-primary__link {
  display: block;
  position: relative;
  width: 100%;
  padding: 0.5rem 1.5rem 0.5rem 0.25rem;
  text-decoration: none;
  color: white;
  background-image: url("../imgs/icons/chevron-right-yellow.svg");
  background-position: bottom 0.9375rem right 0.375rem;
  background-repeat: no-repeat;
  background-size: 0.625rem 0.625rem;
}
@media (min-width: 1000px) {
  .nav-primary__link {
    background-position: center right 0.5rem;
    padding: 0.5rem 1.5rem 0.5rem 0.75rem;
  }
}
.nav-primary__link:hover {
  text-decoration: underline;
}
.nav-primary__link:focus {
  background-color: #ffeb3b;
  color: #231f20;
  background-image: url("../imgs/icons/chevron-right-black.svg");
  box-shadow: inset 0 -0.1875rem 0 0 #231f20;
  outline: none;
}

.nav-primary__dropdown {
  position: absolute;
  top: -9999px;
  left: 0;
  background: white;
  border: 0.0625rem solid #005eb8;
  width: 100%;
}

.nav-primary__item--active {
  background-color: #005eb8;
}

.nav-mobile-primary {
  text-align: right;
  list-style: none;
  font-size: 1.1875rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
  background-color: #003087;
  padding: 0.75rem 0.75rem;
}

.nav-mobile-primary__link {
  color: white;
  text-decoration: none;
  padding: 0.25rem 1.875rem;
  background-image: url("../imgs/icons/chevron-right-yellow.svg");
  background-position: top 0.75rem right 0.3125rem;
  background-repeat: no-repeat;
  background-size: 0.75rem 0.75rem;
}

.nav-mobile-primary__item--active .nav-mobile-primary__link {
  text-decoration: underline;
}

.nav-secondary {
  display: none;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 1rem;
}
@media (min-width: 850px) {
  .nav-secondary {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 1200px) {
  .nav-secondary {
    font-size: 1.1875rem;
  }
}

.nav-secondary__link {
  padding: 0.5rem 0.5rem;
  color: #212b32;
  text-decoration: none;
}
@media (min-width: 850px) {
  .nav-secondary__link {
    display: inline-block;
  }
}
@media (min-width: 1000px) {
  .nav-secondary__link {
    padding: 0.5rem 1rem;
  }
}

.nav-secondary__item--85 {
  background: #005eb8;
  color: white;
  background-image: url("../imgs/icons/email.svg");
  background-position: center left 0.625rem;
  background-repeat: no-repeat;
  background-size: 1.75rem 1.75rem;
}
.nav-secondary__item--85 .nav-secondary__link {
  padding: 0.5rem 1rem 0.5rem 3rem;
  color: white;
  font-weight: 600;
}
.nav-secondary__item--85 .nav-secondary__link:focus {
  color: #212b32;
  background-image: url("../imgs/icons/email-black.svg");
  background-position: center left 0.625rem;
  background-repeat: no-repeat;
  background-size: 1.75rem 1.75rem;
}
.nav-mobile-secondary {
  text-align: right;
  list-style: none;
  font-size: 1.1875rem;
  margin: 0;
  padding: 0;
  background-color: #e8edee;
  padding: 0.75rem 1.25rem;
}

.nav-mobile-secondary__item {
  padding: 0.25rem 1.5rem;
}

.nav-mobile-secondary__link {
  color: #212b32;
  text-decoration: none;
}

.nav-mobile-secondary__item--active .nav-mobile-secondary__link {
  text-decoration: underline;
}

.nav-mobile-secondary__item--85 {
  background: url("../imgs/icons/email-blue-dark.svg") no-repeat right 8.125rem center;
  background-size: 1.375rem 0.9375rem;
}

.nav-quick-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1200px) {
  .nav-quick-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.nav-quick-links__item {
  margin-right: 0.875rem;
}

.nav-quick-links__link {
  padding: 0.25rem 1rem 0.25rem 0;
  color: white;
  background-image: url("../imgs/icons/chevron-right-yellow.svg");
  background-position: top 0.875rem right;
  background-repeat: no-repeat;
  background-size: 0.625rem 0.625rem;
}
.nav-quick-links__link:focus {
  background-image: url("../imgs/icons/chevron-right-black.svg");
}

.page-title {
  width: 100%;
  background-color: #e8edee;
}
.page-title--light {
  background-color: #fff;
}

.page-title__inner {
  padding: 1.5rem 0;
}
@media (min-width: 850px) {
  .page-title__inner {
    padding: 2.25rem 0;
  }
}
@media (min-width: 1000px) {
  .page-title__inner {
    padding: 3rem 0;
  }
}

.page-title__content {
  display: flex;
  flex-wrap: wrap;
}
.page-title__content > :last-child {
  margin-bottom: 0;
}

@media (min-width: 850px) {
  .page-title__text {
    flex: 1 0;
  }
}
@media (min-width: 1000px) {
  .page-title__text {
    max-width: 51.875rem;
  }
}

@media (min-width: 850px) {
  .page-title__image {
    width: 45%;
    margin-left: 5%;
  }
}

.page-title__heading {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: #231f20;
}
@media (min-width: 400px) {
  .page-title__heading {
    font-size: 1.75rem;
  }
}
@media (min-width: 850px) {
  .page-title__heading {
    font-size: 2.375rem;
    line-height: 1.2;
  }
}
@media (min-width: 1200px) {
  .page-title__heading {
    font-size: 3.25rem;
  }
}

.page-title__excerpt {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 1.1875rem;
  max-width: 51.875rem;
  color: #231f20;
}
@media (min-width: 850px) {
  .page-title__excerpt {
    font-size: 1.5rem;
  }
}

.page-dates {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  max-width: 50rem;
  padding-bottom: 1.5rem;
}
.page-dates time {
  display: inline-block;
}
@media (min-width: 850px) {
  .page-dates time:first-child {
    padding-right: 1.25rem;
    border-bottom: 0;
  }
  .page-dates time:nth-child(2) {
    border-left: 0.125rem solid #425563;
    padding-left: 1.25rem;
    padding-top: 0;
  }
}
@media (min-width: 850px) {
  .page-dates {
    flex-direction: row;
    padding-bottom: 3rem;
  }
}

.page-dates__date-text {
  color: #425563;
  font-size: 1rem;
}

.pagination {
  display: flex;
  padding-bottom: 1rem;
}

.pagination--centered {
  align-items: center;
  justify-content: center;
}

.pagination__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
@media (min-width: 850px) {
  .pagination__list {
    font-size: 1.1875rem;
  }
}

.pagination__item {
  margin-right: 0.25rem;
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  .pagination__item {
    margin-right: 0.75rem;
    font-size: 1.5rem;
  }
}
@media (min-width: 1000px) {
  .pagination__item {
    margin-right: 1rem;
  }
}

.pagination__item--hidden-mobile {
  display: none;
}
@media (min-width: 850px) {
  .pagination__item--hidden-mobile {
    display: block;
  }
}

.pagination__button {
  display: block;
  color: #005eb8;
  padding: 0.375rem 0.375rem;
  font-size: inherit;
  font-weight: 400;
}
.pagination__button:hover {
  color: #212b32;
  text-decoration: none;
}

.pagination__button--disabled {
  pointer-events: none;
  cursor: default;
  color: #0d1113;
}

.pagination__button--active {
  color: #212b32;
  text-decoration: none;
}

.pagination__item--disabled .pagination__button--next,
.pagination__item--disabled .pagination__button--prev {
  color: #212b32;
}
.pagination__item--disabled .pagination__button--next:hover,
.pagination__item--disabled .pagination__button--prev:hover {
  color: inherit;
  text-decoration: none;
}

.pagination__button--next,
.pagination__button--prev {
  background: none;
  color: #005eb8;
}
.pagination__button--next:hover,
.pagination__button--prev:hover {
  background: none;
  text-decoration: underline;
  color: #00519f;
}

.pagination__ellipsis {
  display: block;
  padding: 0.375rem 0.6875rem;
}

.people-card {
  max-width: 50rem;
  height: 100%;
}

.people-card__image {
  margin-bottom: 0.75rem;
}

.people-card__content {
  width: 100%;
}

.people-card__title {
  margin-bottom: 0rem;
}

@media (min-width: 850px) {
  .people-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -1.5rem;
  }
}

.people-group__item {
  margin-bottom: 1.5rem;
}
@media (min-width: 850px) {
  .people-group__item {
    width: 50%;
    padding-left: 1.5rem;
  }
}
@media (min-width: 1000px) {
  .people-group__item {
    width: 33.33333%;
  }
}

.search-form {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin: 0;
  background: white;
  border-radius: 0.1875rem;
  border: 0.0625rem solid #212b32;
}

.search-form > label {
  border-radius: 0.1875rem;
  display: block;
  margin: 0.25rem;
  flex: 1 1 auto;
}

input[type=search].search-field {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  padding: 0 0.75rem;
  background-color: white;
  font-family: "Frutiger W01", Arial, sans-serif;
  font-size: 1rem;
}
@media (min-width: 1000px) {
  input[type=search].search-field {
    font-size: 1.1875rem;
  }
}
input[type=search].search-field:focus {
  border-bottom: 0.125rem solid #000;
}

.search-submit {
  display: block;
  margin: 0;
  text-indent: -9999px;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0.375rem;
  margin: 0.25rem;
  background: url("./../imgs/icons/search.svg") no-repeat center;
  background-size: 50%;
  border-radius: 0.1875rem;
  background-color: #005eb8;
  border: none;
}
.search-submit:focus {
  background: url("./../imgs/icons/search-dark.svg") no-repeat center;
  background-size: 50%;
  background-color: #ffeb3b;
}
@media (min-width: 400px) {
  .search-submit {
    width: 2.3125rem;
    height: 2.3125rem;
  }
}
@media (min-width: 1000px) {
  .search-submit {
    width: 2.8125rem;
    height: 2.8125rem;
  }
}

.signpost-item {
  background-color: #ffffff;
  border-radius: 0.1875rem;
  position: relative;
  width: 100%;
  padding: 0.9375rem;
  color: #212b32;
  text-decoration: none;
  height: 100%;
}
.signpost-item p:last-child {
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .signpost-item {
    padding: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .signpost-item {
    padding: 2.25rem;
  }
}

.signpost-item:hover,
.signpost-item:focus {
  background-color: #005eb8;
  color: white;
  border-bottom-color: #b2e1f5;
  text-decoration: none;
}
.signpost-item:hover .signpost-item__title,
.signpost-item:focus .signpost-item__title {
  color: inherit;
  text-decoration: underline;
  background-image: url("../imgs/icons/chevron-right-white.svg");
}

.signpost-item__title {
  text-decoration: underline;
  color: #005eb8;
  padding-right: 1.875rem;
  margin: 0;
  line-height: 1.2;
  font-size: 1.1875rem;
  font-weight: 600;
  background-image: url("../imgs/icons/chevron-right.svg");
  background-position: top 0.375rem right;
  background-size: 1rem 1rem;
  background-repeat: no-repeat;
  width: 100%;
}
@media (min-width: 850px) {
  .signpost-item__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1000px) {
  .signpost-item__title {
    background-position: top 0.5rem right;
    font-size: 1.625rem;
  }
}

.signpost-item__excerpt,
.signpost-item__footer {
  margin-top: 0.75rem;
}
@media (min-width: 850px) {
  .signpost-item__excerpt,
  .signpost-item__footer {
    margin-top: 1.25rem;
  }
}

.signpost-item--with-meta {
  padding-bottom: 0.5rem;
}
.signpost-item--with-meta:hover .signpost-item__meta, .signpost-item--with-meta:focus .signpost-item__meta {
  color: #212b32;
}
@media (min-width: 850px) {
  .signpost-item--with-meta {
    padding-bottom: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .signpost-item--with-meta {
    padding-bottom: 1rem;
  }
}

.signpost-item__meta {
  font-size: 0.875rem;
  background: #d8dde0;
  display: inline-block;
  border-radius: 0.1875rem;
  padding: 0.125rem 0.5rem;
}
@media (min-width: 850px) {
  .signpost-item__meta {
    font-size: 1rem;
  }
}

.signpost {
  width: 100%;
}

.signpost__list {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 0;
  margin-left: -1.5rem;
  padding: 0;
  list-style: none;
}

.signpost__list-item {
  width: 100%;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 850px) {
  .signpost__list-item {
    width: 50%;
  }
}

@media (min-width: 850px) {
  .signpost__list-item--3-col {
    width: 33.33333%;
  }
}

.share-links {
  padding-top: 3rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.0625rem solid #212b32;
  max-width: 50rem;
}

@media (min-width: 850px) {
  .share-links,
  .share-links__action-group,
  .share-links__print {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

.share-links__action-group {
  margin-right: 1.25rem;
}

.share-links__list {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.share-links__item {
  display: inline-block;
  margin-right: 0.375rem;
}
.share-links__item:last-child {
  margin-right: 0;
}

.share-links__print {
  border: 0;
  background: transparent;
}
.share-links__print:hover {
  cursor: pointer;
}
.share-links__print:hover .share-links__print-title, .share-links__print:focus .share-links__print-title {
  text-decoration: underline;
}

.share-links__print-title {
  margin: 0 0.375rem 0 0;
  font-weight: 600;
  color: #212b32;
  font-size: 1.1875rem;
}

.share-links__share-title {
  line-height: 1;
  font-weight: 600;
  color: #212b32;
  font-size: 1.1875rem;
  margin: 0 1.25rem 0 0;
  display: inline-block;
}

.share-links__icon {
  width: 2.5rem;
  height: 2.5rem;
}

.site-footer {
  width: 100%;
}

.site-footer__contact {
  color: white;
  background-color: #231f20;
  padding: 1.25rem 0;
}
@media (min-width: 850px) {
  .site-footer__contact {
    padding: 3rem 0;
  }
}

@media (min-width: 850px) {
  .site-footer__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.site-footer__nav {
  padding: 0.5rem 0;
}
@media (min-width: 850px) {
  .site-footer__nav {
    padding: 0.75rem 0;
  }
}

.site-footer__subtitle {
  font-size: 1.1875rem;
}

.site-footer__copyright {
  margin-bottom: 1rem;
}

.site-footer__copyright p {
  margin-bottom: 0;
  font-size: 1rem;
}
@media (min-width: 850px) {
  .site-footer__copyright p {
    font-size: 1.1875rem;
  }
}

.site-footer__logo {
  margin-bottom: 1rem;
  max-width: 15.3125rem;
  padding-right: 0.75rem;
}
@media (min-width: 850px) {
  .site-footer__logo {
    flex: 1 0 auto;
    margin-bottom: 0;
    max-width: 24.1875rem;
  }
}

@media (min-width: 850px) {
  .site-footer__quicklinks {
    padding-left: 1.25rem;
    border-left: 0.0625rem solid #768692;
  }
}

.site-header__logo-group {
  padding: 0.75rem 0;
  max-width: 18.75rem;
  margin: 0 auto;
}
@media (min-width: 31.25rem) {
  .site-header__logo-group {
    max-width: none;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 850px) {
  .site-header__logo-group {
    padding: 2.25rem 0;
  }
}

.site-header__logo {
  width: 100%;
  min-width: 5.625rem;
  margin-right: 1.5rem;
}
@media (min-width: 31.25rem) {
  .site-header__logo {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .site-header__logo {
    max-width: 24.1875rem;
  }
}
.site-header__logo img {
  height: 100%;
}

.site-header__search-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-basis: max-content;
}
@media (min-width: 31.25rem) {
  .site-header__search-group {
    width: 50%;
  }
}
@media (min-width: 850px) {
  .site-header__search-group {
    max-width: 20rem;
  }
}
@media (min-width: 1000px) {
  .site-header__search-group {
    align-items: center;
    justify-content: flex-end;
  }
}
@media (min-width: 1200px) {
  .site-header__search-group {
    width: 77%;
    max-width: 22.5rem;
  }
}

.site-header__opel-status {
  margin-top: 0.75rem;
  width: 100%;
}
@media (min-width: 31.25rem) {
  .site-header__opel-status {
    margin-top: 0;
  }
}

.site-header__search-form {
  width: 100%;
  margin-top: 0.75rem;
}

.site-header__primary-nav {
  display: none;
  background-color: #003087;
}
@media (min-width: 850px) {
  .site-header__primary-nav {
    display: block;
    width: 100%;
  }
}

.site-header__secondary {
  display: none;
  background: #e8edee;
}
@media (min-width: 850px) {
  .site-header__secondary {
    display: block;
  }
}

.site-header__secondary-inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  padding-top: 0.625rem;
}
@media (min-width: 1200px) {
  .site-header__secondary-inner {
    flex-direction: row;
    align-items: center;
    padding-top: 0;
  }
}

@media (min-width: 850px) {
  .site-header__secondary-menu {
    display: flex;
    align-items: center;
    margin-right: auto;
  }
}

@media (min-width: 850px) {
  .site-header__menu-toggle {
    display: none;
  }
}

.site-header__app-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-header__mobile-nav {
  margin-bottom: 0.75rem;
}
@media (min-width: 850px) {
  .site-header__mobile-nav {
    display: none;
  }
}

.site-header__mobile-content {
  display: none;
}
.site-header__mobile-content.open {
  display: block;
}
@media (min-width: 850px) {
  .site-header__mobile-content.open {
    display: none;
  }
}

.site-header__mobile-search {
  margin-bottom: 1.5rem;
}

.site-header__mobile-app-links {
  display: flex;
  justify-content: flex-end;
  background-color: #e8edee;
  padding: 0.75rem 2.5rem;
}

.site-logo {
  display: block;
  width: 100%;
}
.site-logo:focus {
  outline: 0.1875rem solid #000000;
  outline-offset: 0.125rem;
  box-shadow: none;
}

.site-logo__image {
  display: block;
  width: 100%;
}

.skiplink {
  position: absolute;
  top: -100%;
  padding: 0.625rem;
  left: 0;
  color: white;
  font-weight: 600;
  font-size: 1.1875rem;
  background: #005eb8;
  text-decoration: none;
  z-index: 10000;
}

.skiplink:focus {
  left: 0;
  top: 0;
}

.social-links {
  color: white;
}

.social-links__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -0.75rem;
}

.social-links__icon {
  margin-left: 0.75rem;
  margin-bottom: 0.75rem;
}
.social-links__icon:focus {
  background-color: transparent;
  outline: 0.1875rem solid #ffeb3b;
}

.social-links__icon-image {
  width: 2.375rem;
  height: 2.375rem;
}

/**
 * Component: Standard Content
 */
/**
 * The following element styles are primarily used to
 * format and style Gutenberg block styles.
 */
.standard-content {
  padding-bottom: 3rem;
}
.standard-content > * {
  max-width: 51.875rem;
}
.standard-content > img {
  max-width: 100%;
}
.standard-content > .featured-pages,
.standard-content > .team-leaders,
.standard-content > .team-members,
.standard-content > .department-meta,
.standard-content > .team-members-overview,
.standard-content > .signpost,
.standard-content > .card-list,
.standard-content > .columns,
.standard-content > .testimonial-slider,
.standard-content > .feature,
.standard-content > .hero,
.standard-content > .upcoming-courses,
.standard-content > .spotlight-content,
.standard-content > .newsgroup,
.standard-content > .tweet-group,
.standard-content > .popular-links,
.standard-content > .promotion,
.standard-content > .promoted-pages,
.standard-content > #af-wrapper,
.standard-content > .infographic,
.standard-content > .newsletter-articles {
  max-width: none;
  margin-bottom: 3rem;
}
.standard-content > .hero {
  margin-top: 2.5rem;
}
.standard-content > ul,
.standard-content > ol,
.standard-content > img,
.standard-content > blockquote,
.standard-content > hr {
  margin-bottom: 3rem;
}
.standard-content > h2,
.standard-content > h3,
.standard-content > h4 {
  margin-top: 3.125rem;
  margin-bottom: 1.5rem;
}
.standard-content .button,
.standard-content .inset-text,
.standard-content .expander,
.standard-content .care-card,
.standard-content .details,
.standard-content .do-dont,
.standard-content .action-link,
.standard-content .warning-callout,
.standard-content .panel,
.standard-content .video-transcript,
.standard-content .contact-details,
.standard-content .wp-block-table,
.standard-content .wp-block-quote,
.standard-content .wp-block-audio,
.standard-content .wp-block-file,
.standard-content .wp-block-button,
.standard-content .wp-block-image,
.standard-content .wp-block-embed-twitter,
.standard-content .wp-block-embed-facebook,
.standard-content .wp-block-embed-instagram,
.standard-content .wp-block-embed-spotify,
.standard-content .wp-block-gallery,
.standard-content .food-menu,
.standard-content .food-menu-a-b,
.standard-content .quick-links,
.standard-content .linked-quote {
  margin-bottom: 3rem;
}
.standard-content > p:empty {
  margin: 0;
  padding: 0;
}

.wp-block-list li {
  margin-top: 0.9375rem;
}

/**
 * Floating image classes
 */
.alignleft {
  float: left;
  margin: 0 1.5rem 1.5rem 0;
}

.aligncenter {
  margin: 0 auto;
}

.alignright {
  float: right;
  margin: 0 0 1.5rem 1.5rem;
}

.size-full {
  margin: 0 0 1.5rem 0;
}

.table-of-contents {
  margin-bottom: 1rem;
}
@media (min-width: 850px) {
  .table-of-contents {
    margin-bottom: 2rem;
  }
}

.table-of-contents__heading {
  margin: 0 0 1rem 0;
  border-bottom: 0.0625rem solid black;
  padding-bottom: 0.5rem;
  font-weight: 600;
}
@media (min-width: 1000px) {
  .table-of-contents__heading {
    font-size: 1.5rem;
  }
}

.table-of-contents__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.table-of-contents__item {
  position: relative;
  margin-bottom: 0.5rem;
}
.table-of-contents__item:last-child {
  margin-bottom: 0;
}
.table-of-contents__item:before {
  position: absolute;
  display: block;
  content: "";
  background-color: #aeb7bd;
  height: 0.125rem;
  width: 1.25rem;
  top: 0.875rem;
}

.table-of-contents__link {
  text-decoration: underline;
  text-decoration-color: #00a9ce;
  text-underline-offset: 0.125rem;
  font-weight: 600;
  font-size: 1rem;
  padding-left: 2.25rem;
}
@media (min-width: 1000px) {
  .table-of-contents__link {
    font-size: 1.1875rem;
  }
}
.table-of-contents__link:hover, .table-of-contents__link:focus {
  text-decoration: underline;
}

.tabs {
  width: 100%;
  padding-bottom: 1.5rem;
}

.tabs__controls {
  display: flex;
}

.tabs__tab-button {
  position: relative;
  padding: 0.375rem 0.625rem;
  border: none;
  background: #005eb8;
  margin-bottom: -0.0625rem;
  font-size: 1.1875rem;
  font-weight: 600;
  cursor: pointer;
  color: white;
  border: 0.0625rem solid transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.tabs__tab-button + .tabs__tab-button {
  margin-left: 0.1875rem;
}
.tabs__tab-button:first-child:after {
  left: 0;
}

.tabs__tab-button[aria-selected=true] {
  background: white;
  color: #231f20;
  outline: 0;
  border-bottom: white solid 1px;
  z-index: 2;
}

.tabs__tab-content {
  position: relative;
  width: 100%;
  padding: 1.5rem;
  background: white;
  border: 0.0625rem solid transparent;
  border-radius: 0;
  border-top-left-radius: 0;
}
.tabs__tab-content p:last-child {
  margin-bottom: 0;
}

.tab__pagination {
  margin-top: 1.5rem;
}

.app {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: white;
  border: 1px solid #005eb8;
  border-radius: 3.125rem;
  padding: 0.25rem 1.25rem;
  text-align: center;
  min-height: 4.375rem;
  line-height: 1;
  font-weight: 600;
}

.app__link--favourite {
  background-color: #005eb8;
  color: white;
}

.app__name {
  padding-top: 0.75rem;
  font-weight: 600;
}
.app__link:hover .app__name, .app__link:focus .app__name {
  text-decoration: underline;
}

.app__toggle {
  display: block;
  cursor: pointer;
  margin: 0.75rem auto 0 auto;
  padding: 0;
  border: 0;
  border-radius: 100%;
  position: absolute;
  margin: 0;
  width: 1.875rem;
  height: 1.875rem;
  top: -0.625rem;
  right: -0.625rem;
}
.app__toggle:hover, .app__toggle:focus, .app__toggle:active {
  border-radius: 100%;
  background: #005eb8;
}

.app__checkbox[type=checkbox] {
  cursor: pointer;
  width: 1.875rem;
  height: 1.875rem;
  border: 0;
  border-radius: 100%;
  display: block;
  margin: 0;
  background-color: #005eb8;
  background-image: url("../imgs/icons/plus-white.svg");
  background-size: 1.25rem 1.25rem;
  background-position: center;
  background-repeat: no-repeat;
  border: 0.125rem solid white;
}
.app__checkbox[type=checkbox]:hover {
  background-color: #007f3b;
  background-image: url("../imgs/icons/tick-white.svg");
  background-size: 1.25rem 1.25rem;
}
.app__checkbox[type=checkbox]:focus {
  background-color: #007f3b;
  background-image: url("../imgs/icons/cross-white.svg");
  outline: 0.125rem solid black;
}

.app__checkbox[type=checkbox]:checked {
  background-repeat: no-repeat;
  background-size: 1.25rem 1.25rem;
  background-color: #007f3b;
  background-image: url("../imgs/icons/tick-white.svg");
  border: 0.125rem solid white;
}
.app__checkbox[type=checkbox]:checked:hover {
  background-color: #d5281b;
  background-image: url("../imgs/icons/cross-white.svg");
  background-size: 1.25rem 1.25rem;
}
.app__checkbox[type=checkbox]:checked:focus {
  background-color: #d5281b;
  background-image: url("../imgs/icons/cross-white.svg");
  outline: 0.125rem solid black;
}

.app__vpn-icon {
  position: absolute;
  z-index: 2;
  left: 6px;
  top: 6px;
  width: 1.25rem;
  height: 1.25rem;
}

.app-group {
  border-top: 0.1875rem solid #4c6272;
}

.app-group__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.app-group__itemset {
  margin-bottom: 1rem;
}

.app-group__section {
  padding: 1rem 0;
  margin-bottom: 0;
}

.app-group__summary {
  margin-top: 1rem;
}

.app-group__sublist {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1000px) {
  .app-group__sublist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
  }
}

.app-group__sublist-item {
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.app-group__anchor {
  text-decoration: none;
  color: #212b32;
}
.app-group__anchor:hover, .app-group__anchor:focus {
  color: #005eb8;
  text-decoration: underline;
}

.app-group__tray {
  margin-top: 0.75rem;
  padding-top: 0.25rem;
  border-top: 0.0625rem solid #768692;
}

.app-list__titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.25rem;
}

.app-list--editing .app-list__empty {
  display: none;
}

.app-list__heading {
  margin: 0;
}

.app-list__set {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1000px) {
  .app-list__set {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
  }
}

.app-list__item {
  margin: 0 0 0.5rem 0;
  padding: 0;
  transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.app-list__item[draggable=true] > * {
  cursor: move;
}
.app-list__item[draggable=true]:active > * {
  border: 0.1875rem solid #003087;
}
@media (min-width: 850px) {
  .app-list__item {
    margin: 0;
  }
}

.app-list__item--drag-over {
  opacity: 0.5;
}

.app-list__edit-button {
  padding-right: 2.1875rem;
  background-image: url("../imgs/icons/cog.svg");
  background-position: center right 0.75rem;
  background-repeat: no-repeat;
  background-size: 0.875rem 0.875rem;
  font-size: 1.1875rem;
}

.app-links {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.app-links__item {
  margin-left: 0.5rem;
}

.app-links__prefix {
  font-size: 1.1875rem;
  font-weight: 600;
  margin-right: 0.25rem;
}

.app-links__link {
  text-decoration: none;
  border: 0.1875rem solid transparent;
  border-radius: 100%;
}
.app-links__link:hover, .app-links__link:focus {
  text-decoration: none;
}

.app-links__icon {
  width: 2rem;
  height: 2rem;
}

.card-organisation {
  background-color: white;
  padding: 1.125rem;
  height: 100%;
}

.card-organisation__title {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.card-organisation__roles {
  margin-bottom: 0.6875rem;
}
.card-organisation__roles:last-child {
  margin-bottom: 0;
}

.card-organisation__staff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1875rem;
  margin-bottom: 0.6875rem;
}
.card-organisation__staff:last-child {
  margin-bottom: 0;
}
.card-organisation__staff:last-child img {
  margin: 0;
}
.card-organisation__staff img {
  width: 6.4375rem;
  margin-left: 1rem;
}

.card-organisation__staff--image {
  margin-bottom: 1.5rem;
}

.card-organisation__role {
  font-size: 1.1875rem;
  margin: 0;
  font-weight: bold;
}

.card-column-content {
  background-color: white;
  padding: 2.1875rem 1.875rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-template-rows: 1fr;
  column-gap: 4.1875rem;
  row-gap: 1.875rem;
}
@media (min-width: 1000px) {
  .card-column-content {
    grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
  }
}

.card-column-content--1 {
  --columns: 1;
}

.card-column-content--2 {
  --columns: 2;
}

.card-column-content--3 {
  --columns: 3;
}

.card-column-content ul {
  margin: 0;
}
.card-column-content ul li:not(:last-child) {
  margin-bottom: 2rem;
}

.counter {
  border-radius: 0.1875rem;
  background-color: #212b32;
  padding: 0.375rem 0.5rem;
  line-height: 1;
  font-size: 1rem;
  color: white;
  font-weight: 600;
}
@media (min-width: 1000px) {
  .counter {
    margin-left: -0.0625rem;
  }
}

.counter--show {
  display: inline-block;
}

.counter--primary {
  background-color: #d5281b;
}

.counter--secondary {
  background-color: #005eb8;
}

.counter--mobile {
  margin-right: -2rem;
  margin-left: 0.5rem;
  font-size: 0.875rem;
}

.container-row__item:not(:last-child) .section {
  margin-bottom: 2.8125rem;
}

.comments-item {
  position: relative;
  font-size: 1rem;
}

.comments-item__bubble {
  background: white;
  border-radius: 0.1875rem;
  padding: 0.5rem 1rem;
}
.comments-item__bubble:before {
  position: absolute;
  top: 0.6875rem;
  left: -0.5rem;
  content: "";
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-right: 0.5rem solid white;
  border-bottom: 0.5rem solid transparent;
}

.comments-item__text,
.comments-item__date {
  margin-bottom: 0;
}

.comments-item__author {
  font-weight: 600;
  margin-bottom: 0;
  font-size: 1rem;
  color: #63717c;
  display: block;
}

.comments-item .comments-item__text {
  margin-bottom: 0;
}

.comments-item .comments-item__date {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.comments-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  padding: 0 0.9375rem;
}
.comments-item__meta p {
  font-size: 0.875rem;
}

.comments-item__thread {
  position: relative;
  margin-left: 1.875rem;
  margin-top: 0.625rem;
}

.comments-item__action {
  margin-left: 0.375rem;
}

.comments-item__actions img {
  max-height: 0.9375rem;
  margin-right: 0.1875rem;
  padding-bottom: 0.1875rem;
}

.comments-item__action a {
  line-height: 1;
  color: #005eb8;
  text-decoration: none;
}
.comments-item__action a:hover, .comments-item__action a:focus {
  text-decoration: underline;
}

.comments-item__reply {
  margin-top: 1rem;
}

.comments-form + .comments-group {
  margin-top: 0.5rem;
}

.comments-group + .comments-form {
  margin-top: 0.5rem;
}

.comments-group__title {
  background: #003087;
  color: white;
  padding: 0.75rem;
  font-size: 1.125rem;
  margin-bottom: 0;
}
@media (min-width: 1000px) {
  .comments-group__title {
    font-size: 1.25rem;
  }
}

.comments-group__preface p {
  font-size: 1.125rem;
}
@media (min-width: 1000px) {
  .comments-group__preface p {
    font-size: 1.25rem;
  }
}

.comments-group__list {
  list-style-type: none;
  margin: 0 0 1.25rem 0;
  padding: 0;
}

.comments-group__item + .comments-group__item {
  margin-top: 1.875rem;
}

.card-wide-contact {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #212b32;
  background-color: white;
  position: relative;
  padding: 1.5rem;
  border: unset;
  border-bottom: 0.125rem solid #005eb8;
}
@media (min-width: 400px) {
  .card-wide-contact {
    padding: 2.25rem;
  }
}
@media (min-width: 37.5rem) {
  .card-wide-contact {
    flex-direction: row;
  }
}
.card-wide-contact:focus {
  color: #212b32;
}

.card-wide-contact__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 37.5rem) {
  .card-wide-contact__title {
    font-size: 1.625rem;
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 1000px) {
  .card-wide-contact__title {
    font-size: 2.375rem;
  }
}
@media (min-width: 1200px) {
  .card-wide-contact__title {
    font-size: 2.625rem;
  }
}

.card-wide-contact__description {
  margin-bottom: 0.75rem;
}

.card-wide-contact__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-grow: 1;
}

.card-wide-contact--with-footer .card-wide-contact__content {
  padding-bottom: 0;
}
.card-wide-contact--with-footer .card-wide-contact__title {
  margin-bottom: 0;
}
.card-wide-contact--with-footer .card-wide-contact__footer {
  z-index: 2;
  padding-top: 1rem;
  background-color: white;
}
.card-wide-contact--with-footer .card-wide-contact__meta {
  margin-bottom: 0;
  font-size: 1rem;
}
@media (min-width: 1000px) {
  .card-wide-contact--with-footer .card-wide-contact__meta {
    font-size: 1.1875rem;
  }
}
.card-wide-contact--with-footer .card-wide-contact__meta-title {
  font-weight: 600;
  display: inline;
  flex-shrink: 0;
}
.card-wide-contact--with-footer .card-wide-contact__meta-value {
  display: inline;
}
.card-wide-contact--with-footer .card-wide-contact__meta-value address {
  display: unset;
  font-style: unset;
}
.card-wide-contact--with-footer .card-wide-contact__meta a {
  display: inline;
  text-decoration: underline;
  color: #005eb8;
}
.card-wide-contact--with-footer .card-wide-contact__meta a:hover {
  text-decoration: underline;
  color: #003087;
  text-decoration-thickness: 0.1875rem;
}
.card-wide-contact--with-footer .card-wide-contact__meta a:focus {
  background-color: #fae100;
  color: #212b32;
}
.card-wide-contact--with-footer .card-wide-contact__meta-item {
  display: flex;
  flex-direction: row;
  margin-top: 0.5rem;
  align-items: baseline;
}
.card-wide-contact--with-footer .card-wide-contact__meta-item:first-child {
  margin-top: 0;
}
.card-wide-contact--with-footer .card-wide-contact__meta-icon {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.75rem;
}
.card-wide-contact--with-footer .card-wide-contact__buttons {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.card-wide-contact--with-footer .card-wide-contact__buttons .button {
  width: fit-content;
  margin-bottom: unset;
}

.page-template-tpl-contact .card-wide-contact__description {
  margin-bottom: 1.25rem;
}
.page-template-tpl-contact .card-wide-contact__meta-item {
  margin-top: 1.25rem;
}
.page-template-tpl-contact .card-wide-contact__meta-item:first-child {
  margin-top: 0;
}

.department-meta {
  background: white;
  padding: 0.75rem;
}
@media (min-width: 850px) {
  .department-meta {
    padding: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .department-meta {
    padding: 2.25rem;
  }
}

@media (min-width: 850px) {
  .department-meta__contact {
    display: flex;
    margin-right: -1.5rem;
  }
}

.department-meta__link-item {
  margin-bottom: 0.25rem;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.25rem;
  padding: 0 1.5rem 0 1.875rem;
}
@media (min-width: 850px) {
  .department-meta__link-item {
    margin-bottom: 0;
    padding: 0.5rem 1.5rem 0.5rem 2.75rem;
    background-size: 2.125rem;
  }
}

.department-meta__link-item--email {
  background-image: url("../imgs/icons/email.svg");
}

.department-meta__link-item--telephone {
  background-image: url("../imgs/icons/telephone.svg");
}

.department-meta__divider {
  background-color: rgba(65, 182, 230, 0.3);
  height: 0.0625rem;
  margin: 0.75rem 0;
}
@media (min-width: 850px) {
  .department-meta__divider {
    margin: 1.25rem 0;
  }
}

@media (min-width: 420px) {
  .department-meta__staff {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
  }
}
@media (min-width: 850px) {
  .department-meta__staff {
    margin-left: -1.5rem;
  }
}
@media (min-width: 1200px) {
  .department-meta__staff {
    margin-left: -2rem;
  }
}

.department-meta__staff-group {
  margin-bottom: 0.75rem;
}
.department-meta__staff-group:last-child {
  margin-bottom: 0;
}
@media (min-width: 420px) {
  .department-meta__staff-group {
    width: 50%;
    padding-left: 0.75rem;
  }
  .department-meta__staff-group:last-child {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 850px) {
  .department-meta__staff-group {
    width: 33%;
    padding-left: 1.5rem;
  }
}
@media (min-width: 1000px) {
  .department-meta__staff-group {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .department-meta__staff-group {
    padding-left: 2rem;
  }
}

.department-meta__staff-group--columns {
  width: 100%;
}
.department-meta__staff-group--columns .department-meta__staff-list {
  columns: 2;
}
@media (min-width: 850px) {
  .department-meta__staff-group--columns .department-meta__staff-list {
    columns: 3;
  }
}
@media (min-width: 1000px) {
  .department-meta__staff-group--columns {
    width: 50%;
  }
  .department-meta__staff-group--columns .department-meta__staff-list {
    columns: 2;
  }
}
@media (min-width: 1200px) {
  .department-meta__staff-group--columns {
    width: 50%;
  }
  .department-meta__staff-group--columns .department-meta__staff-list {
    columns: 3;
  }
}

.department-meta__staff-heading {
  font-size: 1.1875rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.department-meta__staff-list {
  font-size: 1rem;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.event {
  background: white;
  border-radius: 0.1875rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 850px) {
  .event {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1000px) {
  .event {
    padding: 2.25rem 2.25rem;
    margin-bottom: 2.25rem;
  }
}

.event__date {
  display: inline-block;
  border-radius: 0.1875rem;
  color: #231f20;
  font-weight: 400;
  font-size: 1rem;
  background: #a0dbf3;
  padding: 0.125rem 1rem;
  margin-bottom: 0.25rem;
}

.event__content {
  flex: 1 0;
  border-bottom: 0.0625rem solid #b2e1f5;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.event__title {
  line-height: 1.2;
}

.event__title a:hover, .event__title a:focus {
  text-decoration: underline;
}

.event__meta {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
}
@media (min-width: 1000px) {
  .event__meta {
    font-size: 1.1875rem;
  }
}

.event__meta--extra {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 0.0625rem solid #b2e1f5;
}

.event__meta--extra__button {
  margin-top: 0.625rem;
}
.event__meta--extra__button .button {
  margin: 0.625rem 0;
}

.event__meta-title {
  display: inline-block;
  font-weight: 600;
}

.event__passed-message p {
  margin: 0;
  font-weight: 600;
}

.event__actions {
  padding-top: 1rem;
}
@media (min-width: 1200px) {
  .event__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.event__action {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .event__action {
    width: auto;
  }
}

.event__action .button {
  margin-bottom: 0.5rem;
  display: block;
}
@media (min-width: 1200px) {
  .event__action .button {
    display: inline-block;
    margin: 0;
  }
}

.featured-card-group__container {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1000px) {
  .featured-card-group__container {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1.5rem;
  }
}

.featured-card-group__item {
  margin-bottom: 1.5rem;
}
.featured-card-group__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1000px) {
  .featured-card-group__item:last-child {
    margin-bottom: 1.5rem;
  }
}

.featured-card-group__item {
  width: 100%;
}
@media (min-width: 1000px) {
  .featured-card-group__item {
    width: 50%;
    padding-left: 1.5rem;
  }
  .featured-card-group__item:first-child {
    width: 100%;
  }
}

.form-input {
  width: 100%;
  margin: 0;
}
.form-input label {
  display: block;
  margin: 0.25rem;
}
.form-input input[type=text] {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  padding: 0 0.75rem;
  background-color: white;
  font-family: "Frutiger W01", Arial, sans-serif;
  font-size: 1rem;
  border-radius: 0.1875rem;
  border: 0.0625rem solid #212b32;
  min-height: 2.625rem;
}
@media (min-width: 1000px) {
  .form-input input[type=text] {
    font-size: 1.1875rem;
    min-height: 3.375rem;
  }
}

.meta-data {
  border-top: 0.0625rem solid white;
  border-bottom: 0.0625rem solid white;
  padding: 1.5rem 0;
}
@media (min-width: 850px) {
  .meta-data {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
}

.meta-data__row {
  margin-bottom: 1rem;
}
.meta-data__row:last-child {
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .meta-data__row {
    width: 44%;
    margin: 0 3rem 1.5rem 0;
  }
}

.newsgroup {
  background-color: #005eb8;
  padding: 1.5rem 0;
}
@media (min-width: 1000px) {
  .newsgroup {
    padding: 3rem 0;
  }
}
.newsgroup .card-article__title > a {
  text-decoration-color: #00a9ce;
  text-underline-offset: 0.25rem;
}

.newsgroup--light {
  background-color: #e8edee;
  color: #212b32;
}
.newsgroup--light .newsgroup__heading {
  color: #212b32;
}
.newsgroup--light .newsgroup__description {
  color: #212b32;
}

.newsgroup__heading {
  color: white;
  font-size: 1.5rem;
}
@media (min-width: 1000px) {
  .newsgroup__heading {
    font-size: 1.75rem;
  }
}
@media (min-width: 1200px) {
  .newsgroup__heading {
    font-size: 2.375rem;
  }
}

.newsgroup__description {
  color: white;
}

.newsgroup__inner {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1.5rem;
}

.newsgroup__content {
  display: flex;
  flex-wrap: wrap;
  padding-left: 1.5rem;
  margin-left: -1.5rem;
  flex: 1 0;
}

.newsgroup__item {
  display: flex;
  width: 100%;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
@media (min-width: 850px) {
  .newsgroup__item {
    width: 33.33333%;
  }
}

.newsgroup__item--slim {
  border-top: 0.0625rem solid #41b6e6;
  margin: 0;
}

.newsgroup__item--featured {
  width: 100%;
}

.newsgroup__sidebar {
  width: 100%;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.newsgroup__sidebar .newsgroup__item {
  padding-left: 0;
  width: 100%;
}
@media (min-width: 1000px) {
  .newsgroup__sidebar {
    margin-left: 0;
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .newsgroup__sidebar {
    width: 30%;
  }
}

@media (min-width: 1000px) {
  .newsgroup--no-sidebar .newsgroup__item {
    width: 25%;
  }
}
.newsgroup--no-sidebar .newsgroup__item--featured {
  width: 100%;
}
@media (min-width: 1000px) {
  .newsgroup--no-sidebar .newsgroup__item--featured {
    max-width: 75%;
  }
}

.newsgroup--with-filters .newsgroup__header {
  position: relative;
}

.newsgroup--with-filters .newsgroup__heading {
  padding-right: 12.5rem;
}

.newsgroup--with-filters .newsgroup__description {
  display: none;
}

.newsgroup__filters__well {
  display: block;
  background: white;
}

.newsgroup__filters--minimised .newsgroup__filters__well {
  display: none;
}

.newsgroup__filters__toggle {
  margin-left: auto;
  margin-right: 0;
  display: block;
  background: white;
  border: 0;
  border-radius: 0.1875rem;
  background-image: url("../imgs/icons/filter.svg");
  background-position: top 1.25rem right 0.75rem;
  background-size: 0.75rem;
  background-repeat: no-repeat;
  padding: 0.625rem 2.125rem 0.625rem 0.75rem;
  font-size: 1.1875rem;
  text-decoration: underline;
  color: #005eb8;
  cursor: pointer;
}
.newsgroup__filters__toggle:focus {
  outline: #005eb8 0.125rem solid;
}

.newsgroup__filters--minimised .newsgroup__filters__toggle {
  border-bottom: 0;
  margin-bottom: 1.25rem;
}

.newsgroup__filters__well {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.1875rem;
}
@media (min-width: 1000px) {
  .newsgroup__filters__well {
    padding: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .newsgroup__filters__well {
    padding: 3rem 2.25rem;
  }
}

.newsgroup--with-filters {
  padding-top: 0;
}
.newsgroup--with-filters .filter-group__container {
  margin-bottom: 0;
}
.newsgroup--with-filters .filter-group__item label {
  margin-bottom: 0.25rem;
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  .newsgroup--with-filters .filter-group__form {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
  }
  .newsgroup--with-filters .filter-group__item {
    flex: 1;
    padding-left: 1rem;
  }
  .newsgroup--with-filters .filter-group__controls {
    width: 100%;
  }
}

.opel-status {
  display: block;
  width: 100%;
  border-radius: 0.1875rem;
  background-color: #007f3b;
  padding: 0.375rem 0.5rem;
  color: white;
  text-decoration: none;
  text-align: center;
}
.opel-status:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.1875rem;
}

.opel-status__label {
  font-size: 1rem;
}
@media (min-width: 1000px) {
  .opel-status__label {
    font-size: 1.1875rem;
  }
}

.opel-status--red {
  background-color: #d5281b;
}
.opel-status--red:hover {
  background-color: #a82015;
}
.opel-status--red:hover:focus {
  color: white;
}

.opel-status--amber {
  background-color: #ffb81c;
  color: #000000;
}
.opel-status--amber:hover {
  background-color: #ffc84f;
}

.opel-status--green {
  background-color: #007f3b;
}
.opel-status--green:hover {
  background-color: #004c23;
}
.opel-status--green:hover:focus {
  color: white;
}

.opel-status--black {
  background-color: #000000;
}
.opel-status--black:hover {
  background-color: #425563;
}
.opel-status--black:hover:focus {
  color: white;
}

.popular-links {
  padding: 2rem 0;
}
@media (min-width: 1000px) {
  .popular-links {
    padding: 3rem 0;
  }
}
@media (min-width: 1200px) {
  .popular-links {
    padding: 4rem 0;
  }
}
.popular-links--primary {
  background-color: #005eb8;
  color: white;
}
.popular-links--secondary {
  background-color: #003087;
  color: white;
}

.popular-links__heading {
  margin: 0 0 0.75rem 0;
}
@media (min-width: 1000px) {
  .popular-links__heading {
    font-size: 1.75rem;
  }
}
@media (min-width: 1200px) {
  .popular-links__heading {
    font-size: 2.375rem;
  }
}

.popular-links__list {
  box-sizing: border-box;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-left: -0.5rem;
}
@media (min-width: 850px) {
  .popular-links__list {
    margin-left: -0.5rem;
    display: flex;
    flex-wrap: wrap;
  }
}

.popular-links__item {
  padding-left: 0.5rem;
  font-size: 1.1875rem;
  color: white;
  font-weight: 600;
  margin: 0;
  margin-top: -1px;
}
.popular-links__item > a {
  display: block;
  padding: 1rem 0;
  border-top: 0.0625rem solid #41b6e6;
  border-bottom: 0.0625rem solid #41b6e6;
  color: inherit;
}
.popular-links__item > a:focus {
  color: #212b32;
}
@media (min-width: 850px) {
  .popular-links__item {
    font-size: 1.5rem;
    width: 47%;
  }
  .popular-links__item > a {
    padding: 2rem 0;
    height: 100%;
  }
}
@media (min-width: 1000px) {
  .popular-links__item {
    width: 47.3%;
  }
}
@media (min-width: 1200px) {
  .popular-links__item {
    width: 48%;
  }
}
.popular-links__item .card-event {
  height: 100%;
}
.popular-links__item .card-event .card-event__title {
  margin-bottom: 0;
}

.popular-links__tray {
  text-align: right;
  margin-bottom: 0;
  margin-top: 1rem;
}

.popular-links__all {
  color: white;
  text-decoration: underline;
  padding: 0.25rem;
  text-decoration-color: #00a9ce;
  text-underline-offset: 0.1875rem;
}
.popular-links__all[target=_blank]:after {
  margin-left: 0.5rem;
  vertical-align: text-bottom;
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: no-repeat center url("../imgs/icons/target.svg");
}
.popular-links__all[target=_blank]:focus:after {
  background: no-repeat center url("../imgs/icons/target-black.svg");
}

.popular-links--primary .popular-links__list {
  column-gap: 1.25rem;
}
@media (min-width: 850px) {
  .popular-links--primary .popular-links__list {
    column-gap: 2.25rem;
  }
}

.popular-links--secondary .popular-links__list {
  gap: 1.25rem;
}
@media (min-width: 850px) {
  .popular-links--secondary .popular-links__list {
    gap: 2.25rem;
  }
}

.profile-sheet {
  background: white;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 1000px) {
  .profile-sheet {
    padding: 2.5rem;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
}

.profile-sheet__breadcrumbs {
  padding: 1.25rem 0 1.5rem 0;
}
@media (min-width: 1000px) {
  .profile-sheet__breadcrumbs {
    padding-bottom: 4.5rem;
  }
}

.profile-sheet__header {
  display: grid;
  grid-template-columns: 1fr minmax(174px, 215px);
}

.profile-sheet__name {
  color: #212b32;
  font-size: 1.625rem;
  margin-bottom: 0;
  line-height: normal;
}
@media (min-width: 850px) {
  .profile-sheet__name {
    font-size: 1.75rem;
  }
}
@media (min-width: 1200px) {
  .profile-sheet__name {
    font-size: 3rem;
  }
}

.profile-sheet__title {
  font-weight: 600;
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .profile-sheet__title {
    font-size: 1.5rem;
  }
}

.profile-sheet__department {
  font-size: 0.875rem;
  display: inline-block;
  border-radius: 0.1875rem;
  background-color: #f0f4f5;
  padding: 0.25rem 0.5rem;
  margin-top: 0.5rem;
}
@media (min-width: 850px) {
  .profile-sheet__department {
    font-size: 1rem;
  }
}

.profile-sheet__image {
  width: 100%;
  margin-right: 0;
}

.profile-sheet__meta-row {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid #d8dde0;
  padding-top: 1rem;
  margin: 1rem 0;
  gap: 1.25rem;
}
@media (min-width: 400px) {
  .profile-sheet__meta-row {
    grid-template-columns: 1fr 1fr;
    padding-top: 1.25rem;
    margin: 1.5rem 0;
  }
}
@media (min-width: 1000px) {
  .profile-sheet__meta-row {
    padding-top: 3rem;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
  }
}

.profile-sheet__meta-columns {
  grid-column: span 1;
  margin: 0 0 0.3125rem;
}

.profile-sheet__meta-columns--1 {
  grid-column: span 3;
  margin: 0 0 0.3125rem;
}
.profile-sheet__meta-columns--1 ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 3rem;
}
@media (min-width: 400px) {
  .profile-sheet__meta-columns--1 ul {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .profile-sheet__meta-columns--1 ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.profile-sheet__meta-term {
  font-weight: 400;
  font-size: 1.1875rem;
  margin-bottom: 0;
}

.profile-sheet__meta-details {
  font-size: 1rem;
}
.profile-sheet__meta-details a {
  color: #005eb8;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
}
.profile-sheet__meta-details a:hover {
  text-decoration: underline;
}
.profile-sheet__meta-details a:focus {
  color: #000;
}
.profile-sheet__meta-details ul {
  margin-bottom: 0;
}
.profile-sheet__meta-details p:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .profile-sheet__meta-details {
    font-size: 1.1875rem;
  }
}

.profile-sheet__footer {
  margin-top: 1.5rem;
  border-top: 1px solid #d8dde0;
  padding-top: 1rem;
}
@media (min-width: 400px) {
  .profile-sheet__footer {
    grid-template-columns: 1fr 1fr;
    padding-top: 1.25rem;
  }
}
@media (min-width: 1000px) {
  .profile-sheet__footer {
    padding-top: 3rem;
  }
}

.profile-sheet__footer-description {
  font-size: 1rem;
}
@media (min-width: 850px) {
  .profile-sheet__footer-description {
    font-size: 1.1875rem;
  }
}

.profile-sheet__meta-row--row-1 .profile-sheet__meta-term {
  font-weight: 600;
}
.profile-sheet__meta-row--row-1 .profile-sheet__meta-details {
  font-weight: 600;
}

.promoted-pages {
  background-color: #e8edee;
  padding: 1.5rem 0;
}

.promoted-pages__heading {
  margin: 0 0 0.75rem 0;
}

.promoted-pages__list {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
  list-style: none;
  margin: 0 0 0 -1.25rem;
  padding: 0;
}

.promoted-pages__list-item {
  padding: 0;
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  width: 100%;
}
@media (min-width: 850px) {
  .promoted-pages__list-item {
    width: 50%;
  }
}
@media (min-width: 1000px) {
  .promoted-pages__list-item {
    width: 25%;
  }
}

.promoted-page-item {
  display: block;
  position: relative;
  height: 100%;
  padding: 1rem 3rem 3rem 1rem;
  border-radius: 0.1875rem;
  font-size: 1.1875rem;
  font-weight: 600;
  border-radius: 0.1875rem;
  line-height: 1.2;
  text-decoration: none;
  color: white;
  background: #003087 url("../imgs/icons/chevron-right-white.svg") no-repeat;
  background-position: top 1.25rem right 0.625rem;
  background-size: 1rem 1rem;
}
@media (min-width: 850px) {
  .promoted-page-item {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .promoted-page-item {
    min-height: 11.25rem;
  }
}
.promoted-page-item:hover, .promoted-page-item:focus {
  background-image: url("../imgs/icons/chevron-right-white.svg");
  background-color: #005eb8;
  color: white;
  text-decoration: underline;
}
.promoted-page-item[target=_blank]:after {
  vertical-align: text-bottom;
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: no-repeat center url("../imgs/icons/target.svg");
}

.search-result {
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid #D8D8D8;
  margin-bottom: 1.25rem;
}
.search-result:last-child {
  margin: 0;
}

.search-result__title {
  margin-bottom: 0;
}
.search-result__title a {
  text-decoration: none;
}
.search-result__title a:hover {
  text-decoration: underline;
}

.search-result__excerpt {
  margin-bottom: 0;
}

.section:not(:last-child) {
  margin-bottom: 2.8125rem;
}

.section__heading {
  text-align: left;
  padding: 1rem 0 0.75rem 0;
}
@media (min-width: 850px) {
  .section__heading {
    margin-bottom: 1.5rem;
    padding: 0;
    font-size: 2rem;
  }
}

.section__heading--white {
  color: #fff;
}

.section__footer {
  margin-top: 0.75rem;
  display: block;
  text-align: center;
}
@media (min-width: 850px) {
  .section__footer {
    margin-top: 1.25rem;
  }
}

.section__onward-link {
  display: inline-block;
  font-size: 1rem;
}
@media (min-width: 850px) {
  .section__onward-link {
    font-size: 1.5rem;
  }
}

.section--heading-center {
  text-align: center;
}

.section__content--center {
  text-align: center;
}

.tweet {
  position: relative;
  margin-left: 0.625rem;
  background-color: #003087;
  background-image: url("../imgs/icons/twitter.svg");
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
  background-position: top 0.875rem left 1.25rem;
  padding: 1rem 1rem 1rem 4rem;
  color: white;
  border-radius: 1rem;
  line-height: 1.1;
  font-size: 1.1875rem;
}
.tweet:before {
  position: absolute;
  top: 1.25rem;
  left: -0.625rem;
  content: "";
  width: 0;
  height: 0;
  border-top: 0.625rem solid transparent;
  border-right: 0.625rem solid #003087;
  border-bottom: 0.625rem solid transparent;
}
.tweet a {
  color: #ffeb3b;
}
@media (min-width: 850px) {
  .tweet {
    background-size: 2rem 2rem;
    background-position: top 1.25rem left 1.25rem;
    padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  }
  .tweet:before {
    top: 1.5rem;
  }
}

.tweet-group {
  background-color: #0072ce;
  padding: 1.5rem 0;
}
@media (min-width: 1000px) {
  .tweet-group {
    padding: 2.25rem 0;
  }
}
@media (min-width: 1200px) {
  .tweet-group {
    padding: 3rem 0;
  }
}

.tweet-group__heading {
  color: white;
  font-size: 1.5rem;
}
@media (min-width: 1000px) {
  .tweet-group__heading {
    font-size: 1.75rem;
  }
}
.tweet-group__heading > a {
  color: #ffeb3b;
}

.tweet-group__list {
  box-sizing: border-box;
  list-style-type: none;
  margin: 0;
  margin-left: -1.5rem;
  padding: 0;
}
@media (min-width: 850px) {
  .tweet-group__list {
    display: flex;
    flex-wrap: wrap;
  }
}

.tweet-group__item {
  padding: 0 0 0 1.5rem;
  margin: 0;
}
@media (min-width: 850px) {
  .tweet-group__item {
    width: 50%;
  }
}

.vcard {
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 0.5rem;
  border-radius: 0.1875rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}
@media (min-width: 850px) {
  .vcard {
    padding: 0.75rem;
  }
}

.vcard__image {
  width: 5.3125rem;
  position: relative;
  margin-right: 0.5rem;
}
.vcard__image:before {
  padding-top: 100%;
  display: block;
  content: "";
}
@media (min-width: 850px) {
  .vcard__image {
    margin-right: 1rem;
  }
}

.vcard__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
}

.vcard__profile {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: normal;
  font-size: 1rem;
}
@media (min-width: 850px) {
  .vcard__profile {
    height: 100%;
    font-size: 1.1875rem;
  }
}

.vcard__name {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0;
}
.vcard__name a:hover {
  text-decoration: underline;
}

.vcard__title {
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 850px) {
  .vcard__title {
    margin-bottom: 1.25rem;
  }
}

.vcard__department {
  font-size: 0.875rem;
  display: inline-block;
  border-radius: 0.1875rem;
  width: fit-content;
  background-color: #d8dde0;
  padding: 0.25rem 0.5rem;
  margin-top: auto;
  margin-bottom: 0;
}

.vcard__meta {
  list-style-type: none;
  margin-bottom: 1rem;
  padding: 0;
}
@media (min-width: 850px) {
  .vcard__meta {
    margin-bottom: 1.25rem;
  }
}

.vcard__meta-item {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.25rem 1.25rem;
  padding: 0.25rem 1.5rem 0.25rem 0;
}
.vcard__meta-item a {
  color: #005eb8;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
}
.vcard__meta-item a:focus {
  color: #000;
}

.welcome {
  padding: 1.25rem 0 0.375rem;
}
@media (min-width: 850px) {
  .welcome {
    padding: 2.625rem 0 0.375rem;
  }
}

.welcome__inner {
  display: grid;
  min-height: 18.75rem;
  height: auto;
}
@media (min-width: 850px) {
  .welcome__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.welcome__graphic {
  object-fit: cover;
  height: 100%;
}

.welcome__content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fae100;
  font-size: 1rem;
}
@media (min-width: 850px) {
  .welcome__content-wrapper {
    font-size: 1.1875rem;
  }
}

.welcome__content {
  padding: 1.5rem 1.5rem;
}
@media (min-width: 1000px) {
  .welcome__content {
    padding: 1.5rem 3.4375rem;
  }
}

.welcome__title {
  font-size: 1.625rem;
}
@media (min-width: 1200px) {
  .welcome__title {
    font-size: 2.375rem;
  }
}

.welcome__text {
  padding-bottom: 0.5rem;
}

@media (min-width: 1000px) {
  .welcome__actions {
    display: flex;
    gap: 1rem;
  }
}

.welcome__dismiss {
  display: block;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 0;
  text-decoration: underline;
  font-weight: 600;
  color: #005eb8;
  font-size: 1rem;
  margin: 0.75rem 0 0 0;
}
@media (min-width: 1000px) {
  .welcome__dismiss {
    display: inline-block;
    font-size: 1.1875rem;
    margin: 0 0 0 0.75rem;
  }
}

.content-centre-group {
  width: 100%;
  max-width: 51.875rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #e8edee;
}

.content-centre-group--padded-top {
  padding-top: 2.25rem;
}
@media (min-width: 850px) {
  .content-centre-group--padded-top {
    padding-top: 4rem;
  }
}

.content-centre-group__item {
  margin: 0 0 1.5rem 0;
}
.content-centre-group__item:last-child {
  margin: 0;
}

.quick-links__heading {
  margin: 0 0 0.5rem 0;
}

.quick-links__list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.quick-links__item {
  margin-bottom: 1rem;
}

.page-title-banner {
  width: 100%;
  background-image: linear-gradient(to right, #00a9ce 0%, #005eb8 100%);
  position: relative;
  color: white;
  margin-top: -0.75rem;
}
@media (min-width: 850px) {
  .page-title-banner {
    margin-top: unset;
  }
}
.page-title-banner:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  height: 7.625rem;
  background-image: linear-gradient(to bottom, rgb(33, 43, 50) 0%, rgba(33, 43, 50, 0.25) 65%, rgba(33, 43, 50, 0) 100%);
  mix-blend-mode: multiply;
}

.page-title-banner__background {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.page-title-banner__background img {
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
}

.page-title-banner__breadcrumbs {
  position: relative;
  z-index: 1;
}

.page-title-banner__inner {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0;
  margin-top: 15%;
}
@media (min-width: 850px) {
  .page-title-banner__inner {
    padding: 2.25rem 0;
  }
}
@media (min-width: 1000px) {
  .page-title-banner__inner {
    padding: 3rem 0;
  }
}

.page-title-banner__content {
  display: flex;
  flex-wrap: wrap;
}
.page-title-banner__content > :last-child {
  margin-bottom: 0;
}

@media (min-width: 850px) {
  .page-title-banner__text {
    flex: 1 0;
  }
}
@media (min-width: 1000px) {
  .page-title-banner__text {
    max-width: 51.875rem;
  }
}

@media (min-width: 850px) {
  .page-title-banner__image {
    width: 45%;
    margin-left: 5%;
  }
}

.page-title-banner__heading {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: white;
}
@media (min-width: 400px) {
  .page-title-banner__heading {
    font-size: 1.75rem;
  }
}
@media (min-width: 850px) {
  .page-title-banner__heading {
    font-size: 2.375rem;
    line-height: 1.2;
  }
}
@media (min-width: 1200px) {
  .page-title-banner__heading {
    font-size: 3rem;
  }
}

.page-title-banner__excerpt {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 1.1875rem;
  max-width: 51.875rem;
  color: white;
}
@media (min-width: 850px) {
  .page-title-banner__excerpt {
    font-size: 1.5rem;
  }
}

.linked-quote {
  padding: 1.875rem;
  background-color: #2fb0c8;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
@media (min-width: 850px) {
  .linked-quote {
    flex-direction: row;
  }
}

.linked-quote__image {
  max-width: 10rem;
}

.linked-quote__content {
  flex: 1;
}

.linked-quote__quote {
  color: black;
  font-size: 1.375rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.linked-quote__quote:before {
  content: "“";
}
.linked-quote__quote:after {
  content: "”";
}

.linked-quote__link.button {
  margin-bottom: 0;
}

.card-newsletter {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-newsletter__image {
  margin-bottom: 1rem;
}

.card-newsletter__title {
  margin-bottom: 1.25rem;
}

.card-newsletter__excerpt {
  font-size: 1.1875rem;
  margin-bottom: 1.5rem;
}

.card-newsletter__link {
  margin-top: auto;
}
@media (min-width: 850px) {
  .card-newsletter__link {
    width: 100%;
  }
}

.card-newsletter__link.button {
  margin-bottom: unset;
}

.newsletter-articles {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-template-rows: 1fr;
  column-gap: 2.25rem;
  row-gap: 3rem;
}
@media (min-width: 850px) {
  .newsletter-articles {
    grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
  }
}

.newsletter-articles--1 {
  --columns: 1;
}

.newsletter-articles--2 {
  --columns: 2;
}

.action-link--empty .action-link__text {
  color: #4c6272;
  font-weight: 400;
}

.action-link {
  position: relative;
  padding-left: 2.5rem;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 2.25rem;
  text-decoration: none;
}
.action-link:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: url("../imgs/icons/arrow-right-circle-green.svg") no-repeat left top;
  background-size: 2.25rem 2.25rem;
}
.action-link:focus {
  background-color: #ffeb3b;
  color: #212b32;
  box-shadow: 0 -0.125rem #ffeb3b, 0 0.25rem #212b32;
  outline: 0.25rem solid transparent;
  text-decoration: none;
}
.action-link:focus:before {
  background: url("../imgs/icons/arrow-right-circle-black.svg") no-repeat left top;
}

a.action-link {
  color: #005eb8;
}
a.action-link:hover {
  color: #7c2855;
  text-decoration: underline;
}
a.action-link:focus {
  color: #212b32;
  text-decoration: none;
}

.care-card {
  background: white;
  border: 0.0625rem solid #d8dde0;
  position: relative;
  width: 100%;
}

.care-card__heading {
  position: relative;
  padding: 0.75rem 2.25rem;
  background-color: #005eb8;
  color: white;
}
.care-card__heading h2,
.care-card__heading h3,
.care-card__heading h4 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.33333;
  color: white;
}

.care-card__arrow {
  display: block;
  position: absolute;
  height: 1.25rem;
  width: 1.25rem;
  bottom: -0.625rem;
  left: 1.5rem;
  overflow: hidden;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  z-index: 2;
}
.care-card__arrow:before, .care-card__arrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  transform: rotate(45deg);
  border: solid 2rem #005eb8;
}
@media (min-width: 1000px) {
  .care-card__arrow {
    left: 2.25rem;
  }
}

.care-card__content {
  padding: 1.5rem;
}
.care-card__content *:last-child {
  margin-bottom: 0;
}
.care-card__content .block-editor-block-list__layout > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 1000px) {
  .care-card__content {
    padding: 2.25rem;
  }
}
.care-card__content ul li {
  margin-top: 0;
}

.care-card--emergency .care-card__heading {
  background-color: #d5281b;
}
.care-card--emergency .care-card__content {
  background-color: #212b32;
  color: white;
}
.care-card--emergency .care-card__content a {
  color: white;
}
.care-card--emergency .care-card__arrow:before, .care-card--emergency .care-card__arrow::after {
  border-color: #d5281b;
}

.care-card--urgent .care-card__heading {
  background-color: #d5281b;
}
.care-card--urgent .care-card__content {
  background-color: white;
  color: #212b32;
}
.care-card--urgent .care-card__arrow:before, .care-card--urgent .care-card__arrow::after {
  border-color: #d5281b;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.columns > .inner-blocks-wrapper,
.columns > .inner-blocks-wrapper > .block-editor-inner-blocks,
.columns > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,
.columns > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,
.columns > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body,
.columns > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div,
.columns > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div > .acf-block-preview {
  display: contents;
}

.columns__content {
  width: 100%;
}
@media (min-width: 850px) {
  .columns__content {
    width: auto;
    flex: 1 0;
  }
}

.columns__content-item,
.columns__sidebar-item {
  margin: 0 0 1.5rem 0;
}
.columns__content-item:last-child,
.columns__sidebar-item:last-child {
  margin: 0;
}

.columns__sidebar {
  width: 100%;
  margin: 1.5rem 0 0 0;
}
@media (min-width: 850px) {
  .columns__sidebar {
    width: 35%;
    margin: 0 0 0 1.5rem;
  }
}
@media (min-width: 1200px) {
  .columns__sidebar {
    width: 30%;
    margin: 0 0 0 4.6875rem;
  }
}
.acf-block-preview:focus .columns__sidebar {
  border: 0.0625rem dotted #ccc;
}

.columns__sidebar--before {
  margin: 0 0 1.5rem 0;
}
@media (min-width: 850px) {
  .columns__sidebar--before {
    margin: 0 1.5rem 0 0;
  }
}
@media (min-width: 1200px) {
  .columns__sidebar--before {
    margin: 0 4.6875rem 0 0;
  }
}

.contact-details {
  background-color: white;
  border-bottom: 0.0625rem solid #003087;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 850px) {
  .contact-details {
    border-bottom: 0.1875rem solid #003087;
    padding: 1rem;
  }
}
@media (min-width: 1000px) {
  .contact-details {
    padding: 1.5rem;
  }
}

.contact-details__image {
  max-width: 9.375rem;
  margin-left: 1.25rem;
}

.contact-details__image {
  max-width: 9.375rem;
  margin-right: 1.5rem;
}

.contact-details__title {
  color: #212b32;
  font-size: 1.625rem;
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .contact-details__title {
    font-size: 1.75rem;
  }
}

.contact-details__description {
  margin-bottom: 1rem;
}
@media (min-width: 850px) {
  .contact-details__description {
    margin-bottom: 2.25rem;
  }
}

.contact-details__item {
  margin-bottom: 1.25rem;
}
.contact-details__item:last-child {
  margin-bottom: 0;
}

.contact-details__item--button {
  margin-top: 1.5rem;
}
.contact-details__item--button .button {
  margin-bottom: 0;
}

/**
 * Component: Contact Detail
 */
.contact-detail {
  display: flex;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  flex-direction: column;
  align-items: flex-start;
}
.contact-detail a {
  color: #005eb8;
  text-decoration: underline;
}
.contact-detail a:hover {
  text-decoration: none;
}
.contact-detail:last-child {
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .contact-detail {
    font-size: 1.1875rem;
    flex-direction: row;
    align-items: center;
  }
}

.contact-detail__icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.25rem;
}
@media (min-width: 1000px) {
  .contact-detail__icon {
    width: 1.5625rem;
    height: 1.5625rem;
    margin-right: 0.5rem;
  }
}

.contents-list__list {
  padding: 0;
  list-style: none;
}

.contents-list__current {
  font-weight: 600;
}

.contents-list__item {
  padding: 0 0 0 2.25rem;
  margin-bottom: 0.5rem;
  background: url("../imgs/icons/dash.svg") left 0.875rem no-repeat;
  background-size: 1rem 1rem;
}

.details > .inner-blocks-wrapper,
.details > .inner-blocks-wrapper > .block-editor-inner-blocks,
.details > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,
.details > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,
.details > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body,
.details > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div,
.details > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div > .acf-block-preview {
  display: contents;
}

.details__button {
  position: relative;
  display: block;
  text-decoration: underline;
  color: #005eb8;
  cursor: pointer;
  font-size: 1.1875rem;
  padding: 0.25rem 0.25rem 0.25rem 1.5rem;
  background-color: transparent;
  border: 0;
}
.details__button:before {
  content: "";
  display: block;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  border-width: 0.75rem 0.4375rem 0 0.4375rem;
  border-top-color: inherit;
}
.details__button:hover {
  color: #7c2855;
  text-decoration: none;
}
.details__button:focus {
  background-color: #ffeb3b;
  box-shadow: 0 0.25rem 0 #212b32;
  color: #212b32;
  outline: 0.25rem solid transparent;
  text-decoration: none;
}
@media (min-width: 850px) {
  .details__button {
    font-size: 1.1875rem;
  }
}
.details__button p {
  margin: 0;
}

.details--minimised {
  border-bottom-width: 0.0625rem;
}
.details--minimised .details__button:before {
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  border-width: 0.4375rem 0 0.4375rem 0.75rem;
  border-left-color: inherit;
}
.details--minimised .details__content {
  display: none;
}

.details__content {
  margin-top: 0.5rem;
  padding: 1rem 1rem 1rem 1.5rem;
  border-left: 0.25rem solid #d8dde0;
}
.details__content p:last-child,
.details__content ul:last-child,
.details__content ol:last-child {
  margin: 0;
}

.do-dont {
  width: 100%;
  padding-top: 1rem;
}

.do-dont__tick-list,
.do-dont__cross-list {
  background-color: white;
  border: 0.0625rem solid #e8edee;
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin-bottom: 2.875rem;
}
.do-dont__cross-list {
  margin-bottom: 0;
}

.do-dont__title {
  position: relative;
  top: -1rem;
  left: -1.5625rem;
  display: inline-block;
  margin: 0;
  padding: 0.75rem 1.5rem;
  background-color: #005eb8;
  color: white;
  font-size: 1.1875rem;
  font-weight: 600;
}
@media (min-width: 850px) {
  .do-dont__title {
    font-size: 1.5rem;
  }
}

.do-dont__list {
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.do-dont__list li {
  background-image: url("../imgs/icons/tick.svg");
  background-repeat: no-repeat;
  background-size: 2.125rem 2.125rem;
  background-position: 0% 50%;
  padding-left: 3rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.do-dont__list li > * {
  margin: 0;
}
.do-dont__list li:last-child {
  margin-bottom: 0;
}

.do-dont__list--cross li {
  background-image: url("../imgs/icons/cross.svg");
}

.expander {
  background-color: #fff;
  border: 0.0625rem solid #d8dde0;
  border-bottom-width: 0.25rem;
  padding: 1rem;
}
.expander > .inner-blocks-wrapper,
.expander > .inner-blocks-wrapper > .block-editor-inner-blocks,
.expander > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,
.expander > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,
.expander > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body,
.expander > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div,
.expander > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div > .acf-block-preview {
  display: contents;
}

.expander__button {
  display: block;
  text-decoration: underline;
  text-align: left;
  color: #005eb8;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.75rem 0.25rem 0.75rem 2.25rem;
  background: #fff url("../imgs/icons/nhs-minus.svg") no-repeat left;
  background-size: 2rem 2rem;
  border: 0;
}
.expander__button:hover {
  color: #7c2855;
  text-decoration: none;
}
.expander__button:focus {
  background: #ffeb3b url("../imgs/icons/nhs-minus-black.svg") no-repeat left;
  background-size: 2rem 2rem;
  text-decoration: underline;
  box-shadow: 0 0 #ffeb3b, 0 0.1875rem #231f20;
  color: #231f20;
}
@media (min-width: 850px) {
  .expander__button {
    font-size: 1.1875rem;
  }
}
.expander__button p {
  margin: 0;
}

.expander--minimised {
  border-bottom-width: 0.0625rem;
}
.expander--minimised .expander__button {
  background: url("../imgs/icons/nhs-plus.svg") no-repeat left;
  background-size: 2rem 2rem;
}
.expander--minimised .expander__button:focus {
  background: #ffeb3b url("../imgs/icons/nhs-plus-black.svg") no-repeat left;
  background-size: 2rem 2rem;
  text-decoration: underline;
  box-shadow: 0 0 #ffeb3b, 0 0.1875rem #231f20;
  color: #231f20;
}
.expander--minimised .expander__content {
  display: none;
}

.expander__content {
  padding-top: 0.75rem;
}
.expander__content p:last-child,
.expander__content ul:last-child,
.expander__content ol:last-child {
  margin: 0;
}

.file__link {
  position: relative;
  padding-left: 2.5rem;
  background-image: url("../imgs/icons/file.svg");
  background-repeat: no-repeat;
  background-position: left center;
  font-weight: 600;
}
.file__link:hover, .file__link:focus {
  text-decoration: none;
}

.file--empty .file__link {
  color: #4c6272;
}

.inset-text {
  border-left: 0.5rem solid #005eb8;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 850px) {
  .inset-text {
    padding: 1.5rem;
  }
}
.inset-text > .inner-blocks-wrapper,
.inset-text > .inner-blocks-wrapper > .block-editor-inner-blocks,
.inset-text > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout,
.inset-text > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,
.inset-text > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body,
.inset-text > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div,
.inset-text > .inner-blocks-wrapper > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .acf-block-body > div > .acf-block-preview {
  display: contents;
}

.inset-text__inner {
  margin: 0;
}
.inset-text__inner p:last-child {
  margin-bottom: 0;
}

.related-content__title {
  margin-bottom: 0;
  border-bottom: 0.125rem solid #aeb7bd;
  padding-bottom: 0.5rem;
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  .related-content__title {
    font-size: 1.5rem;
  }
}

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

.related-content__item {
  border-bottom: 0.0625rem solid #aeb7bd;
}

.related-content__link {
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 2.25rem 0.5rem 0;
  background-image: url("../imgs/icons/chevron-right.svg");
  background-size: 0.75rem 0.75rem;
  background-repeat: no-repeat;
  background-position: right top 1rem;
  width: 100%;
}
.related-content__link:hover {
  text-decoration: underline;
}

.panel {
  background-color: white;
  padding: 1.25rem;
  border-left: 0.25rem solid #768692;
}
@media (min-width: 400px) {
  .panel {
    padding: 1.5rem;
  }
}
.panel *:last-child {
  margin-bottom: 0;
}
.panel li {
  margin-top: 0;
}

.panel.is-style-alert {
  background: #da291c;
  border-color: #8a1538;
  color: #ffffff;
}
.panel.is-style-alert a {
  color: #ffffff;
}

.panel.is-style-alert .action-link:before {
  background-image: url("../imgs/icons/arrow-right-circle-white.svg");
}
.panel.is-style-alert .action-link:focus {
  color: #231f20;
}
.panel.is-style-alert .action-link:focus:before {
  background-image: url("../imgs/icons/arrow-right-circle-black.svg");
}

.panel.is-style-alert .file__link {
  background-image: url("../imgs/icons/file-black.svg");
}

.panel.is-style-alert .file--empty .file__link,
.panel.is-style-alert .action-link--empty .action-link__text {
  color: inherit;
}

.panel .block-editor-block-list__layout .wp-block {
  margin: 0;
}
.panel .block-editor-block-list__layout .wp-block[data-empty=true] {
  margin-bottom: 0;
}
.panel .block-editor-block-list__layout .wp-block-heading {
  margin-bottom: 0.75rem;
}
.panel .block-editor-block-list__layout .wp-block-list,
.panel .block-editor-block-list__layout .wp-block-acf-file,
.panel .block-editor-block-list__layout .wp-block-acf-action-link,
.panel .block-editor-block-list__layout .wp-block-paragraph {
  margin-bottom: 1.5rem;
}
.panel .block-editor-block-list__layout .wp-block:last-child {
  margin-bottom: 0;
}
.panel .block-editor-block-list__layout .acf-block-preview .action-link,
.panel .block-editor-block-list__layout .acf-block-preview .file {
  margin: 0;
}
.panel .block-editor-block-list__layout ul,
.panel .block-editor-block-list__layout ol {
  padding-left: 1.25rem;
}
.panel .block-editor-block-list__layout ul li,
.panel .block-editor-block-list__layout ol li {
  margin-top: 0;
}

.panel .wp-block-heading {
  margin-bottom: 0.75rem;
}

.promotion {
  background-color: #ae2573;
  padding: 1.5rem 0;
}
@media (min-width: 1000px) {
  .promotion {
    padding: 3rem 0;
  }
}

.promotion--image {
  display: flex;
  align-items: start;
  flex-direction: column;
}
@media (min-width: 850px) {
  .promotion--image {
    flex-direction: row;
  }
}
@media (min-width: 1000px) {
  .promotion--image {
    align-items: center;
  }
}

.promotion__image-wrapper {
  border: 0.9375rem solid white;
  border-radius: 0.9375rem;
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 850px) {
  .promotion__image-wrapper {
    width: 30%;
  }
}

.promotion__image {
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.promotion__image:before {
  padding-top: 100%;
  display: block;
  content: "";
}

.promotion__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  color: white;
}
@media (min-width: 850px) {
  .promotion__content {
    padding: 0 0 0 2.25rem;
  }
}

.promotion__content-head {
  margin-bottom: 1.5rem;
  max-width: 52.5rem;
}
@media (min-width: 1200px) {
  .promotion__content-head {
    margin-bottom: 3rem;
  }
}

.promotion__title {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-size: 1.625rem;
}
@media (min-width: 850px) {
  .promotion__title {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
  }
}
@media (min-width: 1200px) {
  .promotion__title {
    font-size: 2rem;
    margin-bottom: 1.875rem;
  }
}

.promotion__description {
  font-size: 1.1875rem;
}

.warning-callout {
  background-color: white;
  padding: 0 1.5rem 1.5rem 1.5rem;
  background-color: #fff9c4;
  border: 0.0625rem solid #ffeb3b;
  margin-top: 3rem;
}
@media (min-width: 850px) {
  .warning-callout {
    padding: 0 2rem 2rem 2rem;
  }
}
.warning-callout p {
  font-size: 1rem;
}
@media (min-width: 850px) {
  .warning-callout p {
    font-size: 1.1875rem;
  }
}

.warning-callout__heading {
  position: relative;
  top: -0.5rem;
  left: -1.5625rem;
  display: inline-block;
  margin: 0;
  padding: 0.5rem 1.5rem;
  background-color: #ffeb3b;
  font-size: 1.1875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
@media (min-width: 850px) {
  .warning-callout__heading {
    top: -1rem;
    font-size: 1.625rem;
    padding: 0.5rem 2rem;
    left: -2.0625rem;
  }
}
.warning-callout__heading h3 {
  margin-bottom: 0;
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  .warning-callout__heading h3 {
    font-size: 1.625rem;
  }
}

.warning-callout__content *:last-child {
  margin-bottom: 0;
}

.video-transcript {
  padding: 0.75rem;
}
.video-transcript .wp-block-heading {
  margin-bottom: 0.75rem;
}
.video-transcript .wp-block-embed {
  margin-bottom: 0.5rem;
}

.video-transcript__embed .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 53.25%;
}
.video-transcript__embed .wp-block-embed__wrapper iframe,
.video-transcript__embed .wp-block-embed__wrapper object,
.video-transcript__embed .wp-block-embed__wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-transcript__button {
  display: block;
  background: none;
  border: none;
  padding: 0.25rem;
  margin-left: auto;
  font-size: 1.1875rem;
  text-decoration: underline;
  color: #005eb8;
  cursor: pointer;
}

.video-transcript__content {
  background-color: white;
  padding: 1.5rem;
  border-left: 0.25rem solid #003087;
}
.video-transcript__content p:last-child,
.video-transcript__content ul:last-child,
.video-transcript__content ol:last-child {
  margin-bottom: 0;
}

.video-transcript--minimised .video-transcript__content {
  display: none;
}

.food-menu__day {
  display: none;
}

.food-menu__day--show {
  display: block;
}

.date-selector {
  padding-bottom: 1.5rem;
  margin-bottom: 2.25rem;
  border-bottom: 0.125rem solid #aeb7bd;
}

.date-selector__title {
  font-family: "Frutiger W01", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  .date-selector__title {
    font-size: 1.5rem;
  }
}

.date-selector__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-end;
}

.date-selector__select {
  padding-right: 2.25rem;
  margin-bottom: 0;
}

.date-selector__label {
  display: block;
}

.date-selector__button {
  display: inline-block;
  margin: 0;
  padding: 0.5rem 2.25rem 0.5rem 1.25rem;
  cursor: pointer;
  border: 0.0625rem solid transparent;
  border-radius: 0.1875rem;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  height: 2.6875rem;
  width: auto;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.3;
  background-color: #005eb8;
  background-image: url("../imgs/icons/chevron-right-white.svg");
  color: white;
  background-position: center right 0.75rem;
  background-repeat: no-repeat;
  background-size: 0.6875rem 0.6875rem;
}
.date-selector__button:hover {
  background-color: #003087;
  color: white;
  text-decoration: none;
}
.date-selector__button[type=submit]:focus {
  background-color: #ffeb3b;
  background-image: url("../imgs/icons/chevron-right-black.svg");
  color: black;
  text-decoration: none;
  outline: #005eb8 0.1875rem solid;
}
@media (min-width: 1000px) {
  .date-selector__button {
    font-size: 1.1875rem;
  }
}

.date-selector__error {
  border-left: 0.5rem solid #d5281b;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.food-menu-a-b__day {
  display: none;
}

.food-menu-a-b__day--show {
  display: block;
}

.date-selector-a-b {
  padding-bottom: 1.5rem;
  margin-bottom: 2.25rem;
  border-bottom: 0.125rem solid #aeb7bd;
}

.date-selector-a-b__title {
  font-family: "Frutiger W01", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-size: 1.1875rem;
}
@media (min-width: 850px) {
  .date-selector-a-b__title {
    font-size: 1.5rem;
  }
}

.date-selector-a-b__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-end;
}

.date-selector-a-b__select {
  padding-right: 2.25rem;
  margin-bottom: 0;
}

.date-selector-a-b__label {
  display: block;
}

.date-selector-a-b__button {
  display: inline-block;
  margin: 0;
  padding: 0.5rem 2.25rem 0.5rem 1.25rem;
  cursor: pointer;
  border: 0.0625rem solid transparent;
  border-radius: 0.1875rem;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  height: 2.6875rem;
  width: auto;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.3;
  background-color: #005eb8;
  background-image: url("../imgs/icons/chevron-right-white.svg");
  color: white;
  background-position: center right 0.75rem;
  background-repeat: no-repeat;
  background-size: 0.6875rem 0.6875rem;
}
.date-selector-a-b__button:hover {
  background-color: #003087;
  color: white;
  text-decoration: none;
}
.date-selector-a-b__button[type=submit]:focus {
  background-color: #ffeb3b;
  background-image: url("../imgs/icons/chevron-right-black.svg");
  color: black;
  text-decoration: none;
  outline: #005eb8 0.1875rem solid;
}
@media (min-width: 1000px) {
  .date-selector-a-b__button {
    font-size: 1.1875rem;
  }
}

.date-selector-a-b__error {
  border-left: 0.5rem solid #d5281b;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.infographic {
  padding: 0 0 0.75rem;
  border-bottom: 0.0625rem solid #005eb8;
}
.infographic .wp-block-heading {
  margin-bottom: 0.75rem;
}

.infographic__image .wp-block-image {
  width: 100%;
  margin-bottom: 0.5rem;
}

.infographic__button {
  display: block;
  background: none;
  border: none;
  padding: 0.5rem 2.875rem 0.5rem 0;
  margin-left: auto;
  font-size: 1.1875rem;
  text-decoration: underline;
  color: #005eb8;
  cursor: pointer;
  background: transparent url("../imgs/icons/nhs-minus.svg") no-repeat right;
  background-size: 2rem 2rem;
}
.infographic--minimised .infographic__button {
  background-image: url("../imgs/icons/nhs-plus.svg");
}

.infographic__content {
  padding: 1.5rem 0;
}
.infographic__content p:last-child,
.infographic__content ul:last-child,
.infographic__content ol:last-child {
  margin-bottom: 0;
}

.infographic--minimised .infographic__content {
  display: none;
}

/**
 * WordPress Comments Form

 * NB: These styles are here because the comment form cannot
 * be rendered as a block/component
*/
#cancel-comment-reply-link {
  background: white;
  font-size: 1rem;
  text-decoration: none;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  margin: 0 0.25rem;
  color: #005eb8;
  border: 0.0625rem solid transparent;
}
#cancel-comment-reply-link:hover, #cancel-comment-reply-link:focus {
  background-color: white;
  color: #003087;
  border: 0.0625rem solid #003087;
  box-shadow: none;
}

.comments-item__reply + .comment-respond {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dotted #231f20;
}
.comments-item__reply + .comment-respond .comment-reply-title {
  font-size: 1.125rem;
}
.comments-item__reply + .comment-respond .logged-in-as {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}

.comments-form__closed {
  font-weight: 600;
  padding: 0.75rem;
}

.comments-form__form {
  font-size: 1rem;
  margin-bottom: 0;
}
@media (min-width: 850px) {
  .comments-form__form {
    font-size: 1.125rem;
  }
}
.comments-form__form p {
  margin-bottom: 0;
}

.comments-form__toggle + .comment-respond {
  margin-top: 0.625rem;
}

.no-js .comments-form__toggle {
  display: none;
}

.comments-form__actions {
  display: flex;
  justify-content: flex-end;
}

.comments-form__toggle {
  margin: 0.75rem;
}

.comment-respond.hidden {
  display: none;
}
.no-js .comment-respond.hidden {
  display: block;
}

.comment-form-comment {
  margin-top: 0.75rem;
}

.comment-form-comment textarea {
  margin-bottom: 0.75rem;
  border-radius: 0.1875rem;
  resize: vertical;
}

.comment-form-comment label {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}

.form-submit {
  text-align: right;
}

.comment-reply-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.comments-form__preamble {
  margin-bottom: 0.75rem;
}

@media print {
  @page {
    size: A4;
  }
  body {
    position: relative;
  }
  body,
  .container__inner,
  .u-wrapper {
    min-height: unset;
    max-width: 100%;
    margin: 0;
    width: auto;
    overflow: visible;
  }
  .site-header__secondary,
  .site-header__search-form,
  .site-header__primary-nav,
  .site-header__mobile-nav,
  .skiplink,
  .welcome,
  .content-sidebar-group__sidebar,
  .comments-form__form,
  .share-links,
  .app__image,
  .app-list__edit-button,
  .app-group__to-top,
  .newsgroup__filters,
  iframe,
  .site-footer,
  .cookie-banner,
  figure,
  .card-article--landscape .card-article__image,
  .card-article--landscape-on-smallscreen .card-article__image {
    display: none;
  }
  .site-logo {
    margin-bottom: 1.25rem;
  }
  .comments-item {
    margin-bottom: 1rem;
  }
  .comments-item__meta {
    margin-bottom: 0.5rem;
  }
  .comments-item p {
    margin-bottom: 0;
  }
  .card-article__image {
    background-size: contain;
    width: 25rem;
    height: 14.0625rem;
  }
  .content-sidebar-group__grid {
    display: block;
  }
  p > a[href]:after {
    content: " (" attr(href) ")";
  }
  h1,
  h2,
  h3,
  h4,
  h5 {
    page-break-after: avoid;
  }
  table,
  figure {
    page-break-inside: avoid;
  }
  button {
    background: none;
    border: 0;
    padding: 0;
    text-decoration: underline;
  }
  .cookie-banner {
    position: relative;
  }
  .featured-pages__inner-wrapper,
  .newsgroup,
  .promotion,
  .popular-links {
    padding-left: 1.25rem;
    padding-top: 0.625rem;
    border-bottom: none;
  }
  .featured-page-item,
  .promotion__title,
  .newsgroup__heading,
  .promotion__description {
    padding: 0;
    color: #000;
  }
  .featured-page-item--external:after {
    display: none;
  }
  .featured-pages__toggle,
  .popular-links__tray {
    display: none;
  }
  .card-article__image {
    display: none;
  }
  .newsgroup .newsgroup__inner {
    display: block;
    width: 100%;
  }
  .newsgroup__content {
    display: block;
    width: 100%;
  }
  .newsgroup__item {
    width: 100%;
  }
  .card-article__image {
    display: block;
    max-width: 20%;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .newsgroup__sidebar {
    width: 100%;
  }
  .card-article--landscape-on-smallscreen .card-article__content {
    width: 100%;
  }
  .card-article__title {
    margin-bottom: 0;
  }
  .card-article,
  .card-article__content {
    padding: 0 0 0.625rem;
  }
  .date-human {
    padding-left: 0;
  }
  .card-article,
  .card-article--landscape,
  .card-article__content {
    display: block;
  }
  .card-article .card-article__meta {
    display: none;
  }
  .newsgroup--light .newsgroup__item--slim,
  .popular-links__item > a,
  .newsgroup--light-green .newsgroup__item--slim {
    border-color: #768692;
  }
  .popular-links--secondary {
    color: #000;
  }
  .popular-links__list {
    display: block;
  }
  .card-event,
  .card-event__date {
    padding: 0 0 0.625rem;
  }
  .popular-links__item > a {
    border-top: 0;
  }
  .card-event__image,
  .event__image,
  .card-article--landscape-on-smallscreen .card-article__image {
    max-width: 20%;
  }
  .event__actions {
    display: none;
  }
  .signpost-item {
    padding: 0 0 0.625rem;
  }
  .service-title__inner,
  .service-meta__link-item--email,
  .service-meta__link-item--telephone {
    padding: 0;
  }
  .promoted-page-item {
    padding: 0;
  }
  .app__image {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .standard-content > img {
    max-width: 50%;
  }
  svg {
    display: none;
  }
  .do-dont,
  .do-dont__title,
  .care-card,
  .care-card--emergency .care-card__content,
  .care-card__heading h2,
  .care-card__heading h3,
  .care-card__heading h4,
  .panel.is-style-alert,
  .button {
    color: #000;
    background-color: none;
    border: none;
  }
  .standard-content > .blockquote,
  .standard-content > .wp-block-quote,
  .standard-content > blockquote,
  .do-dont__list li {
    padding-left: 1.25rem;
    border: none;
  }
}
