ul li span strong {
    display: inline-block;
    width: 90px;
}

.section-title-small {
    margin-bottom: 1rem;
}

table.table th, table.table td {
    vertical-align: middle;
}

.member-card {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: #fff;
    text-align: center;
    padding: 20px;
}
.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}
.member-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}
.member-name {
    font-size: 18px;
    font-weight: 600;
}
.member-position {
    color: #6c757d;
    font-size: 15px;
}
