:root {
  --green: #173f2a;
  --green-soft: #e8eee7;
  --gold: #d5a61f;
  --ink: #20241f;
  --muted: #60675f;
  --paper: #fff;
  --line: #d8ded6;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.75;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 10px; z-index: 20; padding: 10px; background: #fff; }
.article-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(23,63,42,.97);
  color: #fff;
}
.article-header__inner {
  width: min(1200px, calc(100% - 36px));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.article-logo img { width: 190px; height: auto; }
.article-nav { display: flex; gap: 24px; align-items: center; }
.article-nav a {
  color: #fff;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.article-nav a:hover,
.article-nav a[aria-current="page"] { color: #f4d36e; }
.article-mobile { display: none; }
.breadcrumbs {
  width: min(1180px, calc(100% - 36px));
  margin: 22px auto;
  color: var(--muted);
  font-size: .88rem;
}
.article-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(35px, 7vw, 95px);
}
.article-hero__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--green-soft);
}
.article-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.eyebrow {
  color: #8a6b11;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.2;
}
h1 { margin: .45rem 0 1.15rem; font-size: clamp(2.6rem, 5.7vw, 5.2rem); }
.article-hero p { color: #4e554d; font-size: 1.08rem; }
.article-hero__button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 19px;
  border: 1px solid var(--green);
  color: var(--green);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.article-body { width: min(880px, calc(100% - 36px)); margin: 0 auto 90px; }
.article-lead {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.65;
}
.article-toc {
  margin: 42px 0 58px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  background: var(--green-soft);
}
.article-toc strong { display: block; margin-bottom: 10px; color: var(--green); }
.article-toc ol { columns: 2; margin: 0; padding-left: 22px; }
.article-toc li { margin: 5px 18px 5px 0; break-inside: avoid; }
.article-content h2 {
  margin: 3.2rem 0 1rem;
  padding-top: 1rem;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
}
.article-content p { margin: 0 0 1.25rem; }
.article-note {
  margin: 38px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  background: #f6f3e9;
}
.faq details { padding: 17px 0; border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; color: var(--green); font-family: Georgia, serif; font-size: 1.15rem; }
.article-related {
  padding: 70px 20px;
  background: var(--green-soft);
  text-align: center;
}
.article-related h2 { margin-top: 0; font-size: 2.2rem; }
.article-related__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.article-related__links a {
  padding: 11px 16px;
  border: 1px solid var(--green);
  color: var(--green);
  text-decoration: none;
}
.article-footer {
  padding: 34px 20px;
  background: #122f20;
  color: #fff;
  text-align: center;
  font-size: .86rem;
}
.article-footer a { color: #fff; }
@media (max-width: 850px) {
  .article-nav { display: none; }
  .article-mobile { display: block; position: relative; }
  .article-mobile summary { cursor: pointer; list-style: none; text-transform: uppercase; }
  .article-mobile nav {
    position: absolute;
    right: 0;
    top: 35px;
    width: 260px;
    padding: 14px;
    background: var(--green);
    box-shadow: 0 14px 30px rgba(0,0,0,.2);
  }
  .article-mobile nav a { display: block; padding: 9px; color: #fff; text-decoration: none; }
  .article-hero { grid-template-columns: 1fr; }
  .article-hero__copy { order: -1; }
}
@media (max-width: 560px) {
  .article-header__inner { width: calc(100% - 26px); min-height: 70px; }
  .article-logo img { width: 150px; }
  .breadcrumbs, .article-hero, .article-body { width: calc(100% - 28px); }
  .article-toc ol { columns: 1; }
  .article-toc { padding: 22px; }
  .article-related__links { flex-direction: column; }
}
