/* Shared component styles used across multiple pages */

/* Bordered Section */
section.ui-BorderedSection {
  border-top: 1px solid #e0e0e0;
  padding-top: 70px;
  margin-bottom: 70px;
}

@media (min-width: 768px) {
  section.ui-BorderedSection {
    margin-bottom: 70px;
  }
}

/* Ghost Rounded Links */
.ui-LinkGhostRounded {
  height: 65px;
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: 38px;
  font-family: AvenirNext-Regular;
  font-size: 20px;
  color: #282828;
  letter-spacing: 0;
  line-height: 25px;
  padding: 20px 30px;
  cursor: pointer;
  width: 100%;
  max-width: 460px;
  text-align: left;
  text-decoration: none;
  background-image: url(/Assets/Early-Careers/Chevron-Right.svg);
  background-repeat: no-repeat;
  background-position: center right 20px;
  transition: 0.15s ease-out background-position;
  display: inline-block;
}

.ui-LinkGhostRounded b {
  font-family: AvenirNext-Bold;
}

.ui-LinkGhostRounded:hover {
  border-color: #189970;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  background-position: center right 25px;
}

.ui-LinkGhostRounded:hover b {
  color: #189970;
}

.ui-LinkGhostRounded + .ui-LinkGhostRounded {
  margin-top: 25px;
}