/**
 * LC Team Shortcode Styles — [lc_team]
 * Font, colours, and card tokens mirror [lc_critic_team] / [lc_reflection_writers]
 * so the three sections feel like one cohesive team.
 * All selectors scoped under .lc-team-* to avoid bleeding into Enfold.
 */

/* ── Wrapper & optional heading ──────────────────────────────── */
.lc-team-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #222;
    line-height: 1.55;
}

.lc-team-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2a3a;
    margin: 0 0 2rem;
}

/* ── Card ────────────────────────────────────────────────────── */
.lc-team-card {
    display: flex;
    gap: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 1.6rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.lc-team-card:hover {
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.12);
    border-color: #b3d0f7;
}

/* ── Identity column (left) ──────────────────────────────────── */
.lc-team-card-identity {
    flex-shrink: 0;
    width: 230px;
    padding: 1.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lc-team-name {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0 0 0.1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #1a2a3a;
    line-height: 1.25;
}

.lc-team-role {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    font-size: 0.78rem;
    color: #546e8a;
    line-height: 1.3;
}

.lc-team-department {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    font-size: 0.75rem;
    color: #6b7280;
    font-style: italic;
    line-height: 1.4;
}

.lc-team-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 4px;
}

.lc-team-location {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: #546e8a;
    line-height: 1.4;
}

.lc-team-location svg {
    flex-shrink: 0;
    color: #546e8a;
}

.lc-team-since {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #1565c0;
    background: #e3f0ff;
    border: 1px solid #b3d0f7;
    border-radius: 20px;
    padding: 3px 11px;
    letter-spacing: 0.02em;
    line-height: 1.6;
    align-self: flex-start;
}

/* ── Bio column (right) ──────────────────────────────────────── */
.lc-team-card-bio {
    flex: 1;
    min-width: 0;
    border-left: 2px solid #e2e8f0;
    padding: 1.4rem 1.5rem 1.6rem;
}

.lc-team-card-bio p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0 0 14px;
    font-size: 0.84rem;
    line-height: 1.65;
    color: #3a4a5a;
}

.lc-team-card-bio p:last-child {
    margin-bottom: 0;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 680px) {
    .lc-team-card {
        flex-direction: column;
    }

    .lc-team-card-identity {
        width: 100%;
        padding-bottom: 1rem;
    }

    .lc-team-card-bio {
        border-left: none;
        border-top: 2px solid #e2e8f0;
    }
}
