.bmt-wrapper {
    width: 100%;
    box-sizing: border-box;
    
}

/* NAV */
.bmt-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    box-sizing: border-box;
}

.bmt-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 20px 6px 6px;
    border: 1.5px solid #d0ccc8;
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    transition: background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease;
    white-space: nowrap;
    box-sizing: border-box;
}

.bmt-tab-btn img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.bmt-tab-btn:hover {
    border-color: #7a3a10;
    color: #7a3a10;
}

.bmt-tab-btn.active {
    background-color: #7a3a10;
    border-color: #7a3a10;
    color: #fff;
}

/* CONTENT */
.bmt-content {
    display: none;
    gap: 36px;
    align-items: flex-start;
    background: #fff;
    border-radius: 10px;
    padding: 36px 40px;
    box-shadow: 0px 0px 40px 0px #00000014;
    box-sizing: border-box;
    width: 100%;
    
}

.bmt-content.active {
    display: flex;
}

/* IMAGE */
.bmt-image-wrap {
    flex-shrink: 0;
    text-align: center;
    width: 200px;
    box-sizing: border-box;
}

.bmt-member-image {
    width: 200px;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin-bottom: 12px;
    max-width: 100%;
}

.bmt-member-name {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.bmt-member-role {
    font-size: 13px;
    color: #8B4513;
    font-style: italic;
    margin: 0;
}

/* BIO */
.bmt-bio {
    flex: 1;
    min-width: 0;
    font-size: 14.5px;
    color: #333;
    line-height: 1.75;
    padding-top: 4px;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.bmt-bio p {
    margin: 0 0 14px 0;
}

.bmt-bio p:last-child {
    margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .bmt-content.active {
        flex-direction: column;
        padding: 24px 20px;
        align-items: center;
        text-align: center;
    }
    .bmt-image-wrap {
        width: 100%;
        text-align: center;
    }
    .bmt-member-image {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
        margin-left: auto;
        margin-right: auto;
    }
    .bmt-bio {
        text-align: center;
        width: 100%;
    }
    .bmt-tab-btn span {
        display: inline;
        font-size: 11px;
        font-weight: 600;
        line-height: 1.2;
        max-width: 60px;
        white-space: normal;
        word-break: break-word;
    }
    .bmt-tab-btn {
        padding: 5px 10px 5px 5px;
        gap: 6px;
    }
    .bmt-tab-btn img {
        width: 28px;
        height: 28px;
    }
}
