/* Event Detail Styles */
.event-header-box {
    background: #ffffff;
    border-left: 4px solid #6091ba;
    border-top: 1px solid #e9f0f5;
    border-right: 1px solid #e9f0f5;
    border-bottom: 1px solid #e9f0f5;
    padding: 1.25rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.event-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #494949;
    font-size: 0.95rem;
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
}

.event-meta-item i {
    color: #6091ba;
}

.speaker-card {
    background: #ffffff;
    border: 1px solid #e9f0f5;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.speaker-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(39, 67, 90, 0.08);
}

.speaker-detail-wrap {
    width: 130px;
    height: 165px;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    overflow: hidden;
    border: 3px solid #6091ba;
    box-shadow: 0 4px 14px rgba(39, 67, 90, 0.16);
    background: #f0f4f8;
    display: block;
    margin: 0 auto;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-detail-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 67, 90, 0.22);
}

.speaker-detail-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.speaker-detail-wrap:hover .speaker-detail-avatar {
    transform: scale(1.04);
}

.speaker-detail-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f4f8;
    color: #6091ba;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.section-subheading {
    color: #27435a;
    font-weight: 500;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #e9f0f5;
}

.embedded-registration-card {
    background: #ffffff;
    border: 1px solid #e0e7ec;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 18px rgba(39, 67, 90, 0.06);
}

.embedded-registration-header {
    background: #27435a;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-bottom: 3px solid #6091ba;
}

.registration-iframe {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
    background: #ffffff;
}

.speaker-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f4f8;
    color: #27435a;
    transition: all 0.2s ease;
    margin-right: 6px;
    text-decoration: none;
    font-size: 0.85rem;
}

.speaker-social-btn:hover {
    background: #6091ba;
    color: #ffffff;
}
