/* USWDS Minimal CSS for TIGTA Static Site */

:root {
  --usa-primary: #005ea2;
  --usa-primary-dark: #1a4480;
  --usa-base-darkest: #1b1b1b;
  --usa-base-dark: #565c65;
  --usa-base: #71767a;
  --usa-base-light: #a9aeb1;
  --usa-base-lighter: #dfe1e2;
  --usa-base-lightest: #f0f0f0;
  --usa-white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1.06rem;
  line-height: 1.5;
  color: var(--usa-base-darkest);
  margin: 0;
  padding: 0;
}

.grid-container {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.grid-row {
  display: flex;
  flex-wrap: wrap;
}

/* Skip Link */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.visually-hidden.focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* USA Banner */
.usa-banner {
  background-color: var(--usa-base-lightest);
  font-size: 0.8rem;
}

.usa-banner__header {
  padding: 0.25rem 0;
}

.usa-banner__inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.usa-banner__header-flag {
  width: 16px;
  height: 11px;
  margin-right: 0.5rem;
}

.usa-banner__content {
  display: none;
  padding: 1rem;
}

/* Header */
.usa-header {
  background-color: var(--usa-white);
  border-bottom: 1px solid var(--usa-base-lighter);
}

.usa-nav-container {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.usa-logo__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--usa-primary-dark);
  text-decoration: none;
}

.usa-nav__primary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.usa-nav__link {
  color: var(--usa-base-dark);
  text-decoration: none;
  font-weight: 700;
}

.usa-nav__link:hover {
  color: var(--usa-primary);
}

.usa-menu-btn {
  display: none;
}

/* Main Content */
.main-content {
  min-height: 60vh;
  padding: 2rem 0;
}

.usa-prose h1 {
  font-size: 2.44rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--usa-primary-dark);
}

.usa-prose h2 {
  font-size: 1.95rem;
  line-height: 1.2;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.usa-prose h3 {
  font-size: 1.34rem;
  line-height: 1.2;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.usa-prose p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.usa-prose a {
  color: var(--usa-primary);
}

.usa-prose a:hover {
  color: var(--usa-primary-dark);
}

/* Lists */
.usa-list {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.usa-list li {
  margin-bottom: 0.5rem;
}

/* Hero */
.usa-hero {
  background-color: var(--usa-primary-dark);
  color: var(--usa-white);
  padding: 3rem 0;
}

.usa-hero h1 {
  color: var(--usa-white);
}

/* Footer */
.usa-footer {
  background-color: var(--usa-base-lightest);
  margin-top: 2rem;
}

.usa-footer__primary-section {
  padding: 1rem 0;
}

.usa-footer__primary-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.usa-footer__nav {
  margin: 0;
}

.usa-footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.usa-footer__primary-link {
  color: var(--usa-base-dark);
  text-decoration: none;
}

.usa-footer__primary-link:hover {
  color: var(--usa-primary);
}

.usa-footer__secondary-section {
  background-color: var(--usa-base-lighter);
  padding: 1rem 0;
}

.usa-footer__logo-heading {
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
  .usa-nav {
    display: none;
  }

  .usa-menu-btn {
    display: block;
  }

  .usa-footer__nav ul {
    flex-direction: column;
  }
}
