

.wz-lg {

  --wz-lg-measure: 62ch;
  --wz-lg-toc-w: 244px;

  position: relative;
  padding: var(--wz-sec-y) 0;
  background: var(--wz-wash-soft);
  font-family: var(--wz-ui-font);
  color: var(--wz-ink);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

.wz-lg *,
.wz-lg *::before,
.wz-lg *::after { box-sizing: border-box; }

.wz-lg :where(p, h1, h2, h3, ul, ol, li) { margin: 0; padding: 0; }
.wz-lg :where(ul, ol) { list-style: none; }

.wz-lg-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.wz-lg-lang {
  display: inline-flex;
  gap: 4px;
  margin-top: 20px;
  padding: 4px;
  border: 1px solid var(--wz-line-warm);
  border-radius: 999px;
  background: #fff;
}

.wz-lg-lang a {
  display: inline-flex;
  align-items: center;

  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--wz-ink-soft);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.wz-lg-lang a:hover { background: var(--wz-tint); color: var(--wz-pill-text); }

.wz-lg-lang a[aria-current="page"] {
  background: var(--wz-btn-bg);
  color: #fff;
  cursor: default;
}

.wz-lg-lang a:focus-visible {
  outline: 2px solid var(--wz-brand);
  outline-offset: 3px;
}

.wz-lg-body {
  display: grid;
  grid-template-columns: var(--wz-lg-toc-w) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.wz-lg-toc {
  position: sticky;
  top: 106px;
}

.wz-lg-toc__h {
  margin: 0 0 12px;
  font-family: var(--wz-display-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--wz-ink-mute);
}

.wz-lg-toc ol {

  counter-reset: wz-lg-toc;

  display: flex;
  flex-direction: column;
  gap: 2px;

  border-left: 2px solid var(--wz-line-warm);
}

.wz-lg-toc li { counter-increment: wz-lg-toc; }

.wz-lg-toc a {

  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  padding: 7px 12px;

  border-left: 2px solid transparent;
  margin-left: -2px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--wz-ink-soft);
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.wz-lg-toc a::before {
  content: counter(wz-lg-toc) ".";
  color: var(--wz-ink-mute);

  font-variant-numeric: tabular-nums;
}

.wz-lg-toc a:hover { color: var(--wz-pill-text); }

.wz-lg-toc a:focus-visible {
  outline: 2px solid var(--wz-brand);
  outline-offset: -2px;
}

.wz-lg-toc a.is-active {
  border-left-color: var(--wz-btn-bg);
  color: var(--wz-pill-text);
}

.wz-lg-toc a.is-active::before { color: inherit; }

.wz-lg-toc__tog {
  display: none;
  list-style: none;
}

.wz-lg-toc__tog::-webkit-details-marker { display: none; }

.wz-lg-doc {
  max-width: var(--wz-lg-measure);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--wz-ink);
}

.wz-lg-sec + .wz-lg-sec { margin-top: 40px; }

.wz-lg-sec { scroll-margin-top: 106px; }

.wz-lg-sec > h2 {
  margin: 0 0 14px;
  font-family: var(--wz-display-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.2px;
  color: var(--wz-ink);
  text-wrap: balance;
}

.wz-lg-sec > h2 > span { color: var(--wz-brand); }

.wz-lg-sub2 {
  margin: 26px 0 12px;
  font-family: var(--wz-display-font);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--wz-ink);
}

.wz-lg-sec > h2 + .wz-lg-sub2 { margin-top: 0; }

.wz-lg-doc p + p,
.wz-lg-doc ul + p,
.wz-lg-doc p + ul,
.wz-lg-doc ul + ul { margin-top: 12px; }

.wz-lg-doc b,
.wz-lg-doc strong { font-weight: 700; }

.wz-lg-doc a {
  color: var(--wz-pill-text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;

  text-decoration-color: rgba(168, 36, 79, 0.4);
  transition: text-decoration-color 0.18s ease;
}

.wz-lg-doc a:hover { text-decoration-color: currentColor; }

.wz-lg-doc a:focus-visible {
  outline: 2px solid var(--wz-brand);
  outline-offset: 2px;
  border-radius: 3px;
}

.wz-lg-doc code {
  padding: 1px 6px;
  border-radius: 5px;
  background: var(--wz-tint);
  font-size: 0.9em;

  white-space: nowrap;
  color: var(--wz-ink);
}

.wz-lg-doc b > code,
.wz-lg-doc strong > code { font-weight: 400; }

.wz-lg-list > li {
  position: relative;
  padding-left: 22px;
}

.wz-lg-list > li + li { margin-top: 9px; }

.wz-lg-list > li::before {
  content: "";
  position: absolute;
  left: 4px;

  top: 0.875em;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  border-radius: 50%;
  background: var(--wz-brand);
}

.wz-lg-list .wz-lg-list {
  margin-top: 9px;
  padding-left: 4px;
}

.wz-lg-list .wz-lg-list > li::before {
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--wz-brand);
}

.wz-lg-end {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--wz-line-warm);
}

.wz-lg-end .wz-cta2 { margin-top: 0; justify-content: flex-start; }

@media (max-width: 1024px) {

  .wz-lg-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .wz-lg-toc {
    position: static;

    padding: 0 18px;
    border: 1px solid var(--wz-line-warm);
    border-radius: 14px;
    background: #fff;
  }

  .wz-lg-toc__tog {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 44px;

    margin: 0 -18px;
    padding: 0 18px;
    font-family: var(--wz-display-font);
    font-size: 15px;
    font-weight: 700;
    color: var(--wz-ink);
    cursor: pointer;
  }

  .wz-lg-toc__label { padding-top: 3px; }

  .wz-lg-toc__tog::after {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--wz-ink-mute);
    border-bottom: 2px solid var(--wz-ink-mute);
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 0.18s ease;
  }

  .wz-lg-toc[open] .wz-lg-toc__tog::after {
    transform: rotate(-135deg) translate(-2px, -2px);
  }

  .wz-lg-toc-js[open] .wz-lg-toc__tog::after {
    transform: rotate(45deg) translate(-2px, -2px);
  }

  .wz-lg-toc-js.is-open .wz-lg-toc__tog::after {
    transform: rotate(-135deg) translate(-2px, -2px);
  }

  .wz-lg-toc__isi { overflow: hidden; }

  .wz-lg-toc-js .wz-lg-toc__isi {
    transition: height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .wz-lg-toc__tog:focus-visible {
    outline: 2px solid var(--wz-brand);
    outline-offset: 2px;
  }

  .wz-lg-toc__h { display: none; }

  .wz-lg-toc__isi ol { margin: 16px 0; }

  .wz-lg-toc a { padding: 12px; }

  .wz-lg-lang a { min-height: 44px; }

  .wz-lg-doc { max-width: none; }
}

@media (max-width: 767px) {
  .wz-lg-inner { padding: 0 16px; }

  .wz-lg-doc { font-size: 16px; line-height: 1.65; }

  .wz-lg-sec + .wz-lg-sec { margin-top: 32px; }

  .wz-lg-sec > h2 { font-size: 20px; }

  .wz-lg-sub2 { font-size: 16px; margin-top: 22px; }

  .wz-lg-sec { scroll-margin-top: 96px; }

  .wz-lg-lang { margin-top: 16px; }

  .wz-lg-end { margin-top: 34px; padding-top: 24px; }

  .wz-lg-end .wz-cta2 { justify-content: center; }
}

@media print {
  .wzn,
  .wzf,
  .wz-lg-toc,
  .wz-lg-lang,
  .wz-lg-end,
  .wz-skip { display: none; }

  .wz-lg {
    padding: 0;
    background: none;
    color: #000;
  }

  .wz-lg-body { display: block; }
  .wz-lg-doc { max-width: none; color: #000; }

  .wz-lg-sec { break-inside: avoid-page; }
  .wz-lg-sec > h2 { break-after: avoid-page; }
}

@media (prefers-reduced-motion: reduce) {
  .wz-lg-lang a,
  .wz-lg-toc a,
  .wz-lg-toc__tog::after { transition-duration: 0.01ms; }

  .wz-lg-toc-js .wz-lg-toc__isi { transition: none; }
}
