/* EEAT Profile Card Styles */
.eeat-profile-card {
    max-width: 400px;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 1px solid #e0e0e0;
}

.eeat-profile-header {
    text-align: center;
    padding: 40px 30px 30px;
    color: white;
    position: relative;
}

.eeat-profile-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.eeat-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.eeat-profile-initials {
    font-size: 36px;
    font-weight: bold;
    color: #7c5ce0;
    line-height: 1;
}

.eeat-profile-name {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
}

.eeat-profile-title {
    margin: 0;
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.4;
    font-weight: 400;
}

.eeat-profile-content {
    padding: 30px;
    background: #fafafa;
}

.eeat-profile-section {
    margin-bottom: 30px;
}

.eeat-profile-section:last-child {
    margin-bottom: 0;
}

.eeat-section-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #333;
    border-left: 4px solid #7c5ce0;
    padding-left: 12px;
}

.eeat-profile-bio {
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px;
    font-size: 14px;
}

.eeat-verification-badge {
    background: #e8f5e8;
    color: #2d7d32;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    border: 1px solid #c8e6c9;
}

.eeat-checkmark {
    font-weight: bold;
    margin-right: 5px;
}

.eeat-experience-years {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.eeat-years-number {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: #7c5ce0;
    line-height: 1;
    margin-bottom: 5px;
}

.eeat-years-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    letter-spacing: 1px;
}

.eeat-skills-list {
    margin-top: 15px;
}

.eeat-skill-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.eeat-skill-bullet {
    color: #7c5ce0;
    margin-right: 10px;
    font-size: 16px;
}

.eeat-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.eeat-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    color: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eeat-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.eeat-linkedin {
    background: #0077b5;
}

.eeat-facebook {
    background: #1877f2;
}

.eeat-twitter {
    background: #1da1f2;
}

.eeat-website {
    background: #333;
}

.eeat-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.eeat-contact-icon {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
}

.eeat-contact-item a {
    color: #7c5ce0;
    text-decoration: none;
}

.eeat-contact-item a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 480px) {
    .eeat-profile-card {
        margin: 20px 10px;
        max-width: none;
    }
    
    .eeat-profile-header {
        padding: 30px 20px 20px;
    }
    
    .eeat-profile-content {
        padding: 20px;
    }
    
    .eeat-profile-name {
        font-size: 24px;
    }
    
    .eeat-profile-title {
        font-size: 14px;
    }
    
    .eeat-years-number {
        font-size: 36px;
    }
    
    .eeat-social-links {
        justify-content: center;
    }
}

/* Print styles */
@media print {
    .eeat-profile-card {
        box-shadow: none;
        border: 1px solid #ccc;
        max-width: none;
        margin: 0;
    }
    
    .eeat-social-links,
    .eeat-contact-item a {
        display: none;
    }
}
