/* Διακριτικός σύνδεσμος προς τον προστατευμένο Χώρο Καθηγητή */
.teacher-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #cbd3e2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}
.teacher-footer-link::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  box-sizing: border-box;
}
.teacher-footer-link:hover,
.teacher-footer-link:focus-visible {
  color: #fff;
  border-color: rgba(189,180,255,.8);
  background: rgba(104,87,217,.18);
  transform: translateY(-1px);
}
@media (max-width: 560px) {
  .teacher-footer-link { padding: 7px 10px; font-size: 10px; }
}
