/* ==========================================================================
   Lead Hole — Coverage page
   Scoped entirely under .lh-cov so nothing here can leak into other pages.
   ========================================================================== */

.lh-cov {
  /* Bound to the site's locked tokens (tokens.css). If the palette ever
     changes there, this page follows automatically. Fallbacks are the same
     values, so the page still renders if tokens.css is not present. */
  --ink: var(--lh-color-ink, #111827);
  --ink-soft: var(--lh-color-slate, #374151);
  --band: var(--lh-color-footer, #0F172A);
  --slate: var(--lh-color-paragraph, #5A6472);
  --slate-light: var(--lh-color-muted, #8A93A3);
  --hairline: var(--lh-color-border, #E7E9EE);
  --hairline-soft: #EFF1F5;
  --paper: var(--lh-color-bg, #FFFFFF);
  --mist: var(--lh-color-alt, #F7F8FA);
  --signal: var(--lh-color-blue, #2563EB);
  --signal-soft: #EAF0FE;

  /* The site ships two faces. Rather than pull in a third for figures,
     numerals are set with tabular-nums so columns still align. */
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display: 'Plus Jakarta Sans', var(--sans);
  --mono: var(--sans);

  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.lh-cov *,
.lh-cov *::before,
.lh-cov *::after { box-sizing: border-box; }

.lh-cov__wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Masthead
   -------------------------------------------------------------------------- */

.lh-cov__masthead {
  background: var(--band);
  color: #fff;
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

/* Aperture motif from the brand mark, held back to a whisper. */
.lh-cov__masthead::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .07);
  pointer-events: none;
}
.lh-cov__masthead::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .05);
  pointer-events: none;
}

.lh-cov__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin: 0 0 18px;
}

.lh-cov__title {
  font-family: var(--display);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.06;
  letter-spacing: -.025em;
  font-weight: 800;
  margin: 0 0 16px;
  max-width: 16ch;
  color: #fff;
}

.lh-cov__lede {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .68);
  margin: 0 0 32px;
  max-width: 52ch;
}

/* Search — the page's whole job, so it gets the hero position */
.lh-cov__search {
  position: relative;
  max-width: 560px;
}

.lh-cov__search svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: .5;
}

.lh-cov__search input {
  width: 100%;
  height: 60px;
  padding: 0 110px 0 52px;
  border: 0;
  border-radius: var(--lh-radius-input, 10px);
  background: #fff;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(2, 8, 20, .28);
}
.lh-cov__search input::placeholder { color: var(--slate-light); font-weight: 400; }
.lh-cov__search input:focus {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

.lh-cov__clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: var(--mist);
  color: var(--slate);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: var(--lh-radius-input, 10px);
  cursor: pointer;
  display: none;
}
.lh-cov__clear:hover { background: var(--hairline); color: var(--ink); }
.lh-cov.is-searching .lh-cov__clear { display: block; }

/* Stat rail */
.lh-cov__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.lh-cov__stat {
  flex: 1 1 0;
  min-width: 140px;
  padding: 22px 24px 26px 0;
}
.lh-cov__stat + .lh-cov__stat {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.lh-cov__stat b {
  display: block;
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 4px;
}
.lh-cov__stat span {
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .52);
}

/* --------------------------------------------------------------------------
   Toolbar
   -------------------------------------------------------------------------- */

.lh-cov__toolbar {
  position: sticky;
  top: 76px; /* clears the site's sticky 76px header */
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.lh-cov__toolbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.lh-cov__tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-right: auto;
  padding: 2px;
  background: var(--mist);
  border-radius: var(--lh-radius-tile, 12px);
}
.lh-cov__tabs::-webkit-scrollbar { display: none; }

.lh-cov__tab {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--slate);
  padding: 9px 16px;
  border-radius: var(--lh-radius-input, 10px);
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
.lh-cov__tab:hover { color: var(--ink); }
.lh-cov__tab[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
}
.lh-cov__tab:focus-visible { outline: 2px solid var(--signal); outline-offset: 2px; }

.lh-cov__select {
  height: 38px;
  border: 1px solid var(--hairline);
  border-radius: var(--lh-radius-input, 10px);
  background: #fff;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 0 32px 0 12px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%235A6472' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.lh-cov__select:focus-visible { outline: 2px solid var(--signal); outline-offset: 1px; }

.lh-cov__download {
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--hairline);
  border-radius: var(--lh-radius-input, 10px);
  background: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding: 0 14px;
  cursor: pointer;
}
.lh-cov__download:hover { border-color: var(--ink); }
.lh-cov__download:focus-visible { outline: 2px solid var(--signal); outline-offset: 1px; }

/* --------------------------------------------------------------------------
   Results
   -------------------------------------------------------------------------- */

.lh-cov__body { padding: 40px 0 88px; }

.lh-cov__resultline {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 28px;
}
.lh-cov__resultline b { color: var(--ink); font-weight: 600; }

.lh-cov__state {
  border-top: 1px solid var(--ink);
  margin-bottom: 44px;
}

.lh-cov__state-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0 14px;
  flex-wrap: wrap;
}

.lh-cov__state-name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink);
}

.lh-cov__state-abbr {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--slate-light);
  align-self: center;
}

.lh-cov__state-count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--slate);
}
.lh-cov__state-count b { color: var(--ink); font-weight: 600; }

/* Signature: the payout rail. Marker sits where this state's best payout
   falls against the highest payout anywhere in the vertical. */
.lh-cov__rail-line {
  position: relative;
  height: 1px;
  background: var(--hairline);
  margin: 0 0 4px;
}
.lh-cov__rail-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  background: var(--signal);
}
.lh-cov__rail-dot {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-left: -4.5px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--signal);
  transform: translateY(-50%);
}
.lh-cov__rail-cap {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--slate-light);
  padding-bottom: 18px;
}
.lh-cov__rail-cap b { color: var(--signal); font-weight: 600; }

/* Rows */
.lh-cov__rows { display: block; }

.lh-cov__row {
  display: grid;
  grid-template-columns: 44px 1fr 130px;
  align-items: center;
  gap: 12px;
  padding: 11px 8px 11px 0;
  border-bottom: 1px solid var(--hairline-soft);
}
.lh-cov__row:hover { background: var(--mist); }

.lh-cov__num {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--slate-light);
  text-align: right;
  padding-right: 8px;
}

.lh-cov__city {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lh-cov__city mark {
  background: var(--signal-soft);
  color: var(--ink);
  padding: 0 1px;
  border-radius: var(--lh-radius-input, 10px);
}

.lh-cov__pay {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.lh-cov__more {
  width: 100%;
  margin-top: 14px;
  border: 1px dashed var(--hairline);
  background: #fff;
  border-radius: var(--lh-radius-input, 10px);
  padding: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate);
  cursor: pointer;
}
.lh-cov__more:hover { border-color: var(--signal); color: var(--signal); }

/* States */
.lh-cov__empty {
  border-top: 1px solid var(--ink);
  padding: 56px 0 0;
  max-width: 46ch;
}
.lh-cov__empty h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 10px;
}
.lh-cov__empty p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate);
  margin: 0 0 20px;
}

.lh-cov__loading {
  padding: 64px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-light);
}


/* --------------------------------------------------------------------------
   Pager
   -------------------------------------------------------------------------- */

.lh-cov__pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}

.lh-cov__pg {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--hairline);
  border-radius: var(--lh-radius-input, 10px);
  background: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.lh-cov__pg:hover:not(:disabled):not(.is-current) {
  border-color: var(--ink);
  background: var(--mist);
}
.lh-cov__pg:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

/* Current page: solid, matching the site's primary button. */
.lh-cov__pg.is-current {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  cursor: default;
}

.lh-cov__pg:disabled {
  opacity: .38;
  cursor: not-allowed;
}

.lh-cov__pg--step { padding: 0 16px; }

.lh-cov__pg-gap {
  padding: 0 4px;
  color: var(--slate-light);
  font-size: 14px;
  user-select: none;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.lh-cov__about {
  background: var(--mist);
  border-top: 1px solid var(--hairline);
  padding: 64px 0 72px;
}

.lh-cov__about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

.lh-cov__about h2 {
  font-size: 13px;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0;
}

.lh-cov__about p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 68ch;
}
.lh-cov__about p:last-child { margin-bottom: 0; }
.lh-cov__about strong { font-weight: 700; }

/* --------------------------------------------------------------------------
   ZIP codes
   Every location carries the ZIP codes inside it. They sit on a second line
   in the same cell, so the row grid stays at three columns and nothing
   overflows on a narrow phone.
   -------------------------------------------------------------------------- */

.lh-cov__loc {
  min-width: 0;
  display: block;
}

.lh-cov__zipwrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 5px;
}

.lh-cov__zips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}

/* Long lists are clipped to the first six until the row is expanded. */
.lh-cov__zips.is-clipped > .lh-cov__zip:nth-child(n+7) { display: none; }

.lh-cov__zip {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
  color: var(--slate);
  background: var(--mist);
  border: 1px solid var(--hairline);
  border-radius: var(--lh-radius-pill, 999px);
  padding: 2px 8px;
  white-space: nowrap;
}

.lh-cov__zip.is-match {
  color: var(--signal);
  background: var(--signal-soft);
  border-color: var(--signal);
  font-weight: 600;
}

.lh-cov__zipmore {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--signal);
  background: none;
  border: 1px dashed var(--hairline);
  border-radius: var(--lh-radius-pill, 999px);
  padding: 2px 9px;
  cursor: pointer;
  white-space: nowrap;
}
.lh-cov__zipmore:hover { border-color: var(--signal); background: var(--signal-soft); }
.lh-cov__zipmore:focus-visible { outline: 2px solid var(--signal); outline-offset: 1px; }

/* --------------------------------------------------------------------------
   Exact ZIP result card
   -------------------------------------------------------------------------- */

.lh-cov__zipslot:empty { display: none; }

.lh-cov__zipcard {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--signal);
  border-radius: var(--lh-radius-card, 16px);
  background: var(--signal-soft);
  padding: 20px 24px;
  margin: 0 0 22px;
}
.lh-cov__zipcard.is-empty {
  border-color: var(--hairline);
  background: var(--mist);
}

.lh-cov__zipcard-main { min-width: 0; }

.lh-cov__zipcard-eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 4px;
}

.lh-cov__zipcard-zip {
  display: block;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  line-height: 1.1;
}

.lh-cov__zipcard-loc {
  display: block;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 6px;
}

.lh-cov__zipcard-abbr {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  color: var(--slate);
  border: 1px solid var(--hairline);
  border-radius: var(--lh-radius-pill, 999px);
  padding: 1px 7px;
  margin-left: 4px;
  background: #fff;
}

.lh-cov__zipcard-pay { text-align: right; }

.lh-cov__zipcard-paylabel {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 4px;
}

.lh-cov__zipcard-payval {
  display: block;
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  color: var(--signal);
  line-height: 1.1;
}
.lh-cov__zipcard-pay--none .lh-cov__zipcard-payval { color: var(--slate-light); }

.lh-cov__zipcard-foot {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(17, 24, 39, .10);
  padding-top: 16px;
}

.lh-cov__zipall {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--lh-radius-input, 10px);
  padding: 10px 16px;
  cursor: pointer;
}
.lh-cov__zipall:hover:not(:disabled) { border-color: var(--signal); color: var(--signal); }
.lh-cov__zipall:focus-visible { outline: 2px solid var(--signal); outline-offset: 1px; }
.lh-cov__zipall:disabled { opacity: .55; cursor: default; }

.lh-cov__zipgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 8px;
}
.lh-cov__zipgrid[hidden] { display: none; }

.lh-cov__zipvert {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--lh-radius-tile, 12px);
  padding: 11px 14px;
}
.lh-cov__zipvert.is-best { border-color: var(--signal); }
.lh-cov__zipvert.is-off { background: var(--mist); }

.lh-cov__zipvert-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lh-cov__zipvert-pay {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  white-space: nowrap;
}
.lh-cov__zipvert.is-best .lh-cov__zipvert-pay { color: var(--signal); }
.lh-cov__zipvert.is-off .lh-cov__zipvert-pay {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate-light);
}

.lh-cov__zipnote {
  grid-column: 1 / -1;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--slate);
  margin: 4px 0 0;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 860px) {
  .lh-cov__about-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 720px) {
  .lh-cov__wrap { padding: 0 18px; }
  .lh-cov__masthead { padding-top: 48px; }
  .lh-cov__lede { margin-bottom: 26px; }
  .lh-cov__search input { height: 54px; font-size: 16px; padding-right: 96px; }
  .lh-cov__rail { margin-top: 34px; }
  .lh-cov__stat {
    flex: 1 1 50%;
    min-width: 0;
    padding: 16px 16px 18px 0;
  }
  .lh-cov__stat:nth-child(3),
  .lh-cov__stat:nth-child(5) { padding-left: 0; border-left: 0; }
  .lh-cov__stat:nth-child(3),
  .lh-cov__stat:nth-child(4),
  .lh-cov__stat:nth-child(5) { border-top: 1px solid rgba(255,255,255,.12); }
  .lh-cov__stat:nth-child(5) { flex: 1 1 100%; }
  .lh-cov__stat b { font-size: 20px; }

  .lh-cov__toolbar-inner { padding: 10px 0; gap: 10px; }
  .lh-cov__tabs { order: -1; width: 100%; margin-right: 0; }
  .lh-cov__select { flex: 1 1 auto; }
  .lh-cov__download { flex: 0 0 auto; }
  .lh-cov__download span { display: none; }

  .lh-cov__body { padding: 28px 0 64px; }
  .lh-cov__row { grid-template-columns: 32px 1fr 96px; gap: 8px; padding: 10px 0; }
  .lh-cov__city { font-size: 14px; }
  .lh-cov__pay { font-size: 13px; }
  .lh-cov__state-name { font-size: 18px; }
  .lh-cov__state-count { width: 100%; margin-left: 0; }

  .lh-cov__pager { gap: 5px; margin-top: 32px; padding-top: 22px; }
  .lh-cov__pg { min-width: 38px; height: 38px; padding: 0 9px; font-size: 13.5px; }
  .lh-cov__pg--step { padding: 0 12px; }

  .lh-cov__zip,
  .lh-cov__zipmore { font-size: 10.5px; padding: 2px 7px; }
  .lh-cov__zipwrap { gap: 3px; margin-top: 4px; }
  .lh-cov__zips { gap: 3px; }

  .lh-cov__zipcard { grid-template-columns: 1fr; gap: 14px; padding: 18px; margin-bottom: 18px; }
  .lh-cov__zipcard-zip { font-size: 26px; }
  .lh-cov__zipcard-pay { text-align: left; }
  .lh-cov__zipcard-payval { font-size: 24px; }
  .lh-cov__zipcard-foot { padding-top: 14px; }
  .lh-cov__zipall { width: 100%; }
  .lh-cov__zipgrid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .lh-cov * { transition: none !important; animation: none !important; }
}

.lh-cov__download[disabled] { opacity: .45; cursor: not-allowed; }
.lh-cov__download[disabled]:hover { border-color: var(--hairline); }
