.card_profile_info{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.card_profile_info_item{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.card_profile_info_item_value{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.card_profile_info_item_value img{
    width: 32px;
    height: 32px;
}

.card_profile_info_item_value p{
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.card_profile_actions a{
    text-decoration: none;
    color: white;
    background-color: #b10606;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.card_profile_actions a:hover{
    background-color: #990505;
    color: white;
}


@media (max-width: 425px){
    .card_profile_info{
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
    }
    .card_profile_info_item{
        align-items: center;
    }
}