    .flacso-docentes-archive {
        --primary: #1d3a72;
        --primary-dark: #0f172a;
        --accent: #fed222;
        --text-muted: #64748b;
        --bg-soft: #f8fafc;
        --border-soft: #e2e8f0;
        
        background-color: var(--bg-soft);
        min-height: 100vh;
        font-family: 'Inter', system-ui, sans-serif;
    }

    /* Hero */
    .archive-hero {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        padding: 5rem 0 7rem;
        color: #fff;
        text-align: center;
        clip-path: ellipse(150% 100% at 50% 0%);
        margin-bottom: -3rem;
    }
    .hero-kicker {
        display: inline-block;
        color: var(--accent);
        font-weight: 800;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
    }
    .hero-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; margin: 0 0 1rem; line-height: 1; }
    .hero-desc { font-size: 1.25rem; opacity: 0.85; max-width: 600px; margin: 0 auto 3rem; }

    /* Search Bar */
    .search-container { max-width: 700px; margin: 0 auto; position: relative; z-index: 10; }
    .search-box {
        background: #fff;
        border-radius: 20px;
        padding: 0.5rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    .search-icon { font-size: 1.2rem; }
    .search-box input {
        border: none;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: var(--primary-dark);
        outline: none;
    }
    .search-stats { margin-top: 1.5rem; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.7); }

    /* Grid */
    .archive-main { padding: 4rem 0 6rem; }
    .docentes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }

    /* Cards */
    .docente-card-mini { height: 100%; }
    .card-inner {
        background: #fff;
        border-radius: 24px;
        border: 1px solid var(--border-soft);
        padding: 2rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
    }
    .card-inner:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
        border-color: var(--primary);
    }

    .card-avatar {
        width: 100px;
        height: 100px;
        border-radius: 24px;
        margin: 0 auto 1.5rem;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border: 3px solid #fff;
    }
    .avatar-img { width: 100%; height: 100%; object-fit: cover; }
    .avatar-fallback {
        width: 100%; height: 100%; background: var(--primary);
        color: #fff; display: flex; align-items: center; justify-content: center;
        font-weight: 800; font-size: 2rem;
    }

    .prefijo {
        display: block;
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        margin-bottom: 0.25rem;
    }
    .nombre { font-size: 1.35rem; font-weight: 800; color: var(--primary-dark); margin: 0 0 0.5rem; line-height: 1.2; }
    .titulo { font-size: 0.95rem; color: var(--primary); font-weight: 600; margin-bottom: 1rem; }
    .resumen { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }

    .btn-profile {
        display: block;
        padding: 0.75rem 1rem;
        background: var(--bg-soft);
        color: var(--primary);
        border-radius: 12px;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 700;
        transition: all 0.2s ease;
        border: 1px solid var(--border-soft);
    }
    .btn-profile:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

    .empty-results { grid-column: 1 / -1; text-align: center; padding: 4rem; color: var(--text-muted); }

    .site-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

    @media (max-width: 768px) {
        .archive-hero { padding: 4rem 0 6rem; }
        .hero-title { font-size: 2.5rem; }
        .docentes-grid { grid-template-columns: 1fr; }
    }
