/* 상단바 교육플랫폼 바로가기
   글자 크기는 나머지 항목과 똑같이 두고, 색으로만 구분한다. */
.top-bar .top-plat a{
  color:#1668c4;              /* 밝은 배경용 블루 */
  transition:color .15s ease;
}
.top-bar .top-plat a:hover{color:#0d4f9c}

/* 다크모드에서는 같은 계열의 밝은 파랑으로 */
body.dark-mode .top-bar .top-plat a{color:#5fa8f5}
body.dark-mode .top-bar .top-plat a:hover{color:#8cc3ff}

/* 「교육플랫폼」은 누르는 곳이 아니라 구분 라벨이다 */
.top-bar .top-plat-label{
  font-weight:600;
  cursor:default;
  padding-left:.4rem;
  border-left:1px solid rgba(128,128,128,.35);
}

/* 좁은 화면에서는 항목이 너무 많아 접는다 */
@media (max-width:991px){
  .top-bar .top-plat,
  .top-bar .top-plat-label{display:none}
}
