
.ProfileCard {
    border-radius:  1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 1rem;
    background-color:  var(--cardColor);
    overflow-x: hidden;
    
}

.ProfileCard > span {
    font-weight: bold;
    color: var(--purple);
    align-self: center;
    margin-bottom: 1rem;
    cursor: pointer;
}
.ProfileCard > span:hover {
    font-weight: bold;
    color: var(--blue);
    align-self: center;
    margin-bottom: 1rem;
    cursor: pointer;
}

.ProfileImages {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}



.ProfileImages > Img:nth-of-type(1) {
    width: 100%;
}

.ProfileImages > Img:nth-of-type(2) {
   width: 6rem;
   border-radius: 50%;
   position: absolute;
   bottom: -3rem;
}
.ProfileImages > Img:nth-of-type(2):hover {
   width: 6.2rem;
   border-radius: 50%;
   border: 2px solid #fff;
   
   position: absolute;
   bottom: -3.1rem;
}

.ProfileName {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    color: #000;
}

.ProfileName > span:nth-of-type(1) {
    font-weight: bold;
}


.followStatus {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.followStatus > hr {
    width: 85%;
    border: 1px solid  var(--hrColor);
}

.followStatus > div {
    display: flex;
    gap: 1rem;
    width: 80%;
    justify-content: space-around;
    align-items: center;
}

.follow {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;

}

.follow > span:nth-of-type(1) {
    padding-bottom: 5px;
    text-align: center;
    align-items: center;
    font-weight: bold;
    border-bottom: 0.5px solid  var(--hrColor);
   
    border-bottom-style: dashed;
    
   
    width: 100%;
    color: #000;
}

.follow > span:nth-of-type(2) {
    color: var(--gray);
    font-size: 13px;
}

.vertln {
    height: 150%;
    border-left: 2px solid var(--hrColor) ;
}