.qtp-team-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
}
.qtp-team-popup-dialog {
    background: #ffffff;
    max-width: 960px;
    margin: 40px auto;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    overflow: hidden;
}
.qtp-team-popup-close {
    position: absolute;
    right: 16px;
    top: 12px;
    border: none;
    background: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 0;
}
.qtp-team-popup-inner {
    display: flex;
}
.qtp-team-popup-image {
    flex: 0 0 40%;
    max-width: 40%;
    border-right: 1px solid #eee;
}
.qtp-team-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.qtp-team-popup-content {
    flex: 1;
    padding: 30px 35px;
}
.qtp-team-popup-name {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
}
.qtp-team-popup-role {
    margin: 0 0 18px;
    font-size: 15px;
    color: #777;
}
body.qtp-team-popup-open {
    overflow: hidden;
}
@media (max-width: 768px) {
    .qtp-team-popup-inner {
        flex-direction: column;
    }
    .qtp-team-popup-image {
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}
