/* /leaks — the long-form answer page.
   Loads AFTER the site's theme stylesheet and reuses its custom properties, so
   each tenant's page inherits its own palette rather than introducing a second
   design. Only layout and the few elements the theme has no rules for live
   here. Falls back to sane literals where a theme does not define a token. */

body.lk {
  min-height: 100vh;
  padding: 0;
  display: block;
  overflow-y: auto;
}

.lk__wrap {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  margin: 0 auto;
  padding: 28px 20px 72px;
  text-align: left;
}

.lk__back {
  margin: 0 0 18px;
  font-size: 0.82rem;
  opacity: 0.75;
}
.lk__back a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.lk__back:last-child {
  margin: 34px 0 0;
}

.lk__h1 {
  margin: 0 0 20px;
  font-size: clamp(1.9rem, 8vw, 2.7rem);
  line-height: 1.1;
}

/* The verdict block. Someone arriving from "<handle> leaks" has exactly one
   question, and making them read three paragraphs before the answer is how a
   page like this loses to the scraper sites it is trying to displace. */
.lk__verdict {
  margin: 0 0 30px;
  padding: 20px 18px;
  border: 1px solid currentColor;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
}
.lk__verdictlabel {
  margin: 0 0 6px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.lk__verdictanswer {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 5.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
}
.lk__verdictsummary {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.65;
  opacity: 0.9;
}

.lk__sec {
  margin: 0 0 28px;
}
.lk__h2 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.25;
}
.lk__p {
  margin: 0 0 13px;
  font-size: 0.97rem;
  line-height: 1.7;
  opacity: 0.92;
}

/* Numbered because it is a checklist read top to bottom, and the numbers are
   what make that scannable at a glance. */
.lk__checks {
  margin: 12px 0 0;
  padding: 0 0 0 1.25rem;
}
.lk__checks li {
  margin: 0 0 11px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.92;
}
.lk__checks strong {
  display: block;
  opacity: 1;
}

.lk__cta {
  margin: 34px 0 0;
  padding: 22px 18px;
  border: 1px solid currentColor;
  border-radius: 14px;
  text-align: center;
  background: rgba(0, 0, 0, 0.22);
}
.lk__cta p {
  margin: 0 0 14px;
  font-size: 1.08rem;
  line-height: 1.4;
}
/* The button inherits .link/.link--primary from the theme, so it matches the
   home page exactly. Only the width needs constraining here. */
.lk__cta .link {
  max-width: 22rem;
  margin: 0 auto;
}

/* The FAQ blocks reuse .faq/.faq__item/.faq__q/.faq__a from below-fold.css,
   which is loaded alongside this file. Only the spacing differs on this page. */
.lk .faq {
  margin-top: 12px;
}

@media (min-width: 720px) {
  .lk__wrap {
    padding-top: 44px;
  }
}
