﻿.committee-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    border: none;
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s;
    height: 100%;
}

    .committee-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 34px rgba(26,92,56,0.16);
    }

    /* green gradient strip at top */
    .committee-card::before {
        content: '';
        display: block;
        height: 5px;
        background: linear-gradient(90deg, #1a5c38, #43a047);
    }

    .committee-card .c-avatar-wrap {
        position: relative;
        display: inline-block;
        margin: 1.5rem auto 0.6rem;
    }

    .committee-card .c-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #a5d6a7;
        box-shadow: 0 3px 12px rgba(26,92,56,0.20);
    }

    /* special gold ring for principal */
    .committee-card.principal-card .c-avatar {
        border-color: #f0c040;
        box-shadow: 0 3px 14px rgba(240,192,64,0.35);
        width: 112px;
        height: 112px;
    }

    .committee-card .role-badge {
        display: inline-block;
        font-size: 0.72rem;
        font-weight: 700;
        background: #1a5c38;
        color: #fff;
        border-radius: 50px;
        padding: 2px 12px;
        letter-spacing: 0.4px;
        margin-bottom: 0.5rem;
    }

    .committee-card.principal-card .role-badge {
        background: linear-gradient(135deg, #c8860a, #f0c040);
        color: #3b2100;
    }

    .committee-card .c-name {
        font-size: 1rem;
        font-weight: 700;
        color: #1a3d24;
        margin-bottom: 3px;
        padding: 0 0.8rem;
    }

    .committee-card .c-org {
        font-size: 0.78rem;
        color: #777;
        padding: 0 0.8rem;
        margin-bottom: 0.4rem;
    }

        .committee-card .c-org i {
            color: #1a5c38;
        }

    .committee-card .c-divider {
        border: none;
        border-top: 1px dashed #c8e6c9;
        margin: 0.6rem 1rem 0.7rem;
    }

    .committee-card .c-quote {
        font-size: 0.80rem;
        color: #888;
        font-style: italic;
        padding: 0 1.1rem 1rem;
        min-height: 2.4rem;
    }

        .committee-card .c-quote i {
            color: #a5d6a7;
        }

.section-divider-line {
    width: 60px;
    height: 3px;
    background: #f0c040;
    border-radius: 2px;
    margin: 8px auto 0;
}
