.visually-hidden {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: 0;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

article {
  margin-top: var(--header-height);
  max-width: 600px;
}

article p,
article div,
.types-of-care,
.locations-link,
.button {
  font-family: justus-pro;
  font-size: 1.125rem;
}

article p {
  margin-bottom: 21px;
}

.provider-image {
  margin-bottom: 32px;
}

h2 {
  font-weight: 700;
  font-size: 1.5rem;
}

.locations-link {
  position: relative;
  margin-top: 16px;
  display: inline-block;
  color: #292d7e;
  text-decoration: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: justus-pro;
  font-size: 18px;
  padding-right: 35px;
}

.locations-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/right-arrow.svg) no-repeat center center;
  background-size: 100% 100%;
  width: 25px;
  height: 25px;
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.locations-link:hover::before {
  right: -7px;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.button {
  color: #fff;
  background-color: #663399;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: color 200ms ease, background-color 200ms ease;
}

.button:hover {
  color: #292d7e;
  background-color: #01bbff
}