.user-grid-fdb0a51f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.user-grid-item-fdb0a51f {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-items: center; /* Center horizontally */
    text-align: center; /* Center text */
}
.user-grid-avatar-fdb0a51f {
    margin-bottom: 15px;
    overflow: hidden;
    flex-shrink: 0;
}
.user-grid-avatar-fdb0a51f img {
    border-radius: 50%;
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
}
.user-grid-name-fdb0a51f {
    margin: 0 0 10px;
    font-size: 1.2rem;
}
.user-grid-desc-fdb0a51f {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #555;
}
.user-grid-socials-fdb0a51f {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}
.user-grid-social-icon-fdb0a51f {
    color: #555;
    font-size: 1.2rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.user-grid-social-icon-fdb0a51f svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
}
.user-grid-link-fdb0a51f {
    margin-top: auto;
    display: inline-block;
    padding: 8px 16px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.2s, color 0.2s;
}
.user-grid-link-fdb0a51f:hover {
    background: #005177;
    color: #fff;
}