.experts-hero {
    min-height: 360px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}

.experts-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

.experts-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 40, 86, .88), rgba(0, 81, 152, .45));
}

.experts-hero-content {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-top: 70px;
}

.experts-hero-content span,
.experts-eyebrow {
    display: inline-block;
    color: #00a6d6;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.experts-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    line-height: .95;
    margin: 12px 0 0;
    max-width: 760px;
}

.experts-container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.experts-intro {
    padding: 72px 0 38px;
    background: #fff;
}

.experts-intro h2 {
    color: #005198;
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin: 8px 0 18px;
}

.experts-intro p:last-child {
    color: #31445b;
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 980px;
}

.experts-list-section {
    padding: 42px 0 86px;
    background: linear-gradient(180deg, #f5f8fb 0%, #fff 100%);
}

.experts-toolbar {
    background: #005198;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 38, 80, .18);
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 22px;
    padding: 24px;
}

.experts-filter-group label {
    color: #fff;
    display: block;
    font-weight: 800;
    margin-bottom: 9px;
}

.experts-filter-group select {
    appearance: none;
    background: #fff;
    border: 0;
    border-radius: 12px;
    color: #1c2f43;
    font-size: 1rem;
    min-height: 48px;
    padding: 0 16px;
    width: 100%;
}

.experts-count {
    color: #536679;
    font-weight: 700;
    margin: 0 0 18px;
}

.experts-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.expert-card {
    background: #fff;
    border: 1px solid rgba(0, 81, 152, .1);
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(15, 41, 69, .1);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.expert-card:hover {
    box-shadow: 0 22px 42px rgba(15, 41, 69, .16);
    transform: translateY(-4px);
}

.expert-card-body {
    flex: 1;
    padding: 30px 28px 24px;
}

.expert-logo {
    align-items: center;
    background: #f4f8fc;
    border-radius: 50%;
    display: flex;
    height: 96px;
    justify-content: center;
    margin-bottom: 20px;
    width: 96px;
}

.expert-logo img {
    max-width: 70px;
}

.expert-specialty {
    color: #00a6d6;
    display: block;
    font-weight: 800;
    margin-bottom: 10px;
}

.expert-card h3 {
    color: #005198;
    font-size: 1.25rem;
    line-height: 1.25;
    margin: 0 0 14px;
}

.expert-card p {
    color: #52677d;
    line-height: 1.55;
    margin: 0;
}

.expert-card strong {
    color: #253a50;
}

.expert-download {
    align-items: center;
    background: #005198;
    color: #fff;
    display: flex;
    font-weight: 800;
    justify-content: space-between;
    padding: 18px 24px;
    text-decoration: none;
}

.expert-download:hover {
    background: #003c72;
    color: #fff;
}

.expert-download-disabled {
    background: #7f8c99;
}

.expert-download-disabled:hover {
    background: #7f8c99;
}

.experts-empty {
    background: #fff;
    border-radius: 16px;
    color: #536679;
    font-weight: 700;
    margin-top: 20px;
    padding: 22px;
    text-align: center;
}

@media (max-width: 980px) {
    .experts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .experts-hero {
        min-height: 300px;
    }

    .experts-toolbar,
    .experts-grid {
        grid-template-columns: 1fr;
    }

    .experts-intro {
        padding-top: 50px;
    }
}
