/* ============================================================
   MSC Member Card Widget  — msc-member-card.css
   ============================================================ */

/* ── Wrapper / Card ── */
.msc-member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 20px;
    box-sizing: border-box;
    width: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

/* Empty / placeholder state */
.msc-member-card.msc-member-empty {
    color: #aaa;
    font-style: italic;
    min-height: 100px;
    justify-content: center;
    border: 2px dashed #ddd;
}
.msc-member-empty .msc-empty-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
    font-style: normal;
}
.msc-member-empty p {
    margin: 0;
    font-size: 13px;
}

/* ── Photo ── */
.msc-member-photo {
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
}

.msc-member-photo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* ── Content ── */
.msc-member-content {
    width: 100%;
}

/* ── Name ── */
.msc-member-name {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
    line-height: 1.35;
    padding: 0;
}

/* ── Designation badge (committee) ── */
.msc-member-designation-wrap {
    margin-bottom: 6px;
}

.msc-member-designation {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #ffffff;
    background-color: #1a73e8;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ── Member type ── */
.msc-member-type {
    font-size: 13px;
    color: #666666;
    margin-bottom: 10px;
    display: block;
}

/* ── Social icons ── */
.msc-member-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.msc-member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #f0f2f5;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.msc-member-social a:hover {
    background-color: #1a73e8;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.msc-member-social a i {
    line-height: 1;
}
