/*
 * Institutional identity
 *
 * Samar State University's colours appear in exactly two places: the seal band at
 * the top of a printed form and the seal in the application header. No semantic
 * token depends on them, and no interface state is signalled with them.
 *
 * Sampled from the official header logo at ssu.edu.ph on 2026-09-03 and checked
 * for contrast:
 *
 *   --ssu-blue    #1070B0   5.29:1 with white   safe for text and rules
 *   --ssu-indigo  #273285  11.16:1              the university site's own chrome
 *   --ssu-gold    #FCCF10   1.49:1              DECORATIVE ONLY, never text
 *
 * The gold is the university's colour and belongs on screen, but it cannot carry
 * text and cannot signal a state. Wherever it appears, the meaning is also
 * carried by a label. The Public Information Office should still confirm these
 * before the pilot; only this file changes if they differ.
 */

:root {
  --ssu-blue:   #1070b0;
  --ssu-indigo: #273285;
  --ssu-gold:   #fccf10;
}

/* The band across the head of every printed form. */
.gc-form-seal-band {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--ssu-indigo);
}

.gc-form-seal-band__name {
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ssu-indigo);
}

.gc-form-seal-band__office {
  font-size: .875rem;
  color: var(--gc-text-muted);
}
