/* EAFTOS Events Discovery & Detail Pages - Intel-First Design */

/* ========================================
   EVENT DISCOVERY PAGE
   ======================================== */
.events-page {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--neutral-50);
}

/* Page Header */
.events-header {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-gray);
    margin-bottom: 2rem;
}

.events-header-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 0.25rem;
}

.events-subtitle {
    color: var(--neutral-500);
    font-size: 1rem;
    margin: 0;
}

.events-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Search Box */
.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-400);
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: white;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.search-box input::placeholder {
    color: var(--neutral-400);
}

/* Filter Trigger Button */
.filter-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    font-weight: 500;
    color: var(--neutral-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-trigger:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.filter-trigger i {
    font-size: 1.125rem;
}

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--primary-teal);
    color: white;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.filter-count:empty,
.filter-count[data-count="0"] {
    display: none;
}

/* View Toggle */
.view-toggle {
    display: flex;
    background: white;
    padding: 0.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gray);
}

.view-btn {
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--neutral-400);
    transition: all 0.2s ease;
}

.view-btn:hover {
    color: var(--neutral-600);
}

.view-btn.active {
    background: var(--primary-teal);
    color: white;
}

/* ========================================
   FILTER DRAWER/MODAL
   ======================================== */
.filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

.filter-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.filter-drawer.active {
    right: 0;
}

.filter-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-gray);
}

.filter-drawer-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0;
}

.close-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-100);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--neutral-500);
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: var(--neutral-200);
    color: var(--neutral-700);
}

.filter-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.filter-section {
    margin-bottom: 1.75rem;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-section > label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--neutral-700);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Industry Pills */
.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill {
    padding: 0.5rem 1rem;
    background: var(--neutral-100);
    border: 1px solid var(--neutral-200);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pill:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.pill.active {
    background: var(--soft-teal);
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

/* Date Inputs */
.date-inputs {
    display: flex;
    gap: 0.75rem;
}

.date-inputs input {
    flex: 1;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.date-inputs input:focus {
    outline: none;
    border-color: var(--primary-teal);
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400 !important;
    text-transform: none !important;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-teal);
}

.filter-drawer-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border-gray);
    background: var(--neutral-50);
}

.btn-reset {
    flex: 1;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--neutral-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-reset:hover {
    background: var(--neutral-100);
}

.btn-apply {
    flex: 2;
    padding: 0.75rem 1rem;
    background: var(--primary-teal);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-apply:hover {
    background: var(--teal-dark);
}

/* ========================================
   EVENT CARDS - INTEL-FIRST DESIGN
   ======================================== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-teal);
}

/* Card Header with Industry Icon */
.event-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
}

.industry-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
}

/* Industry-specific colors */
.industry-icon.defense { background: var(--industry-defense); color: #1e40af; }
.industry-icon.cybersecurity { background: var(--industry-cybersecurity); color: #047857; }
.industry-icon.federal { background: var(--industry-federal); color: #4338ca; }
.industry-icon.intelligence { background: var(--industry-intelligence); color: #9333ea; }
.industry-icon.health { background: var(--industry-health); color: #be185d; }
.industry-icon.tech { background: var(--industry-tech); color: var(--primary-teal); }
.industry-icon.gaming { background: var(--industry-gaming); color: #b45309; }
.industry-icon.chess { background: var(--industry-chess); color: #44403c; }
.industry-icon.beauty { background: var(--industry-beauty); color: #be185d; }

.industry-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--neutral-500);
}

/* Card Body */
.event-card-body {
    padding: 1.25rem;
    flex: 1;
}

.event-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-800);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.event-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neutral-500);
    font-size: 0.875rem;
}

.event-meta-item i {
    width: 16px;
    color: var(--neutral-400);
}

/* Intel Preview Section */
.event-card-intel {
    padding: 1rem 1.25rem;
    background: var(--neutral-50);
    border-top: 1px solid var(--border-light);
}

.intel-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.intel-row:first-child {
    padding-top: 0;
}

.intel-row:last-child {
    padding-bottom: 0;
}

.intel-row i {
    color: var(--primary-teal);
    font-size: 1rem;
}

.intel-label {
    font-size: 0.875rem;
    color: var(--neutral-600);
    font-weight: 500;
}

/* Avatar Stack */
.avatar-stack {
    display: flex;
    margin-left: auto;
}

.avatar-stack img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    object-fit: cover;
    background: var(--neutral-200);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-overflow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--neutral-200);
    border: 2px solid white;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--neutral-600);
}

/* Card Footer */
.event-card-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-gray);
}

.btn-attend {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--primary-teal);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-attend:hover {
    background: var(--teal-dark);
}

.btn-bookmark {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    color: var(--neutral-400);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-bookmark:hover {
    border-color: var(--primary-coral);
    color: var(--primary-coral);
}

.btn-bookmark.bookmarked {
    background: var(--soft-coral);
    border-color: var(--primary-coral);
    color: var(--primary-coral);
}

/* ========================================
   LIST VIEW
   ======================================== */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-list-item {
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all 0.2s ease;
    cursor: pointer;
}

.event-list-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-teal);
}

.event-list-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.event-list-icon .industry-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
}

.event-list-content {
    flex: 1;
    min-width: 0;
}

.event-list-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.event-list-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0;
}

.event-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.event-list-intel {
    display: flex;
    gap: 1.5rem;
}

.event-list-intel .intel-row {
    padding: 0;
}

.event-list-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* ========================================
   EVENT DETAIL PAGE
   ======================================== */
.event-detail {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--neutral-50);
}

/* Hero Section */
.event-hero {
    background: white;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-gray);
}

.event-hero-inner {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.industry-icon-lg {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 2.5rem;
    flex-shrink: 0;
}

.event-hero-content {
    flex: 1;
}

.event-hero-content .industry-tag {
    margin-bottom: 0.5rem;
    display: inline-block;
}

.event-hero-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-meta-lg {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--neutral-500);
}

.event-meta-lg span,
.event-meta-lg a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.event-meta-lg a {
    color: var(--primary-teal);
    text-decoration: none;
}

.event-meta-lg a:hover {
    text-decoration: underline;
}

.event-hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-attend-lg {
    padding: 0.875rem 1.5rem;
    background: var(--primary-teal);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-attend-lg:hover {
    background: var(--teal-dark);
}

.btn-secondary-action {
    padding: 0.875rem 1.25rem;
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--neutral-600);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-secondary-action:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

/* Tabs */
.event-tabs {
    background: white;
    border-bottom: 1px solid var(--border-gray);
    padding: 0 1rem;
}

.event-tabs-inner {
    display: flex;
    gap: 0;
}

.tab {
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-weight: 500;
    color: var(--neutral-500);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.tab:hover {
    color: var(--neutral-700);
}

.tab.active {
    color: var(--primary-teal);
    border-bottom-color: var(--primary-teal);
}

.tab .count {
    background: var(--neutral-100);
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
}

.tab.active .count {
    background: var(--soft-teal);
    color: var(--primary-teal);
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 2rem 0;
}

.tab-content.active {
    display: block;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 0.25rem;
}

.section-subtitle {
    color: var(--neutral-500);
    margin: 0;
}

/* Confidence Filters */
.confidence-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.confidence-filters .pill.confirmed {
    color: var(--confidence-confirmed);
}

.confidence-filters .pill.confirmed.active {
    background: #dcfce7;
    border-color: var(--confidence-confirmed);
}

.confidence-filters .pill.likely {
    color: var(--confidence-likely);
}

.confidence-filters .pill.likely.active {
    background: var(--soft-teal);
    border-color: var(--confidence-likely);
}

/* Speaker Grid */
.speaker-section {
    margin-bottom: 2rem;
}

.speaker-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-600);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.speaker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.speaker-grid.keynotes {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* Attendee List */
.attendee-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.attendee-row {
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.attendee-row:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.attendee-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-gray);
    flex-shrink: 0;
}

.attendee-info {
    flex: 1;
    min-width: 0;
}

.attendee-name {
    font-weight: 600;
    color: var(--neutral-800);
    display: block;
}

.attendee-title {
    font-size: 0.875rem;
    color: var(--neutral-500);
    display: block;
}

.attendee-confidence {
    flex-shrink: 0;
}

.confidence-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.confidence-badge.confirmed {
    background: #dcfce7;
    color: var(--confidence-confirmed);
}

.confidence-badge.likely {
    background: var(--soft-teal);
    color: var(--confidence-likely);
}

.confidence-badge.possible {
    background: var(--neutral-100);
    color: var(--confidence-possible);
}

.btn-connect {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--neutral-600);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-connect:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-gray);
}

.empty-state i {
    font-size: 4rem;
    color: var(--neutral-300);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--neutral-500);
    margin-bottom: 1.5rem;
}

/* Auth Gate */
.auth-gate {
    background: linear-gradient(to bottom, transparent, white);
    padding: 4rem 2rem 2rem;
    margin-top: -3rem;
    text-align: center;
    border-radius: var(--radius-lg);
}

.auth-gate h4 {
    margin-bottom: 0.5rem;
    color: var(--neutral-800);
}

.auth-gate p {
    color: var(--neutral-500);
    margin-bottom: 1.5rem;
}

/* ========================================
   SPEAKER CARD COMPONENT
   ======================================== */
.speaker-card {
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: all 0.2s ease;
    display: flex;
    gap: 1rem;
}

.speaker-card:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.speaker-card.featured {
    border-color: var(--primary-coral);
    background: linear-gradient(to bottom right, white, var(--soft-coral));
}

.speaker-photo {
    position: relative;
    flex-shrink: 0;
}

.speaker-photo img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-gray);
}

.keynote-badge {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-coral);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 8px;
    text-transform: uppercase;
}

.speaker-info {
    flex: 1;
    min-width: 0;
}

.speaker-name {
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 0.25rem;
}

.speaker-title {
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin-bottom: 0.25rem;
}

.speaker-company {
    font-size: 0.875rem;
    color: var(--neutral-600);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.speaker-session {
    font-size: 0.8125rem;
    color: var(--neutral-500);
    display: flex;
    align-items: flex-start;
    gap: 0.375rem;
    margin: 0;
}

.speaker-session i {
    margin-top: 0.125rem;
    color: var(--primary-teal);
}

.speaker-social {
    color: var(--neutral-400);
    font-size: 1.25rem;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.speaker-social:hover {
    color: #0077b5;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .events-header-content {
        margin-bottom: 1rem;
    }
    
    .event-hero-inner {
        flex-direction: column;
    }
    
    .event-hero-actions {
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .events-controls {
        flex-wrap: wrap;
    }
    
    .search-box {
        max-width: none;
        order: 3;
        width: 100%;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-drawer {
        width: 100%;
        right: -100%;
    }
    
    .event-list-item {
        flex-direction: column;
        align-items: stretch;
    }
    
    .event-list-icon {
        margin-bottom: 0.5rem;
    }
    
    .event-list-actions {
        margin-top: 1rem;
        justify-content: stretch;
    }
    
    .event-list-actions .btn-attend {
        flex: 1;
    }
    
    .event-tabs-inner {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab {
        white-space: nowrap;
        padding: 1rem;
    }
    
    .speaker-grid {
        grid-template-columns: 1fr;
    }
    
    .attendee-row {
        flex-wrap: wrap;
    }
    
    .attendee-confidence {
        order: 3;
        width: auto;
    }
    
    .btn-connect {
        order: 4;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* Mobile Filter Drawer (slides from bottom) */
@media (max-width: 640px) {
    .filter-drawer {
        top: auto;
        bottom: -100%;
        right: 0;
        width: 100%;
        height: 85vh;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        transition: bottom 0.3s ease;
    }
    
    .filter-drawer.active {
        bottom: 0;
    }
}
