/* member.css */
.member-hero {
    height: 350px;
    background: linear-gradient(rgba(18, 31, 58, 0.85), rgba(18, 31, 58, 0.85)), url('images/member.jpg'), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-card {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaeaea;
    overflow: hidden;
    background: #fff;
    margin-bottom: 30px;
}

.member-card-header {
    background-color: #0b1154; /* matched closest from reference image */
    color: #fff;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.member-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-list li {
    padding: 18px 25px;
    border-bottom: 1px solid #eaeaea;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.member-list li:last-child {
    border-bottom: none;
}
