/**
 * HEF Single Speaker - Ultra Minimal Design
 * Colors: White, Black, Blue (#1c218b) only
 * Scope: .hef-speaker-single-container
 */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* =================================
   Base Container
   ================================= */
.hef-speaker-single-container {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    padding: 40px 20px;
    color: #000000;
}

.hef-speaker-single-container * {
    box-sizing: border-box;
}

.hef-speaker-single-container .hef-speaker-single {
    max-width: 800px;
    margin: 0 auto;
}

/* =================================
   Speaker Header
   ================================= */
.hef-speaker-single-container .hef-speaker-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #1c218b;
}

.hef-speaker-single-container .hef-speaker-image-large {
    width: 180px;
    height: 260px;    
    max-height: 280px;
    object-fit: cover;    
    margin-bottom: 20px;
}

.hef-speaker-single-container .hef-speaker-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1c218b;
    margin: 0 0 10px 0;
}

.hef-speaker-single-container .hef-speaker-job-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.hef-speaker-single-container .hef-speaker-org {
    font-size: 0.95rem;
    color: #000000;
    opacity: 0.7;
}

/* =================================
   Info Card
   ================================= */
.hef-speaker-single-container .hef-speaker-info-card {
    background: #ffffff;
    border: 1px solid #1c218b;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.hef-speaker-single-container .hef-quote-section {
    background: #1c218b;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin: -30px -30px 25px -30px;
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.5;
}

.hef-speaker-single-container .hef-card-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1c218b;
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #1c218b;
}

.hef-speaker-single-container .hef-profile-content,
.hef-speaker-single-container .hef-additional-content {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.6;
}

.hef-speaker-single-container .hef-profile-section,
.hef-speaker-single-container .hef-additional-section {
    margin-bottom: 25px;
}

.hef-speaker-single-container .hef-profile-section:last-child,
.hef-speaker-single-container .hef-additional-section:last-child {
    margin-bottom: 0;
}

/* =================================
   Events Section
   ================================= */
.hef-speaker-single-container .hef-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1c218b;
    margin: 0 0 25px 0;
    text-align: center;
    padding-bottom: 12px;
}

.hef-speaker-single-container .hef-events-count {
    font-size: 0.9rem;
    color: #000000;
    opacity: 0.6;
    font-weight: 400;
}

.hef-speaker-single-container .hef-speaker-sessions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.hef-speaker-single-container .hef-speaker-session-item {
    background: #ffffff;
    border: 1px solid #1c218b;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hef-speaker-single-container .hef-speaker-session-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(28, 33, 139, 0.15);
}

.hef-speaker-single-container .hef-session-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.hef-speaker-single-container .hef-session-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1c218b;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.hef-speaker-single-container .hef-session-excerpt {
    font-size: 0.9rem;
    color: #000000;
    opacity: 0.7;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.hef-speaker-single-container .hef-session-meta {
    display: flex;
    gap: 15px;
    margin: 0 0 8px 0;
    flex-wrap: wrap;
}

.hef-speaker-single-container .hef-session-location,
.hef-speaker-single-container .hef-session-date-badge {
    font-size: 0.85rem;
    color: #000000;
    opacity: 0.7;
    padding: 4px 8px;
    background: rgba(28, 33, 139, 0.1);
    border-radius: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hef-speaker-single-container .hef-upcoming-badge {
    background: #1c218b;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* =================================
   Footer Navigation
   ================================= */
.hef-speaker-single-container .hef-speaker-footer {
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
}

.hef-speaker-single-container .hef-back-link {
    background: #1c218b;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.hef-speaker-single-container .hef-back-link:hover {
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.hef-speaker-single-container .hef-speaker-nav-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

.hef-speaker-single-container .hef-nav-prev,
.hef-speaker-single-container .hef-nav-next {
    background: #ffffff;
    border: 2px solid #1c218b;
    color: #1c218b;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 180px;
}

.hef-speaker-single-container .hef-nav-prev:hover,
.hef-speaker-single-container .hef-nav-next:hover {
    background: #1c218b;
    color: #ffffff;
    text-decoration: none;
}

.hef-speaker-single-container .hef-nav-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 3px;
}

.hef-speaker-single-container .hef-nav-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

/* =================================
   No Speaker Found
   ================================= */
.hef-speaker-single-container .hef-no-speaker {
    text-align: center;
    padding: 60px 20px;
}

.hef-speaker-single-container .hef-no-speaker h1 {
    font-size: 1.8rem;
    color: #1c218b;
    margin: 0 0 15px 0;
}

.hef-speaker-single-container .hef-no-speaker p {
    font-size: 1rem;
    color: #000000;
    margin: 0 0 25px 0;
}

/* =================================
   Responsive
   ================================= */
@media (max-width: 768px) {
    .hef-speaker-single-container {
        padding: 20px 15px;
    }

    .hef-speaker-single-container .hef-speaker-title {
        font-size: 1.8rem;
    }

    .hef-speaker-single-container .hef-speaker-info-card {
        padding: 20px;
    }

    .hef-speaker-single-container .hef-quote-section {
        margin: -20px -20px 20px -20px;
        padding: 15px;
        font-size: 0.9rem;
    }

    .hef-speaker-single-container .hef-speaker-sessions-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hef-speaker-single-container .hef-speaker-nav-links {
        flex-direction: column;
        align-items: center;
    }

    .hef-speaker-single-container .hef-nav-prev,
    .hef-speaker-single-container .hef-nav-next {
        max-width: 100%;
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hef-speaker-single-container .hef-speaker-title {
        font-size: 1.6rem;
    }

    .hef-speaker-single-container .hef-speaker-image-large {
        width: 140px;
        height: 140px;
    }

    .hef-speaker-single-container .hef-speaker-info-card {
        padding: 15px;
    }

    .hef-speaker-single-container .hef-quote-section {
        margin: -15px -15px 15px -15px;
        padding: 12px;
    }
}
