/* LinkedIn Profile Widget Styles */

.lpw-profiles-grid {
    display: grid;
    width: 100%;
}

.lpw-profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lpw-profile-card:hover {
    transform: translateY(-5px);
}

.lpw-profile-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lpw-profile-image {
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    font-size: 2em;
    font-weight: 600;
}

.lpw-profile-initials {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lpw-profile-name {
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.lpw-profile-name a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.lpw-profile-title {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.4;
}

.lpw-linkedin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.lpw-linkedin-button:hover {
    transform: scale(1.05);
}

.lpw-linkedin-button svg {
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lpw-profile-card {
        padding: 15px !important;
    }
    
    .lpw-profile-image {
        width: 80px !important;
        height: 80px !important;
    }
    
    .lpw-profile-name {
        font-size: 1em;
    }
    
    .lpw-profile-title {
        font-size: 0.85em;
    }
    
    .lpw-linkedin-button {
        font-size: 0.85em;
        padding: 6px 12px;
    }
}
