.links-container {
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.links-container .card {
    display: flex;
    width: calc(33% - 12px);
    margin: 0px 0px;
    height: 75px;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    padding: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    align-items: center;
}

.links-container .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.links-container .card .avatar{
    width: 50px;
    height: 50px;
}

.links-container .card .avatar img{
    border-radius: 50%;
    border: 1px solid #CCCCCC;
    box-shadow: 0 0px 4px rgba(0,0,0,0.4);
}

.links-container .card .info {
    padding-left: 10px;
    display: flex;
    flex-direction: column;
}

.links-container .card .info .name {
    font-size: 18px;
    font-weight: 500; 
    color: #000;
    margin-bottom: -5px;
}

.links-container .card .info .desc {
    font-size: 14px;
    color: #888;
}

.links-container .card .link-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    background-color: #F1F1F1;
    border-radius: 50%;
    cursor: pointer;
}