/* ============================================================
   Live HIPAA Training — Multi-Product Event Listing
   test_live.css — v2 (full-width fix + mobile-first)
   ============================================================ */

:root {
    --lt-primary: #2563eb;
    --lt-primary-dark: #1e40af;
    --lt-primary-light: #3b82f6;
    --lt-primary-surface: #eff6ff;
    --lt-success: #059669;
    --lt-success-light: #d1fae5;
    --lt-warning: #d97706;
    --lt-warning-light: #fef3c7;
    --lt-danger: #dc2626;
    --lt-executive: #7c3aed;
    --lt-executive-light: #ede9fe;
    --lt-gray-50: #f9fafb;
    --lt-gray-100: #f3f4f6;
    --lt-gray-200: #e5e7eb;
    --lt-gray-300: #d1d5db;
    --lt-gray-400: #9ca3af;
    --lt-gray-500: #6b7280;
    --lt-gray-600: #4b5563;
    --lt-gray-700: #374151;
    --lt-gray-800: #1f2937;
    --lt-gray-900: #111827;
    --lt-radius-sm: 8px;
    --lt-radius-md: 12px;
    --lt-radius-lg: 16px;
    --lt-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --lt-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --lt-shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
    --lt-shadow-xl: 0 20px 50px rgba(0,0,0,0.18);
}

/* ============================================
   FULL-WIDTH BREAKOUT — override site container
   ============================================ */
main[style*="width: 100%"] {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
}

.lt-hero,
.lt-filter-bar {
    width: 100% !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.lt-hero {
    background: linear-gradient(135deg, var(--lt-primary-dark) 0%, var(--lt-primary) 50%, var(--lt-primary-light) 100%);
    padding: 40px 16px 36px;
    color: white;
    overflow: hidden;
}

.lt-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lt-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.lt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 14px;
}

.lt-hero-badge .lt-dot {
    width: 6px;
    height: 6px;
    background: #34d399;
    border-radius: 50%;
    animation: lt-pulse-dot 2s infinite;
}

@keyframes lt-pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.lt-hero h1 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.lt-hero p {
    font-size: 15px;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.lt-hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.lt-hero-stat { text-align: center; }

.lt-hero-stat-value { font-size: 18px; font-weight: 800; }

.lt-hero-stat-label {
    font-size: 11px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

/* ============================================
   FILTER TABS
   ============================================ */
.lt-filter-bar {
    background: white;
    border-bottom: 1px solid var(--lt-gray-200);
    top: 0;
    z-index: 100;
    box-shadow: var(--lt-shadow-sm);
}

.lt-filter-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.lt-filter-inner::-webkit-scrollbar { display: none; }

.lt-filter-tab {
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lt-gray-500);
    border: none;
    background: none;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

.lt-filter-tab:hover { color: var(--lt-gray-800); }

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

.lt-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    background: var(--lt-gray-100);
    border-radius: 9px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 4px;
    padding: 0 5px;
    color: var(--lt-gray-600);
}

.lt-filter-tab.active .lt-tab-count {
    background: var(--lt-primary-surface);
    color: var(--lt-primary);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.lt-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 16px 60px;
}

.lt-section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--lt-gray-400);
    font-weight: 700;
    margin-bottom: 12px;
}

/* ============================================
   INSTRUCTOR STRIP
   ============================================ */
.lt-instructor {
    background: white;
    border: 1px solid var(--lt-gray-200);
    border-radius: var(--lt-radius-md);
    padding: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.lt-instructor-info h3 { font-size: 14px; font-weight: 700; margin: 0 0 2px; }

.lt-instructor-info p {
    font-size: 12px;
    color: var(--lt-gray-500);
    line-height: 1.4;
    margin: 0;
}

.lt-instructor-creds {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.lt-instructor-cred {
    font-size: 11px;
    color: var(--lt-gray-600);
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 500;
}

.lt-instructor-cred svg { width: 12px; height: 12px; color: var(--lt-success); }

/* ============================================
   EVENT CARDS — Mobile first (stacked)
   ============================================ */
.lt-events-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lt-event-card {
    background: white;
    border-radius: var(--lt-radius-md);
    border: 1px solid var(--lt-gray-200);
    overflow: hidden;
    transition: all 0.25s ease;
}

.lt-event-card-inner {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.lt-date-block {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--lt-gray-100);
}

.lt-date-month {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: var(--lt-primary);
}

.lt-date-day {
    font-size: 22px;
    font-weight: 800;
    color: var(--lt-gray-900);
    line-height: 1;
}

.lt-date-weekday {
    font-size: 11px;
    color: var(--lt-gray-400);
    font-weight: 500;
}

.lt-event-details {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lt-tier-badge {
    display: inline-flex;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 2px 8px;
    border-radius: 100px;
    width: fit-content;
}

.lt-tier-beginner { background: var(--lt-success-light); color: var(--lt-success); }
.lt-tier-advanced { background: var(--lt-warning-light); color: var(--lt-warning); }
.lt-tier-compliance_manager { background: var(--lt-primary-surface); color: var(--lt-primary); }
.lt-tier-executive { background: var(--lt-executive-light); color: var(--lt-executive); }

.lt-event-title { font-size: 16px; font-weight: 700; color: var(--lt-gray-900); line-height: 1.3; }

.lt-event-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.lt-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--lt-gray-500);
}

.lt-meta-item svg { width: 13px; height: 13px; flex-shrink: 0; }

.lt-seats-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.lt-seats-green { background: var(--lt-success); }
.lt-seats-yellow { background: var(--lt-warning); }
.lt-seats-red { background: var(--lt-danger); }

.lt-event-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-top: 1px solid var(--lt-gray-100);
}

.lt-event-price { font-size: 22px; font-weight: 800; color: var(--lt-gray-900); }
.lt-event-price-label { font-size: 11px; color: var(--lt-gray-400); font-weight: 500; }

.lt-btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: var(--lt-primary);
    color: white;
    border: none;
    border-radius: var(--lt-radius-sm);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    white-space: nowrap;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.lt-btn-register:hover { background: var(--lt-primary-dark); }
.lt-btn-register svg { width: 14px; height: 14px; }

.lt-agenda-trigger {
    font-size: 12px;
    color: var(--lt-primary);
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 0;
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

.lt-agenda-trigger svg { width: 13px; height: 13px; transition: transform 0.3s; }
.lt-event-card.expanded .lt-agenda-trigger svg { transform: rotate(180deg); }

.lt-agenda-panel {
    padding: 0 16px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.lt-event-card.expanded .lt-agenda-panel { max-height: 600px; padding: 0 16px 16px; }

.lt-agenda-list { border-top: 1px solid var(--lt-gray-100); padding-top: 12px; }

.lt-agenda-item { display: flex; gap: 10px; padding: 6px 0; }

.lt-agenda-time {
    flex-shrink: 0;
    width: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--lt-primary);
    padding-top: 1px;
}

.lt-agenda-title { font-size: 13px; font-weight: 600; color: var(--lt-gray-800); margin-bottom: 1px; }
.lt-agenda-detail { font-size: 12px; color: var(--lt-gray-500); line-height: 1.4; }

/* ============================================
   PRIVATE TRAINING SECTION
   ============================================ */
.lt-private-section { margin-top: 40px; }

.lt-private-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.lt-private-card {
    background: white;
    border: 1px solid var(--lt-gray-200);
    border-radius: var(--lt-radius-md);
    padding: 20px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.lt-private-card:hover { border-color: var(--lt-primary-light); box-shadow: var(--lt-shadow-md); }
.lt-private-card .lt-tier-badge { margin-bottom: 8px; }

.lt-private-card h3 { font-size: 17px; font-weight: 700; color: var(--lt-gray-900); margin: 0 0 6px; line-height: 1.3; }

.lt-private-card .lt-private-desc { font-size: 13px; color: var(--lt-gray-500); line-height: 1.5; margin-bottom: 12px; flex: 1; }

.lt-private-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; font-size: 12px; color: var(--lt-gray-600); }
.lt-private-meta span { display: flex; align-items: center; gap: 3px; }
.lt-private-meta svg { width: 13px; height: 13px; }

.lt-private-price { font-size: 20px; font-weight: 800; color: var(--lt-gray-900); margin-bottom: 2px; }
.lt-private-price-note { font-size: 12px; color: var(--lt-gray-400); margin-bottom: 12px; }

.lt-private-features { list-style: none; padding: 0; margin: 0 0 16px; }

.lt-private-features li {
    font-size: 12px;
    color: var(--lt-gray-600);
    padding: 3px 0;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.lt-private-features li::before { content: '\2713'; color: var(--lt-success); font-weight: 700; flex-shrink: 0; }

.lt-btn-contact {
    background: var(--lt-executive);
    color: white;
    border: none;
    border-radius: var(--lt-radius-sm);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    -webkit-tap-highlight-color: transparent;
}

.lt-btn-contact:hover { background: #6d28d9; }
.lt-btn-contact svg { width: 14px; height: 14px; }

/* ============================================
   CHECKOUT SLIDE PANEL — Full-screen on mobile
   ============================================ */
.lt-checkout-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lt-checkout-overlay.active { opacity: 1; pointer-events: all; }

.lt-checkout-panel {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: white;
    z-index: 1001;
    box-shadow: var(--lt-shadow-xl);
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lt-checkout-panel.active { right: 0; }
.lt-checkout-panel { overflow: hidden; }

.lt-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--lt-gray-200);
    flex-shrink: 0;
}

.lt-panel-header h2 { font-size: 17px; font-weight: 700; margin: 0; }

.lt-panel-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: var(--lt-gray-100);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--lt-gray-600);
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.lt-panel-close:hover { background: var(--lt-gray-200); }

.lt-panel-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px;
    -webkit-overflow-scrolling: touch;
}

.lt-selected-summary {
    background: var(--lt-primary-surface);
    border-radius: var(--lt-radius-sm);
    padding: 10px 12px;
    margin-bottom: 14px;
    border: 1px solid #bfdbfe;
}

.lt-selected-summary .lt-summary-title { font-weight: 700; font-size: 14px; color: var(--lt-gray-900); margin-bottom: 2px; }

.lt-selected-summary .lt-summary-meta { font-size: 12px; color: var(--lt-gray-600); display: flex; flex-direction: column; gap: 1px; }

.lt-step { margin-bottom: 14px; }

.lt-step-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--lt-gray-400);
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lt-step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lt-primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lt-form-row { display: grid; grid-template-columns: 1fr; gap: 6px; }

.lt-form-group { margin-bottom: 8px; }

.lt-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--lt-gray-700);
    margin-bottom: 2px;
}

.lt-form-group input,
.lt-form-group select,
.lt-form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--lt-gray-200);
    border-radius: 8px;
    font-size: 16px; /* 16px prevents iOS zoom */
    font-family: inherit;
    color: var(--lt-gray-900);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box !important;
}

.lt-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

.lt-form-group input:focus,
.lt-form-group select:focus,
.lt-form-group textarea:focus {
    outline: none;
    border-color: var(--lt-primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.lt-form-group input::placeholder,
.lt-form-group textarea::placeholder { color: var(--lt-gray-400); }

.lt-form-group textarea { resize: vertical; min-height: 56px; }

.lt-form-error { color: var(--lt-danger); font-size: 12px; margin-top: 2px; display: none; }

.lt-qty-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--lt-gray-200);
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}

.lt-qty-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: var(--lt-gray-50);
    cursor: pointer;
    font-size: 18px;
    color: var(--lt-gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

.lt-qty-btn:hover { background: var(--lt-gray-100); }

.lt-qty-value {
    width: 44px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    border-left: 1.5px solid var(--lt-gray-200);
    border-right: 1.5px solid var(--lt-gray-200);
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lt-qty-info { font-size: 11px; color: var(--lt-gray-400); margin-top: 4px; }
.lt-discount-row { margin-top: 6px; }

#lt-stripe-container { min-height: 44px; border-radius: 6px; }

.lt-panel-footer {
    border-top: 1px solid var(--lt-gray-200);
    padding: 12px 16px;
    background: white;
    flex-shrink: 0;
}

.lt-order-line { display: flex; justify-content: space-between; font-size: 13px; color: var(--lt-gray-600); padding: 2px 0; }

.lt-order-total {
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 700;
    color: var(--lt-gray-900);
    padding-top: 6px;
    margin-top: 4px;
    border-top: 1px solid var(--lt-gray-200);
}

.lt-btn-pay {
    width: 100%;
    padding: 12px;
    background: var(--lt-primary);
    color: white;
    border: none;
    border-radius: var(--lt-radius-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    -webkit-tap-highlight-color: transparent;
}

.lt-btn-pay:hover { background: var(--lt-primary-dark); }
.lt-btn-pay:active { transform: scale(0.98); }
.lt-btn-pay:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.lt-btn-pay svg { width: 16px; height: 16px; }

.lt-checkout-secure {
    text-align: center;
    font-size: 11px;
    color: var(--lt-gray-400);
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* ============================================
   CONTACT MODAL — Bottom sheet on mobile
   ============================================ */
.lt-contact-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.lt-contact-overlay.active { display: flex; }

.lt-contact-modal {
    background: white;
    border-radius: var(--lt-radius-lg) var(--lt-radius-lg) 0 0;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    padding: 18px 16px 24px;
    box-shadow: var(--lt-shadow-xl);
    animation: lt-modal-up 0.3s ease;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

@keyframes lt-modal-up {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

.lt-contact-modal h2 { font-size: 18px; font-weight: 800; margin: 0 0 4px; padding-right: 40px; }
.lt-contact-modal > p { color: var(--lt-gray-500); font-size: 13px; margin: 0 0 14px; line-height: 1.4; }
.lt-contact-modal .lt-panel-close { position: absolute; top: 14px; right: 14px; }

/* ============================================
   LOADING & EMPTY STATES
   ============================================ */
.lt-loading { text-align: center; padding: 40px 16px; color: var(--lt-gray-400); }
.lt-no-events { text-align: center; padding: 40px 16px; color: var(--lt-gray-400); }
.lt-no-events svg { width: 40px; height: 40px; margin-bottom: 8px; }
.lt-no-events p { font-size: 14px; }

.lt-success-message { text-align: center; padding: 30px 16px; }
.lt-success-message svg { width: 56px; height: 56px; color: var(--lt-success); margin-bottom: 12px; }
.lt-success-message h3 { font-size: 18px; font-weight: 700; margin: 0 0 6px; color: var(--lt-gray-900); }
.lt-success-message p { color: var(--lt-gray-500); font-size: 13px; margin: 0; line-height: 1.5; }

.lt-error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: 10px 12px;
    color: var(--lt-danger);
    font-size: 13px;
    margin-bottom: 12px;
    display: none;
}

/* ============================================
   TABLET/DESKTOP — 768px+
   ============================================ */
@media (min-width: 768px) {
    .lt-hero { padding: 52px 24px 44px; }
    .lt-hero h1 { font-size: 38px; }
    .lt-hero p { font-size: 17px; }
    .lt-hero-stats { gap: 40px; }
    .lt-hero-stat-value { font-size: 22px; }

    .lt-filter-inner { padding: 0 24px; }
    .lt-filter-tab { padding: 14px 18px; font-size: 14px; }

    .lt-main { padding: 28px 24px 80px; }

    .lt-instructor { padding: 18px; gap: 16px; }
    .lt-instructor-avatar { width: 56px; height: 56px; font-size: 20px; }
    .lt-instructor-info h3 { font-size: 15px; }

    /* Desktop: horizontal event cards */
    .lt-event-card-inner {
        display: grid;
        grid-template-columns: 90px 1fr auto;
        align-items: stretch;
    }

    .lt-date-block {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2px;
        padding: 16px;
        border-bottom: none;
        border-right: 1px solid var(--lt-gray-100);
    }

    .lt-date-day { font-size: 28px; }

    .lt-event-details { padding: 14px 20px; }

    .lt-event-action {
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        padding: 14px 20px;
        border-top: none;
        border-left: 1px solid var(--lt-gray-100);
        min-width: 160px;
        gap: 4px;
    }

    .lt-agenda-panel,
    .lt-event-card.expanded .lt-agenda-panel { padding-left: 110px !important; }

    .lt-event-card:hover { transform: translateY(-1px); }

    .lt-private-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Desktop: narrow checkout panel */
    .lt-checkout-panel { width: 440px; right: -440px; }

    /* Desktop: side-by-side form fields */
    .lt-form-row { grid-template-columns: 1fr 1fr; gap: 10px; }
    .lt-panel-body { padding: 18px 20px; }
    .lt-panel-footer { padding: 14px 20px; }
    .lt-panel-header { padding: 14px 20px; }

    .lt-form-group input,
    .lt-form-group select,
    .lt-form-group textarea { font-size: 14px; padding: 9px 12px; }

    /* Desktop: contact modal centered */
    .lt-contact-overlay { align-items: center; padding: 20px; }

    .lt-contact-modal {
        width: 460px;
        max-height: 90vh;
        border-radius: var(--lt-radius-lg);
        padding: 24px;
        animation: lt-modal-in 0.3s ease;
    }

    @keyframes lt-modal-in {
        from { opacity: 0; transform: scale(0.95) translateY(10px); }
        to { opacity: 1; transform: scale(1) translateY(0); }
    }
}

/* ============================================
   LARGE DESKTOP — 1024px+
   ============================================ */
@media (min-width: 1024px) {
    .lt-hero h1 { font-size: 42px; }
    .lt-private-grid { grid-template-columns: repeat(4, 1fr); }
}

/* === Discount code status indicator (Personal Invite Discount UX) === */
.lt-discount-status {
    display: block;
    min-height: 1.2em;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.2;
    transition: color 0.15s ease;
}
.lt-discount-status.is-success {
    color: var(--lt-success, #10b981);
    font-weight: 600;
}
.lt-discount-status.is-error {
    color: #dc2626;
}
.lt-discount-status.is-checking {
    color: #6b7280;
    font-style: italic;
}
