.opp-card {
  padding: 1rem;
  margin: 1rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, .1);
  border: .1rem solid var(--l3);
  height: 12rem;
  width: 20rem;
  text-decoration: none;
  transition: .25s ease;
}

.opp-card:hover {
    border-color: var(--p1);
    /* color: var(--d3); */
}

.opp__profile-container {
    display: flex;
    padding: 1rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.opp_profile-img {
    width: 5rem;
    height: 5rem;
    border-radius: 100%;
    outline: 2px solid var(--d2);
    transition: outline .25s ease;
}

.opp_profile-img:hover {
    outline-color: var(--s1);
}

.opp__profile-name-container {
    display: flex; flex-direction: column;
    width: 100%;
    min-width: 0;
}

#opp__name {
    font-size: 1.25rem;
    white-space: nowrap;

    /* word-break: break-all; */
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 500;
}

#opp__user-tag {
    font-size: .85rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 400;
    color: var(--d2);

}

#opportunities {
  display: flex;
  flex-direction: row;
}
