  /* Ocultar nota por defecto (móvil/tablet) */
.left-panel-note {
  display: none;
}

/* Mostrar solo en PC */
@media (min-width: 1024px) {  
  .left-panel-note {
    max-width: 330px;
    display: inline-block;
    vertical-align: middle;
    margin-top: 0px;
    text-align: left;
    font-size: 15px;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateY(15px);
    font-weight: 400;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  body.loaded .left-panel-note {
    opacity: 0.8;
    transform: translateY(19);
  }
}
