/* ============ HELP CENTER & CAREERS extras ============ */

/* label row with inline counter */
.form-grid label .label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.word-counter {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--muted);
  font-weight: 500;
}
.word-counter.at-limit { color: #B42318; font-weight: 700; }
.field-hint {
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--muted);
  margin-top: 2px;
}

/* file upload dropzone */
.file-drop {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1.5px dashed var(--hairline-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.file-drop:hover { border-color: var(--accent); background: var(--surface); }
.file-drop.has-file {
  border-style: solid;
  border-color: var(--accent);
  background: var(--accent-soft);
}
.file-ic {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--hairline);
  font-size: 16px;
  color: var(--accent);
}
.file-drop.has-file .file-ic { background: var(--accent); color: var(--accent-ink); border-color: transparent; }
.file-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.4;
}
.file-text em { color: var(--accent); font-style: normal; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.file-text strong { font-weight: 700; color: var(--ink); word-break: break-all; }
.file-sub { font-size: 11px; color: var(--muted); font-weight: 400; }

/* roles list (careers aside) */
.role-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 26px;
}
.role-item {
  font-family: inherit;
  text-align: right;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s;
}
.role-item:hover { border-color: var(--hairline-strong); transform: translateX(-2px); }
.role-item.active {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.role-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.role-title { font-size: 16px; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }
.role-arrow { color: var(--accent); font-size: 14px; opacity: 0; transform: translateX(4px); transition: opacity .15s, transform .15s; }
.role-item:hover .role-arrow, .role-item.active .role-arrow { opacity: 1; transform: translateX(0); }
.role-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
}
.role-dept { color: var(--accent); font-weight: 600; }
.role-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--hairline-strong); }
