/* homepage alert */
.homepage-alert {
  background-color: currentColor;
}

.homepage-alert > div {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0.6875rem 0.625rem;
  color: #fff;
  box-sizing: border-box;
}
.homepage-alert > div > div:first-child {
  text-align: left;
}
.homepage-alert h3,
.homepage-alert p,
.homepage-alert a {
  color: inherit;
}
.text-formatted .homepage-alert h3 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.6875;
}
.homepage-alert p {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.9;
}
.homepage-alert p > a {
  font-weight: bold;
}
.homepage-alert p > a:hover {
  text-decoration: underline;
  color: inherit;
  filter: none;
}
.homepage-alert-links a,
.homepage-alert-links a:visited {
  width: 100%;
  display: block;
  box-sizing: border-box;
  border: 1px solid currentColor;
  text-align: center;
  line-height: 2.5;
  font-size: 0.875rem;
  text-decoration: none;
  outline: none;
  font-weight: bold;
  margin: 0.625rem 0;
  opacity: 1;
  transition: opacity 150ms;
  color: #fff;
}
.homepage-alert-links a:hover {
  text-decoration: none;
  opacity: .6;
  transition: opacity 150ms;
  color: inherit;
  filter: none;
}
.desktop-show br {
  display: none;
}
@media print, screen and (min-width: 60em) {
  .homepage-alert > div {
    display: flex;
  }
  .homepage-alert > div > div:first-child {
    flex: 1;
  }
  .homepage-alert-links a,
  .homepage-alert-links a:visited,
  .homepage-alert-links a:hover {
    width: auto;
    display: inline-flex;
    padding: 0.625rem 1.25rem;
    line-height: 1rem;
    margin: 0;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    max-width: 10rem;
  }
  .homepage-alert-links a.one-line {
    line-height: 2rem;
  }
}
/* Covid home banner END */