
.article-page { padding-bottom: 0; }
.article { max-width: 44rem; margin: 0 auto; padding-block: 2rem 3rem; }
.article__head { margin-bottom: 1.5rem; }
.article__head h1 { margin-bottom: .75rem; }
.article__meta {
  display: flex; flex-wrap: wrap; gap: .375rem 1rem; margin: 0;
  font-size: var(--fs-sm); color: var(--muted);
}
.article__meta a { color: var(--royal); font-weight: 700; text-decoration: none; }
.article__meta a:hover { text-decoration: underline; }
.article__meta time { font-weight: 700; color: var(--ink); }
.article__media {
  margin: 0 0 1.75rem; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
}
.article__media img { width: 100%; height: auto; }
.toc {
  margin: 0 0 2rem; padding: 1rem 1.25rem; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r);
}
.toc summary {
  cursor: pointer; font-weight: 700; color: var(--ink); font-size: var(--fs-md);
  min-height: var(--tap); display: flex; align-items: center;
}
.toc summary::-webkit-details-marker { display: none; }
.toc summary::after {
  content: ""; margin-left: auto; width: .55rem; height: .55rem;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform .2s var(--ease);
}
.toc[open] summary::after { transform: rotate(-135deg); }
.toc ol { list-style: none; margin: .75rem 0 0; padding: 0; display: grid; gap: .375rem; counter-reset: toc; }
.toc li { counter-increment: toc; padding-left: 1.75rem; position: relative; }
.toc li::before {
  content: counter(toc); position: absolute; left: 0; top: .05rem;
  display: grid; place-items: center; width: 1.375rem; height: 1.375rem; border-radius: 50%;
  background: var(--navy); color: #fff; font-size: .6875rem; font-weight: 700;
}
.toc a { color: var(--text); font-weight: 700; text-decoration: none; }
.toc a:hover { color: var(--royal); text-decoration: underline; }
@media (min-width: 64em) {
  .toc summary { pointer-events: none; }
  .toc summary::after { display: none; }
}
.article__body { display: grid; gap: 2rem; }
.post-section h2 { font-size: var(--fs-h3); margin-bottom: .75rem; scroll-margin-top: var(--hdr-h); }
.post-section p { max-width: 68ch; }
.post-section a { font-weight: 700; }
.post-section ul, .post-section ol { max-width: 68ch; padding-left: 1.25rem; }
.post-section li { margin-bottom: .375rem; }
.op-takeaways {
  margin: 1.25rem 0; padding: 1.125rem 1.25rem; background: var(--mint-50);
  border: 1px solid var(--mint-200); border-radius: var(--r);
}
.op-takeaways-title {
  margin: 0 0 .5rem; font-weight: 700; font-size: .8125rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink);
}
.op-takeaways ul { margin: 0; padding-left: 1.25rem; }
.op-takeaways li { margin-bottom: .25rem; color: var(--ink); }
.op-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); }
.op-table-wrap table { min-width: 100%; }
.op-table-wrap caption {
  text-align: left; padding: .75rem 1rem; font-weight: 700; color: var(--ink);
  background: var(--bg-2); border-bottom: 1px solid var(--line);
}
.op-table-wrap th, .op-table-wrap td {
  padding: .7rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line);
  font-size: var(--fs-sm); white-space: normal;
}
.op-table-wrap tr:last-child th, .op-table-wrap tr:last-child td { border-bottom: 0; }
.op-table-wrap thead th { background: var(--bg-2); color: var(--ink); }
.op-table-wrap tbody th[scope="row"] { background: var(--bg-2); color: var(--ink); font-weight: 700; }
.op-faq { border-top: 1px solid var(--line-2); }
.op-faq details { border-bottom: 1px solid var(--line-2); }
.op-faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 3.25rem; padding: .875rem 0; cursor: pointer; list-style: none;
  font-weight: 700; font-size: var(--fs-md); color: var(--ink);
}
.op-faq summary::-webkit-details-marker { display: none; }
.op-faq summary::after {
  content: ""; flex: none; width: .6rem; height: .6rem;
  border-right: 2px solid var(--royal); border-bottom: 2px solid var(--royal);
  transform: rotate(45deg); transition: transform .2s var(--ease);
}
.op-faq details[open] summary::after { transform: rotate(-135deg); }
.op-faq details p { max-width: 65ch; margin: 0 0 1.125rem; color: var(--text); }
.op-faq summary:hover { color: var(--royal); }
.op-sources { margin: 0; font-size: var(--fs-xs); color: var(--muted); }
.op-sources a { color: var(--muted); font-weight: 400; text-decoration: underline; text-underline-offset: .2em; }
.op-sources a:hover { color: var(--royal); }
.article__cta { margin: .5rem 0 2.5rem; }
.article__cta .quote__status { font-size: var(--fs-lg); }
.author-box {
  margin: 2rem 0 0; padding: 1.25rem 1.5rem; background: var(--bg-2);
  border: 1px solid var(--line); border-radius: var(--r);
}
.author-box__name { margin: 0 0 .125rem; font-size: var(--fs-md); }
.author-box__name a { color: var(--ink); text-decoration: none; }
.author-box__name a:hover { color: var(--royal); text-decoration: underline; }
.author-box__role {
  margin: 0 0 .625rem; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.author-box__bio { margin: 0; max-width: 60ch; }
.article-related { max-width: 68rem; margin-inline: auto; padding-block: 2rem; border-top: 1px solid var(--line); }
.article-related h2 { margin-bottom: 1.25rem; font-size: var(--fs-h3); }
.blog-hero { padding-block: clamp(1.5rem, 4vw, 2.75rem) 2rem; }
.blog-hero__intro { max-width: 60ch; font-size: 1.0625rem; }
.blog-cats { list-style: none; margin: 1.25rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .625rem; }
.blog-cats a {
  display: inline-flex; align-items: center; min-height: var(--tap); padding: 0 1rem;
  border: 1px solid var(--line-2); border-radius: var(--r-pill);
  color: var(--ink); font-weight: 700; font-size: var(--fs-sm); text-decoration: none;
}
.blog-cats a:hover, .blog-cats a[aria-current] { border-color: var(--royal); color: var(--royal); background: var(--bg-2); }
.featured-post {
  display: grid; gap: 1.25rem; margin-bottom: 2.5rem; padding: 1.5rem;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg);
}
.featured-post time { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.featured-post h2 { margin: .375rem 0 .5rem; }
.featured-post h2 a { color: var(--ink); text-decoration: none; }
.featured-post h2 a:hover { color: var(--royal); text-decoration: underline; }
.featured-post p { margin: 0 0 1rem; max-width: 65ch; color: var(--text); }
@media (min-width: 64em) {
  .featured-post { grid-template-columns: minmax(0, 1fr) auto; align-items: center; padding: 2rem 2.5rem; }
}
.archive-cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.acard {
  position: relative; display: flex; flex-direction: column; gap: .5rem;
  padding: 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color .15s, box-shadow .15s;
}
.acard:hover { border-color: var(--royal); box-shadow: var(--sh-2); }
.acard:has(.acard__title a:focus-visible) { outline: 3px solid var(--focus); outline-offset: 2px; }
.acard__title a:focus-visible { outline: none; }
.acard__cat {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--royal);
}
.acard__title { margin: 0; font-size: var(--fs-md); line-height: 1.35; }
.acard__title a { color: var(--ink); text-decoration: none; }
.acard__title a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.acard:hover .acard__title a { color: var(--royal); text-decoration: underline; }
.acard__excerpt { margin: 0; font-size: var(--fs-sm); color: var(--text); }
.acard__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; margin-top: .25rem;
  font-size: var(--fs-xs); color: var(--muted);
}
.acard__more { display: inline-flex; align-items: center; gap: .375rem; margin-top: .25rem; font-weight: 700; color: var(--royal); font-size: var(--fs-sm); position: relative; z-index: 1; }
.acard__more .i { width: 1rem; height: 1rem; }
@media (min-width: 40em) { .archive-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64em) { .archive-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
.author-hero {
  display: flex; flex-wrap: wrap; align-items: flex-start; gap: 1.5rem;
  padding-block: .5rem 2rem;
}
.author-hero h1 { margin-bottom: .25rem; }
.author-hero__role { margin: 0 0 .75rem; font-weight: 700; color: var(--muted); }
.author-hero__bio { max-width: 60ch; margin: 0; }
