/* ── Leadership Slider Widget ─────────────────────────────────────── */

.ls-widget {
    font-family: inherit;
}

/* Tabs */
.ls-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 32px;
}

.ls-tabs .ls-tab {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    font-weight: 400;
    color: inherit;
    line-height: 1.4;
}

.ls-tabs .ls-tab.active {
    color: #3AB44B;
    font-weight: 700;
}

.ls-tabs .ls-tab:hover:not(.active) {
    color: #3AB44B;
}

.ls-tab-sep {
    padding: 0 16px;
    color: #bbb;
    user-select: none;
}

/* Panels */
.ls-panels {
    position: relative;
}

.ls-panel {
    display: none;
}

.ls-panel.active {
    display: block;
}

.ls-empty {
    color: #999;
    font-style: italic;
}

/* Swiper overrides */
.ls-swiper {
    position: relative;
    padding: 0px;
}

.ls-swiper .swiper-button-prev,
.ls-swiper .swiper-button-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.ls-swiper .swiper-button-prev {
    left: 10px;
}

.ls-swiper .swiper-button-next {
    right: 10px;
}

.ls-swiper .swiper-button-prev::after,
.ls-swiper .swiper-button-next::after {
    display: none;
}

.ls-swiper .swiper-button-prev span,
.ls-swiper .swiper-button-next span {
    font-size: 70px;
    line-height: 1;
    color: #fff;
    display: block;
}

.ls-swiper .swiper-button-prev.swiper-button-disabled span,
.ls-swiper .swiper-button-next.swiper-button-disabled span {
    opacity: 0.25;
}

/* Card */
.ls-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ls-card-image {
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
}

.ls-card-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.ls-card-body {
    padding: 16px 0 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ls-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.ls-card-meta {
    flex: 1;
    min-width: 0;
}

.ls-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 2px;
    line-height: 1.3;
}

.ls-card-position {
    font-size: 0.875rem;
    color: #111;
    margin: 0;
    line-height: 1.4;
}

.ls-linkedin {
    display: block;
    flex-shrink: 0;
    line-height: 0;
}

.ls-linkedin svg {
    display: block;
    border-radius: 4px;
}

.ls-card-description {
    font-size: 0.78rem;
    line-height: 1.4;
    color: #000;
    margin: 0;
}
