/* Fixed50 */
/* 화이트 테마에서도 타이틀 뒤에 흰 사각형이 생기지 않도록 완전 투명 처리 */
html[data-theme="light"] .landing-copy,
html[data-theme="dark"] .landing-copy,
.landing-copy{
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
}
.landing-copy h1,
.landing-copy h1 span{
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}

/* 로그인 후 좌측 상단: 검은 원 안의 흰색 굵은 J */
.brand-j-logo{
  width:43px;
  height:43px;
  flex:0 0 43px;
  display:inline-grid;
  place-items:center;
  border-radius:50%;
  background:#050505;
  color:#fff;
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 4px 12px rgba(0,0,0,.28);
  font-family:Arial,Helvetica,sans-serif;
  font-size:25px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.04em;
}
html[data-theme="light"] .brand-j-logo{
  background:#050505;
  color:#fff;
  border-color:#111827;
}

/* 학생은 자동 줄맞춤 버튼을 볼 수 없음 */
#appView.student-mode .format-owner-only{display:none!important}

@media(max-width:620px){
  .brand-j-logo{width:36px;height:36px;flex-basis:36px;font-size:21px}
}
