:root {
  color-scheme: light;
  --bg: #f2f4f1;
  --paper: #ffffff;
  --ink: #18201b;
  --muted: #5e675f;
  --line: #d3dcd5;
  --green: #154f45;
  --green-dark: #103d36;
  --green-soft: #e7efeb;
  --red: #8c3d33;
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(140, 61, 51, 0.32);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -64px;
  z-index: 100;
  padding: 8px 12px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 22px;
}

.wrap {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.article-width {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
}

.kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: #3f4942;
  font-size: 19px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--green-dark);
  border-radius: 4px;
  background: var(--green-dark);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: var(--green);
}

.button.light {
  border-color: #fff;
  background: #fff;
  color: var(--green-dark);
}

.text-link {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.primary-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 68px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  width: min(1160px, calc(100% - 48px));
  height: 68px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  min-width: 190px;
  flex-direction: column;
  text-decoration: none;
}

.brand strong {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.25;
}

.brand span {
  color: var(--muted);
  font-size: 11px;
}

.desktop-nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  height: 100%;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.desktop-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
}

.mobile-menu {
  display: none;
}

.home-intro {
  display: grid;
  min-height: 610px;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.home-intro-inner {
  display: grid;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 86px;
}

.home-intro-copy {
  max-width: 760px;
}

.home-intro h1 {
  font-size: 66px;
}

.home-role {
  margin: 10px 0 0;
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
}

.home-summary {
  max-width: 700px;
  margin: 18px 0 0;
  color: #3f4942;
  font-size: 19px;
}

.credentials {
  display: grid;
  max-width: 720px;
  margin: 28px 0 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.credentials div {
  min-width: 0;
  padding: 0 20px;
}

.credentials div:first-child {
  padding-left: 0;
}

.credentials div + div {
  border-left: 1px solid var(--line);
}

.credentials dt,
.credentials dd {
  margin: 0;
}

.credentials dt {
  font-weight: 700;
}

.credentials dd {
  color: var(--muted);
  font-size: 12px;
}

.home-portrait {
  position: relative;
  width: 302px;
  margin: 0 auto;
  padding: 22px 0 0 22px;
}

.home-portrait::before {
  position: absolute;
  top: 0;
  right: -34px;
  bottom: 44px;
  left: 0;
  background: var(--green-dark);
  content: "";
}

.home-portrait img {
  position: relative;
  display: block;
  width: 280px;
  height: 350px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.home-portrait figcaption {
  position: relative;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.practice-overview,
.content-section,
.latest-writing {
  padding: 80px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading > p:not(.kicker),
.split-heading > p {
  color: var(--muted);
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 64px;
}

.split-heading > p {
  margin: 0;
}

.service-lines {
  border-top: 1px solid var(--ink);
}

.service-line {
  display: grid;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.service-line h3 {
  font-size: 23px;
}

.service-line p {
  max-width: 700px;
  margin: 7px 0 0;
  color: var(--muted);
}

.service-line > a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

.service-number {
  color: var(--red);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
}

.service-lines.large .service-line {
  padding: 34px 0;
}

.service-lines.large .service-line h3 {
  font-size: 28px;
}

.profile-band {
  padding: 70px 0;
  background: var(--green-dark);
  color: #fff;
}

.profile-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.8fr);
  align-items: start;
  gap: 86px;
}

.profile-band .kicker {
  color: #bcd3ca;
}

.profile-band h2 {
  max-width: 520px;
}

.profile-band p {
  margin-top: 0;
  color: #d9e3dd;
}

.profile-band .text-link {
  color: #fff;
}

.latest-writing {
  background: var(--paper);
}

.latest-writing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 100px;
}

.latest-writing h2 {
  max-width: 700px;
}

.latest-writing p:not(.kicker),
.contact-prompt p {
  color: var(--muted);
}

.contact-prompt {
  padding-left: 28px;
  border-left: 3px solid var(--red);
}

.contact-prompt h3 {
  font-size: 24px;
}

.contact-prompt .button {
  margin-top: 10px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumb span + span::before {
  margin-right: 7px;
  color: #99a29b;
  content: "/";
}

.page-intro,
.profile-hero,
.contact-hero,
.article-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-intro-inner {
  padding: 64px 0 68px;
}

.page-intro h1 {
  max-width: 880px;
}

.subtle {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-hero {
  padding: 48px 0 70px;
}

.profile-hero-inner {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  gap: 72px;
}

.profile-photo {
  width: 260px;
  margin: 0;
}

.profile-photo img {
  display: block;
  width: 260px;
  height: 325px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.profile-hero .lead {
  max-width: 760px;
}

.credentials.compact {
  margin-top: 26px;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 64px;
}

.experience-list section {
  padding: 24px 0 28px;
  border-top: 2px solid var(--green);
}

.experience-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-details,
.contact-notes-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}

.about-details p,
.contact-notes p {
  color: var(--muted);
}

.plain-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.plain-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.plain-list.roomy li {
  padding: 18px 0;
}

.fact-list {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.fact-list div {
  display: grid;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
}

.fact-list dt,
.fact-list dd {
  margin: 0;
}

.fact-list dt {
  color: var(--muted);
  font-size: 13px;
}

.source-footnote {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.source-footnote a {
  margin-left: 4px;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(250px, 1fr);
  align-items: start;
  gap: 100px;
}

.service-main > section + section {
  margin-top: 58px;
}

.service-main h2 {
  margin-bottom: 20px;
  font-size: 30px;
}

.practice-note {
  padding: 0 0 0 24px;
  border-left: 3px solid var(--green);
}

.practice-note p:last-child {
  margin-bottom: 0;
  color: #354038;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.65;
}

.numbered-points {
  border-top: 1px solid var(--ink);
}

.numbered-points > div {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
}

.numbered-points span,
.consultation-list span {
  color: var(--red);
  font-family: var(--serif);
  font-weight: 700;
}

.numbered-points p {
  margin: 0;
}

.material-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.material-list li {
  padding: 15px 10px 15px 0;
  border-bottom: 1px solid var(--line);
}

.material-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.material-list li:nth-child(even) {
  padding-left: 18px;
}

.question-links {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.question-links li {
  border-bottom: 1px solid var(--line);
}

.question-links a {
  display: flex;
  padding: 16px 0;
  justify-content: space-between;
  gap: 20px;
  text-decoration: none;
}

.question-links a:hover {
  color: var(--green);
}

.question-links.columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 0;
  column-gap: 56px;
}

.question-links.columns li:nth-child(-n + 2) {
  border-top: 1px solid var(--ink);
}

.service-aside {
  position: sticky;
  top: 108px;
  padding: 24px 0 0;
  border-top: 3px solid var(--red);
}

.service-aside h2 {
  font-size: 25px;
}

.service-aside p:not(.kicker) {
  color: var(--muted);
}

.service-aside .button {
  margin-top: 10px;
}

.simple-contact-band {
  padding: 56px 0;
  background: var(--green-dark);
  color: #fff;
}

.simple-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.simple-contact-inner h2 {
  font-size: 30px;
}

.simple-contact-inner p {
  margin: 8px 0 0;
  color: #d9e3dd;
}

.writing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 110px;
}

.article-list {
  border-top: 3px solid var(--green);
}

.article-list-item {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) 32px;
  align-items: start;
  gap: 28px;
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--line);
}

.article-list-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.article-list-meta span {
  color: var(--green);
  font-weight: 700;
}

.article-list-item h2 {
  margin: 0 0 10px;
  font-size: 27px;
}

.article-list-item h2 a,
.article-list-link {
  color: var(--ink);
  text-decoration: none;
}

.article-list-item h2 a:hover,
.article-list-item h2 a:focus-visible,
.article-list-link:hover,
.article-list-link:focus-visible {
  color: var(--red);
}

.article-list-item p {
  margin: 0;
  color: var(--muted);
}

.article-list-link {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.featured-article {
  padding-top: 26px;
  border-top: 3px solid var(--green);
}

.featured-article h2 {
  max-width: 760px;
}

.featured-article > p:not(.kicker):not(.article-date) {
  color: var(--muted);
}

.article-date {
  color: var(--muted);
  font-size: 13px;
}

.topic-index {
  padding-top: 26px;
  border-top: 3px solid var(--red);
}

.topic-index ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-index li {
  border-bottom: 1px solid var(--line);
}

.topic-index a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
}

.article-header {
  padding: 52px 0 58px;
}

.article-header h1 {
  font-size: 46px;
}

.article-deck {
  margin: 22px 0 0;
  color: #3f4942;
  font-size: 19px;
}

.article-byline {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.article-content {
  padding-top: 60px;
  padding-bottom: 80px;
}

.article-content section + section {
  margin-top: 48px;
}

.article-content h2 {
  margin-bottom: 18px;
  font-size: 30px;
}

.article-content p,
.article-content li {
  color: #3f4942;
  font-size: 17px;
}

.article-content ul {
  padding-left: 22px;
}

.article-content li + li {
  margin-top: 10px;
}

.article-source {
  margin: 0 0 52px;
  padding: 24px 0;
  border-top: 3px solid var(--green);
  border-bottom: 1px solid var(--line);
}

.article-source p:not(.kicker) {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 15px;
}

.article-note {
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 13px !important;
}

.article-actions {
  margin-top: 32px;
}

.faq-page {
  padding-top: 36px;
}

.faq-item {
  display: grid;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
}

.faq-item > span {
  color: var(--red);
  font-family: var(--serif);
  font-weight: 700;
}

.faq-item h2 {
  font-size: 24px;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-hero {
  padding: 48px 0 72px;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 100px;
}

.contact-primary {
  padding: 28px 0 0;
  border-top: 3px solid var(--green);
}

.contact-primary p {
  margin: 2px 0 15px;
  color: var(--muted);
}

.contact-primary .contact-label {
  margin: 18px 0 2px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.contact-note {
  color: var(--muted);
  font-size: 13px;
}

.contact-phone {
  display: block;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 700;
  text-decoration: none;
}

.contact-primary .button {
  margin-top: 14px;
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 90px;
}

.consultation-layout p {
  color: var(--muted);
}

.consultation-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.consultation-list li {
  display: grid;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 12px;
}

.contact-notes {
  padding-top: 64px;
  padding-bottom: 64px;
}

.contact-notes h2 {
  font-size: 25px;
}

.site-footer {
  padding: 42px 0;
  background: #18201b;
  color: #fff;
}

.footer-inner {
  display: grid;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
}

.site-footer strong {
  font-family: var(--serif);
  font-size: 18px;
}

.site-footer p {
  max-width: 760px;
  margin: 7px 0 0;
  color: #c7d0c9;
  font-size: 13px;
}

.site-footer a {
  color: #fff;
}

.filing-links {
  text-align: right;
}

.police-record {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.police-record img {
  display: block;
  width: 20px;
  height: 20px;
}

@media (max-width: 980px) {
  .home-intro-inner {
    gap: 48px;
  }

  .home-intro h1 {
    font-size: 58px;
  }

  .latest-writing-inner,
  .service-detail-layout,
  .contact-hero-inner {
    gap: 56px;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .wrap,
  .article-width,
  .nav-wrap,
  .home-intro-inner,
  .footer-inner {
    width: min(100% - 32px, 760px);
  }

  .site-header,
  .nav-wrap {
    height: 64px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand span {
    font-size: 10px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: inline-flex;
    min-width: 76px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu[open] summary {
    border-color: var(--green);
  }

  .mobile-menu nav {
    position: absolute;
    top: 48px;
    right: 0;
    display: grid;
    width: 210px;
    padding: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow: 0 16px 34px rgba(24, 32, 27, 0.16);
  }

  .mobile-menu nav a {
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    text-decoration: none;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

  .mobile-menu nav a[aria-current="page"] {
    color: var(--green-dark);
    font-weight: 700;
  }

  .home-intro {
    min-height: 0;
  }

  .home-intro-inner {
    padding: 28px 0 22px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-intro h1 {
    font-size: 44px;
  }

  .home-role {
    font-size: 22px;
  }

  .home-summary,
  .lead,
  .article-deck {
    font-size: 17px;
  }

  .credentials {
    margin-top: 22px;
    padding: 13px 0;
  }

  .credentials div {
    padding: 0 9px;
  }

  .credentials dt {
    font-size: 13px;
  }

  .credentials dd {
    font-size: 10px;
    line-height: 1.45;
  }

  .primary-actions {
    margin-top: 22px;
  }

  .home-portrait {
    width: 180px;
    margin-left: 0;
    padding: 12px 0 0 12px;
  }

  .home-portrait::before {
    right: -24px;
    bottom: 34px;
  }

  .home-portrait img {
    width: 168px;
    height: 210px;
  }

  .practice-overview,
  .content-section,
  .latest-writing {
    padding: 56px 0;
  }

  .split-heading,
  .profile-band-inner,
  .latest-writing-inner,
  .profile-hero-inner,
  .experience-list,
  .about-details,
  .service-detail-layout,
  .writing-layout,
  .contact-hero-inner,
  .consultation-layout,
  .contact-notes-inner {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .profile-band-inner,
  .latest-writing-inner,
  .profile-hero-inner,
  .about-details,
  .service-detail-layout,
  .writing-layout,
  .contact-hero-inner,
  .consultation-layout,
  .contact-notes-inner {
    gap: 36px;
  }

  .service-line {
    padding: 23px 0;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }

  .service-line > a {
    grid-column: 2;
    justify-self: start;
  }

  .service-line h3,
  .service-lines.large .service-line h3 {
    font-size: 22px;
  }

  .profile-band {
    padding: 54px 0;
  }

  .contact-prompt {
    padding-top: 24px;
    padding-left: 0;
    border-top: 3px solid var(--red);
    border-left: 0;
  }

  .page-intro-inner {
    padding: 42px 0 48px;
  }

  .profile-hero,
  .contact-hero {
    padding: 36px 0 52px;
  }

  .profile-photo {
    width: 180px;
  }

  .profile-photo img {
    width: 180px;
    height: 225px;
  }

  .credentials.compact {
    margin-top: 22px;
  }

  .experience-list {
    gap: 12px;
  }

  .fact-list div {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .service-aside {
    position: static;
  }

  .material-list,
  .question-links.columns {
    grid-template-columns: 1fr;
  }

  .material-list li,
  .material-list li:nth-child(even) {
    padding: 14px 0;
    border-right: 0;
  }

  .question-links.columns li:nth-child(2) {
    border-top: 0;
  }

  .simple-contact-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .article-header {
    padding: 38px 0 44px;
  }

  .article-header h1 {
    font-size: 34px;
  }

  .article-list-item {
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 16px;
  }

  .article-list-meta {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
  }

  .article-list-item h2 {
    font-size: 23px;
  }

  .article-content {
    padding-top: 44px;
    padding-bottom: 60px;
  }

  .article-source {
    margin-bottom: 42px;
  }

  .faq-item {
    padding: 25px 0;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
  }

  .faq-item h2 {
    font-size: 21px;
  }

  .contact-phone {
    font-size: 27px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .filing-links {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .home-intro h1 {
    font-size: 40px;
  }

  .home-role {
    font-size: 20px;
  }

  .credentials dt {
    font-size: 12px;
  }

  .primary-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .button {
    max-width: 100%;
  }
}
