/**
 * LC Critic Team — [lc_critic_team] shortcode styles
 * All selectors scoped under .lc-critic-team-* to avoid
 * bleeding into Enfold's layout or other plugin styles.
 */

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

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

/* ── Grid ────────────────────────────────────────────────────── */
.lc-critic-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

@media (max-width: 768px) {
    .lc-critic-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .lc-critic-team-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Card ────────────────────────────────────────────────────── */
.lc-critic-team-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    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;
}

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

/* ── Card header: name/title ─────────────────────────────────── */
.lc-critic-team-card-header {
    padding-bottom: 0.1rem;
}

.lc-critic-team-identity {
    min-width: 0;
}

.lc-critic-team-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2a3a;
    margin: 0 0 0.15rem;
    line-height: 1.25;
}

.lc-critic-team-title {
    font-size: 0.78rem;
    color: #546e8a;
    margin: 0;
    line-height: 1.3;
}

/* ── Specialty badge ─────────────────────────────────────────── */
.lc-critic-team-specialty {
    display: inline-block;
    background: #e3f0ff;
    color: #1565c0;
    border: 1px solid #b3d0f7;
    border-radius: 20px;
    padding: 3px 11px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.6;
    white-space: normal;
    align-self: flex-start;
}

/* ── Stat: N photographs reviewed ───────────────────────────── */
.lc-critic-team-stat {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.lc-critic-team-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1565c0;
    line-height: 1;
}

.lc-critic-team-stat-label {
    font-size: 0.8rem;
    color: #546e8a;
}

/* ── Biography ───────────────────────────────────────────────── */
.lc-critic-team-bio {
    font-size: 0.84rem;
    color: #3a4a5a;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* ── Footer: "Showing X of Y · ↻ Meet different critics" ───── */
.lc-critic-team-footer {
    margin: 1.4rem 0 0;
    text-align: center;
    font-size: 0.82rem;
    color: #7a8fa8;
}

.lc-critic-team-footer a {
    color: #1565c0;
    text-decoration: none;
    font-weight: 600;
}

.lc-critic-team-footer a:hover {
    text-decoration: underline;
}

/* ── Ideology quote ──────────────────────────────────────────── */
.lc-critic-team-ideology {
    margin: 0;
    padding: 0.7rem 1rem;
    border-left: 3px solid #1565c0;
    background: #f0f6ff;
    border-radius: 0 6px 6px 0;
}

.lc-critic-team-ideology p {
    font-size: 0.8rem;
    font-style: italic;
    color: #1a2a3a;
    margin: 0;
    line-height: 1.55;
}
