/* Leadership Carousel Block — LSP44 */
.lcb-wrapper {
    width: 100%;
    box-sizing: border-box;
    font-family: 'Whitney', -apple-system, sans-serif;
    overflow: hidden;
}

/* ── Track ── */
.lcb-track-wrap { overflow: hidden; width: 100%; }
.lcb-track {
    display: flex;
    gap: var(--lcb-gap, 16px);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* ── Card ── */
.lcb-card {
    flex-shrink: 0;
    display: flex;
    background: var(--lcb-card-bg, #0d0f14);
    border: 1px solid var(--lcb-card-border, rgba(255,255,255,0.08));
    border-radius: var(--lcb-card-radius, 8px);
    overflow: hidden;
    min-height: 200px;
}

/* ── Photo ── */
.lcb-photo {
    width: var(--lcb-photo-w, 38%);
    flex-shrink: 0;
    overflow: hidden;
    background: #111;
}
.lcb-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}
.lcb-card:hover .lcb-photo img { filter: grayscale(60%); }
.lcb-photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
}

/* ── Content ── */
.lcb-content {
    flex: 1;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.lcb-name {
    font-family: 'Whitney', sans-serif;
    font-size: var(--lcb-name-size, 16px);
    font-weight: 400;
    color: var(--lcb-name-color, #6DB13A);
    line-height: 1.2;
    margin: 0;
}
.lcb-title {
    font-family: 'Degular Mono', 'Courier New', monospace;
    font-size: var(--lcb-title-size, 14px);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lcb-title-color, #ffffff);
    margin: 0 0 4px;
}
.lcb-bio {
    font-family: 'Whitney', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--lcb-bio-color, rgba(255,255,255,0.7));
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
.lcb-linkedin {
    display: inline-flex;
    margin-top: 8px;
    color: var(--lcb-linkedin-color, rgba(255,255,255,0.85));
    transition: color 0.2s ease;
    align-self: flex-start;
}
a.lcb-linkedin:hover { color: #ffffff; }

/* ── Navigation ── */
.lcb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}
.lcb-arrow {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: none;
    background: var(--lcb-arrow-bg, #63B52D);
    color: var(--lcb-arrow-color, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: filter 0.2s ease, opacity 0.2s ease;
    padding: 0;
    line-height: 1;
}
.lcb-arrow svg {
    display: block;
    stroke: var(--lcb-arrow-color, #000);
    flex-shrink: 0;
}
.lcb-arrow:hover  { filter: brightness(1.15); }
.lcb-arrow:disabled { opacity: 0.4; cursor: default; }

.lcb-nav-label {
    font-family: 'Degular Mono', 'Courier New', monospace;
    font-size: var(--lcb-nav-label-size, 14px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .lcb-content { padding: 16px 14px; }
    .lcb-photo   { width: 35%; }
}
