.member-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #1f3a5a 0%, #1f4e79 55%, #2b5f95 100%);
}

.member-hero::after {
    content: "";
    position: absolute;
    inset: auto -70px -90px auto;
    width: 210px;
    height: 210px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(1px);
}

.member-hero-tag {
    margin: 0 0 8px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
}

.member-card {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 18px;
    align-items: start;
    border-left: 4px solid #1f4e79;
}

.member-avatar-wrap {
    display: flex;
    justify-content: center;
}

.member-avatar {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #cfd8e3;
    background: var(--bg-soft);
}

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

.member-checklist {
    margin: 0;
    padding-left: 20px;
}

.member-checklist li {
    margin-bottom: 8px;
}

.member-checklist li::marker {
    color: #1f4e79;
}

.member-link-note {
    margin: 0;
    color: var(--muted);
}

.member-links {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.member-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #b8c8da;
    background: #f5f8fc;
    color: #1f4e79;
    font-weight: 700;
    text-decoration: none;
}

.member-link-btn:hover {
    background: #eaf1f8;
}

.back-link-block {
    text-align: center;
}

.back-link-block a {
    color: #1f4e79;
    font-weight: 700;
    text-decoration: none;
}

.back-link-block a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .member-card {
        grid-template-columns: 1fr;
    }

    .member-avatar {
        width: 120px;
        height: 120px;
    }

    .member-link-btn {
        width: 100%;
    }
}
