@charset "utf-8";
/* CSS Document */
 .researchers-page {
            background: #ffffff;
        }

        .researchers-hero {
            position: relative;
            padding: 74px 0;
            background:
                linear-gradient(135deg, rgba(37, 50, 70, .96), rgba(29, 41, 57, .94)),
                radial-gradient(circle at top right, rgba(223, 90, 27, .26), transparent 34%);
            color: #ffffff;
            overflow: hidden;
        }

        .researchers-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(
                    135deg,
                    rgba(255,255,255,.045) 0,
                    rgba(255,255,255,.045) 1px,
                    transparent 1px,
                    transparent 22px
                );
            pointer-events: none;
        }

        .researchers-hero::after {
            content: "";
            position: absolute;
            right: -120px;
            bottom: -150px;
            width: 390px;
            height: 390px;
            border-radius: 50%;
            background: rgba(223, 90, 27, .18);
        }

        .researchers-hero .container {
            position: relative;
            z-index: 2;
        }

        .researchers-kicker {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: var(--cires-orange, #df5a1b);
            color: #ffffff;
            padding: 9px 15px;
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 18px;
        }

        .researchers-hero h1 {
            font-size: clamp(2.2rem, 5vw, 4.2rem);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -1.2px;
            margin-bottom: 18px;
        }

        .researchers-hero p {
            max-width: 850px;
            color: rgba(255,255,255,.84);
            font-size: 16px;
            line-height: 1.85;
            margin: 0;
        }

        .researchers-breadcrumb {
            margin-top: 28px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .5px;
        }

        .researchers-breadcrumb a {
            color: rgba(255,255,255,.76);
            text-decoration: none;
        }

        .researchers-breadcrumb a:hover {
            color: #ffffff;
        }

        .researchers-breadcrumb span {
            color: var(--cires-orange, #df5a1b);
        }

        .researchers-section {
            padding: 80px 0;
            background: var(--cires-bg, #f7f8fa);
        }

        .researchers-heading {
            max-width: 880px;
            margin: 0 auto 40px;
            text-align: center;
        }

        .researchers-heading .section-kicker-custom {
            display: inline-block;
            color: var(--cires-orange, #df5a1b);
            font-size: 13px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: .7px;
            margin-bottom: 10px;
        }

        .researchers-heading h2 {
            color: var(--cires-navy, #253246);
            font-size: clamp(2rem, 3.4vw, 3.1rem);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .researchers-heading h2::after {
            content: "";
            width: 76px;
            height: 4px;
            background: var(--cires-orange, #df5a1b);
            display: block;
            margin: 18px auto 0;
        }

        .researchers-heading p {
            color: var(--cires-muted, #6b7280);
            font-size: 16px;
            line-height: 1.8;
            margin: 18px auto 0;
            max-width: 780px;
        }

        .researchers-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            margin-bottom: 30px;
        }

        .researchers-stat-card {
            background: #ffffff;
            border: 1px solid var(--cires-border, #dfe5ec);
            box-shadow: 0 12px 30px rgba(37,50,70,.05);
            padding: 24px;
            position: relative;
            overflow: hidden;
        }

        .researchers-stat-card::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 5px;
            height: 100%;
            background: var(--cires-orange, #df5a1b);
        }

        .researchers-stat-card i {
            color: var(--cires-orange, #df5a1b);
            font-size: 24px;
            margin-bottom: 12px;
        }

        .researchers-stat-card strong {
            display: block;
            color: var(--cires-navy, #253246);
            font-size: 2rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 8px;
        }

        .researchers-stat-card span {
            color: var(--cires-muted, #6b7280);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
        }

        .researchers-filter-box {
            background: #ffffff;
            border: 1px solid var(--cires-border, #dfe5ec);
            box-shadow: 0 16px 38px rgba(37,50,70,.06);
            padding: 24px;
            margin-bottom: 30px;
        }

        .researchers-filter-box label {
            color: var(--cires-navy, #253246);
            font-size: 13px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .researchers-filter-box .form-control,
        .researchers-filter-box .form-select {
            border-radius: 0;
            border: 1px solid #d7dee8;
            min-height: 48px;
            font-size: 14px;
        }

        .researchers-filter-box .form-control:focus,
        .researchers-filter-box .form-select:focus {
            border-color: var(--cires-orange, #df5a1b);
            box-shadow: 0 0 0 .2rem rgba(223,90,27,.12);
        }

        .researchers-result-line {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 22px;
        }

        .researchers-result-line strong {
            color: var(--cires-navy, #253246);
            font-weight: 900;
        }

        .researchers-result-line span {
            color: var(--cires-muted, #6b7280);
            font-size: 14px;
        }

        .researcher-premium-card {
            background: #ffffff;
            border: 1px solid var(--cires-border, #dfe5ec);
            box-shadow: 0 12px 30px rgba(37,50,70,.05);
            height: 100%;
            padding: 28px 24px;
            transition: .3s ease;
            position: relative;
            overflow: hidden;
        }

        .researcher-premium-card::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 5px;
            background: var(--cires-orange, #df5a1b);
            transform: scaleX(0);
            transform-origin: left;
            transition: .3s ease;
        }

        .researcher-premium-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 42px rgba(37,50,70,.10);
            border-color: rgba(223,90,27,.35);
        }

        .researcher-premium-card:hover::before {
            transform: scaleX(1);
        }

        .researcher-avatar {
            width: 94px;
            height: 94px;
            border-radius: 50%;
            background:
                linear-gradient(135deg, rgba(223,90,27,.13), rgba(37,50,70,.08));
            border: 4px solid #f3f5f8;
            margin-bottom: 18px;
            overflow: hidden;
            position: relative;
        }

        .researcher-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .researcher-avatar::before {
            content: attr(data-initials);
            position: absolute;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            color: var(--cires-navy, #253246);
            font-size: 28px;
            font-weight: 950;
        }

        .researcher-avatar.is-empty::before {
            display: flex;
        }

        .researcher-premium-card h3 {
            color: var(--cires-navy, #253246);
            font-size: 1.12rem;
            font-weight: 900;
            line-height: 1.35;
            margin-bottom: 10px;
        }

        .researcher-grade {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(223,90,27,.10);
            color: var(--cires-orange, #df5a1b);
            padding: 7px 11px;
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .researcher-speciality {
            color: #374151;
            font-size: 14px;
            line-height: 1.65;
            margin-bottom: 16px;
        }

        .researcher-email-list {
            border-top: 1px solid #edf0f4;
            padding-top: 16px;
            display: grid;
            gap: 7px;
        }

        .researcher-email-list a,
        .researcher-email-list span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--cires-muted, #6b7280);
            font-size: 13px;
            font-weight: 650;
            word-break: break-all;
        }

        .researcher-email-list a:hover {
            color: var(--cires-orange, #df5a1b);
        }

        .researcher-email-list i {
            color: var(--cires-orange, #df5a1b);
        }

        .empty-researchers {
            background: #ffffff;
            border: 1px solid var(--cires-border, #dfe5ec);
            padding: 38px;
            text-align: center;
            color: var(--cires-muted, #6b7280);
            box-shadow: 0 12px 30px rgba(37,50,70,.05);
        }

        .empty-researchers i {
            color: var(--cires-orange, #df5a1b);
            font-size: 42px;
            margin-bottom: 16px;
        }

        .cires-pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 38px;
        }

        .cires-pagination a,
        .cires-pagination span {
            min-width: 42px;
            height: 42px;
            padding: 0 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            border: 1px solid #dfe5ec;
            color: var(--cires-navy, #253246);
            font-weight: 900;
            font-size: 14px;
            text-decoration: none;
        }

        .cires-pagination a:hover,
        .cires-pagination .active {
            background: var(--cires-orange, #df5a1b);
            border-color: var(--cires-orange, #df5a1b);
            color: #ffffff;
        }

        @media(max-width: 991.98px) {
            .researchers-hero {
                padding: 58px 0;
            }

            .researchers-section {
                padding: 65px 0;
            }

            .researchers-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width: 575.98px) {
            .researchers-hero h1 {
                font-size: 2rem;
            }

            .researchers-hero p,
            .researchers-heading p {
                font-size: 14px;
            }

            .researchers-stats {
                grid-template-columns: 1fr;
            }

            .researchers-filter-box {
                padding: 20px;
            }

            .researcher-premium-card {
                padding: 24px 20px;
            }
        }

        @media print {
            .site-header,
            .header-topbar,
            .header-branding,
            .header-navline,
            .researchers-hero,
            .researchers-filter-box,
            .researchers-stats,
            .cires-pagination,
            .footer-sober,
            #backToTop {
                display: none !important;
            }

            body {
                background: #ffffff !important;
            }

            .researchers-section {
                padding: 0 !important;
                background: #ffffff !important;
            }

            .researcher-premium-card {
                box-shadow: none !important;
                break-inside: avoid;
            }

            @page {
                size: A4 portrait;
                margin: 12mm;
            }
        }

