/************************
 * Visit COM Custom 
 * *********************/
.visit-card {
  color: white;
  background-color: #002f87;
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.visit-card.--green {
  background-color: #1d874a;
}
.visit-card.--blue {
  background-color: #0076bb;
}
.visit-card.--purple {
  background-color: #2e2460;
}
.visit-card.--orange {
  background-color: #f15623;
}
.visit-card.--yellow {
  background-color: #f6b436;
  color: #303538;
}
.visit-card__title {
  margin: 0 0 0.5em;
  line-height: 1.15;
  text-wrap: balance;
}
.visit-card__cta {
  margin-top: 1.75em;
}

.visit-cardset {
  display: flex;
  gap: 2rem;
  flex-flow: row wrap;
  justify-content: center;
}
.visit-cardset > * {
  flex: 1 1 320px;
}

.visit-card__content > p:last-of-type {
  margin-bottom: 0;
}

.visit-card__cta > .neo-btn {
  background: none;
  border: 2px solid white;
  color: white;
}

.visit-card__cta > .neo-btn:hover {
  border-color: transparent;
  color: #4b4f55;
  background: white;
}

.visit-card__cta > .neo-btn.--dark {
  background: none;
  border: 2px solid #303538;
  color: #303538;
}

.visit-card__cta > .neo-btn.--dark:hover {
  border-color: transparent;
  color: white;
  background: #303538;
}

/**** End Visit COM Custom ****/