/*
 * testing101 — Comfort Controls v2
 * Original interface implementation. No third-party overlay CSS or assets.
 */

:root {
    --t101-accent: #0f766e;
    --t101-launcher-color: #0f766e;
    --t101-launcher-x: 16px;
    --t101-launcher-y: 16px;
    --t101-ink: #17202a;
    --t101-muted: #617081;
    --t101-line: #d9e1e7;
    --t101-soft: #f3f6f7;
    --t101-warm: #f5c76b;
    --t101-white: #fff;
    --t101-shadow: 0 24px 70px rgba(15, 23, 42, .28);
    --t101-page-filter-invert: none;
    --t101-page-filter-gray: none;
    --t101-page-filter-saturation: saturate(1);
    --t101-page-filter-contrast: contrast(1);
}

.t101-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.t101-center-root,
.t101-center-root * {
    box-sizing: border-box;
}

.t101-center-root button,
.t101-center-root select {
    font: inherit;
}

.t101-center-launcher {
    position: fixed;
    left: var(--t101-launcher-x);
    bottom: var(--t101-launcher-y);
    z-index: 2147483000;
    display: inline-grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    min-width: 58px;
    min-height: 54px;
    padding: 8px 11px 8px 8px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 14px;
    background: #17202a;
    color: #fff;
    box-shadow: 0 10px 28px rgba(15,23,42,.28);
    cursor: pointer;
    text-align: left;
}

.t101-center-launcher:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(15,23,42,.34);
}

.t101-center-launcher:focus-visible,
.t101-center-dialog button:focus-visible,
.t101-center-dialog select:focus-visible,
.t101-reader-overlay button:focus-visible,
.t101-reader-overlay a:focus-visible {
    outline: 3px solid var(--t101-focus, #ffb000) !important;
    outline-offset: 3px !important;
}

.t101-center-launcher-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--t101-launcher-color);
    color: #fff;
    font: 800 15px/1 system-ui, sans-serif;
    letter-spacing: -.03em;
}

.t101-center-launcher-copy {
    display: grid;
    gap: 2px;
}

.t101-center-launcher-copy strong {
    color: #fff;
    font: 750 14px/1.1 system-ui, sans-serif;
}

.t101-center-launcher-copy small {
    color: #cbd5df;
    font: 500 11px/1.1 system-ui, sans-serif;
}

.t101-center-launcher-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--t101-warm);
}

.t101-center-launcher--small { min-height: 46px; padding: 6px 9px 6px 6px; }
.t101-center-launcher--small .t101-center-launcher-mark { width: 32px; height: 32px; }
.t101-center-launcher--large { min-height: 62px; padding: 10px 14px 10px 10px; }
.t101-center-launcher--large .t101-center-launcher-mark { width: 42px; height: 42px; }
.t101-center-launcher--round { grid-template-columns: 1fr; width: 58px; min-width: 58px; height: 58px; padding: 8px; border-radius: 50%; }
.t101-center-launcher--round .t101-center-launcher-dot { position: absolute; right: 4px; top: 5px; }
.t101-center-launcher--square { grid-template-columns: 1fr; width: 58px; min-width: 58px; height: 58px; padding: 8px; border-radius: 12px; }
.t101-center-launcher--round .t101-center-launcher-mark,
.t101-center-launcher--square .t101-center-launcher-mark { width: 100%; height: 100%; }

.t101-center-launcher[hidden],
.t101-center-backdrop[hidden],
.t101-center-dialog[hidden],
.t101-reader-overlay[hidden] {
    display: none !important;
}

.t101-center-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2147483001;
    background: rgba(10, 18, 27, .52);
    backdrop-filter: blur(3px);
}

.t101-center-dialog {
    position: fixed;
    inset: 0;
    z-index: 2147483002;
    pointer-events: none;
}

.t101-center-shell {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(760px, calc(100vw - 36px));
    height: min(760px, calc(100vh - 36px));
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 26px;
    background: #fff;
    color: var(--t101-ink);
    box-shadow: var(--t101-shadow);
    pointer-events: auto;
    font: 15px/1.45 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.t101-center-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--t101-line);
    background: #fff;
}

.t101-center-brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: #17202a;
    color: var(--t101-warm);
}

.t101-center-icon {
    width: 22px;
    height: 22px;
}

.t101-center-heading {
    min-width: 0;
}

.t101-center-site-name,
.t101-pane-kicker {
    display: block;
    color: var(--t101-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.t101-center-heading h2,
.t101-pane-intro h3,
.t101-document-view h3 {
    margin: 2px 0 0 !important;
    color: var(--t101-ink) !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
}

.t101-center-heading h2 { font-size: 24px !important; }
.t101-center-heading p { margin: 4px 0 0; color: var(--t101-muted); font-size: 13px; }

.t101-center-close {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--t101-line);
    border-radius: 12px;
    background: #fff;
    color: var(--t101-ink);
    cursor: pointer;
}

.t101-center-close:hover { background: var(--t101-soft); }

.t101-center-layout {
    display: grid;
    grid-template-columns: 166px minmax(0, 1fr);
    min-height: 0;
}

.t101-center-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 16px 12px;
    border-right: 1px solid var(--t101-line);
    background: #f7f9fa;
}

.t101-center-tab {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 10px 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #435160;
    cursor: pointer;
    text-align: left;
    font-weight: 700;
}

.t101-center-tab:hover { background: #eaf0f1; }
.t101-center-tab.is-current {
    background: #17202a;
    color: #fff;
}
.t101-center-tab.is-current .t101-center-icon { color: var(--t101-warm); }

.t101-center-content {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: auto;
    padding: 18px 20px 28px;
    overscroll-behavior: contain;
}

.t101-center-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    margin-bottom: 16px;
    padding: 6px 11px;
    border: 1px solid var(--t101-line);
    border-radius: 999px;
    background: #fff;
    color: var(--t101-muted);
    font-size: 12px;
    font-weight: 700;
}

.t101-center-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a6b1bc;
}
.t101-center-status.has-active .t101-center-status-dot { background: var(--t101-accent); box-shadow: 0 0 0 4px rgba(15,118,110,.12); }

.t101-center-pane[hidden] { display: none !important; }
.t101-center-pane { animation: t101-pane-in .16s ease-out; }
@keyframes t101-pane-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.t101-pane-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 17px;
}
.t101-pane-intro h3,
.t101-document-view h3 { font-size: 23px !important; }
.t101-pane-intro p { margin: 6px 0 0; color: var(--t101-muted); max-width: 560px; }












.t101-control-stack { display: grid; gap: 10px; }
.t101-control-row {
    width: 100%;
    min-height: 74px;
    border: 1px solid var(--t101-line);
    border-radius: 16px;
    background: #fff;
    color: var(--t101-ink);
}
.t101-control-row--stepper,
.t101-control-row--choice,
.t101-control-row--swatches {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 13px 15px;
}
.t101-control-row > div > strong,
.t101-control-copy strong { display: block; font-weight: 780; }
.t101-control-row > div > span,
.t101-control-copy small { display: block; margin-top: 3px; color: var(--t101-muted); font-size: 12px; }

.t101-control-row--toggle {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    align-items: center;
    gap: 13px;
    padding: 12px 14px;
    cursor: pointer;
    text-align: left;
}
.t101-control-row--toggle:hover { background: #f9fbfb; }
.t101-control-row--toggle[aria-pressed="true"] { border-color: var(--t101-accent); background: #eff8f6; }
.t101-control-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--t101-soft);
    color: #455564;
}
.t101-control-row--toggle[aria-pressed="true"] .t101-control-icon { background: var(--t101-accent); color: #fff; }
.t101-check-box {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border: 2px solid #b8c3cb;
    border-radius: 7px;
    color: transparent;
}
.t101-control-row--toggle[aria-pressed="true"] .t101-check-box { border-color: var(--t101-accent); background: var(--t101-accent); color: #fff; }
.t101-check-box .t101-center-icon { width: 15px; height: 15px; }

.t101-number-control {
    display: grid;
    grid-template-columns: 38px 70px 38px;
    align-items: center;
    gap: 6px;
}
.t101-number-control button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--t101-line);
    border-radius: 10px;
    background: var(--t101-soft);
    color: var(--t101-ink);
    cursor: pointer;
}
.t101-number-control button:hover { border-color: var(--t101-accent); }
.t101-number-control output { text-align: center; font-weight: 800; }
.t101-number-control .t101-center-icon { width: 16px; }

.t101-choice-bar {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 12px;
    background: var(--t101-soft);
}
.t101-choice-bar button {
    min-height: 34px;
    padding: 7px 10px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #526170;
    cursor: pointer;
    font-size: 12px;
    font-weight: 750;
}
.t101-choice-bar button[aria-pressed="true"] { background: #fff; color: var(--t101-ink); box-shadow: 0 2px 8px rgba(15,23,42,.12); }

.t101-theme-picker {
    display: grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: 8px;
    margin-bottom: 14px;
}
.t101-theme-card {
    display: grid;
    align-content: start;
    gap: 5px;
    min-height: 120px;
    padding: 10px;
    border: 1px solid var(--t101-line);
    border-radius: 14px;
    background: #fff;
    color: var(--t101-ink);
    cursor: pointer;
    text-align: left;
}
.t101-theme-card[aria-pressed="true"] { border-color: var(--t101-accent); box-shadow: inset 0 0 0 1px var(--t101-accent); }
.t101-theme-card strong { font-size: 12px; }
.t101-theme-card small { color: var(--t101-muted); font-size: 10px; line-height: 1.25; }
.t101-theme-preview {
    position: relative;
    display: block;
    height: 45px;
    overflow: hidden;
    border: 1px solid #cfd8df;
    border-radius: 9px;
    background: #fff;
}
.t101-theme-preview::before,
.t101-theme-preview::after,
.t101-theme-preview i,
.t101-theme-preview b { content: ""; position: absolute; left: 8px; height: 4px; border-radius: 2px; background: #25313d; }
.t101-theme-preview::before { top: 9px; width: 55%; }
.t101-theme-preview::after { top: 18px; width: 75%; opacity: .55; }
.t101-theme-preview i { top: 27px; width: 62%; opacity: .35; }
.t101-theme-preview b { left: auto; right: 7px; top: 7px; width: 12px; height: 12px; border-radius: 50%; background: var(--t101-accent); }
.t101-theme-card--high .t101-theme-preview { background: #fff; border-color: #111; }
.t101-theme-card--high .t101-theme-preview::before,
.t101-theme-card--high .t101-theme-preview::after,
.t101-theme-card--high .t101-theme-preview i { background: #000; opacity: 1; }
.t101-theme-card--night .t101-theme-preview { background: #171b21; border-color: #171b21; }
.t101-theme-card--night .t101-theme-preview::before,
.t101-theme-card--night .t101-theme-preview::after,
.t101-theme-card--night .t101-theme-preview i { background: #fff; }
.t101-theme-card--invert .t101-theme-preview { background: #050505; }
.t101-theme-card--invert .t101-theme-preview::before,
.t101-theme-card--invert .t101-theme-preview::after,
.t101-theme-card--invert .t101-theme-preview i { background: #63e6be; }

.t101-swatch-row { display: flex; gap: 9px; }
.t101-color-chip {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 3px;
    border: 2px solid transparent;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}
.t101-color-chip span { display: block; width: 100%; height: 100%; border: 1px solid #bdc7ce; border-radius: 7px; }
.t101-color-chip[aria-pressed="true"] { border-color: var(--t101-accent); }
.t101-color-chip--default span { background: linear-gradient(135deg,#fff 48%,#6d7882 49%); }
.t101-color-chip--black span { background:#111; }
.t101-color-chip--navy span { background:#173b63; }
.t101-color-chip--brown span { background:#5a321e; }
.t101-color-chip--white span { background:#fff; }
.t101-color-chip--cream span { background:#fff4d8; }
.t101-color-chip--charcoal span { background:#171a1f; }

.t101-shortcut-note,
.t101-contact-box {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f0f4f7;
    color: #41505f;
}
.t101-shortcut-note span { font-size: 12px; }

.t101-action-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-bottom: 12px; }
.t101-action-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 11px;
    min-height: 92px;
    padding: 14px;
    border: 1px solid var(--t101-line);
    border-radius: 16px;
    background: #17202a;
    color: #fff;
    cursor: pointer;
    text-align: left;
}
.t101-action-card > span { display:grid;place-items:center;width:38px;height:38px;border-radius:11px;background:rgba(255,255,255,.1);color:var(--t101-warm); }
.t101-action-card strong { display:block; }
.t101-action-card small { grid-column:2; color:#c9d2da; font-size:11px; }
.t101-action-card > .t101-center-icon { width:18px; }

.t101-tool-links { display: grid; gap: 8px; margin-top: 12px; }
.t101-tool-links button {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--t101-line);
    border-radius: 12px;
    background: #fff;
    color: var(--t101-ink);
    cursor: pointer;
    text-align: left;
    font-weight: 700;
}
.t101-language-field { display:grid;grid-template-columns:1fr auto;align-items:center;gap:12px;margin-top:12px;padding:12px 14px;border:1px solid var(--t101-line);border-radius:12px;font-weight:700; }
.t101-language-field select { min-height:38px;padding:6px 30px 6px 10px;border:1px solid var(--t101-line);border-radius:9px;background:#fff;color:var(--t101-ink); }

.t101-center-pane--subview { padding-top: 4px; }
.t101-back-link { border:0;background:transparent;color:var(--t101-accent);cursor:pointer;font-weight:800;padding:4px 0 14px; }
.t101-document-view { max-width: 620px; }
.t101-document-view p { color: var(--t101-muted); }
.t101-contact-box { margin: 16px 0; }
.t101-contact-box a { color: var(--t101-accent); font-weight: 750; }
.t101-generated-links { display:grid;gap:8px;margin-top:14px; }
.t101-generated-links a { display:flex;justify-content:space-between;gap:12px;padding:12px 14px;border:1px solid var(--t101-line);border-radius:12px;color:var(--t101-ink);text-decoration:none;font-weight:700; }
.t101-generated-links a:hover { border-color:var(--t101-accent);background:#f4faf8; }

.t101-center-footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-top: 1px solid var(--t101-line);
    background: #f7f9fa;
}
.t101-footer-reset,
.t101-footer-done {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 13px;
    border-radius: 11px;
    cursor: pointer;
    font-weight: 800;
}
.t101-footer-reset { border:1px solid var(--t101-line);background:#fff;color:var(--t101-ink); }
.t101-footer-done { min-width:86px;border:0;background:var(--t101-accent);color:#fff; }
.t101-footer-note { color:var(--t101-muted);font-size:11px;text-align:center; }
.t101-footer-reset .t101-center-icon { width:17px; }

.t101-reading-ruler {
    position: fixed;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 2147482990;
    display: none;
    height: 3px;
    background: #e9a400;
    box-shadow: 0 0 0 1px rgba(0,0,0,.25);
    pointer-events: none;
}
html.t101-reading-ruler-active .t101-reading-ruler { display:block; }

.t101-focus-window {
    position: fixed;
    inset: 0;
    z-index: 2147482989;
    display: none;
    grid-template-rows: 1fr 130px 1fr;
    pointer-events: none;
}
html.t101-focus-window-active .t101-focus-window { display:grid; }
.t101-focus-window > div { background:rgba(0,0,0,.58); }
.t101-focus-window > span { border-top:2px solid rgba(255,255,255,.75);border-bottom:2px solid rgba(255,255,255,.75); }

.t101-text-magnifier {
    position: fixed;
    z-index: 2147483010;
    max-width: min(520px,calc(100vw - 32px));
    padding: 13px 16px;
    border: 2px solid #17202a;
    border-radius: 12px;
    background: #fff;
    color: #111;
    box-shadow: 0 14px 35px rgba(15,23,42,.25);
    font: 750 23px/1.35 system-ui,sans-serif;
    pointer-events:none;
}

.t101-reader-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483015;
    overflow: auto;
    padding: 24px;
    background: #eef1f2;
}
.t101-reader-shell { max-width:860px;margin:0 auto;background:#fff;border:1px solid var(--t101-line);border-radius:22px;box-shadow:var(--t101-shadow); }
.t101-reader-shell header { position:sticky;top:0;z-index:2;display:flex;justify-content:space-between;align-items:center;gap:20px;padding:18px 22px;border-bottom:1px solid var(--t101-line);border-radius:22px 22px 0 0;background:#17202a;color:#fff; }
.t101-reader-shell header span { color:var(--t101-warm);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.1em; }
.t101-reader-shell header h2 { margin:2px 0 0;color:#fff!important;font:800 23px/1.2 system-ui,sans-serif!important; }
.t101-reader-shell header button { display:grid;place-items:center;width:42px;height:42px;border:1px solid rgba(255,255,255,.25);border-radius:11px;background:transparent;color:#fff;cursor:pointer; }
#t101-reader-content { padding:28px 34px 45px;color:#26313b;font:18px/1.75 Georgia,serif; }
#t101-reader-content h1,#t101-reader-content h2,#t101-reader-content h3,#t101-reader-content h4 { color:#17202a!important;font-family:system-ui,sans-serif!important;line-height:1.25!important; }
#t101-reader-content a { color:#0b6b64;text-decoration-thickness:2px;text-underline-offset:3px; }

/* Page preference effects. Layout containers are not zoomed or repainted. */
html.t101-readable-font body :where(h1,h2,h3,h4,h5,h6,p,li,a,label,button,input,textarea,select,blockquote,span,small,strong,em):not(#t101-access-center-root *) { font-family:Arial,Helvetica,system-ui,sans-serif!important; }

html[data-t101-line-height="1"] body :where(h1,h2,h3,h4,h5,h6,p,li,a,label,button,blockquote,figcaption,legend,summary,td,th,dt,dd,span,small,strong,em):not(#t101-access-center-root *) { line-height:1.6!important; }
html[data-t101-line-height="2"] body :where(h1,h2,h3,h4,h5,h6,p,li,a,label,button,blockquote,figcaption,legend,summary,td,th,dt,dd,span,small,strong,em):not(#t101-access-center-root *) { line-height:1.85!important; }
html[data-t101-line-height="3"] body :where(h1,h2,h3,h4,h5,h6,p,li,a,label,button,blockquote,figcaption,legend,summary,td,th,dt,dd,span,small,strong,em):not(#t101-access-center-root *) { line-height:2.05!important; }
html[data-t101-letter-spacing="1"] body :where(h1,h2,h3,h4,h5,h6,p,li,a,label,button,input,textarea,select,option,blockquote,figcaption,legend,summary,td,th,dt,dd,span,small,strong,em,b,i):not(#t101-access-center-root *) { letter-spacing:.06em!important; }
html[data-t101-letter-spacing="2"] body :where(h1,h2,h3,h4,h5,h6,p,li,a,label,button,input,textarea,select,option,blockquote,figcaption,legend,summary,td,th,dt,dd,span,small,strong,em,b,i):not(#t101-access-center-root *) { letter-spacing:.12em!important; }
html[data-t101-letter-spacing="3"] body :where(h1,h2,h3,h4,h5,h6,p,li,a,label,button,input,textarea,select,option,blockquote,figcaption,legend,summary,td,th,dt,dd,span,small,strong,em,b,i):not(#t101-access-center-root *) { letter-spacing:.18em!important; }

html.t101-mark-headings body :where(h1,h2,h3,h4,h5,h6):not(#t101-access-center-root *) { outline:3px solid #d48b00!important;outline-offset:3px!important;background-image:linear-gradient(rgba(245,199,107,.25),rgba(245,199,107,.25))!important; }
html.t101-mark-links body a:not(#t101-access-center-root *) { text-decoration:underline!important;text-decoration-thickness:3px!important;text-underline-offset:4px!important;background-image:linear-gradient(rgba(245,199,107,.25),rgba(245,199,107,.25))!important; }
html.t101-hover-outline body :where(a,button,input,select,textarea,[tabindex]):not(#t101-access-center-root *):hover { outline:3px solid #d98200!important;outline-offset:3px!important; }
html.t101-focus-outline body :where(a,button,input,select,textarea,[tabindex]):not(#t101-access-center-root *):focus-visible { outline:4px solid #ff9d00!important;outline-offset:4px!important; }
html.t101-hide-images body :where(img,picture,svg):not(#t101-access-center-root *) { visibility:hidden!important; }
html.t101-pause-motion *,html.t101-pause-motion *::before,html.t101-pause-motion *::after { animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important; }

/* Responsive reflow safeguards for the exact Bite Size header and hero. */
html.t101-text-resize-active .t101-scale-safe-header,
html.t101-text-resize-active .t101-scale-safe-header-part {
    height:auto!important;
    max-height:none!important;
    min-height:0!important;
    overflow:visible!important;
    flex-wrap:wrap!important;
}
html.t101-text-resize-active .t101-scale-safe-nav {
    min-width:0!important;
    flex:1 1 100%!important;
}
html.t101-text-resize-active .t101-scale-safe-nav,
html.t101-text-resize-active .t101-scale-safe-nav > div,
html.t101-text-resize-active .t101-scale-safe-nav ul,
html.t101-text-resize-active .t101-scale-safe-nav .elementor-nav-menu {
    width:100%!important;
    max-width:100%!important;
    height:auto!important;
    max-height:none!important;
    overflow:visible!important;
}
html.t101-text-resize-active .t101-scale-safe-nav ul,
html.t101-text-resize-active .t101-scale-safe-nav .elementor-nav-menu {
    display:flex!important;
    flex-wrap:wrap!important;
    justify-content:center!important;
    align-items:center!important;
    column-gap:clamp(12px,2vw,32px)!important;
    row-gap:8px!important;
}
html.t101-text-resize-active .t101-scale-safe-nav a {
    white-space:normal!important;
    overflow-wrap:normal!important;
    word-break:normal!important;
}
html.t101-text-resize-active .t101-scale-safe-hero {
    max-height:none!important;
    overflow:visible!important;
}
html.t101-text-resize-active .t101-scale-safe-hero-content {
    height:auto!important;
    max-height:none!important;
    overflow:visible!important;
}
html.t101-text-resize-active .t101-scale-safe-hero-heading,
html.t101-text-resize-active .t101-scale-safe-hero-heading * {
    max-width:100%!important;
    white-space:normal!important;
    overflow-wrap:normal!important;
    word-break:normal!important;
    hyphens:none!important;
}


@media (max-width: 760px) {
    html.t101-text-resize-active .t101-scale-safe-header {
        flex-direction:column!important;
        align-items:center!important;
        gap:8px!important;
        padding-block:10px!important;
    }
    html.t101-text-resize-active .t101-scale-safe-nav ul,
    html.t101-text-resize-active .t101-scale-safe-nav .elementor-nav-menu {
        column-gap:14px!important;
        row-gap:7px!important;
    }
    html.t101-text-resize-active body :where(h1,h2,h3,h4,h5,h6,p,li,a,button,label,span,small,strong,em):not(#t101-access-center-root *) {
        overflow-wrap:anywhere!important;
        max-width:100%!important;
    }
}

html[data-t101-cursor="dark"],html[data-t101-cursor="dark"] * { cursor:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34'%3E%3Cpath d='M3 2v27l8-8 6 12 5-2.5-6-11h13z' fill='%23000' stroke='%23fff' stroke-width='1.5'/%3E%3C/svg%3E") 3 2,auto!important; }
html[data-t101-cursor="light"],html[data-t101-cursor="light"] * { cursor:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34'%3E%3Cpath d='M3 2v27l8-8 6 12 5-2.5-6-11h13z' fill='%23fff' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E") 3 2,auto!important; }

@media (max-width: 760px) {
    .t101-center-shell { inset:0!important;width:100%;height:100%;border-radius:0; }
    .t101-center-header { padding:14px 15px; }
    .t101-center-brand-mark { width:42px;height:42px;border-radius:12px; }
    .t101-center-heading h2 { font-size:20px!important; }
    .t101-center-heading p { display:none; }
    .t101-center-layout { grid-template-columns:1fr;grid-template-rows:auto minmax(0,1fr); }
    .t101-center-nav { flex-direction:row;overflow-x:auto;padding:8px;border-right:0;border-bottom:1px solid var(--t101-line); }
    .t101-center-tab { flex:0 0 auto;grid-template-columns:20px auto;min-height:40px;padding:8px 10px; }
    .t101-center-content { padding:14px 13px 24px; }

    .t101-theme-picker { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .t101-control-row--stepper,.t101-control-row--choice,.t101-control-row--swatches { grid-template-columns:1fr;align-items:start; }
    .t101-action-grid { grid-template-columns:1fr; }
    .t101-center-footer { grid-template-columns:auto 1fr; }
    .t101-footer-note { display:none; }
    .t101-reader-overlay { padding:0; }
    .t101-reader-shell { min-height:100vh;border-radius:0; }
    #t101-reader-content { padding:22px 20px 40px; }
    .t101-center-launcher-copy small { display:none; }
}

@media (max-width: 430px) {
    .t101-center-tab span { font-size:11px; }
    .t101-center-tab { gap:6px; }
    .t101-center-status { margin-bottom:12px; }
    .t101-center-heading p { display:none; }
}

@media (prefers-reduced-motion: reduce) {
    .t101-center-pane { animation:none; }
    .t101-center-launcher:hover { transform:none; }
}

/* --------------------------------------------------------------------------
   v1.1 interaction hardening for Elementor/Softlite sites
   -------------------------------------------------------------------------- */

/* A contained three-part stepper prevents theme button styles from moving the
   plus/minus symbols or squeezing the current value. */
.t101-center-root .t101-number-control {
    display: grid !important;
    grid-template-columns: 44px minmax(76px, 1fr) 44px !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 184px !important;
    min-width: 184px !important;
    min-height: 44px !important;
    overflow: hidden !important;
    border: 1px solid #cbd6de !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8) !important;
}
.t101-center-root .t101-number-control button {
    display: grid !important;
    place-items: center !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #eef3f5 !important;
    color: #17202a !important;
    box-shadow: none !important;
    font: 800 24px/1 system-ui,sans-serif !important;
    text-align: center !important;
    cursor: pointer !important;
}
.t101-center-root .t101-number-control button:first-child {
    border-right: 1px solid #cbd6de !important;
}
.t101-center-root .t101-number-control button:last-child {
    border-left: 1px solid #cbd6de !important;
}
.t101-center-root .t101-number-control button:hover {
    background: #dfecee !important;
    color: #0f625e !important;
}
.t101-center-root .t101-number-control button:active {
    background: #cfe1e4 !important;
}
.t101-center-root .t101-number-control output {
    display: grid !important;
    place-items: center !important;
    width: 100% !important;
    min-width: 76px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 7px !important;
    background: #fff !important;
    color: #17202a !important;
    font: 800 14px/1 system-ui,sans-serif !important;
    text-align: center !important;
    white-space: nowrap !important;
}
.t101-step-symbol {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    color: inherit !important;
    font: 800 24px/22px system-ui,sans-serif !important;
    text-align: center !important;
}

.t101-text-magnifier[hidden] { display: none !important; }
.t101-text-magnifier {
    width: max-content;
    min-width: 240px;
    max-width: min(560px,calc(100vw - 32px));
    overflow-wrap: anywhere;
}

/* The focus option is intentionally obvious. It works when a visitor presses
   Tab, Shift+Tab, or uses one of the page-navigation shortcuts. */
html.t101-focus-outline body :where(a[href],button,input,select,textarea,summary,[tabindex]:not([tabindex="-1"])):not(#t101-access-center-root *):focus,
html.t101-focus-outline body :where(a[href],button,input,select,textarea,summary,[tabindex]:not([tabindex="-1"])):not(#t101-access-center-root *):focus-visible,
.t101-shortcut-target {
    outline: 5px solid #ff9d00 !important;
    outline-offset: 5px !important;
    box-shadow: 0 0 0 3px #17202a, 0 0 0 8px rgba(255,157,0,.35) !important;
}
.t101-focus-demo {
    outline: 4px solid #ff9d00 !important;
    outline-offset: 4px !important;
    box-shadow: 0 0 0 3px #17202a !important;
}

/* Late-rendered Elementor text receives the same spacing while the JS observer catches up. */
html[data-t101-line-height="1"] body :where(h1,h2,h3,h4,h5,h6,p,li,a,label,button,blockquote,figcaption,legend,summary,td,th,dt,dd,span,small,strong,em):not(#t101-access-center-root *) { line-height:1.6 !important; }
html[data-t101-line-height="2"] body :where(h1,h2,h3,h4,h5,h6,p,li,a,label,button,blockquote,figcaption,legend,summary,td,th,dt,dd,span,small,strong,em):not(#t101-access-center-root *) { line-height:1.85 !important; }
html[data-t101-line-height="3"] body :where(h1,h2,h3,h4,h5,h6,p,li,a,label,button,blockquote,figcaption,legend,summary,td,th,dt,dd,span,small,strong,em):not(#t101-access-center-root *) { line-height:2.05 !important; }
html[data-t101-letter-spacing="1"] body :where(h1,h2,h3,h4,h5,h6,p,li,a,label,button,input,textarea,select,option,blockquote,figcaption,legend,summary,td,th,dt,dd,span,small,strong,em,b,i):not(#t101-access-center-root *) { letter-spacing:.06em !important; }
html[data-t101-letter-spacing="2"] body :where(h1,h2,h3,h4,h5,h6,p,li,a,label,button,input,textarea,select,option,blockquote,figcaption,legend,summary,td,th,dt,dd,span,small,strong,em,b,i):not(#t101-access-center-root *) { letter-spacing:.12em !important; }
html[data-t101-letter-spacing="3"] body :where(h1,h2,h3,h4,h5,h6,p,li,a,label,button,input,textarea,select,option,blockquote,figcaption,legend,summary,td,th,dt,dd,span,small,strong,em,b,i):not(#t101-access-center-root *) { letter-spacing:.18em !important; }

@media (max-width: 760px) {
    .t101-center-root .t101-number-control {
        width: 100% !important;
        min-width: 0 !important;
        grid-template-columns: 48px minmax(92px,1fr) 48px !important;
    }
    .t101-center-root .t101-number-control button {
        width: 48px !important;
        min-width: 48px !important;
        max-width: 48px !important;
    }
}


/* --------------------------------------------------------------------------
 * v1.1.1 — Theme-isolation and polished close control
 * Prevent Astra/Elementor/global button:hover rules from changing panel text.
 * ----------------------------------------------------------------------- */
#t101-access-center-root .t101-center-shell button {
    -webkit-appearance: none !important;
    appearance: none !important;
    text-shadow: none !important;
    text-decoration: none !important;
}

#t101-access-center-root .t101-center-shell button:hover,
#t101-access-center-root .t101-center-shell button:focus,
#t101-access-center-root .t101-center-shell button:active {
    text-decoration: none !important;
}

/* Header close: use CSS geometry so theme SVG/button rules cannot distort it. */
#t101-access-center-root .t101-center-close {
    position: relative !important;
    display: block !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #cfd9e1 !important;
    border-radius: 50% !important;
    background: #f7fafb !important;
    color: #17202a !important;
    line-height: 0 !important;
    font-size: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
}
#t101-access-center-root .t101-center-close .t101-center-icon {
    display: none !important;
}
#t101-access-center-root .t101-center-close::before,
#t101-access-center-root .t101-center-close::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    display: block !important;
    width: 17px !important;
    height: 2px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: currentColor !important;
    transform-origin: center !important;
    pointer-events: none !important;
}
#t101-access-center-root .t101-center-close::before {
    transform: translate(-50%, -50%) rotate(45deg) !important;
}
#t101-access-center-root .t101-center-close::after {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
}
#t101-access-center-root .t101-center-close:hover,
#t101-access-center-root .t101-center-close:focus-visible {
    border-color: #17202a !important;
    background: #17202a !important;
    color: #ffffff !important;
}
#t101-access-center-root .t101-center-close:active {
    background: #263544 !important;
    color: #ffffff !important;
}

/* Toggle cards: preserve readable title/description colors on every state. */
#t101-access-center-root .t101-control-row--toggle,
#t101-access-center-root .t101-control-row--toggle:hover,
#t101-access-center-root .t101-control-row--toggle:focus,
#t101-access-center-root .t101-control-row--toggle:focus-visible,
#t101-access-center-root .t101-control-row--toggle:active {
    color: var(--t101-ink) !important;
    -webkit-text-fill-color: var(--t101-ink) !important;
}
#t101-access-center-root .t101-control-row--toggle:hover {
    border-color: #bfcdd6 !important;
    background: #f6faf9 !important;
}
#t101-access-center-root .t101-control-row--toggle .t101-control-copy strong,
#t101-access-center-root .t101-control-row--toggle:hover .t101-control-copy strong,
#t101-access-center-root .t101-control-row--toggle:focus .t101-control-copy strong,
#t101-access-center-root .t101-control-row--toggle:active .t101-control-copy strong {
    color: var(--t101-ink) !important;
    -webkit-text-fill-color: var(--t101-ink) !important;
}
#t101-access-center-root .t101-control-row--toggle .t101-control-copy small,
#t101-access-center-root .t101-control-row--toggle:hover .t101-control-copy small,
#t101-access-center-root .t101-control-row--toggle:focus .t101-control-copy small,
#t101-access-center-root .t101-control-row--toggle:active .t101-control-copy small {
    color: var(--t101-muted) !important;
    -webkit-text-fill-color: var(--t101-muted) !important;
}
#t101-access-center-root .t101-control-row--toggle .t101-control-icon {
    color: #455564 !important;
    -webkit-text-fill-color: #455564 !important;
}
#t101-access-center-root .t101-control-row--toggle[aria-pressed="true"] .t101-control-icon {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
#t101-access-center-root .t101-control-row--toggle .t101-check-box {
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
}
#t101-access-center-root .t101-control-row--toggle[aria-pressed="true"] .t101-check-box {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Navigation tabs. */
#t101-access-center-root .t101-center-tab,
#t101-access-center-root .t101-center-tab:hover,
#t101-access-center-root .t101-center-tab:focus,
#t101-access-center-root .t101-center-tab:active {
    color: #435160 !important;
    -webkit-text-fill-color: #435160 !important;
}
#t101-access-center-root .t101-center-tab:hover {
    background: #eaf0f1 !important;
}
#t101-access-center-root .t101-center-tab.is-current,
#t101-access-center-root .t101-center-tab.is-current:hover,
#t101-access-center-root .t101-center-tab.is-current:focus,
#t101-access-center-root .t101-center-tab.is-current:active {
    background: #17202a !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
#t101-access-center-root .t101-center-tab.is-current .t101-center-icon {
    color: var(--t101-warm) !important;
}

/* Stepper and segmented controls. */
#t101-access-center-root .t101-number-control button,
#t101-access-center-root .t101-number-control button:hover,
#t101-access-center-root .t101-number-control button:focus,
#t101-access-center-root .t101-number-control button:active {
    color: var(--t101-ink) !important;
    -webkit-text-fill-color: var(--t101-ink) !important;
    background: var(--t101-soft) !important;
}
#t101-access-center-root .t101-number-control button:hover,
#t101-access-center-root .t101-number-control button:focus-visible {
    border-color: var(--t101-accent) !important;
    background: #eaf4f2 !important;
}
#t101-access-center-root .t101-choice-bar button,
#t101-access-center-root .t101-choice-bar button:hover,
#t101-access-center-root .t101-choice-bar button:focus,
#t101-access-center-root .t101-choice-bar button:active {
    color: #526170 !important;
    -webkit-text-fill-color: #526170 !important;
}
#t101-access-center-root .t101-choice-bar button:hover {
    background: #e7edef !important;
}
#t101-access-center-root .t101-choice-bar button[aria-pressed="true"],
#t101-access-center-root .t101-choice-bar button[aria-pressed="true"]:hover,
#t101-access-center-root .t101-choice-bar button[aria-pressed="true"]:focus {
    background: #ffffff !important;
    color: var(--t101-ink) !important;
    -webkit-text-fill-color: var(--t101-ink) !important;
}

/* Appearance cards. */
#t101-access-center-root .t101-theme-card,
#t101-access-center-root .t101-theme-card:hover,
#t101-access-center-root .t101-theme-card:focus,
#t101-access-center-root .t101-theme-card:active {
    color: var(--t101-ink) !important;
    -webkit-text-fill-color: var(--t101-ink) !important;
    background: #ffffff !important;
}
#t101-access-center-root .t101-theme-card:hover {
    border-color: #aebdc7 !important;
    box-shadow: 0 5px 15px rgba(15,23,42,.08) !important;
}
#t101-access-center-root .t101-theme-card strong,
#t101-access-center-root .t101-theme-card:hover strong {
    color: var(--t101-ink) !important;
    -webkit-text-fill-color: var(--t101-ink) !important;
}
#t101-access-center-root .t101-theme-card small,
#t101-access-center-root .t101-theme-card:hover small {
    color: var(--t101-muted) !important;
    -webkit-text-fill-color: var(--t101-muted) !important;
}

/* Page-tool controls and footer actions. */
#t101-access-center-root .t101-tool-links button,
#t101-access-center-root .t101-tool-links button:hover,
#t101-access-center-root .t101-tool-links button:focus,
#t101-access-center-root .t101-tool-links button:active,
#t101-access-center-root .t101-footer-reset,
#t101-access-center-root .t101-footer-reset:hover,
#t101-access-center-root .t101-footer-reset:focus,
#t101-access-center-root .t101-footer-reset:active,
#t101-access-center-root .t101-back-link,
#t101-access-center-root .t101-back-link:hover,
#t101-access-center-root .t101-back-link:focus,
#t101-access-center-root .t101-back-link:active {
    color: var(--t101-ink) !important;
    -webkit-text-fill-color: var(--t101-ink) !important;
}
#t101-access-center-root .t101-tool-links button:hover,
#t101-access-center-root .t101-footer-reset:hover {
    background: #f3f7f8 !important;
    border-color: #b8c6cf !important;
}
#t101-access-center-root .t101-back-link,
#t101-access-center-root .t101-back-link:hover {
    color: var(--t101-accent) !important;
    -webkit-text-fill-color: var(--t101-accent) !important;
    background: transparent !important;
}
#t101-access-center-root .t101-footer-done,
#t101-access-center-root .t101-footer-done:hover,
#t101-access-center-root .t101-footer-done:focus,
#t101-access-center-root .t101-footer-done:active,
#t101-access-center-root .t101-action-card,
#t101-access-center-root .t101-action-card:hover,
#t101-access-center-root .t101-action-card:focus,
#t101-access-center-root .t101-action-card:active {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
#t101-access-center-root .t101-action-card small,
#t101-access-center-root .t101-action-card:hover small {
    color: #c9d2da !important;
    -webkit-text-fill-color: #c9d2da !important;
}
#t101-access-center-root .t101-action-card:hover {
    background: #253341 !important;
}
#t101-access-center-root .t101-footer-done:hover {
    filter: brightness(.92) !important;
}

@media (prefers-reduced-motion: reduce) {
    #t101-access-center-root .t101-center-close {
        transition: none !important;
    }
}


/* testing101 1.3 — original additional assistance tools. */

/* Comfortable reading widths only affect long-form reading blocks selected by JS. */
html[data-t101-reading-width="comfortable"] body,
html[data-t101-reading-width="narrow"] body {
    overflow-wrap: anywhere;
}

/* Form guidance uses text and shape, not color alone. */
html.t101-form-helper-active .t101-form-required {
    border-inline-start: 4px solid #9a5a00 !important;
}
html.t101-form-helper-active .t101-form-invalid {
    outline: 4px solid #b42318 !important;
    outline-offset: 2px !important;
    border-color: #b42318 !important;
}
.t101-required-note {
    display: inline-block !important;
    margin-inline-start: .45em !important;
    padding: .12em .42em !important;
    border: 1px solid currentColor !important;
    border-radius: 999px !important;
    color: #7a4300 !important;
    background: #fff4d6 !important;
    font: 700 .75em/1.3 system-ui, sans-serif !important;
    vertical-align: middle !important;
}

/* Hold only rotating regions, not the entire page. */
.t101-rotator-held,
.t101-rotator-held *,
html.t101-freeze-rotators-active .t101-rotator-held,
html.t101-freeze-rotators-active .t101-rotator-held * {
    animation-play-state: paused !important;
}

.t101-current-section-indicator {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 2147482995;
    max-width: min(820px, calc(100vw - 220px));
    padding: 12px 19px;
    border: 3px solid #17202a;
    border-radius: 16px;
    background: #fff;
    color: #17202a;
    box-shadow: 0 10px 28px rgba(15,23,42,.24);
    transform: translateX(-50%);
    font: 800 16px/1.35 system-ui, sans-serif;
    letter-spacing: .01em;
    text-align: center;
    pointer-events: none;
}
.t101-current-section-indicator[hidden] { display: none !important; }

.t101-generated-sections,
.t101-generated-pictures {
    display: grid;
    gap: 9px;
    margin-top: 14px;
}
.t101-section-jump {
    display: grid !important;
    grid-template-columns: 44px minmax(0,1fr) !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 9px 12px !important;
    border: 1px solid var(--t101-line) !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: var(--t101-ink) !important;
    -webkit-text-fill-color: var(--t101-ink) !important;
    text-align: left !important;
    cursor: pointer !important;
}
.t101-section-jump:hover {
    border-color: var(--t101-accent) !important;
    background: #f1f8f7 !important;
}
.t101-section-level {
    display: grid;
    place-items: center;
    width: 36px;
    height: 30px;
    border-radius: 8px;
    background: #17202a;
    color: #fff;
    -webkit-text-fill-color: #fff;
    font: 800 11px/1 system-ui,sans-serif;
}
.t101-picture-description {
    padding: 12px 14px;
    border: 1px solid var(--t101-line);
    border-radius: 12px;
    background: #f8fafb;
}
.t101-picture-description strong {
    display: block;
    margin-bottom: 4px;
    color: var(--t101-accent) !important;
}
.t101-picture-description p {
    margin: 0 !important;
    color: var(--t101-ink) !important;
}

.t101-speech-controls {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}
.t101-speech-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 8px;
}
.t101-speech-buttons button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    min-height: 46px !important;
    padding: 9px 12px !important;
    border: 1px solid var(--t101-line) !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: var(--t101-ink) !important;
    -webkit-text-fill-color: var(--t101-ink) !important;
    cursor: pointer !important;
}
.t101-speech-buttons button:hover {
    border-color: var(--t101-accent) !important;
    background: #eef8f6 !important;
}
.t101-speech-buttons svg { width: 19px; height: 19px; }
.t101-speech-status {
    margin: 0 !important;
    padding: 11px 13px;
    border-inline-start: 4px solid var(--t101-accent);
    border-radius: 6px;
    background: #f2f7f7;
    color: var(--t101-ink) !important;
    font-weight: 650;
}

/* The action grid can accommodate the expanded set without looking crowded. */
.t101-action-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
}

@media (max-width: 680px) {
    .t101-current-section-indicator {
        bottom: 82px;
        max-width: calc(100vw - 24px);
        padding: 11px 15px;
        font-size: 15px;
        width: max-content;
    }
    .t101-speech-buttons {
        grid-template-columns: 1fr;
    }
    .t101-action-grid {
        grid-template-columns: 1fr;
    }
}


/* v1.4 — preserve the existing sticky header in every visual mode. */
.t101-site-sticky-header-row,
.t101-scale-safe-header,
.t101-site-primary-nav,
.t101-scale-safe-nav {
    will-change: auto !important;
}

/* Reading-width targets receive a visible, reversible measure without changing
   the parent Elementor grid/flex structure. */
.t101-reading-width-target {
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
}

/* testing101 2.0 deterministic high-contrast alternate presentation.
   Black on white is 21:1; dark-blue links remain underlined. */
html[data-t101-contrast="high"] body {
    background: #fff !important;
    color: #000 !important;
}

html[data-t101-contrast="high"] body :is(
    main,[role="main"],header,footer,nav,section,article,aside,
    .site,.site-content,.site-main,.content-area,.entry-content,
    .elementor,.elementor-section,.elementor-top-section,.elementor-inner-section,
    .e-con,.e-con-inner,.elementor-element,.elementor-widget-container,
    .wp-block-group,.wp-block-columns,.wp-block-column
):not(#t101-access-center-root):not(#t101-access-center-root *):not(#t101-reader-overlay):not(#t101-reader-overlay *) {
    background-color: #fff !important;
    background-image: none !important;
    color: #000 !important;
    border-color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

html[data-t101-contrast="high"] body :is(
    h1,h2,h3,h4,h5,h6,p,li,dt,dd,blockquote,figcaption,label,legend,
    span,strong,em,small,time,address,td,th
):not(#t101-access-center-root *):not(#t101-reader-overlay *) {
    color: #000 !important;
    text-shadow: none !important;
}

html[data-t101-contrast="high"] body a:not(#t101-access-center-root *):not(#t101-reader-overlay *) {
    color: #0000b8 !important;
    text-decoration: underline !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 3px !important;
}

html[data-t101-contrast="high"] body :is(input,textarea,select):not(#t101-access-center-root *) {
    color: #000 !important;
    background: #fff !important;
    border: 2px solid #000 !important;
}

html[data-t101-contrast="high"] body :is(button,[role="button"],input[type="button"],input[type="submit"],input[type="reset"]):not(#t101-access-center-root *) {
    color: #fff !important;
    background: #000 !important;
    border: 2px solid #000 !important;
}

/* Section-by-section simplified reader and speech navigation. */
.t101-reader-section-nav,
.t101-speech-section-nav {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(110px, 1fr) minmax(0, auto);
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid #d5dee8;
    border-radius: 14px;
    background: #f7fafc;
}

.t101-reader-section-nav {
    margin: 0 18px 14px;
}

.t101-reader-section-nav button,
.t101-speech-section-nav button {
    min-height: 42px;
    padding: 9px 13px;
    border: 2px solid #17324d !important;
    border-radius: 10px;
    background: #fff !important;
    color: #17324d !important;
    font: 700 14px/1.2 system-ui, sans-serif !important;
    cursor: pointer;
}

.t101-reader-section-nav button:hover,
.t101-reader-section-nav button:focus-visible,
.t101-speech-section-nav button:hover,
.t101-speech-section-nav button:focus-visible {
    background: #17324d !important;
    color: #fff !important;
}

.t101-reader-section-nav button:disabled,
.t101-speech-section-nav button:disabled {
    opacity: .45;
    cursor: not-allowed;
}

#t101-reader-progress,
#t101-speech-section-status {
    color: #25364a !important;
    font: 750 14px/1.35 system-ui, sans-serif !important;
    text-align: center;
}

.t101-reader-page[hidden] {
    display: none !important;
}

.t101-reader-page {
    max-width: 76ch;
    margin: 0 auto;
}

.t101-reader-page > h2:first-child {
    margin-top: 0;
}

@media (max-width: 560px) {
    .t101-reader-section-nav,
    .t101-speech-section-nav {
        grid-template-columns: 1fr 1fr;
    }

    #t101-reader-progress,
    #t101-speech-section-status {
        grid-column: 1 / -1;
        grid-row: 1;
    }
}

html[data-t101-contrast="high"] body :is(button,[role="button"],input[type="button"],input[type="submit"],input[type="reset"]):not(#t101-access-center-root *),
html[data-t101-contrast="high"] body :is(button,[role="button"]):not(#t101-access-center-root *) * {
    color: #fff !important;
    fill: currentColor !important;
    stroke: currentColor !important;
}
