
/* == theme-toggle == */
.gf-theme-toggle { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; padding: 0; appearance: none; -webkit-appearance: none; background: transparent; border: 1px solid var(--gf-color-border, #e3e6dc); border-radius: var(--gf-radius-pill, 999px); color: var(--gf-color-ink-2, #46514a); cursor: pointer; transition: color .15s ease, border-color .15s ease, background-color .15s ease; }
.gf-theme-toggle:hover { color: var(--gf-color-ink, #15201a); border-color: var(--gf-color-border-strong, #cfd4c6); background: var(--gf-color-surface-2, #f1f3ec); }
.gf-theme-toggle:focus-visible { outline: 2px solid var(--gf-color-accent, #5fae6e); outline-offset: 2px; }
.gf-theme-toggle__icon { display: inline-flex; line-height: 0; }
.gf-theme-toggle__icon--sun { display: none; }
[data-theme="dark"] .gf-theme-toggle__icon--sun { display: inline-flex; }
[data-theme="dark"] .gf-theme-toggle__icon--moon { display: none; }
@media (prefers-reduced-motion: reduce) { .gf-theme-toggle { transition: none; } }

