/* ============================================================
   Library Engagement Suite — public styles
   All rules are scoped under .les-scope so they cannot collide
   with the host theme. Generic helpers (container/section/btn/
   hero) are renamed to les-* for the same reason. The unique
   .lrc-* / .lvc-* / .cat-* classes are kept as-is.
   ============================================================ */

.les-scope {
  /* Brand palette */
  --ocpl-navy:        #0a2342;
  --ocpl-blue:        #005685;
  --ocpl-blue-dark:   #003f63;
  --ocpl-blue-mid:    #007cc1;
  --ocpl-blue-light:  #e8f3f9;
  --ocpl-blue-pale:   #f0f8fc;
  --ocpl-orange:      #b56016;
  --ocpl-orange-dark: #8f4a10;
  --ocpl-green:       #B4CD95;

  --white:      #ffffff;
  --off-white:  #f7f8f9;
  --light-gray: #eef0f2;
  --text:       #383838;
  --text-mid:   #686868;
  --text-light: #96a3b1;
  --heading:    #171717;
  --border:     #dde3e9;
  --surface:    #f7f8f9;

  --text-on-dark:        rgba(255,255,255,0.92);
  --text-on-dark-muted:  rgba(255,255,255,0.68);
  --text-on-dark-subtle: rgba(255,255,255,0.50);

  --shadow-xs:  0 1px 3px rgba(0,0,0,0.07);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow:     0 4px 16px rgba(0,0,0,0.09);
  --focus-ring: 0 0 0 3px rgba(0,86,133,0.35);

  --max:        1220px;
  --max-mid:    860px;
  --gutter:     24px;
  --radius-sm:  4px;
  --radius:     8px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --section-pad: clamp(48px, 7vw, 80px);

  --transition-fast: 0.14s ease;
  --transition:      0.2s ease-in-out;

  --font-sans:    'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: var(--font-sans);

  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
}

.les-scope *, .les-scope *::before, .les-scope *::after { box-sizing: border-box; }
.les-scope img { max-width: 100%; height: auto; }

.les-scope h1, .les-scope h2, .les-scope h3, .les-scope h4 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
}
.les-scope h1 { font-size: clamp(1.9rem, 5vw, 2.9rem); color: var(--ocpl-blue-mid); }
.les-scope h2 { font-size: clamp(1.45rem, 3.5vw, 2.1rem); color: var(--ocpl-blue); }
.les-scope h3 { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--ocpl-blue); }
.les-scope p  { margin: 0 0 16px; line-height: 1.7; }
.les-scope a  { color: var(--ocpl-blue); text-decoration: none; }
.les-scope a:hover { color: var(--ocpl-blue-mid); text-decoration: underline; }

/* Layout helpers (renamed from theme generics) */
.les-scope .les-container,
.les-scope .les-container--mid { width: min(100%, var(--max)); margin: 0 auto; padding: 0 var(--gutter); }
.les-scope .les-container--mid { width: min(100%, var(--max-mid)); }
.les-scope .les-section { padding: var(--section-pad) 0; }

/* Buttons (renamed from .btn) */
.les-scope .les-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 46px; padding: 0 24px; border-radius: var(--radius);
  border: 2px solid transparent; font-family: var(--font-heading);
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.02em;
  text-decoration: none !important; cursor: pointer; white-space: nowrap;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.les-scope .les-btn:focus-visible { box-shadow: var(--focus-ring); outline: none; }
.les-scope .les-btn--filled { background: var(--ocpl-blue); border-color: var(--ocpl-blue); color: #fff; }
.les-scope .les-btn--filled:hover { background: var(--ocpl-blue-dark); border-color: var(--ocpl-blue-dark); color: #fff; text-decoration: none; }
.les-scope .les-btn--outline { background: transparent; color: var(--ocpl-blue); border-color: var(--ocpl-blue); }
.les-scope .les-btn--outline:hover { background: var(--ocpl-blue); color: #fff; text-decoration: none; }
.les-scope .les-btn--lg { min-height: 52px; padding: 0 30px; font-size: 1rem; }

/* Page hero (renamed from .page-hero) */
.les-scope .les-hero { padding: 48px 0 28px; background: var(--ocpl-blue); border-bottom: 4px solid var(--ocpl-green); }
.les-scope .les-hero__inner { text-align: center; }
.les-scope .les-hero__eyebrow { font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ocpl-green); font-size: 0.75rem; margin-bottom: 12px; display: block; opacity: 0.9; }
.les-scope .les-hero__inner h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.les-scope .les-hero__intro { max-width: 640px; margin: 0 auto; color: var(--text-on-dark-muted); font-size: 1rem; }
.les-scope .les-hero__photos { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 26px auto 0; max-width: 760px; }
.les-scope .les-hero__photo { margin: 0; flex: 1 1 260px; max-width: 420px; }
.les-scope .les-hero__photo img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); border: 3px solid rgba(255,255,255,0.25); display: block; }
.les-scope .les-hero__photo figcaption { margin-top: 8px; font-size: .78rem; letter-spacing: .02em; color: var(--text-on-dark-muted); text-align: center; }
@media (max-width: 520px) { .les-scope .les-hero__photo img { height: 160px; } }

/* ============================================================
   LIBRARY VALUE CALCULATOR  (.lvc-*)
   ============================================================ */
.les-scope .lvc-page .les-section { padding-top: 48px; padding-bottom: 48px; }
.les-scope .lvc-section-title { font-size: 1.5rem; font-weight: 700; color: #1a3a4f; margin: 0 0 6px; }
.les-scope .lvc-section-sub { color: #555; font-size: .95rem; margin: 0 0 28px; }

.les-scope .lvc-hook-section { background: var(--ocpl-blue-pale); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.les-scope .lvc-hook { display: flex; align-items: stretch; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.les-scope .lvc-hook__cost, .les-scope .lvc-hook__value { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; text-align: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 30px; min-width: 230px; box-shadow: var(--shadow-xs); }
.les-scope .lvc-hook__label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ocpl-blue); }
.les-scope .lvc-hook__amount { font-size: 3.1rem; font-weight: 900; color: var(--ocpl-navy); line-height: 1; }
.les-scope .lvc-hook__amount--value { color: #15803d; }
.les-scope .lvc-hook__sub { font-size: .8rem; color: var(--text-mid); }
.les-scope .lvc-hook__divider { display: flex; align-items: center; font-size: 1.1rem; font-weight: 700; color: var(--text-light); flex-shrink: 0; }
.les-scope .lvc-hook__body { max-width: 680px; margin: 0 auto; text-align: center; font-size: .95rem; color: var(--text); line-height: 1.75; }

.les-scope .lvc-scenarios-section { background: #fff; }
.les-scope .lvc-scenarios__intro { background: var(--ocpl-blue); padding: 52px 0; text-align: center; }
.les-scope .lvc-scenarios__intro h2 { color: #fff; margin-bottom: 10px; }
.les-scope .lvc-scenarios__intro p { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.les-scope .lvc-scenarios__body { padding: 40px 0; }
.les-scope .lvc-scenarios-layout { display: grid; grid-template-columns: 190px 1fr; gap: 20px; align-items: start; }
.les-scope .lvc-scenario-nav { background: var(--ocpl-blue); border: 1px solid var(--ocpl-blue); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; padding: 8px 0; position: sticky; top: 20px; }
.les-scope .lvc-scenario-tab-btn { display: flex; align-items: center; gap: 10px; width: 100%; padding: 10px 16px; background: none; border: none; border-left: 3px solid transparent; font-size: .83rem; font-weight: 500; color: var(--text-on-dark-muted); text-align: left; cursor: pointer; white-space: normal; transition: background var(--transition-fast), color var(--transition-fast); }
.les-scope .lvc-stab-icon { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.45; transition: opacity var(--transition-fast); }
.les-scope .lvc-scenario-tab-btn:hover { background: rgba(255,255,255,.07); color: var(--text-on-dark); }
.les-scope .lvc-scenario-tab-btn:hover .lvc-stab-icon, .les-scope .lvc-scenario-tab-btn--active .lvc-stab-icon { opacity: 0.9; }
.les-scope .lvc-scenario-tab-btn:focus-visible { outline: 2px solid var(--ocpl-orange); outline-offset: -2px; }
.les-scope .lvc-scenario-tab-btn--active { background: rgba(255,255,255,.1); border-left-color: var(--ocpl-orange); color: var(--text-on-dark); }

.les-scope .lvc-scenario-panel__inner { background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-xs); overflow: hidden; animation: lvFadeIn .2s ease; }
@keyframes lvFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.les-scope .lvc-scenario-panel__head { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: flex-start; padding: 24px 32px; border-bottom: 1px solid var(--border); }
.les-scope .lvc-scenario-panel__icon { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; flex-shrink: 0; background: var(--ocpl-blue-pale); border-radius: var(--radius-md); color: var(--ocpl-blue); }
.les-scope .lvc-scenario-icon { width: 28px; height: 28px; }
.les-scope .lvc-scenario-panel__title { font-size: 1.3rem; font-weight: 800; color: var(--ocpl-navy); margin: 0 0 6px; line-height: 1.3; }
.les-scope .lvc-scenario-panel__desc { font-size: .95rem; color: var(--text-mid); margin: 0; line-height: 1.7; }
.les-scope .lvc-scenario-panel__col { padding: 28px 40px; }
.les-scope .lvc-scenario-panel__col--left { border-right: 1px solid var(--border); }
.les-scope .lvc-scenario-panel__col-title { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); margin-bottom: 16px; }
.les-scope .lvc-scenario-panel__foot { padding: 20px 32px; background: var(--ocpl-blue-pale); border-top: 1px solid var(--border); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.les-scope .lvc-scenario-panel__foot p { font-size: .85rem; color: var(--text-mid); margin: 0; flex: 1; }
.les-scope .lvc-scenario-panel__body { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.les-scope .lvc-scenario-panel__total { display: flex; flex-direction: column; align-items: center; background: #1a3a4f; border-radius: 10px; padding: 22px 20px 18px; text-align: center; gap: 4px; }
.les-scope .lvc-scenario-panel__total-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #9bbfd4; }
.les-scope .lvc-scenario-panel__total-val { font-size: 2.2rem; font-weight: 900; color: #7ed4a0; line-height: 1; }
.les-scope .lvc-scenario-panel__total-mult { font-size: .8rem; color: #9bbfd4; }
.les-scope .lvc-scenario-breakdown { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.les-scope .lvc-scenario-breakdown li { display: grid; grid-template-columns: 1fr 52px 1fr 60px; align-items: center; gap: 8px; font-size: .85rem; }
.les-scope .lvc-sb-label { color: #333; font-weight: 500; }
.les-scope .lvc-sb-qty { color: #888; font-size: .8rem; text-align: right; }
.les-scope .lvc-sb-bar-wrap { background: #dde6ed; border-radius: 3px; height: 8px; overflow: hidden; }
.les-scope .lvc-sb-bar { height: 100%; background: #005685; border-radius: 3px; display: block; }
.les-scope .lvc-sb-val { color: #005685; font-weight: 700; text-align: right; }
.les-scope .lvc-scenario-panel__use-btn { white-space: nowrap; }

.les-scope .lvc-calc-section { background: #f4f8fb; }
.les-scope .lvc-calc-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.les-scope .lvc-left-col { display: flex; flex-direction: column; gap: 16px; }
.les-scope .lvc-sliders { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; align-items: start; }
.les-scope .lvc-sliders-header { display: flex; justify-content: flex-end; }
.les-scope .lvc-clear-btn { background: none; border: 1px solid #c8dce8; border-radius: 6px; padding: 5px 12px; font-size: .78rem; color: #666; cursor: pointer; transition: border-color .15s, color .15s; }
.les-scope .lvc-clear-btn:hover { border-color: #005685; color: #005685; }
.les-scope .lvc-slider-group { background: #fff; border-radius: 10px; padding: 22px 22px 18px; box-shadow: 0 1px 6px rgba(0,0,0,.05); }
.les-scope .lvc-slider-group__title { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #005685; margin: 0 0 16px; display: flex; gap: 7px; align-items: center; }
.les-scope .lvc-slider-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; align-items: center; padding: 8px 0; border-top: 1px solid #f0f4f7; }
.les-scope .lvc-slider-row:first-of-type { border-top: none; }
.les-scope .lvc-slider-row__label { font-size: .88rem; font-weight: 500; color: #333; display: flex; flex-direction: column; gap: 2px; }
.les-scope .lvc-slider-row__hint { font-size: .73rem; color: #999; font-weight: 400; }
.les-scope .lvc-slider-row__control { display: flex; align-items: center; gap: 10px; }
.les-scope .lvc-slider { flex: 1; -webkit-appearance: none; appearance: none; height: 5px; border-radius: 3px; background: #c8dce8; outline: none; cursor: pointer; }
.les-scope .lvc-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: #005685; border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.2); cursor: pointer; }
.les-scope .lvc-slider::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: #005685; border: 2px solid #fff; cursor: pointer; }
.les-scope .lvc-slider-row__val { min-width: 28px; text-align: right; font-size: .9rem; font-weight: 700; color: #005685; }

.les-scope .lvc-results { position: sticky; top: 24px; background: #1a3a4f; border-radius: 12px; overflow: hidden; }
body.admin-bar .les-scope .lvc-results { top: 56px; }
.les-scope .lvc-results__inner { padding: 28px 24px; }
.les-scope .lvc-results__eyebrow { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #9bbfd4; margin: 0 0 6px; }
.les-scope .lvc-results__total { font-size: 2.8rem; font-weight: 900; color: #7ed4a0; line-height: 1; margin-bottom: 8px; }
.les-scope .lvc-results__multiplier { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; min-height: 28px; }
.les-scope .lvc-results__mult-num { font-size: 1.6rem; font-weight: 800; color: #fff; }
.les-scope .lvc-results__mult-label { font-size: .8rem; color: #9bbfd4; }
.les-scope .lvc-breakdown-list { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 7px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; }
.les-scope .lvc-breakdown-list li { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; }
.les-scope .lvc-bd-label { color: #c8dce8; }
.les-scope .lvc-bd-val { color: #7ed4a0; font-weight: 700; flex-shrink: 0; margin-left: 8px; }
.les-scope .lvc-results__prompt { font-size: .88rem; color: rgba(255,255,255,.4); text-align: center; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.1); }
.les-scope .lvc-results__cost { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.1); padding-top: 14px; margin-bottom: 16px; }
.les-scope .lvc-results__cost-label { font-size: .8rem; color: #9bbfd4; }
.les-scope .lvc-results__cost-val { font-size: 1rem; font-weight: 700; color: #fff; }
.les-scope .lvc-results__cta { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.les-scope .lvc-results__cta-btns { display: flex; gap: 10px; margin-top: 18px; }
.les-scope .lvc-results__cta p { font-size: .82rem; color: #9bbfd4; margin: 0; line-height: 1.6; }
.les-scope .lvc-results .les-btn--filled { background: #e07b39; border-color: #e07b39; color: #fff; text-align: center; }
.les-scope .lvc-results .les-btn--outline { border-color: rgba(255,255,255,.35); color: #fff; text-align: center; }
.les-scope .lvc-results .les-btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.les-scope .lvc-mode-toggle { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; padding: 12px 16px; background: #fff; border-radius: 8px; border: 1px solid #dde6ed; }
.les-scope .lvc-mode-toggle__label { font-size: .85rem; font-weight: 600; color: #333; white-space: nowrap; }
.les-scope .lvc-mode-toggle__btns { display: flex; border-radius: 6px; overflow: hidden; border: 2px solid #9bbfd4; }
.les-scope .lvc-mode-btn { padding: 5px 16px; background: transparent; border: none; font-size: .85rem; font-weight: 600; color: #005685; cursor: pointer; transition: background .15s, color .15s; line-height: 1.4; }
.les-scope .lvc-mode-btn + .lvc-mode-btn { border-left: 2px solid #9bbfd4; }
.les-scope .lvc-mode-btn--active { background: #005685; color: #fff; }
.les-scope .lvc-mode-toggle__note { font-size: .8rem; color: #777; flex: 1; min-width: 200px; }
.les-scope .lvc-mode-toggle__note strong { color: #005685; }

.les-scope .lvc-methodology-section { background: #fff; }
.les-scope .lvc-methodology { border: 1px solid #dde6ed; border-radius: 8px; overflow: hidden; }
.les-scope .lvc-methodology__toggle { display: block; padding: 14px 18px; font-size: .9rem; font-weight: 600; color: #005685; cursor: pointer; list-style: none; background: #f4f8fb; }
.les-scope .lvc-methodology__toggle::-webkit-details-marker { display: none; }
.les-scope .lvc-methodology__toggle::before { content: "+ "; }
.les-scope details[open] .lvc-methodology__toggle::before { content: "- "; }
.les-scope .lvc-methodology__body { padding: 20px 18px; font-size: .88rem; color: #444; line-height: 1.7; }
.les-scope .lvc-methodology__body p { margin-bottom: 14px; }
.les-scope .lvc-method-table { width: 100%; border-collapse: collapse; margin-bottom: 14px; font-size: .84rem; }
.les-scope .lvc-method-table th, .les-scope .lvc-method-table td { padding: 8px 10px; text-align: left; border-bottom: 1px solid #e8edf0; }
.les-scope .lvc-method-table th { background: #f4f8fb; font-weight: 600; color: #1a3a4f; }
.les-scope .lvc-method-table td:nth-child(2) { font-weight: 700; color: #005685; white-space: nowrap; }

@media (max-width: 700px) {
  .les-scope .lvc-scenarios-layout { grid-template-columns: 1fr; gap: 12px; }
  .les-scope .lvc-scenario-select { display: block; }
  .les-scope .lvc-scenario-nav { display: none; }
  .les-scope .lvc-scenario-tab-btn { border-left: none; border-bottom: 2px solid transparent; padding: 8px 12px; white-space: nowrap; flex-shrink: 0; }
  .les-scope .lvc-scenario-tab-btn--active { border-left-color: transparent; border-bottom-color: var(--ocpl-orange); }
}
@media (max-width: 640px) {
  .les-scope .lvc-calc-layout { grid-template-columns: 1fr; }
  .les-scope .lvc-sliders { grid-template-columns: 1fr; }
  .les-scope .lvc-left-col { order: 1; }
  .les-scope .lvc-results { position: static; order: 2; }
  .les-scope .lvc-scenario-panel__head { grid-template-columns: 1fr; padding: 24px; }
  .les-scope .lvc-scenario-panel__body { grid-template-columns: 1fr; }
  .les-scope .lvc-scenario-panel__col--left { border-right: none; border-bottom: 1px solid var(--border); }
  .les-scope .lvc-scenario-panel__col { padding: 20px 24px; }
  .les-scope .lvc-scenario-panel__foot { padding: 16px 24px; }
  .les-scope .lvc-scenario-panel__total { flex-direction: row; gap: 16px; padding: 16px; min-width: unset; }
  .les-scope .lvc-scenario-breakdown li { grid-template-columns: 1fr 1fr; }
  .les-scope .lvc-sb-bar-wrap, .les-scope .lvc-sb-qty { display: none; }
  .les-scope .lvc-slider-row { grid-template-columns: 1fr; }
  .les-scope .lvc-hook__amount { font-size: 2.6rem; }
}
/* Stack the calculator (sliders + results) before things get cramped */
@media (max-width: 820px) {
  .les-scope .lvc-calc-layout { grid-template-columns: 1fr; }
  .les-scope .lvc-results { position: static; }
}

/* Mobile safety: nothing should force horizontal scrolling */
.les-scope { overflow-wrap: break-word; }
.les-scope table { max-width: 100%; }
@media (max-width: 520px) {
  .les-scope .les-container, .les-scope .les-container--mid { padding-left: 16px; padding-right: 16px; }
  .les-scope .let-card { padding: 20px 18px; }
  .les-scope .let-fund, .les-scope .let-about, .les-scope .let-process, .les-scope .let-petition { padding-left: 18px; padding-right: 18px; }
  .les-scope .lvc-scenario-panel__head { padding-left: 20px; padding-right: 20px; }
}

/* ============================================================
   LIBRARY RESOURCES EXPLORER  (.lrc-*)
   ============================================================ */
.les-scope .lrc-personas { background: var(--white); padding: 64px 0; }
.les-scope .lrc-personas__intro { text-align: center; margin-bottom: 32px; }
.les-scope .lrc-personas__intro h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); color: var(--ocpl-navy); margin-bottom: 10px; }
.les-scope .lrc-personas__intro p { color: var(--text-mid); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.les-scope .lrc-personas-layout { display: grid; grid-template-columns: 200px 1fr; gap: 20px; align-items: start; }
.les-scope .lrc-persona-nav { background: var(--ocpl-blue); border: 1px solid var(--ocpl-blue); border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); position: sticky; top: 20px; max-height: calc(100vh - 40px); overflow-x: hidden; overflow-y: auto; }
.les-scope .lrc-persona-group + .lrc-persona-group { border-top: 1px solid rgba(255,255,255,.08); }
.les-scope .lrc-persona-group__label { font-size: .59rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; padding: 13px 16px 3px; color: var(--text-on-dark-muted); }
.les-scope .lrc-persona-tab { display: flex; align-items: center; gap: 8px; width: 100%; text-align: left; padding: 7px 16px 7px 20px; border: none; border-left: 2px solid transparent; background: none; font-size: .8rem; font-weight: 400; color: var(--text-on-dark-muted); cursor: pointer; transition: background-color var(--transition-fast), color var(--transition-fast); white-space: normal; border-radius: 0; }
.les-scope .lrc-persona-tab span { min-width: 0; }
.les-scope .lrc-ptab-icon { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.45; transition: opacity var(--transition-fast); }
.les-scope .lrc-persona-tab:hover .lrc-ptab-icon, .les-scope .lrc-persona-tab.active .lrc-ptab-icon { opacity: 0.9; }
.les-scope .lrc-persona-tab:hover { background: rgba(255,255,255,.07); color: var(--text-on-dark); }
.les-scope .lrc-persona-tab:focus-visible { outline: 2px solid var(--ocpl-orange); outline-offset: -2px; }
.les-scope .lrc-persona-tab.active { background: rgba(255,255,255,.1); border-left-color: var(--ocpl-orange); color: var(--text-on-dark); font-weight: 600; }

.les-scope .lrc-persona-panel { min-width: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xs); }
.les-scope .lrc-persona-panel__head { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; padding: 36px 40px 28px; background: var(--ocpl-blue-pale); border-bottom: 1px solid var(--border); }
.les-scope .lrc-persona-panel__icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; flex-shrink: 0; background: var(--ocpl-blue-pale); border-radius: var(--radius-md); color: var(--ocpl-blue); }
.les-scope .lrc-panel-icon { width: 28px; height: 28px; }
.les-scope .lrc-persona-panel__eyebrow { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ocpl-blue); margin-bottom: 6px; }
.les-scope .lrc-persona-panel__title { font-size: 1.3rem; font-weight: 800; color: var(--ocpl-navy); margin-bottom: 10px; line-height: 1.3; }
.les-scope .lrc-persona-panel__story { font-size: .95rem; color: var(--text-mid); line-height: 1.7; }
.les-scope .lrc-persona-panel__body { display: grid; grid-template-columns: 1fr 1fr; }
.les-scope .lrc-persona-panel__col { padding: 28px 40px; }
.les-scope .lrc-persona-panel__col:first-child { border-right: 1px solid var(--border); }
.les-scope .lrc-persona-panel__col-title { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--text-light); margin-bottom: 14px; }
.les-scope .lrc-persona-resources { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.les-scope .lrc-persona-resources li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--text); line-height: 1.4; }
.les-scope .lrc-persona-resources li::before { content: '\2192'; color: var(--ocpl-blue); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.les-scope .lrc-persona-resources .lrc-pr-name { font-weight: 600; }
.les-scope .lrc-persona-resources .lrc-pr-why { color: var(--text-light); font-size: .82rem; display: block; }
.les-scope .lrc-persona-savings { display: flex; flex-direction: column; gap: 16px; }
.les-scope .lrc-persona-savings__item { background: var(--ocpl-blue-pale); border-radius: var(--radius); padding: 14px 16px; }
.les-scope .lrc-persona-savings__label { font-size: .78rem; font-weight: 700; color: var(--ocpl-navy); margin-bottom: 2px; }
.les-scope .lrc-persona-savings__val { font-size: 1.1rem; font-weight: 800; color: var(--ocpl-blue); }
.les-scope .lrc-persona-savings__note { font-size: .73rem; color: var(--text-light); margin-top: 2px; }
.les-scope .lrc-persona-panel__foot { padding: 20px 40px; background: var(--ocpl-blue-pale); border-top: 1px solid var(--border); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.les-scope .lrc-persona-panel__foot p { font-size: .85rem; color: var(--text-mid); margin: 0; flex: 1; }
.les-scope .lrc-persona-filter-btn { padding: 10px 22px; background: var(--ocpl-blue); color: #fff; border: none; border-radius: var(--radius); font-size: .85rem; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background-color var(--transition-fast); }
.les-scope .lrc-persona-filter-btn:hover { background: var(--ocpl-blue-dark); }
.les-scope .lrc-persona-filter-btn:focus-visible { box-shadow: var(--focus-ring); outline: none; }

/* Mobile: profile/scenario navs become a dropdown */
.les-scope .lrc-persona-select, .les-scope .lvc-scenario-select { display: none; width: 100%; padding: 12px 14px; border: 2px solid var(--ocpl-blue); border-radius: var(--radius); background: #fff; font-size: 1rem; font-weight: 600; color: var(--ocpl-navy); font-family: inherit; cursor: pointer; }

@media (max-width: 860px) {
  .les-scope .lrc-personas-layout { grid-template-columns: 1fr; gap: 16px; }
  .les-scope .lrc-persona-select { display: block; }
  .les-scope .lrc-persona-nav { display: none; }
  .les-scope .lrc-persona-group + .lrc-persona-group { border-top: none; border-left: 1px solid var(--border); }
  .les-scope .lrc-persona-group { flex-shrink: 0; }
  .les-scope .lrc-persona-tab { border-left: none; border-bottom: 2px solid transparent; padding: 7px 12px; white-space: nowrap; }
  .les-scope .lrc-persona-tab.active { background: rgba(255,255,255,.1); border-left-color: transparent; border-bottom-color: var(--ocpl-orange); }
}
@media (max-width: 700px) {
  .les-scope .lrc-persona-panel__head { grid-template-columns: 1fr; padding: 24px; }
  .les-scope .lrc-persona-panel__icon { width: 44px; height: 44px; }
  .les-scope .lrc-panel-icon { width: 22px; height: 22px; }
  .les-scope .lrc-persona-panel__body { grid-template-columns: 1fr; }
  .les-scope .lrc-persona-panel__col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .les-scope .lrc-persona-panel__col { padding: 20px 24px; }
  .les-scope .lrc-persona-panel__foot { padding: 16px 24px; }
}

.les-scope .lrc-bridge { padding: 32px 0 4px; }
.les-scope .lrc-bridge .les-container { max-width: 900px; text-align: center; }
.les-scope .lrc-bridge p { color: var(--text-mid); font-size: 1rem; line-height: 1.7; margin: 0 auto; }

.les-scope .lrc-explorer { padding: 32px 0 80px; }
.les-scope .lrc-explorer .les-container { max-width: 1440px; }
.les-scope .lrc-explorer .section__title { text-align: center; }
.les-scope .lrc-explorer .section__intro { text-align: center; color: var(--text-mid); max-width: 760px; margin: 0 auto 24px; }
.les-scope .lrc-search-row { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
.les-scope .lrc-search-wrap { position: relative; flex: 1; min-width: 240px; }
.les-scope .lrc-search-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-light); pointer-events: none; }
.les-scope .lrc-search { width: 100%; padding: 12px 16px 12px 42px; border: 2px solid var(--border); border-radius: var(--radius); font-size: 1rem; outline: none; transition: border-color var(--transition-fast); }
.les-scope .lrc-search:focus, .les-scope .lrc-search:focus-visible { border-color: var(--ocpl-blue); }
.les-scope .lrc-count { font-size: .9rem; color: var(--text-light); white-space: nowrap; }
.les-scope .lrc-count strong { color: var(--ocpl-blue); }
.les-scope #lrc-audience-bar { display: none; margin-bottom: 16px; padding: 10px 16px; background: var(--ocpl-blue-light); border: 1.5px solid var(--ocpl-blue); border-radius: var(--radius); align-items: center; gap: 12px; }
.les-scope #lrc-audience-bar.is-visible { display: flex; }
.les-scope .lrc-audience-label { font-size: .88rem; font-weight: 600; color: var(--ocpl-navy); flex: 1; }
.les-scope .lrc-audience-clear { font-size: .8rem; font-weight: 700; color: var(--ocpl-blue); background: none; border: none; cursor: pointer; white-space: nowrap; padding: 0; }
.les-scope .lrc-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
/* Topic directory shown before any filter/search intent. */
.les-scope .lrc-topics { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
.les-scope .lrc-topic-tile { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 16px 18px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); cursor: pointer; text-align: left; transition: border-color var(--transition-fast), box-shadow var(--transition-fast); }
.les-scope .lrc-topic-tile:hover { border-color: var(--ocpl-blue); box-shadow: 0 2px 10px rgba(0, 86, 133, .10); }
.les-scope .lrc-topic-tile__name { font-weight: 700; color: var(--ocpl-blue-dark); font-size: .95rem; }
.les-scope .lrc-topic-tile__n { font-size: .78rem; color: var(--text-mid); }
.les-scope .lrc-topic-tile--all { border-style: dashed; }
.les-scope .lrc-topic-tile--all .lrc-topic-tile__name { color: var(--ocpl-blue); }
.les-scope .lrc-cat-btn { padding: 6px 14px; border: 2px solid var(--border); border-radius: var(--radius-xl); background: var(--white); font-size: .82rem; font-weight: 600; color: var(--text-mid); cursor: pointer; transition: border-color var(--transition-fast), color var(--transition-fast), background-color var(--transition-fast); white-space: nowrap; }
.les-scope .lrc-cat-btn:hover { border-color: var(--ocpl-blue); color: var(--ocpl-blue); }
.les-scope .lrc-cat-btn.active { background: var(--ocpl-blue); border-color: var(--ocpl-blue); color: #fff; }
.les-scope .lrc-cat-btn.active:hover { background: var(--ocpl-blue-dark); border-color: var(--ocpl-blue-dark); }
.les-scope .lrc-cat-btn:focus-visible { box-shadow: var(--focus-ring); outline: none; }
.les-scope .lrc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 16px; }
.les-scope .lrc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow var(--transition), transform var(--transition-fast); }
.les-scope .lrc-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.les-scope .lrc-card__head { padding: 15px 16px 12px; flex: 1; }
.les-scope .lrc-card__name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.les-scope .lrc-card__cats { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.les-scope .lrc-card__cat { font-size: .7rem; font-weight: 700; padding: 2px 8px; border-radius: var(--radius-xl); }
.les-scope .lrc-card__desc { font-size: .88rem; color: var(--text-mid); line-height: 1.55; }
.les-scope .lrc-card__for { margin-top: 10px; font-size: .8rem; color: var(--text-light); }
.les-scope .lrc-card__for strong { color: var(--ocpl-blue); }
.les-scope .lrc-card__value { display: inline-block; margin-top: 8px; font-size: .78rem; font-weight: 700; color: #7c3aed; background: #f5f0ff; padding: 2px 8px; border-radius: var(--radius-sm); }
.les-scope .lrc-card__foot { border-top: 1px solid var(--light-gray); padding: 0; }
.les-scope .lrc-card__toggle { width: 100%; padding: 11px 18px; background: none; border: none; text-align: left; font-size: .82rem; font-weight: 600; color: var(--ocpl-blue); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.les-scope .lrc-card__toggle:hover { background: var(--ocpl-blue-pale); }
.les-scope .lrc-card__toggle:focus-visible { box-shadow: var(--focus-ring); outline: none; }
.les-scope .lrc-card__toggle svg { transition: transform var(--transition-fast); flex-shrink: 0; }
.les-scope .lrc-card__toggle.open svg { transform: rotate(180deg); }
.les-scope .lrc-card__ext { display: none; padding: 14px 18px; font-size: .85rem; color: var(--text-mid); line-height: 1.6; border-top: 1px solid var(--light-gray); background: var(--ocpl-blue-pale); }
.les-scope .lrc-card__ext.open { display: block; }
.les-scope .lrc-access-btn { display: block; padding: 10px 18px; background: var(--ocpl-blue); color: #fff; font-size: .82rem; font-weight: 700; text-align: center; text-decoration: none; transition: background-color var(--transition-fast); }
.les-scope .lrc-access-btn:hover { background: var(--ocpl-blue-dark); color: #fff; text-decoration: none; }
.les-scope .lrc-empty { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--text-light); font-style: italic; }

/* Sticky filter bar keeps search + categories reachable while scrolling the grid */
.les-scope .lrc-filterbar { position: sticky; top: 0; z-index: 30; background: var(--white); padding: 12px 0 10px; margin-bottom: 16px; box-shadow: 0 6px 14px -10px rgba(0,0,0,.4); }
body.admin-bar .les-scope .lrc-filterbar { top: 32px; }
.les-scope .lrc-filterbar .lrc-search-row { margin-bottom: 12px; }
.les-scope .lrc-filterbar #lrc-audience-bar { margin-bottom: 12px; }
.les-scope .lrc-filterbar .lrc-cats { margin-bottom: 0; }

/* Load-more pagination */
.les-scope .lrc-loadmore-wrap { display: flex; justify-content: center; margin: 28px 0 32px; }
.les-scope .lrc-loadmore { padding: 12px 28px; border: 2px solid var(--ocpl-blue); background: var(--white); color: var(--ocpl-blue); font-size: .9rem; font-weight: 700; border-radius: var(--radius-xl); cursor: pointer; transition: background-color var(--transition-fast), color var(--transition-fast); }
.les-scope .lrc-loadmore:hover { background: var(--ocpl-blue); color: #fff; }
.les-scope .lrc-loadmore:focus-visible { box-shadow: var(--focus-ring); outline: none; }

@media (max-width: 782px) { body.admin-bar .les-scope .lrc-filterbar { top: 46px; } }
@media (max-width: 600px) {
  /* Keep the sticky bar short on phones: categories scroll horizontally on one line */
  .les-scope .lrc-filterbar .lrc-cats { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; scrollbar-width: thin; }
}

.les-scope .cat-books            { background: #ede9fe; color: #5b21b6; }
.les-scope .cat-business         { background: #dbeafe; color: #1d4ed8; }
.les-scope .cat-career           { background: #ccfbf1; color: #0f766e; }
.les-scope .cat-current          { background: #fef3c7; color: #d97706; }
.les-scope .cat-data             { background: #f3e8ff; color: #7c3aed; }
.les-scope .cat-education        { background: #dcfce7; color: #15803d; }
.les-scope .cat-nc               { background: #fee2e2; color: #b91c1c; }
.les-scope .cat-genealogy        { background: #fef9c3; color: #92400e; }
.les-scope .cat-government       { background: #e0e7ff; color: #3730a3; }
.les-scope .cat-health           { background: #d1fae5; color: #065f46; }
.les-scope .cat-history          { background: #fff7ed; color: #92400e; }
.les-scope .cat-homework         { background: #fef9c3; color: #713f12; }
.les-scope .cat-language         { background: #fce7f3; color: #be185d; }
.les-scope .cat-magazines        { background: #f1f5f9; color: #475569; }
.les-scope .cat-nursing          { background: #cffafe; color: #0e7490; }
.les-scope .cat-philosophy       { background: #f5f3ff; color: #4c1d95; }
.les-scope .cat-science          { background: #e0f2fe; color: #0369a1; }
.les-scope .cat-social           { background: #ffedd5; color: #9a3412; }

.les-scope .lrc-how { background: var(--ocpl-blue-pale); border-top: 3px solid var(--ocpl-blue); padding: 56px 0; }
.les-scope .lrc-how .les-container { max-width: 840px; text-align: center; }
.les-scope .lrc-how h2 { margin-bottom: 12px; color: var(--ocpl-navy); }
.les-scope .lrc-how p { color: var(--text-mid); margin-bottom: 24px; max-width: 720px; margin-left: auto; margin-right: auto; }
.les-scope .lrc-how__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.les-scope .lrc-how .lrc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; text-align: left; }
.les-scope .lrc-step { background: var(--white); border-radius: var(--radius-md); padding: 20px; border: 1px solid var(--border); }
.les-scope .lrc-step__num { font-size: 1.5rem; font-weight: 800; color: var(--ocpl-blue); }
.les-scope .lrc-step__text { font-size: .9rem; color: var(--text-mid); margin-top: 6px; line-height: 1.5; }
@media (max-width: 680px) {
  .les-scope .lrc-how .lrc-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIAL FORM  (.let-*)
   ============================================================ */
.les-scope .let-form-wrap { max-width: 720px; margin: 0 auto; }

/* Testimonial page layout (hero + main/sidebar, matches the other tools) */
.les-scope .let-countdown-section { padding: 32px 0 0; }
.les-scope .let-body-section { padding-top: 32px; }
.les-scope .let-layout { display: grid; grid-template-columns: 1fr 330px; gap: 32px; align-items: start; }
.les-scope .let-main { min-width: 0; display: flex; flex-direction: column; gap: 24px; }
.les-scope .let-main > section, .les-scope .let-main > .let-card { margin: 0; }
.les-scope .let-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 24px; }
body.admin-bar .les-scope .let-aside { top: 56px; }
.les-scope .let-aside > section, .les-scope .let-aside > .let-related { margin: 0; }
.les-scope .let-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow-xs); }
.les-scope .let-card__title { color: var(--ocpl-navy); margin: 0 0 12px; font-size: 1.3rem; }
@media (max-width: 900px) {
  .les-scope .let-layout { grid-template-columns: 1fr; }
  .les-scope .let-aside { position: static; }
}

/* "What you can do" action list */
.les-scope .let-ways { background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--ocpl-green); border-radius: var(--radius); padding: 18px 20px; }
.les-scope .let-ways__title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-mid); margin-bottom: 12px; }
.les-scope .let-ways ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.les-scope .let-ways li { display: flex; gap: 9px; font-size: .9rem; line-height: 1.5; color: var(--text); }
.les-scope .let-ways__check { color: #5a8a2e; font-weight: 800; flex-shrink: 0; }
.les-scope .let-ways a { font-weight: 600; color: var(--ocpl-blue); }

/* Cross-page links (used on all three tools) */
.les-scope .let-related { background: var(--ocpl-blue-pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.les-scope .let-related__title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-mid); margin-bottom: 12px; }
.les-scope .let-related__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 12px; }
.les-scope .let-rel { display: block; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; text-decoration: none; transition: box-shadow var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast); }
.les-scope .let-rel:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); border-color: var(--ocpl-blue); text-decoration: none; }
.les-scope .let-rel__label { display: block; font-weight: 700; color: var(--ocpl-blue); font-size: .98rem; }
.les-scope .let-rel__arrow { transition: transform var(--transition-fast); display: inline-block; }
.les-scope .let-rel:hover .let-rel__arrow { transform: translateX(3px); }
.les-scope .let-rel__why { display: block; color: var(--text-mid); font-size: .85rem; margin-top: 4px; line-height: 1.5; }
.les-scope .let-related__cta { margin-top: 20px; text-align: center; }
.les-scope .lrc-related-section--top, .les-scope .lvc-related-section--top { padding-top: 28px; padding-bottom: 0; }
.les-scope .let-intro { background: var(--ocpl-blue-pale); border: 1px solid var(--border); border-left: 4px solid var(--ocpl-blue); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 28px; }
.les-scope .let-intro h2 { color: var(--ocpl-navy); margin-bottom: 12px; }
.les-scope .let-intro p { color: var(--text-mid); margin-bottom: 12px; }
.les-scope .let-prompt-lead { font-weight: 600; color: var(--text); margin-bottom: 8px; }
.les-scope .let-prompts { margin: 0 0 4px; padding-left: 20px; color: var(--text-mid); }
.les-scope .let-prompts li { margin-bottom: 4px; line-height: 1.5; }
.les-scope .let-field { margin-bottom: 18px; }
.les-scope .let-field label { display: block; font-weight: 600; font-size: .9rem; color: var(--text); margin-bottom: 6px; }
.les-scope .let-field .let-req { color: #b91c1c; }
.les-scope .let-row { display: flex; gap: 18px; flex-wrap: wrap; }
.les-scope .let-row .let-field { flex: 1; min-width: 200px; }
.les-scope .let-input, .les-scope .let-textarea { width: 100%; padding: 12px 14px; border: 2px solid var(--border); border-radius: var(--radius); font-size: 1rem; font-family: inherit; outline: none; transition: border-color var(--transition-fast); background: #fff; color: var(--text); }
.les-scope .let-input:focus, .les-scope .let-textarea:focus { border-color: var(--ocpl-blue); }
.les-scope .let-textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.les-scope .let-consent { display: flex; align-items: flex-start; gap: 10px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 18px; }
.les-scope .let-consent input { margin-top: 3px; flex-shrink: 0; width: 18px; height: 18px; }
.les-scope .let-consent label { font-weight: 500; font-size: .9rem; color: var(--text); line-height: 1.5; margin: 0; }
.les-scope .let-display { margin-bottom: 18px; }
.les-scope .let-display__label { font-weight: 600; font-size: .9rem; color: var(--text); margin-bottom: 8px; }
.les-scope .let-radios { display: flex; gap: 18px; flex-wrap: wrap; }
.les-scope .let-radios label { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; font-size: .9rem; color: var(--text-mid); }
.les-scope .let-fine-print { font-size: .8rem; color: var(--text-light); line-height: 1.6; margin: 4px 0 16px; }
.les-scope .let-prompt-close { font-size: .88rem; color: var(--text-mid); margin: 10px 0 18px; }
.les-scope .let-field__help { font-size: .78rem; color: var(--text-light); margin: 5px 0 0; }
.les-scope .let-consent--optional { background: #fff; }

/* Why We're Asking — brief context between the hero and the form */
/* The ask rides a pale panel so the page's opening beat reads as a
   distinct moment before the form and the white story wall below. */
.les-scope .let-ask {
  margin-bottom: 26px;
  background: #eef4fb;
  border-left: 4px solid var(--ocpl-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 22px;
}
.les-scope .let-ask h3 { font-size: 1.15rem; margin: 0 0 10px; }
.les-scope .let-ask p { font-size: .92rem; color: var(--text-mid); line-height: 1.65; margin: 0 0 10px; }
.les-scope .let-ask p:last-child { margin-bottom: 0; }
.les-scope .let-ask__link a { font-size: .88rem; font-weight: 600; color: var(--ocpl-blue); }

/* Folded thank-you letter */
.les-scope .let-letter-fold { margin: 30px 0; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--off-white); padding: 16px 20px; }
.les-scope .let-letter-fold > summary { cursor: pointer; font-weight: 700; color: var(--ocpl-blue); font-size: .95rem; }
.les-scope .let-letter-fold[open] > summary { margin-bottom: 12px; }

.les-scope .let-archive-link { text-align: center; margin: 20px 0 6px; }

/* Aside: what happens next */
.les-scope .let-next { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px 20px; margin-bottom: 20px; }
.les-scope .let-next__title { font-size: 1rem; margin: 0 0 10px; }
.les-scope .let-next__steps { margin: 0 0 12px 18px; padding: 0; font-size: .86rem; color: var(--text-mid); line-height: 1.55; }
.les-scope .let-next__steps li { margin-bottom: 7px; }
.les-scope .let-next__contact { font-size: .84rem; color: var(--text-mid); margin: 0; }
.les-scope .let-next__contact a { color: var(--ocpl-blue); }

/* Secondary support options */
.les-scope .let-moreways { text-align: center; margin: 36px 0 6px; }
.les-scope .let-moreways__title { font-size: 1.15rem; margin: 0 0 8px; }
.les-scope .let-moreways__text { font-size: .9rem; color: var(--text-mid); margin: 0 0 16px; }
.les-scope .let-moreways__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.les-scope .let-countdown { background: var(--ocpl-navy); color: #fff; border-radius: var(--radius); padding: 20px 24px; margin: 0 0 24px; text-align: center; border: 1px solid var(--ocpl-navy); }
.les-scope .let-countdown__head { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #9bbfd4; margin-bottom: 12px; }
.les-scope .let-countdown__clock { display: flex; justify-content: center; align-items: flex-start; gap: 10px; }
.les-scope .let-cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 56px; }
.les-scope .let-cd-num { font-size: 2.3rem; font-weight: 900; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.les-scope .let-cd-lab { font-size: .66rem; text-transform: uppercase; letter-spacing: .06em; color: #9bbfd4; margin-top: 5px; }
.les-scope .let-cd-sep { font-size: 2rem; font-weight: 800; color: rgba(255,255,255,.3); line-height: 1.1; }
.les-scope .let-countdown__note { font-size: .82rem; color: #c8dce8; margin-top: 14px; line-height: 1.55; max-width: 560px; margin-left: auto; margin-right: auto; }
.les-scope .let-countdown__expired { font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.5; }
@media (max-width: 480px) { .les-scope .let-cd-num { font-size: 1.7rem; } .les-scope .let-cd-unit { min-width: 42px; } .les-scope .let-cd-sep { font-size: 1.5rem; } }

.les-scope .let-situation { margin: 0 0 28px; }
.les-scope .let-situation h3 { color: var(--ocpl-navy); margin: 0 0 16px; font-size: 1.2rem; }
.les-scope .let-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: 12px; margin-bottom: 20px; }
.les-scope .let-stat { background: var(--ocpl-blue-pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 14px; text-align: center; display: flex; flex-direction: column; gap: 5px; }
.les-scope .let-stat__value { font-size: 1.7rem; font-weight: 900; color: var(--ocpl-blue); line-height: 1; }
.les-scope .let-stat__label { font-size: .76rem; color: var(--text-mid); line-height: 1.4; }
.les-scope .let-situation__body { color: var(--text); line-height: 1.75; }
.les-scope .let-situation__body p { margin: 0 0 14px; }
.les-scope .let-situation__body p:last-child { margin-bottom: 0; }
.les-scope .let-situation__body ul, .les-scope .let-about__note ul { margin: 2px 0 16px; padding-left: 22px; }
.les-scope .let-situation__body li, .les-scope .let-about__note li { margin-bottom: 6px; line-height: 1.6; }

.les-scope .let-fund { margin: 0 0 28px; padding: 24px 28px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-xs); }
.les-scope .let-fund h3 { color: var(--ocpl-navy); margin: 0 0 8px; font-size: 1.2rem; }
.les-scope .let-fund__intro { color: var(--text-mid); margin: 0 0 20px; font-size: .95rem; }
.les-scope .let-fund__layout { display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: center; }
.les-scope .let-donut { width: 200px; height: 200px; border-radius: 50%; position: relative; flex-shrink: 0; margin: 0 auto; }
.les-scope .let-donut::after { content: ''; position: absolute; inset: 34px; background: #fff; border-radius: 50%; }
.les-scope .let-donut__center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; z-index: 1; }
.les-scope .let-donut__pct { font-size: 2.4rem; font-weight: 900; color: var(--ocpl-blue); line-height: 1; }
.les-scope .let-donut__cap { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-mid); margin-top: 5px; max-width: 124px; line-height: 1.3; }
.les-scope .let-fund__bars { display: flex; flex-direction: column; gap: 14px; }
.les-scope .let-fund-bar__head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.les-scope .let-fund-bar__label { font-weight: 600; font-size: .9rem; color: var(--text); display: flex; align-items: center; gap: 7px; }
.les-scope .let-fund-bar__sw { width: 11px; height: 11px; border-radius: 2px; flex-shrink: 0; display: inline-block; }
.les-scope .let-fund-bar__pct { font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.les-scope .let-fund-bar__track { height: 8px; background: #eef2f5; border-radius: 4px; overflow: hidden; margin: 6px 0 5px; }
.les-scope .let-fund-bar__fill { height: 100%; border-radius: 4px; }
.les-scope .let-fund-bar__note { font-size: .78rem; color: var(--text-light); line-height: 1.5; margin: 0; }
.les-scope .let-fund__callout { margin-top: 18px; padding: 14px 16px; background: var(--ocpl-blue-pale); border-left: 4px solid var(--ocpl-blue); border-radius: 6px; font-size: .9rem; color: var(--ocpl-navy); line-height: 1.55; }
.les-scope .let-fund__source { font-size: .72rem; color: var(--text-light); margin: 10px 0 0; }
@media (max-width: 600px) { .les-scope .let-fund__layout { grid-template-columns: 1fr; } }

.les-scope .let-about { margin: 0 0 28px; padding: 22px 26px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-xs); }
.les-scope .let-about h3 { color: var(--ocpl-navy); margin: 0 0 12px; font-size: 1.2rem; }
.les-scope .let-about__body { color: var(--text); font-size: .92rem; line-height: 1.7; }
.les-scope .let-about__body ul { margin: 0 0 14px; padding-left: 20px; }
.les-scope .let-about__body li { margin-bottom: 6px; line-height: 1.6; }
.les-scope .let-budget { width: 100%; border-collapse: collapse; margin: 4px 0 18px; font-size: .88rem; }
.les-scope .let-budget th, .les-scope .let-budget td { padding: 8px 12px; text-align: left; border-bottom: 1px solid var(--border); }
.les-scope .let-budget thead th { background: var(--ocpl-blue-pale); color: var(--ocpl-navy); font-weight: 700; }
.les-scope .let-budget th:last-child, .les-scope .let-budget td:last-child { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.les-scope .let-budget tbody td:last-child { font-weight: 700; color: var(--ocpl-blue); }
.les-scope .let-budget__sub td:first-child { padding-left: 26px; color: var(--text-mid); font-weight: 400; }
.les-scope .let-budget__sub td:last-child { font-weight: 600; color: var(--text); }
.les-scope .let-about__note { background: var(--ocpl-blue-pale); border-radius: 8px; padding: 14px 16px; font-size: .9rem; color: var(--text); line-height: 1.65; }
.les-scope .let-about__note p { margin: 0 0 10px; }
.les-scope .let-about__note p:last-child { margin-bottom: 0; }

.les-scope .let-contrast { margin: 0 0 28px; padding: 22px 26px; background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--ocpl-orange); border-radius: var(--radius); }
.les-scope .let-contrast h3 { color: var(--ocpl-navy); margin: 0 0 10px; font-size: 1.15rem; }
.les-scope .let-contrast__body { color: var(--text); font-size: .92rem; line-height: 1.7; }
.les-scope .let-contrast__body p { margin: 0 0 12px; }
.les-scope .let-contrast__body p:last-child { margin-bottom: 0; }
.les-scope .let-contrast__intro { color: var(--text-mid); font-size: .92rem; line-height: 1.6; margin: 0 0 14px; }
.les-scope .let-faq { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 8px; background: #fff; overflow: hidden; }
.les-scope .let-faq__q { cursor: pointer; padding: 12px 16px; font-weight: 700; font-size: .92rem; color: var(--ocpl-navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.les-scope .let-faq__q::-webkit-details-marker { display: none; }
.les-scope .let-faq__q::after { content: '+'; color: var(--ocpl-blue); font-weight: 800; font-size: 1.2rem; line-height: 1; flex-shrink: 0; }
.les-scope details.let-faq[open] .let-faq__q::after { content: '\2013'; }
.les-scope .let-faq__q:hover { background: var(--ocpl-blue-pale); }
.les-scope .let-faq__a { padding: 0 16px 14px; font-size: .88rem; line-height: 1.65; color: var(--text); }
.les-scope .let-faq__a a { color: var(--ocpl-blue); font-weight: 600; }

.les-scope .let-process { margin: 0 0 28px; padding: 22px 26px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); }
.les-scope .let-process h3 { color: var(--ocpl-navy); margin: 0 0 10px; font-size: 1.15rem; }
.les-scope .let-process__body { color: var(--text); font-size: .92rem; line-height: 1.7; }
.les-scope .let-process__body p { margin: 0 0 12px; }
.les-scope .let-sources { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.les-scope .let-sources li { margin: 0; }
.les-scope .let-sources a { display: inline-flex; align-items: baseline; gap: 6px; font-weight: 600; font-size: .9rem; color: var(--ocpl-blue); text-decoration: none; }
.les-scope .let-sources a:hover { text-decoration: underline; }
.les-scope .let-process__note { font-size: .78rem; color: var(--text-light); line-height: 1.6; margin: 16px 0 0; padding-top: 12px; border-top: 1px solid var(--border); }

.les-scope .let-social { margin: 32px 0 0; padding: 22px 26px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); }
.les-scope .let-social h3 { color: var(--ocpl-navy); margin: 0 0 8px; font-size: 1.15rem; }
.les-scope .let-social__blurb { color: var(--text-mid); font-size: .9rem; margin: 0 0 14px; line-height: 1.55; }
.les-scope .let-social__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.les-scope .let-social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 8px; font-weight: 700; font-size: .9rem; color: #fff; text-decoration: none; border: none; cursor: pointer; line-height: 1; transition: opacity var(--transition-fast); }
.les-scope .let-social-btn:hover { opacity: .9; color: #fff; text-decoration: none; }
.les-scope .let-social-btn svg { width: 18px; height: 18px; }
.les-scope .let-social-btn--fb { background: #1877f2; }
.les-scope .let-social-btn--x { background: #000; }
.les-scope .let-social-btn--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.les-scope .let-social__copied { display: none; margin: 12px 0 0; font-size: .85rem; font-weight: 600; color: #15803d; }
.les-scope .let-social__copied.is-visible { display: block; }

.les-scope .let-commissioners { margin: 32px 0 0; padding: 22px 26px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); }
.les-scope .let-commissioners h3 { color: var(--ocpl-navy); margin: 0 0 10px; font-size: 1.15rem; }
.les-scope .let-commissioners__blurb { background: #fff8e6; border: 1px solid #f3d98c; border-left: 4px solid var(--ocpl-orange); border-radius: 6px; padding: 12px 14px; font-size: .9rem; color: var(--text); line-height: 1.55; margin: 0 0 16px; }
.les-scope .let-commissioners .let-input, .les-scope .let-commissioners .let-textarea { background: #fff; }

.les-scope .let-petition { margin: 32px 0 0; padding: 22px 26px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); }
.les-scope .let-petition h3 { color: var(--ocpl-navy); margin: 0 0 8px; font-size: 1.15rem; }
.les-scope .let-petition__blurb { color: var(--text-mid); font-size: .9rem; margin: 0 0 14px; line-height: 1.6; }
.les-scope .let-petition__statement { margin: 0 0 16px; padding: 12px 16px; background: #fff; border-left: 4px solid var(--ocpl-blue); border-radius: 6px; font-style: italic; color: var(--text); font-size: .92rem; line-height: 1.55; }
.les-scope .let-petition .let-consent { background: #fff; }
.les-scope .let-petition__foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.les-scope .let-petition__count { font-size: .85rem; color: var(--text-mid); }
.les-scope .let-petition__count strong { color: var(--ocpl-blue); font-size: 1.05rem; }
.les-scope .let-petition__thanks { background: #dcfce7; border: 1px solid #86efac; border-left: 4px solid #15803d; border-radius: var(--radius); padding: 18px 22px; color: #14532d; line-height: 1.6; }

.les-scope .let-success { background: #dcfce7; border: 1px solid #86efac; border-left: 4px solid #15803d; border-radius: var(--radius); padding: 24px 28px; color: #14532d; font-size: 1.05rem; line-height: 1.6; }
.les-scope .let-error { background: #fee2e2; border: 1px solid #fca5a5; border-left: 4px solid #b91c1c; border-radius: var(--radius); padding: 16px 20px; color: #7f1d1d; margin-bottom: 20px; }

/* ── Thank-you letter ─────────────────────────────────────── */
.les-scope .let-letter { background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--ocpl-blue); border-radius: var(--radius); padding: 28px 32px; box-shadow: var(--shadow-xs); }
.les-scope .let-letter p { margin: 0 0 16px; }
.les-scope .let-letter p:first-child { font-weight: 700; color: var(--ocpl-navy); }
.les-scope .let-letter p:last-child { margin-bottom: 0; }
.les-scope .let-letter__sign { margin-top: 22px; font-style: italic; color: var(--ocpl-navy); }
@media (max-width: 600px) { .les-scope .let-letter { padding: 22px 20px; } }

/* ── Community stories wall ───────────────────────────────── */
.les-scope .let-wall { margin: 32px 0 0; }
.les-scope .let-wall__title { color: var(--ocpl-navy); margin: 0 0 6px; font-size: 1.2rem; }
.les-scope .let-wall__intro { color: var(--text-mid); margin: 0 0 20px; font-size: .95rem; line-height: 1.6; }
.les-scope .let-wall__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 16px; }
.les-scope .let-quote { margin: 0; background: var(--ocpl-blue-pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; display: flex; flex-direction: column; }
.les-scope .let-quote blockquote { margin: 0; color: var(--text); line-height: 1.65; font-size: .96rem; }
.les-scope .let-quote blockquote::before { content: "\201C"; color: var(--ocpl-blue); font-weight: 900; }
.les-scope .let-quote blockquote::after { content: "\201D"; color: var(--ocpl-blue); font-weight: 900; }
.les-scope .let-quote figcaption { margin-top: 14px; font-size: .82rem; font-weight: 700; color: var(--ocpl-blue); }

/* ============================================================
   STORIES WALL  ([library_testimonial_wall], .ltw-*)
   ============================================================ */
.les-scope .ltw-section { padding: 32px 0 80px; }
.les-scope .ltw-section .les-container { max-width: 1200px; }
.les-scope .ltw-context { background: var(--ocpl-blue-pale); border: 1px solid var(--border); border-left: 4px solid var(--ocpl-blue); border-radius: var(--radius); padding: 14px 18px; margin: 0 0 22px; font-size: .9rem; color: var(--text-mid); line-height: 1.6; }
.les-scope .ltw-stat { font-size: 1.05rem; color: var(--text-mid); margin: 0 0 4px; }
.les-scope .ltw-stat strong { color: var(--ocpl-blue); font-size: 1.5rem; font-weight: 900; }
.les-scope .ltw-count-sub { font-size: .82rem; color: var(--text-light); margin: 0 0 22px; }

.les-scope .ltw-hero-cta { margin-top: 18px; }

.les-scope .ltw-search { margin: 0 0 18px; }
.les-scope .ltw-search__intro { font-size: .85rem; color: var(--text-mid); margin: 4px 0 8px; }
.les-scope .ltw-search__input { width: 100%; max-width: 480px; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .95rem; }
.les-scope .ltw-search__input:focus-visible { outline: 2px solid var(--ocpl-blue); outline-offset: 1px; }

.les-scope .ltw-toolbar { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 18px; margin: 4px 0 18px; }
.les-scope .ltw-result { font-size: .88rem; font-weight: 600; color: var(--heading); }
.les-scope .ltw-clear { background: none; border: none; padding: 0; font-size: .84rem; font-weight: 600; color: var(--ocpl-blue); text-decoration: underline; cursor: pointer; }
.les-scope .ltw-sort { display: flex; align-items: baseline; gap: 8px; margin-left: auto; }

.les-scope .ltw-loadmore-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.les-scope .ltw-remaining { font-size: .8rem; color: var(--text-light); }
.les-scope .ltw-top { font-size: .84rem; font-weight: 600; color: var(--ocpl-blue); }

.les-scope .ltw-share { text-align: center; margin: 0 auto; max-width: 560px; }
.les-scope .ltw-share__title { font-size: 1.3rem; margin: 0 0 8px; }
.les-scope .ltw-share__text { font-size: .92rem; color: var(--text-mid); margin: 0 0 16px; line-height: 1.6; }

/* ── Wall band structure ─────────────────────────────────────
   Controls on a pale band, the story wall itself on white, and the
   share invitation as the page's one dark band. */
.les-scope .ltw-controls-section {
  background: #eef4fb;
  border-bottom: 1px solid var(--border);
  padding: 34px 0 26px;
}
.les-scope .ltw-section { padding-top: 40px; }
.les-scope .ltw-share-section {
  background: var(--ocpl-navy);
  padding: 56px 0;
}
.les-scope .ltw-share-section .ltw-share__title { color: #fff; font-size: 1.5rem; }
.les-scope .ltw-share-section .ltw-share__text { color: rgba(255,255,255,.78); }
.les-scope .ltw-share-section .les-btn--filled {
  background: #fff;
  border-color: #fff;
  color: var(--ocpl-navy);
}
.les-scope .ltw-share-section .les-btn--filled:hover {
  background: rgba(255,255,255,.88);
  border-color: #fff;
  color: var(--ocpl-navy);
}

.les-scope .ltw-filtergroup { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 14px; }
.les-scope .ltw-filtergroup__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); flex-shrink: 0; }
.les-scope .ltw-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.les-scope .ltw-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-xl); background: var(--white); font-size: .82rem; font-weight: 600; color: var(--text-mid); cursor: pointer; transition: border-color var(--transition-fast), color var(--transition-fast), background-color var(--transition-fast); }
.les-scope .ltw-chip:hover { border-color: var(--ocpl-blue); color: var(--ocpl-blue); }
.les-scope .ltw-chip.is-active { background: var(--ocpl-blue); border-color: var(--ocpl-blue); color: #fff; }
.les-scope .ltw-chip__n { font-size: .72rem; font-weight: 700; opacity: .7; }
.les-scope .ltw-chip.is-active .ltw-chip__n { opacity: .85; }
.les-scope .ltw-note { font-size: .82rem; color: var(--text-light); font-style: italic; margin: 6px 0 22px; }

/* Masonry-style wall via CSS columns so varied-length quotes pack tightly. */
.les-scope .ltw-grid { column-count: 3; column-gap: 16px; }
.les-scope .ltw-quote { break-inside: avoid; -webkit-column-break-inside: avoid; margin: 0 0 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px 20px; box-shadow: var(--shadow-xs); }
.les-scope .ltw-quote[hidden] { display: none; }
.les-scope .ltw-quote--short { background: var(--ocpl-blue-pale); }
.les-scope .ltw-quote blockquote { margin: 0; color: var(--text); line-height: 1.6; font-size: .94rem; }
.les-scope .ltw-quote blockquote::before { content: "\201C"; color: var(--ocpl-blue); font-weight: 900; }
.les-scope .ltw-quote blockquote::after { content: "\201D"; color: var(--ocpl-blue); font-weight: 900; }
.les-scope .ltw-quote figcaption { margin-top: 14px; }
.les-scope .ltw-quote__by { display: block; font-size: .82rem; font-weight: 700; color: var(--ocpl-blue); margin-bottom: 8px; }
.les-scope .ltw-quote__tags { display: flex; flex-wrap: wrap; gap: 5px; }
.les-scope .ltw-tag { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--text-mid); background: var(--light-gray); border-radius: var(--radius-sm); padding: 2px 7px; }
.les-scope .ltw-empty { text-align: center; padding: 48px 20px; color: var(--text-light); font-style: italic; }
.les-scope .ltw-loadmore-wrap { display: flex; justify-content: center; margin-top: 24px; }

@media (max-width: 900px) { .les-scope .ltw-grid { column-count: 2; } }
@media (max-width: 600px) {
  .les-scope .ltw-grid { column-count: 1; }
  .les-scope .ltw-filtergroup { gap: 6px 10px; }
}

/* ── Quote clamp / read-more (les-clamp.js) ────────────────── */
.les-scope .les-clamp { display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
.les-scope .les-clamp.les-clamp--open { display: block; -webkit-line-clamp: unset; overflow: visible; }
.les-scope .les-readmore { background: none; border: none; padding: 0; margin-top: 8px; color: var(--ocpl-blue); font-weight: 700; font-size: .84rem; cursor: pointer; text-decoration: underline; }
.les-scope .les-readmore:hover { text-decoration: none; }
