:root {
  --ink: #17231d;
  --muted: #66716b;
  --forest: #184b38;
  --forest2: #0f3829;
  --mint: #dff2e7;
  --cream: #f7f8f4;
  --white: #fff;
  --line: #dce4de;
  --sun: #f5a33a;
  --sunsoft: #fff0d8;
  --shadow: 0 22px 60px rgba(18, 58, 42, 0.12);
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font:
    16px/1.65 Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 12px 16px;
  background: #fff;
  border-radius: 10px;
}
.skip:focus {
  top: 16px;
}
body > header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 248, 244, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 228, 222, 0.8);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--forest);
  box-shadow: 0 8px 20px rgba(24, 75, 56, 0.18);
}
.brand-mark:before {
  content: "✓";
  font-size: 21px;
  font-weight: 900;
}
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #4f5a54;
  font-size: 14px;
  font-weight: 700;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--forest);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 800;
}
.btn-primary {
  color: #fff;
  background: var(--forest);
}
.btn-primary:hover {
  background: var(--forest2);
}
.blog-hero {
  padding: 86px 0 66px;
  background: linear-gradient(135deg, #edf5ef 0%, #f7f8f4 64%, #fff0d8 100%);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.lead {
  max-width: 720px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 19px;
}
.articles {
  padding: 76px 0 92px;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.article-card {
  display: flex;
  min-height: 330px;
  padding: 27px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 35px rgba(24, 55, 42, 0.04);
}
.article-card time,
.article-meta {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.article-card h2 {
  margin: 23px 0 13px;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.article-card p {
  margin: 0 0 25px;
  color: var(--muted);
}
.article-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--forest);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.article-card a:after {
  content: " →";
}
.article-card.featured {
  grid-column: span 2;
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}
.article-card.featured time,
.article-card.featured p,
.article-card.featured a {
  color: #d3e3da;
}
.article-card.featured h2 {
  max-width: 650px;
  font-size: 34px;
}
.article-shell {
  padding: 64px 0 92px;
}
.breadcrumbs {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 13px;
}
.breadcrumbs a {
  color: var(--forest);
  text-decoration: none;
}
.article-header {
  max-width: 860px;
  margin-bottom: 46px;
}
.article-header h1 {
  font-size: clamp(40px, 5.5vw, 64px);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 260px;
  gap: 68px;
  align-items: start;
}
.article-body {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}
.article-body h2 {
  margin: 44px 0 14px;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.article-body h2:first-child {
  margin-top: 0;
}
.article-body h3 {
  margin: 30px 0 10px;
  font-size: 21px;
}
.article-body p {
  margin: 0 0 18px;
}
.article-body blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--forest);
  border-radius: 0 16px 16px 0;
  background: var(--mint);
}
.article-body blockquote p {
  margin: 0;
}
.legal-date {
  display: inline-flex;
  margin: 0 0 24px !important;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--forest2);
  background: var(--sunsoft);
  font-size: 13px;
  font-weight: 800;
}
.article-body ul,
.article-body ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.article-body li {
  margin: 8px 0;
}
.article-body a:not(.btn) {
  color: var(--forest);
  text-underline-offset: 3px;
}
.article-body table {
  width: 100%;
  margin: 24px 0 32px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.45;
}
.article-body th,
.article-body td {
  padding: 14px 15px;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.article-body th:last-child,
.article-body td:last-child {
  border-right: 0;
}
.article-body tbody tr:last-child td {
  border-bottom: 0;
}
.article-body th {
  color: var(--forest2);
  background: var(--mint);
  font-size: 13px;
}
.article-body tbody tr:nth-child(even) {
  background: #f9fbf9;
}
.note {
  margin: 28px 0;
  padding: 22px 24px;
  border-radius: 16px;
  background: var(--mint);
  border-left: 4px solid var(--forest);
}
.checklist {
  list-style: none;
  padding: 0 !important;
}
.checklist li {
  position: relative;
  padding-left: 32px;
}
.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--mint);
  font-size: 12px;
  font-weight: 900;
}
.toc {
  position: sticky;
  top: 104px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.toc strong {
  display: block;
  margin-bottom: 12px;
}
.toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}
.toc a:hover {
  color: var(--forest);
}
.offer-document > [data-custom-style="Offer Title"],
.offer-document > [data-custom-style="Offer Subtitle"] {
  display: none;
}
.offer-document [data-custom-style="Section Heading"] {
  scroll-margin-top: 112px;
  margin: 44px 0 14px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.offer-document [data-custom-style="Section Heading"]:first-of-type {
  margin-top: 0;
}
.offer-document [data-custom-style="Subsection Heading"] {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
}
.offer-document [data-custom-style="Clause"] p,
.offer-document [data-custom-style="Clause Bold"] p,
.offer-document [data-custom-style="List Item"] p,
.offer-document [data-custom-style="Section Heading"] p,
.offer-document [data-custom-style="Subsection Heading"] p {
  margin: 0;
}
.offer-document [data-custom-style="Clause"] {
  margin: 0 0 14px;
}
.offer-document [data-custom-style="List Item"] {
  margin: -7px 0 11px 28px;
}
.offer-document [data-custom-style="Clause Bold"] {
  margin: 20px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--forest);
  border-radius: 0 14px 14px 0;
  background: var(--mint);
  color: var(--forest2);
  font-weight: 800;
}
.offer-toc {
  max-height: calc(100vh - 132px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.offer-toc a {
  padding: 5px 0;
  line-height: 1.3;
}
.cta {
  margin-top: 34px;
  padding: 30px;
  border-radius: 20px;
  color: #fff;
  background: var(--forest);
}
.cta h2 {
  margin: 0 0 10px;
  color: #fff;
}
.cta p {
  color: #d3e3da;
}
.cta .btn {
  margin-top: 8px;
  color: var(--forest);
  background: #fff;
}
.related-links {
  margin: 34px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f9fbf9;
}
.related-links strong {
  display: block;
  margin-bottom: 10px;
}
.related-links ul {
  margin-bottom: 0;
}
footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}
.footer a {
  text-decoration: none;
}
@media (max-width: 1100px) {
  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }
  .nav-links {
    order: 3;
    width: 100%;
    margin-left: 0;
    padding-bottom: 2px;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: thin;
  }
  .nav .btn {
    margin-left: auto;
  }
}
@media (max-width: 850px) {
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-card.featured {
    grid-column: span 2;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .toc {
    position: static;
    order: -1;
  }
  .article-body {
    padding: 32px;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1120px);
  }
  .nav {
    min-height: 68px;
  }
  .nav .btn {
    display: none;
  }
  .blog-hero {
    padding: 56px 0 48px;
  }
  h1 {
    font-size: 43px;
  }
  .lead {
    font-size: 17px;
  }
  .articles {
    padding: 54px 0 68px;
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .article-card.featured {
    grid-column: span 1;
  }
  .article-card.featured h2 {
    font-size: 27px;
  }
  .article-shell {
    padding: 42px 0 68px;
  }
  .article-body {
    padding: 23px;
  }
  .article-body h2 {
    font-size: 26px;
  }
  .article-body table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column;
    gap: 7px;
  }
}
