.bap-199c1604-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    padding: 2%; /* Added 2% padding all round */
}
.bap-199c1604-left {
    flex: 0 0 20%; /* Reduced from 25% */
    max-width: 20%; /* Reduced from 25% */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bap-199c1604-image {
    width: 100%;
    padding-bottom: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f1f1f1;
    box-sizing: border-box; /* Important for borders on percentage paddings */
    margin-bottom: 15px;
}
.bap-199c1604-right {
    flex: 1;
    min-width: 200px;
}
.bap-199c1604-name {
    margin: 0 0 5px 0;
}
.bap-199c1604-job {
    margin: 0 0 15px 0;
}
.bap-199c1604-bio {
    margin: 0 0 15px 0;
}
.bap-199c1604-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
    justify-content: center;
}
.bap-199c1604-socials {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.bap-199c1604-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s;
    color: #333;
}
.bap-199c1604-social-link:hover {
    opacity: 0.8;
}
.bap-199c1604-social-link svg {
    fill: currentColor;
}
.bap-199c1604-archive-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}
.bap-199c1604-archive-btn:hover {
    background-color: #555;
    color: #fff;
}
.bap-199c1604-placeholder {
    padding: 20px;
    background: #f8f8f8;
    border: 1px dashed #ccc;
    text-align: center;
    color: #666;
}
@media (max-width: 767px) {
    .bap-199c1604-container {
        flex-direction: column;
        text-align: center;
    }
    .bap-199c1604-left {
        flex: 0 0 40%; /* Adjusted for mobile */
        max-width: 40%;
        margin: 0 auto;
    }
    .bap-199c1604-actions {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
}