
/********** 팔로워/팔로잉 목록 ***********************/
div.follow_row { width:100%; padding:9px 16px; display: flex; justify-content: space-between; align-items: center; }
div.follow_row .profile_right button { width:77px; height:34px; line-height:34px; border:0px; border-radius:8px; background-color:var(--color-G2); color:var(--color-BL); font-size:12px; font-weight:bold; }

/* 내 버튼 감추기 */
div.follow_row .profile_right button.me { display:none }

/* 차단해제 */
div.follow_row .profile_right button.unblock:before {content:'차단해제'}

/* [팔로잉] 내가 팔로우 중 => 언팔로우 */
div.follow_row .profile_right button.unfollow:before {content:'팔로잉'}

/* 상대가 팔로우 */
div.follow_row .profile_right button.followers { background-color:var(--color-A1); color:var(--color-A5); } 
div.follow_row .profile_right button.followers:before {content:'맞팔로우'}

/* 팔로우 없음 */
div.follow_row .profile_right button.follow { background-color:var(--color-A1); color:var(--color-A5); }
div.follow_row .profile_right button.follow:before {content:'팔로우'}

