/* Kresy.info — Ułatwienia dostępu (kolorystyczne tryby + czytanie na głos) */
/* Wyzwalacz w nagłówkach stron standalone (użytkownik / czat) */
.kresy-a11y-trigger{
  display:inline-flex; align-items:center; gap:7px; cursor:pointer;
  border:1px solid var(--kp-line,#ece2ce); background:var(--kp-surface,#fff); color:var(--kp-ink,#2a221a);
  border-radius:10px; padding:8px 12px; font:inherit; font-weight:700; font-size:13px;
}
.kresy-a11y-trigger:hover{ background:var(--kp-paper-2,#f5efe3); }
.kresy-a11y-trigger svg{ width:17px; height:17px; }
.kresy-a11y-backdrop{
  position:fixed; inset:0; z-index:99992; background:rgba(24,14,8,.42);
  -webkit-backdrop-filter:blur(2px); backdrop-filter:blur(2px);
}
.kresy-a11y-backdrop[hidden]{ display:none; }
.kresy-a11y-panel{
  position:fixed; top:50%; left:50%; transform:translate(-50%,-50%); z-index:99993; width:min(360px,94vw);
  background:#fff; color:#2a221a; border:1px solid #ece2ce; border-radius:16px;
  box-shadow:0 26px 70px rgba(20,10,5,.5); padding:20px; font-family:'Inter',system-ui,sans-serif;
}
.kresy-a11y-panel[hidden]{ display:none; }
.kresy-a11y-panel h3{ font-family:'Cormorant Garamond',Georgia,serif; font-size:22px; margin:0 0 10px; color:#8a2632; }
.kresy-a11y-sec{ margin:12px 0; }
.kresy-a11y-sec > span{ display:block; font-size:13px; font-weight:700; color:#8a7a66; margin-bottom:8px; text-transform:uppercase; letter-spacing:.04em; }
.kresy-a11y-schemes{ display:flex; gap:8px; flex-wrap:wrap; }
.kresy-a11y-scheme{
  flex:1 1 40px; min-width:56px; height:46px; border-radius:10px; cursor:pointer;
  border:3px solid transparent; font-size:11px; font-weight:700; display:flex; align-items:center;
  justify-content:center; text-align:center; padding:2px; line-height:1.1;
}
.kresy-a11y-scheme.is-active{ border-color:#b88a3c; box-shadow:0 0 0 2px rgba(184,138,60,.35); }
.kresy-a11y-scheme[data-s="default"]{ background:#fbf8f1; color:#2a221a; border-color:#ece2ce; }
.kresy-a11y-scheme[data-s="contrast"]{ background:#ffffff; color:#000; border-color:#000; }
.kresy-a11y-scheme[data-s="dark"]{ background:#1a1511; color:#f3ead9; }
.kresy-a11y-scheme[data-s="yellowblack"]{ background:#000; color:#ffd400; }
.kresy-a11y-scheme[data-s="blue"]{ background:#04283f; color:#ffe14d; }
.kresy-a11y-fontrow{ display:flex; align-items:center; gap:10px; }
.kresy-a11y-btn{
  border:1px solid #ece2ce; background:#fdfaf3; color:#2a221a; border-radius:10px;
  padding:10px 14px; font:inherit; font-weight:600; cursor:pointer; font-size:15px;
}
.kresy-a11y-btn:hover{ background:#f5efe3; }
.kresy-a11y-btn--primary{ background:#8a2632; color:#fff; border-color:#8a2632; width:100%; }
.kresy-a11y-btn--primary:hover{ background:#6d1c26; }
.kresy-a11y-btn--primary.is-reading{ background:#4a8347; border-color:#4a8347; }
.kresy-a11y-flevel{ min-width:52px; text-align:center; font-weight:700; }
.kresy-a11y-close{ position:absolute; top:10px; right:12px; background:none; border:none; font-size:22px; cursor:pointer; color:#8a7a66; }
.kresy-a11y-hint{ font-size:12px; color:#a89a86; margin:6px 0 0; }

/* ====== Tryby kolorystyczne (nadpisują zmienne --kp-*) ====== */
html[data-kresy-a11y="contrast"], html[data-kresy-a11y="contrast"] .kp-root, html[data-kresy-a11y="contrast"] body{
  --kp-ink:#000; --kp-ink-soft:#1a1a1a; --kp-ink-muted:#333;
  --kp-paper:#fff; --kp-paper-2:#f2f2f2; --kp-surface:#fff; --kp-surface-2:#f7f7f7;
  --kp-burgundy:#a4001a; --kp-burgundy-2:#7a0013; --kp-gold:#8a5a00; --kp-line:#000;
}
html[data-kresy-a11y="dark"], html[data-kresy-a11y="dark"] .kp-root, html[data-kresy-a11y="dark"] body{
  --kp-ink:#f3ead9; --kp-ink-soft:#cdbb9c; --kp-ink-muted:#9a8a76;
  --kp-paper:#1a1511; --kp-paper-2:#221b15; --kp-surface:#221b15; --kp-surface-2:#2a221a;
  --kp-burgundy:#e0707c; --kp-burgundy-2:#c85562; --kp-gold:#e0b45c; --kp-line:#3a2f22;
}
html[data-kresy-a11y="yellowblack"], html[data-kresy-a11y="yellowblack"] .kp-root, html[data-kresy-a11y="yellowblack"] body{
  --kp-ink:#ffd400; --kp-ink-soft:#ffe14d; --kp-ink-muted:#e6c200;
  --kp-paper:#000; --kp-paper-2:#0a0a0a; --kp-surface:#000; --kp-surface-2:#111;
  --kp-burgundy:#ffd400; --kp-burgundy-2:#ffe14d; --kp-gold:#ffd400; --kp-line:#ffd400;
}
html[data-kresy-a11y="yellowblack"] body, html[data-kresy-a11y="yellowblack"] .kp-root{ background:#000 !important; }
html[data-kresy-a11y="blue"], html[data-kresy-a11y="blue"] .kp-root, html[data-kresy-a11y="blue"] body{
  --kp-ink:#ffe14d; --kp-ink-soft:#ffe98a; --kp-ink-muted:#d9c15a;
  --kp-paper:#04283f; --kp-paper-2:#063352; --kp-surface:#063352; --kp-surface-2:#0a3f66; --kp-line:#0a5286;
  --kp-burgundy:#ffe14d; --kp-burgundy-2:#ffd400; --kp-gold:#ffe14d;
}
/* Podświetlenie aktualnie czytanego fragmentu (TTS) */
.kresy-a11y-reading-hl{ background:#ffe14d; color:#000; box-shadow:0 0 0 2px #ffd400; border-radius:3px; }
