/* Experts Section Styling */
.experts-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.experts-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-header p {
    color: #718096;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expert-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.expert-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 2rem auto 1.5rem;
    z-index: 1;
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: block;
}

.expert-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.expert-badge.legend {
    background: #8b5cf6;
}

.expert-info {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expert-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.expert-title {
    color: #718096;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.expert-country {
    display: inline-block;
    background: #edf2f7;
    color: #4a5568;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.expert-quote {
    position: relative;
    background: #f7fafc;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: auto;
    text-align: left;
    width: 100%;
}

.expert-quote i {
    color: #cbd5e0;
    margin-right: 0.5rem;
    font-size: 1.5rem;
    position: absolute;
    top: 10px;
    left: 10px;
}

.expert-quote p {
    color: #4a5568;
    font-style: italic;
    margin: 0;
    padding-left: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .experts-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.875rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}
