:root {
  --resource-blue: #1e3a8a;
  --resource-blue-bright: #2563eb;
  --resource-green: #15803d;
  --resource-ink: #172033;
  --resource-muted: #5f6c80;
  --resource-border: #dbe2ea;
  --resource-soft: #f6f8fb;
  --resource-white: #ffffff;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--resource-ink);
  background: var(--resource-white);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.7;
}

body,
button {
  font-family: "Poppins", Arial, sans-serif;
}

a {
  color: var(--resource-blue-bright);
}

a:hover {
  color: var(--resource-blue);
}

img {
  max-width: 100%;
}

.resource-nav {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--resource-border);
  background: var(--resource-white);
}

.resource-nav__inner,
.resource-header__inner,
.resource-main,
.resource-footer__inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.resource-nav__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.resource-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--resource-ink);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.resource-brand img {
  width: 38px;
  height: 38px;
  border-radius: 6px;
}

.resource-nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.resource-nav__links a {
  color: #344054;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.resource-nav__links a:hover,
.resource-nav__links a:focus-visible,
.resource-nav__links a[aria-current="page"] {
  color: var(--resource-blue-bright);
}

.resource-nav__toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--resource-border);
  border-radius: 6px;
  background: var(--resource-white);
  cursor: pointer;
}

.resource-nav__toggle span,
.resource-nav__toggle span::before,
.resource-nav__toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  position: relative;
  background: var(--resource-blue);
}

.resource-nav__toggle span::before,
.resource-nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.resource-nav__toggle span::before {
  top: -6px;
}

.resource-nav__toggle span::after {
  top: 6px;
}

.resource-header {
  border-bottom: 1px solid var(--resource-border);
  background: var(--resource-soft);
}

.resource-header__inner {
  padding: 54px 0 50px;
}

.resource-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
  color: var(--resource-muted);
  font-size: 0.8rem;
}

.resource-breadcrumbs a {
  color: var(--resource-blue-bright);
  font-weight: 600;
  text-decoration: none;
}

.resource-eyebrow {
  margin: 0 0 9px;
  color: var(--resource-blue-bright);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.resource-header h1 {
  max-width: 820px;
  margin: 0;
  color: var(--resource-blue);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.14;
}

.resource-header__summary {
  max-width: 760px;
  margin: 18px 0 0;
  color: #465266;
  font-size: 1.02rem;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 24px;
  color: var(--resource-muted);
  font-size: 0.8rem;
}

.resource-meta strong {
  color: #344054;
}

.resource-main {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 64px;
  padding: 54px 0 72px;
}

.resource-index {
  align-self: start;
  position: sticky;
  top: 24px;
  padding-left: 18px;
  border-left: 3px solid #c7d7f4;
}

.resource-index h2 {
  margin: 0 0 12px;
  color: #344054;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.resource-index a {
  display: block;
  padding: 6px 0;
  color: var(--resource-muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.resource-index a:hover,
.resource-index a:focus-visible {
  color: var(--resource-blue-bright);
}

.resource-content {
  min-width: 0;
}

.resource-section {
  padding: 0 0 40px;
  margin: 0 0 40px;
  border-bottom: 1px solid var(--resource-border);
  scroll-margin-top: 20px;
}

.resource-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.resource-section h2 {
  margin: 0 0 14px;
  color: var(--resource-blue);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.25;
}

.resource-section h3 {
  margin: 24px 0 8px;
  color: var(--resource-ink);
  font-size: 1.04rem;
}

.resource-section p {
  margin: 0 0 14px;
  color: #3f4b5f;
}

.resource-lead {
  color: #2f3b4f;
  font-size: 1.06rem;
}

.resource-note,
.resource-status {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--resource-blue-bright);
  background: #f2f6ff;
}

.resource-status {
  border-left-color: var(--resource-green);
  background: #f0f8f3;
}

.resource-note strong,
.resource-status strong {
  color: var(--resource-blue);
}

.resource-list {
  margin-top: 22px;
  border-top: 1px solid var(--resource-border);
}

.resource-item {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: 28px;
  padding: 25px 0;
  border-bottom: 1px solid var(--resource-border);
}

.resource-item__meta {
  color: var(--resource-muted);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.resource-item h3 {
  margin: 0 0 8px;
  color: var(--resource-blue);
  font-size: 1.18rem;
}

.resource-item p {
  margin-bottom: 11px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid #b9c9e8;
  border-radius: 6px;
  color: var(--resource-blue);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.resource-link--primary {
  border-color: var(--resource-blue-bright);
  color: var(--resource-white);
  background: var(--resource-blue-bright);
}

.resource-link:hover,
.resource-link:focus-visible {
  border-color: var(--resource-blue);
  color: var(--resource-white);
  background: var(--resource-blue);
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.resource-checklist {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.resource-checklist li {
  position: relative;
  padding: 0 0 12px 25px;
  color: #3f4b5f;
}

.resource-checklist li::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 9px;
  left: 2px;
  border: 2px solid var(--resource-blue-bright);
  border-radius: 50%;
}

.resource-records {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.resource-record {
  padding: 24px;
  border: 1px solid var(--resource-border);
  border-radius: 6px;
  background: var(--resource-white);
}

.resource-record__label {
  margin: 0 0 6px;
  color: var(--resource-blue-bright);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.resource-record h3 {
  margin: 0 0 13px;
  color: var(--resource-blue);
  font-size: 1.28rem;
}

.resource-record dl {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 10px 20px;
  margin: 20px 0 0;
}

.resource-record dt {
  color: #344054;
  font-size: 0.82rem;
  font-weight: 700;
}

.resource-record dd {
  margin: 0;
  color: var(--resource-muted);
  font-size: 0.9rem;
}

.resource-table-wrap {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid var(--resource-border);
  border-radius: 6px;
}

.resource-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
}

.resource-table th,
.resource-table td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--resource-border);
  text-align: left;
  vertical-align: top;
}

.resource-table tr:last-child td {
  border-bottom: 0;
}

.resource-table th {
  color: #344054;
  background: var(--resource-soft);
  font-size: 0.78rem;
}

.resource-table td {
  color: #485467;
  font-size: 0.86rem;
}

.resource-footer {
  border-top: 1px solid var(--resource-border);
  background: var(--resource-soft);
}

.resource-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding: 46px 0 38px;
}

.resource-footer h2 {
  margin: 0 0 13px;
  color: #344054;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.resource-footer p {
  max-width: 290px;
  margin: 14px 0 0;
  color: var(--resource-muted);
  font-size: 0.82rem;
}

.resource-footer ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.resource-footer li a {
  color: var(--resource-muted);
  font-size: 0.82rem;
  text-decoration: none;
}

.resource-footer li a:hover,
.resource-footer li a:focus-visible {
  color: var(--resource-blue-bright);
}

.resource-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--resource-border);
  color: var(--resource-muted);
  font-size: 0.75rem;
}

.resource-footer__bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.resource-footer__bottom a {
  color: var(--resource-muted);
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.25);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .resource-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .resource-index {
    position: static;
    padding: 0 0 15px;
    border-left: 0;
    border-bottom: 1px solid var(--resource-border);
  }

  .resource-index a {
    display: inline-block;
    margin-right: 16px;
  }

  .resource-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .resource-nav__inner,
  .resource-header__inner,
  .resource-main,
  .resource-footer__inner {
    width: min(100% - 32px, 680px);
  }

  .resource-nav__toggle {
    display: inline-flex;
  }

  .resource-nav__links {
    display: none;
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    padding: 14px;
    border: 1px solid var(--resource-border);
    border-radius: 6px;
    background: var(--resource-white);
    box-shadow: 0 14px 30px rgba(23, 32, 51, 0.12);
  }

  .resource-nav__links.is-open {
    display: grid;
  }

  .resource-nav__links a {
    padding: 10px;
  }

  .resource-header__inner {
    padding: 40px 0;
  }

  .resource-main {
    padding: 38px 0 56px;
  }

  .resource-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .resource-record {
    padding: 20px;
  }

  .resource-record dl {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .resource-record dd {
    margin-bottom: 10px;
  }

  .resource-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .resource-footer__bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
