.page--user .field-label {
  color: var(--wildcat-blue);
}

.profile-main {
  display: grid;
  grid-template-columns: 3fr 5fr 4fr;
  column-gap: 2rem;
}
.profile-main img {
  width: 100%;
}
.profile-main .text1, .profile .text2 {
  color: var(--wildcat-blue);
}

.profile-main p:first-of-type {
  padding-top: 0;
}

.profile-main > div:nth-child(3) > div {
  padding-bottom: 0.8rem;
}

@media only screen and (max-width: 900px) {
  .profile-main {
    grid-template-columns: 1fr;
  }
}

