/* ==========================================================================
   members.css — Members & Partners page overrides
   Loaded after main.css. Design-system tokens only (see main.css :root).
   ========================================================================== */

/* --------------------------------------------------- CTA band button ----
   main.css sets `.section--green a { color: var(--gold-light) }` (0,1,1),
   which outranks `.btn { color: var(--ink) }` (0,1,0) and lands later in the
   sheet — so inside the deep-green band the primary button rendered its label
   in pale gold on the gold fill (~1.2:1). Restore the button's own ink label.
   `:not(.btn--secondary)` keeps the ghost/outline variant reversed as designed.
------------------------------------------------------------------------- */
.section--green .btn:not(.btn--secondary),
.section--green .btn:not(.btn--secondary):link,
.section--green .btn:not(.btn--secondary):visited {
  color: var(--ink);
  opacity: 1;
}

.section--green .btn:not(.btn--secondary):hover,
.section--green .btn:not(.btn--secondary):focus-visible {
  background: var(--gold-hover);
  color: var(--ink);
}
