/* Speaker Template Styles */

.outside-container{
    display: flex;
    margin: 40px 0;
    justify-content: center;
    padding: 0 2rem;
}

.inner-container{
    width:100%;
    max-width: 1200px;
}

.wtwh-speaker-header {
    padding:3rem 2rem;
    background-color: #f9f9f9;
}

.wtwh-speaker-header-inner{
    display: flex;
    gap:30px;
    text-align: left;
}

.wtwh-speaker-photo {
    flex-shrink: 0;
}

.wtwh-speaker-photo .speaker-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wtwh-speaker-info {
    flex: 1;
}

.wtwh-speaker-name {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
}

.wtwh-speaker-title {
    font-size: 1rem;
    margin: 0 0 20px 0;
    color: #666;
    font-weight: 400;
}

.wtwh-speaker-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.wtwh-social-link {
    color: var(--e-global-color-secondary, var(--wp--preset--color--secondary, #0073aa));
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: transparent;
}

.wtwh-social-link:hover {
    transform: translateY(-2px);
    color: var(--e-global-color-secondary, var(--wp--preset--color--secondary, #0073aa));
    text-decoration: none;
    opacity: 0.7;
}

.wtwh-social-link .dashicons {
    font-size: 24px;
}

.wtwh-speaker-bio h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.wtwh-speaker-content {
    line-height: 1.6;
    color: #555;
}

.wtwh-speaker-sessions h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
    border-bottom: 2px solid var(--e-global-color-secondary, var(--wp--preset--color--secondary, #0073aa));
    padding-bottom: 10px;
}

.wtwh-session-group {
    margin-bottom: 40px;
}

.wtwh-session-date {
    font-size: 1.3rem;
    margin: 0 0 20px 0;
    color: var(--e-global-color-secondary, var(--wp--preset--color--secondary, #0073aa));
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.wtwh-sessions-list {
    display: grid;
    gap: 20px;
    margin-left: 20px;
}

.wtwh-session-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--e-global-color-secondary, var(--wp--preset--color--secondary, #0073aa));
}

.wtwh-session-item h5 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.wtwh-session-time,
.wtwh-session-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    color: #666;
    font-size: 0.9em;
}

.wtwh-session-time .dashicons,
.wtwh-session-location .dashicons {
    color: var(--e-global-color-secondary, var(--wp--preset--color--secondary, #0073aa));
    font-size: 16px;
}

.wtwh-session-excerpt {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wtwh-speaker-header {
        flex-direction: column;
        text-align: center;
    }
    
    .wtwh-speaker-photo .speaker-image {
        width: 150px;
        height: 150px;
    }
    
    .wtwh-speaker-name {
        font-size: 2em;
    }
    
    .wtwh-social-link {
        font-size: 0.9em;
        padding: 6px 10px;
    }
}
