/* ============================================================
   EXPERTS — Slider
   ============================================================ */

.experts-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 0 2rem;
    position: relative;
}

.experts-overflow {
    overflow: hidden;
    width: 100%;
}

.experts.experts-track {
    display: flex;
    gap: 1.5rem;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    align-items: stretch;
}

/* ── Card ── */
.experts-card {
    flex-shrink: 0;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    background: rgb(246, 246, 246);
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: transform .22s, box-shadow .22s;
    display: flex;
    flex-direction: column;
}

.experts-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

/* ── Photo ── */
.experts-card-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0f0f0;
}

.experts-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .4s;
}

.experts-card:hover .experts-card-photo img {
    transform: scale(1.04);
}

.experts-card-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dce9f5 0%, #b8d4ee 100%);
    color: #7aadd4;
}

/* ── Info ── */
.experts-card-info {
    padding: 1.1rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
    flex: 1;
}

.experts-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: rgb(6, 115, 179) !important;
    margin: 0 0 .15rem;
    line-height: 1.3;
}

.experts-card-position {
    font-size: .82rem;
    font-weight: 600;
    color: #000;
    display: block;
}

.experts-card-org {
    font-size: .82rem;
    color: #666;
    display: block;
    margin-bottom: .35rem;
}

/* ── Tags ── */
.experts-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin: .35rem 0;
}

.experts-card-tag {
    background: #eaf3fc;
    color: #1a6bb5;
    font-size: .75rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 20px;
}

/* ── Bio ── */
.experts-card-bio {
    font-size: .85rem;
    color: #555;
    line-height: 1.55;
    margin: .35rem 0 .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── LinkedIn ── */
.experts-card-linkedin {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #0a66c2;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    padding-top: .5rem;
    transition: color .2s;
}

.experts-card-linkedin:hover {
    color: #084e96;
}

/* ── Navigation ── */
.experts-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.75rem;
}

.experts-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #1a6bb5;
    background: #fff;
    color: #1a6bb5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, color .2s, opacity .2s;
    flex-shrink: 0;
}

.experts-btn:hover {
    background: #1a6bb5;
    color: #fff;
}

.experts-btn.is-disabled {
    opacity: .35;
    pointer-events: none;
}

/* ── Dots ── */
.experts-dots {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.experts-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccd9e8;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.experts-dot.is-active {
    background: #1a6bb5;
    transform: scale(1.3);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .experts-wrapper {
        padding: 1rem 0 1.5rem;
    }
}