.ibaw-profile-card-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.ibaw-profile-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 15px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    gap: 20px;
}

.ibaw-profile-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ibaw-profile-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #eaeaea;
}

.ibaw-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ibaw-profile-titles {
    display: flex;
    flex-direction: column;
}

.ibaw-acc-name {
    margin: 0 0 2px 0;
    font-size: 1rem;
    font-weight: 600;
}

.ibaw-acc-handle {
    margin: 0;
    font-size: 0.85rem;
}

.ibaw-profile-stats {
    display: flex;
    gap: 40px;
    border-left: 1px solid #e0e0e0;
    padding-left: 40px;
}

.ibaw-stat-item {
    display: flex;
    flex-direction: column;
}

.ibaw-stat-num {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.ibaw-stat-label {
    font-size: 0.8rem;
}

.ibaw-profile-right {
    display: flex;
    align-items: center;
}

.ibaw-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000000;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.ibaw-follow-btn:hover {
    opacity: 0.85;
    color: #ffffff;
}

.ibaw-insta-icon {
    display: flex;
    align-items: center;
}

.ibaw-arrow-icon {
    font-size: 1.1rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .ibaw-profile-card {
        flex-direction: column;
        border-radius: 20px;
        padding: 25px 20px;
        gap: 20px;
        text-align: center;
    }
    .ibaw-profile-left {
        flex-direction: column;
    }
    .ibaw-profile-stats {
        border-left: none;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 0;
        width: 100%;
        justify-content: center;
        gap: 50px;
    }
}