/**
 * @file
 * Live SHA-256 hasher (Cryptography → hash-functions).
 */
.wl-edu-hash {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: var(--color-bg-surface, #0b1020);
  border: 1px solid var(--color-border-subtle, rgba(255, 255, 255, 0.1));
  border-radius: var(--radius-lg, 12px);
}
.wl-edu-hash__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-secondary, rgba(255, 255, 255, 0.7));
}
.wl-edu-hash__input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--color-border-accent, rgba(255, 255, 255, 0.15));
  background: rgba(0, 0, 0, 0.3);
  color: var(--color-text-primary, #fff);
  resize: vertical;
}
.wl-edu-hash__input:focus {
  outline: 2px solid var(--color-accent-primary, #003bff);
  outline-offset: 1px;
}
.wl-edu-hash__arrow {
  text-align: center;
  margin: 0.6rem 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-muted, rgba(255, 255, 255, 0.45));
}
.wl-edu-hash__out {
  display: block;
  padding: 0.8rem;
  border-radius: var(--radius-md, 8px);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--color-border-subtle, rgba(255, 255, 255, 0.08));
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  word-break: break-all;
  color: var(--color-accent-secondary, #7fa0ff);
}
.wl-edu-hash__hot {
  color: #f5c518;
  background: rgba(245, 197, 24, 0.12);
  border-radius: 2px;
}
