/* lang-toggle.css
 * EN/ES language toggle button used across marketing + enrollment pages.
 * Referenced by:
 *   - public/index.html
 *   - public/income-check.html
 *   - public/income-check-es.html
 *   - public/partners/homewise-enroll.html
 *   - public/partners/homewise-enroll-es.html
 *   - public/partners/wattsup-enroll.html
 *   - public/partners/wattsup-enroll-es.html
 *
 * Styles mirror the inline definition in seo/build-seo-pages.js (lines 97-98)
 * so SEO landing pages and the rest of the site stay visually consistent.
 */

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--gray-400, #94a3b8);
  color: var(--gray-400, #94a3b8);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  margin-right: 12px;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  border-color: var(--gold, #d4a017);
  color: var(--gold, #d4a017);
  text-decoration: none;
  outline: none;
}

.lang-toggle svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
