/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/* Wrapper: stacked column of cards */
.lecture-speakers {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Card */
.lecture-speaker-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04); /* tweak for your dark/light theme */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Avatar */
.lecture-speaker-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Text block */
.lecture-speaker-meta {
    flex: 1;
    min-width: 0;
}

/* Name + badge */
.lecture-speaker-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.lecture-speaker-name {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

.lecture-speaker-badge {
    font-size: 0.75rem;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    border: 1px solid currentColor;
    opacity: 0.8;
}

/* Nation */
.lecture-speaker-nation {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0.35rem;
}

.lecture-speaker-flag {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

/* Links */
.lecture-speaker-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.lecture-speaker-link {
    text-decoration: none;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.lecture-speaker-link:hover {
    opacity: 1;
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile tweak */
@media (max-width: 600px) {
    .lecture-speaker-card {
        padding: 0.85rem 1rem;
        gap: 0.75rem;
    }

    .lecture-speaker-avatar img {
        width: 52px;
        height: 52px;
    }
}
