/* ===== 댓글 프로필 이미지 고정 (PC+모바일 공통) / 스프라이트·마스크 겹침 제거 ===== */

/* 박스 고정 */
.u_cbox .u_cbox_thumb,
.u_cbox .u_cbox_thumb_wrap{
  width:36px !important;
  height:36px !important;
  position:relative !important;
  overflow:hidden !important;
  border-radius:50% !important;
}

/* (핵심) 원형 마스크/스프라이트 레이어 자체 제거 */
.u_cbox .u_cbox_thumb_mask{
  display:none !important;
  background:none !important;
}

/* 혹시 thumb 자체에도 스프라이트가 잡혀 있으면 제거 */
.u_cbox .u_cbox_thumb{
  background:none !important;
}

/* 예전에 넣었던 ::before/::after 방식이 남아있다면 전부 차단 */
.u_cbox .u_cbox_thumb_wrap::before,
.u_cbox .u_cbox_thumb_wrap::after{
  content:none !important;
  display:none !important;
}

/* 기존 img(프로필 실제 이미지) 어떤 형태든 싹 숨김 */
.u_cbox .u_cbox_thumb_wrap img,
.u_cbox .u_cbox_img_profile{
  display:none !important;
}

/* 내 이미지 1장만 표시 */
.u_cbox .u_cbox_thumb_wrap{
  background:none !important;
  background-image:url("/img/avatar.png") !important;
  background-repeat:no-repeat !important;
  background-position:center center !important;
  background-size:cover !important;
}
