section.member_hero {
    background-color: rgb(27, 28, 29);
    padding-top: 80px;
    padding-bottom: 80px;
}

.member_photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(197, 155, 50, 0.15);

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }
}

.member_photo_placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(197, 155, 50, 0.05) 0%, rgba(27, 28, 29, 0.8) 100%);

    p {
        color: rgba(255, 255, 255, 0.25);
        font-size: 0.78rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin: 0;
    }
}

.member_back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    transition: color 0.2s ease;

    svg {
        flex-shrink: 0;
        transition: transform 0.2s ease;
    }

    &:hover {
        color: #c59b32;

        svg {
            transform: translateX(-4px);
        }
    }
}

.member_name {
    font-family: 'Gilroy', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.member_positions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.member_position_tag {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid rgba(197, 155, 50, 0.35);
    border-radius: 100px;
    color: #c59b32;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.member_linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;

    svg {
        flex-shrink: 0;
    }

    &:hover {
        color: #c59b32;
    }
}

section.member_bio {
    background-color: rgb(27, 28, 29);
    padding-top: 0;
    padding-bottom: 80px;
}

.member_bio_content {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 48px;

    p {
        color: rgba(255, 255, 255, 0.65);
        font-size: 1rem;
        line-height: 1.85;
        margin-bottom: 20px;
		color: white;

        &:last-child {
            margin-bottom: 0;
        }
    }
}

section.member_footer_nav {
    background-color: rgb(27, 28, 29);
    padding-top: 0;
    padding-bottom: 80px;
}

.member_back_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c59b32;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(197, 155, 50, 0.35);
    border-radius: 100px;
    padding: 10px 20px;
    transition: background-color 0.2s ease, color 0.2s ease;

    svg {
        flex-shrink: 0;
        transition: transform 0.2s ease;
    }

    &:hover {
        background-color: rgba(197, 155, 50, 0.1);
        color: #fff;

        svg {
            transform: translateX(-4px);
        }
    }
}

@media (max-width: 991px) {
    .member_photo {
        aspect-ratio: 1 / 1;
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    section.member_hero {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    section.member_bio {
        padding-bottom: 48px;
    }

    section.member_footer_nav {
        padding-bottom: 48px;
    }

    .member_bio_content p {
        font-size: 0.95rem;
    }
}