/* Speaker Page Styles */
.speaker-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
}

.speaker-header {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.speaker-image img {
    width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.speaker-info {
    flex: 1;
}

.speaker-name {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 10px;
}

.speaker-job {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.speaker-categories {
    margin-top: 10px;
}

.category-badge {
    display: inline-block;
    background: #e0f0ff;
    color: #0056b3;
    padding: 5px 12px;
    margin-right: 5px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* About Section */
.speaker-content {
    margin-bottom: 40px;
}

.speaker-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.speaker-content .content {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Contact Section */
.speaker-contact {
    margin-bottom: 40px;
}

.speaker-contact h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.speaker-contact ul {
    list-style: none;
    padding: 0;
}

.speaker-contact li {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

/* Social Media Section */
.speaker-social {
    margin-bottom: 40px;
}

.speaker-social h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.social-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
}

.social-links li a {
    display: inline-block;
    background: #0056b3;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
}

.social-links li a:hover {
    background: #003d80;
}

/* Responsive */
@media (max-width: 768px) {
    .speaker-header {
        flex-direction: column;
    }

    .speaker-image img {
        width: 100%;
        max-width: 400px;
    }
}
