@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

.ab-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 350px;
    font-family: 'Inter', sans-serif;
}

.ab-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ab-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.ab-name {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937; /* Tailwind gray-800 */
    margin: 0;
}

.ab-role {
    font-size: 14px;
    color: #6B7280; /* Tailwind gray-500 */
    margin: 2px 0 0 0;
}

.ab-bio {
    font-size: 14px;
    color: #374151; /* Tailwind gray-700 */
    line-height: 1.6;
    margin: 0;
}

.ab-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ab-skill {
    font-size: 12px;
    background: #F3F4F6;
    color: #374151;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 500;
}

.ab-links {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.ab-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F9FAFB;
    transition: all 0.2s ease;
    text-decoration: none;
}

.ab-links a:hover {
    background: #F3F4F6;
    transform: translateY(-1px);
}

.ab-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.ab-links a:hover .ab-icon {
    opacity: 1;
}

/* GitHub icon styling */
.github-icon {
    fill: #1F2937;
}

/* LinkedIn icon styling */
.linkedin-icon {
    fill: #0077B5;
}