@charset "UTF-8";

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/lato-300.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lato-400.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/lato-700.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/lato-900.ttf") format("truetype");
}

html {
  background: #333;
}

body {
  font-family: Lato, sans-serif;
  font-size: 15pt;
  font-weight: 300;
  letter-spacing: 0.025em;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  background: #333;
  scroll-behavior: smooth;
}

a {
  transition: all 0.2s ease-in-out;
  color: rgba(229, 185, 210, 0.72);
  text-decoration: none;
  border-bottom: dotted 1px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
[tabindex]:focus:not(:focus-visible) {
  outline: none;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 1px solid white;
  outline-offset: 3px;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 10px 20px;
  color: white;
  background-color: #333;
  white-space: nowrap;
}

.site-mark {
  flex: 1 1 auto;
  min-width: 8.4em;
  color: white;
  font-size: 0.9em;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 0;
}

.site-nav {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  overflow: hidden;
}

.site-nav a,
.auth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.7em;
  height: 42px;
  margin: 0 6px;
  padding: 0 8px;
  box-sizing: border-box;
  color: white;
  font-size: 0.8em;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.auth-button {
  border: solid 1px white;
}

.site-nav a:hover,
.site-nav a.active,
.auth-button:focus-visible,
.auth-button:hover {
  color: white;
  border: solid 1px white;
}

.auth-bar {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.auth-state {
  max-width: 16em;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72em;
  text-overflow: ellipsis;
}

.auth-state[hidden] {
  display: none;
}

@keyframes reveal-banner {
  0% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 28vh 0 0;
  box-sizing: border-box;
  color: white;
  text-align: center;
  cursor: default;
  background-attachment: scroll, scroll, scroll, fixed;
  background-color: #645862;
  background-image:
    url("../img/light-bl.svg"),
    url("../img/light-br.svg"),
    url("../img/overlay.png"),
    url("../img/banner.jpg");
  background-position: bottom left, bottom right, top left, top center;
  background-repeat: no-repeat, no-repeat, repeat, no-repeat;
  background-size: 15em, 15em, auto, cover;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 2.8em 2.8em 1.8em;
  text-align: center;
  background: rgba(63, 50, 58, 0.5);
  animation: reveal-banner 0.45s ease-in-out;
}

.hero-panel h1 {
  position: relative;
  margin: 0 0 0.58em;
  padding: 0.18em 0 0.14em;
  color: white;
  font-family: Georgia, serif;
  font-size: 2.5em;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.1em;
  border: 0;
}

.hero-panel h1::before,
.hero-panel h1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.1em;
  height: 1px;
  background: rgba(255, 255, 255, 0.92);
}

.hero-panel h1::before {
  top: 0;
}

.hero-panel h1::after {
  bottom: 0;
}

.hero-kicker {
  margin: 0;
  color: white;
  font-size: 1em;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px;
  text-align: center;
  background-color: #333;
}

.intro-band {
  color: white;
  background-color: #333;
}

.closing-band {
  color: #4d2c3dde;
  background-color: #f5f5f5;
}

.section-copy {
  max-width: 1200px;
}

.section-copy h2 {
  margin-top: 0;
  font-family: Georgia, serif;
  font-size: 2em;
  line-height: 1.2;
}

.section-copy p {
  margin: 0 0 1em;
}

.section-copy a {
  color: rgba(229, 185, 210, 0.72);
}

.closing-band a {
  color: #563559;
}

.projects-band {
  align-items: flex-start;
  background-color: #333;
}

.section-heading {
  display: none;
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  max-width: 1200px;
  gap: 20px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 98%;
  margin-bottom: 20px;
  padding: 0 20px 30px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card h3 {
  min-height: 2.5em;
  flex-grow: 1;
  margin-bottom: 0;
  overflow-wrap: break-word;
  color: #4d2c3dde;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2em;
  text-align: left;
  cursor: pointer;
}

.card h3:focus-visible {
  outline: 1px solid #4d2c3dde;
  outline-offset: 4px;
}

.card .content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  margin-bottom: 0;
  flex-wrap: nowrap;
}

.card img {
  width: calc(100% - 52px);
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
}

.card .description {
  flex-basis: 100%;
  margin-top: 10px;
  text-align: left;
}

.card .icons {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  flex-shrink: 0;
  gap: 12px;
  width: 42px;
  margin-left: auto;
  padding-right: 0;
}

.card .icons img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  cursor: pointer;
}

.card p {
  margin-bottom: 0;
  color: #666;
  font-size: 1em;
  text-align: left;
}

.minimal-page {
  min-height: 100vh;
  color: #7c8081;
  font-family: Lato, sans-serif;
  font-size: 15pt;
  font-weight: 300;
  letter-spacing: 0.025em;
  line-height: 1.75;
  background: #f3f6fa;
}

.minimal-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    url("../img/dark-tl.svg"),
    url("../img/dark-tr.svg"),
    url("../img/dark-bl.svg"),
    url("../img/dark-br.svg");
  background-position: top left, top right, bottom left, bottom right;
  background-repeat: no-repeat;
  background-size: 25em;
}

.minimal-page a {
  color: rgba(71, 32, 55, 0.72);
  border-bottom: 1px dotted rgba(123, 92, 109, 0.55);
}

.minimal-page a:hover {
  border-bottom-color: transparent;
}

.page-header {
  position: sticky;
  z-index: 5;
  min-height: 50px;
  padding: 0 20px;
  color: #777;
  background: #fff;
  border-bottom: 1px solid #dfe3e8;
  box-shadow: 0 1px 0 rgba(40, 44, 52, 0.04);
}

.page-mark {
  min-width: 9em;
  color: #707275;
  font-size: 0.82em;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-bottom: 0;
}

.minimal-page .page-mark {
  color: #707275;
  border-bottom: 0;
}

.page-nav {
  gap: 4px;
}

.page-nav a {
  width: auto;
  min-width: 0;
  height: 50px;
  margin: 0;
  padding: 0 13px;
  color: #8d8d91;
  font-size: 0.64em;
  font-weight: 300;
  letter-spacing: 0.16em;
  border: 0;
}

.page-nav a:hover,
.page-nav a[aria-current="page"] {
  color: #5f6064;
  background: #f7f8fa;
  border: 0;
}

.page-main,
.page-footer {
  position: relative;
  z-index: 1;
}

.page-main {
  min-height: calc(100vh - 51px);
  padding: 68px 24px 92px;
  box-sizing: border-box;
}

.page-title {
  max-width: 960px;
  margin: 0 auto 40px;
  color: #838489;
  text-align: center;
}

.page-title::before,
.page-title::after {
  content: "";
  display: inline-block;
  width: min(32vw, 415px);
  height: 1px;
  margin: 0 22px 18px;
  vertical-align: middle;
  background: linear-gradient(90deg, transparent, rgba(126, 132, 143, 0.18), transparent);
}

.page-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #c7ccd3;
  font-size: 0.82em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  border: 1px solid #d7dce4;
}

.page-symbol-code {
  align-content: center;
  flex-wrap: wrap;
  font-size: 0.72em;
  line-height: 0.95;
}

.page-title h1 {
  margin: 46px 0 0;
  font-size: 1.35em;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-card {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: clamp(36px, 5.5vw, 88px) clamp(28px, 4.1vw, 74px);
  box-sizing: border-box;
  color: inherit;
  line-height: inherit;
  background: #fff;
}

.page-card p {
  margin: 0 0 2em;
}

.page-card p:last-child {
  margin-bottom: 0;
}

.page-card h2 {
  margin: 2.2em 0 0.85em;
  color: #77797e;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-figure {
  margin: 2em auto;
  text-align: center;
}

.feature-figure a {
  border-bottom: 0;
}

.feature-figure img {
  display: block;
  width: min(100%, 600px);
  height: auto;
  margin: 0 auto;
}

.page-teasers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  width: min(100%, 960px);
  margin: 70px auto 0;
  text-align: center;
}

.page-teasers article {
  color: #8f8c91;
}

.teaser-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: #c8ccd3;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0;
  border: 1px solid #d7dce4;
  background: rgba(255, 255, 255, 0.32);
}

.page-teasers h2 {
  margin: 0 0 0.8em;
  font-size: 0.85em;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.page-teasers p {
  margin: 0 auto 1.25em;
  font-size: 0.82em;
  line-height: 1.55;
}

.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  color: #7b5c6d;
  font-size: 0.7em;
  text-transform: uppercase;
  border: 1px solid rgba(123, 92, 109, 0.34);
}

.text-button:hover {
  color: #fff;
  background: #7b5c6d;
  border-color: #7b5c6d;
}

.page-footer {
  padding: 42px 24px 54px;
  color: #95979d;
  font-size: 0.75em;
  text-align: center;
  background: #eef1f5;
}

.page-footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

@media (min-width: 992px) {
  .card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .auth-state {
    display: none;
  }

  .card {
    padding: 20px;
  }

  .card h3 {
    font-size: 1.4em;
  }

  .card p {
    font-size: 0.95em;
  }

  .minimal-page {
    font-size: 14pt;
  }

  .page-header {
    gap: 8px;
    padding: 0 14px;
  }

  .page-nav a {
    padding: 0 8px;
    font-size: 0.58em;
  }

  .page-main {
    padding-top: 54px;
  }

  .page-card {
    padding: 44px 34px;
  }

  .page-teasers {
    gap: 18px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .site-header {
    gap: 8px;
    padding: 10px 14px;
  }

  .site-mark {
    min-width: 6.8em;
  }

  .site-nav a,
  .auth-button {
    width: 6.35em;
    height: 38px;
    margin: 0 2px;
    padding: 0 5px;
    font-size: 0.68em;
  }

  .auth-state {
    display: none;
  }

  .card {
    padding: 15px;
  }

  .card h3 {
    font-size: 1.4em;
  }

  .card p {
    font-size: 0.95em;
  }

  .minimal-page {
    font-size: 13pt;
  }

  .page-header {
    gap: 6px;
    padding: 0 12px;
  }

  .page-mark {
    min-width: 7.8em;
  }

  .page-nav a {
    height: 46px;
    padding: 0 6px;
    font-size: 0.54em;
    letter-spacing: 0.08em;
  }

  .page-main {
    padding: 44px 18px 70px;
  }

  .page-title {
    margin-bottom: 46px;
  }

  .page-title::before,
  .page-title::after {
    width: 24vw;
    margin-inline: 12px;
  }

  .page-card {
    padding: 34px 26px;
  }

  .page-teasers {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 13pt;
  }

  .site-header {
    gap: 4px;
    padding: 8px 10px;
  }

  .site-mark {
    min-width: 5.9em;
    font-size: 0.78em;
  }

  .site-nav a,
  .auth-button {
    width: 5.8em;
    height: 34px;
    margin: 0 1px;
    padding: 0 4px;
    font-size: 0.58em;
  }

  .auth-state {
    display: none;
  }

  .hero {
    height: 100vh;
    padding-top: 28vh;
    background-size: 10em, 10em, auto, cover;
  }

  .hero-panel {
    max-width: calc(100vw - 42px);
    padding: 1.8em 1.65em 1.4em;
  }

  .hero-panel h1 {
    font-size: 1.95em;
  }

  .hero-kicker {
    font-size: 0.78em;
  }

  .section {
    padding: 28px;
  }

  .card {
    padding: 10px;
  }

  .card h3 {
    font-size: 1.3em;
  }

  .card img {
    width: calc(100% - 42px);
  }

  .card p {
    font-size: 0.9em;
  }

  .minimal-page {
    font-size: 12pt;
  }

  .page-header {
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
  }

  .page-mark {
    min-width: 6.3em;
    padding-top: 0;
    font-size: 0.7em;
  }

  .page-nav {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 0;
    overflow: hidden;
  }

  .page-nav a {
    flex: 0 1 auto;
    width: auto;
    height: 34px;
    padding: 0 4px;
    font-size: 0.42em;
    letter-spacing: 0.03em;
  }

  .page-main {
    min-height: auto;
    padding: 38px 14px 58px;
  }

  .page-title {
    margin-bottom: 34px;
  }

  .page-title::before,
  .page-title::after {
    width: 20vw;
    margin: 0 7px 14px;
  }

  .page-symbol {
    width: 48px;
    height: 48px;
  }

  .page-title h1 {
    margin-top: 32px;
    font-size: 1.2em;
  }

  .page-card {
    padding: 28px 20px;
  }

  .page-teasers {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 48px;
  }

  .page-footer nav {
    flex-wrap: wrap;
  }
}

/* Development hub homepage and text-first view. These selectors are isolated
   from the retained archival subpages above. */
.hub-page {
  min-width: 0;
  color: #1d252d;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.6;
  background: #f7f5f0;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.6rem 0.85rem;
  color: #fff;
  background: #102d3e;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.hub-page a:focus-visible,
.plain-page a:focus-visible {
  outline: 3px solid #d05e24;
  outline-offset: 3px;
}

.hub-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.35rem;
  padding: 0 5vw;
  color: #f9f5ea;
  background: #102d3e;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.24);
}

.hub-mark {
  flex: 0 0 auto;
  color: inherit;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 0;
}

.hub-nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 0.2rem;
}

.hub-nav a {
  padding: 0.45rem 0.55rem;
  color: #f9f5ea;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
}

.hub-nav a:hover {
  color: #fff;
  text-decoration: underline;
}

.hub-auth {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.55rem;
}

.hub-auth-state {
  max-width: 12rem;
  overflow: hidden;
  color: #d4e2e1;
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hub-auth-state[hidden] {
  display: none;
}

.hub-auth-button {
  min-height: 2.35rem;
  padding: 0.35rem 0.65rem;
  color: #fff;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid #b9cbd2;
  background: transparent;
  cursor: pointer;
}

.hub-auth-button:hover {
  color: #102d3e;
  background: #f9f5ea;
}

.hub-hero {
  display: grid;
  min-height: min(42rem, calc(100vh - 4.35rem));
  padding: clamp(4rem, 10vw, 8rem) 5vw;
  color: #fff;
  background-color: #183f52;
  background-image: linear-gradient(90deg, rgba(8, 29, 40, 0.9), rgba(8, 29, 40, 0.61)), url("../img/banner.jpg");
  background-position: center;
  background-size: cover;
}

.hub-hero-content,
.hub-section,
.hub-footer {
  width: min(100%, 76rem);
  margin-inline: auto;
}

.hub-hero-content {
  align-self: center;
  max-width: 58rem;
  margin-inline: 0;
}

.hub-eyebrow {
  margin: 0 0 0.8rem;
  color: #a7d5d3;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hub-hero h1,
.hub-section h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
}

.hub-hero h1 {
  max-width: 24ch;
  font-size: clamp(2.35rem, 5.2vw, 4.7rem);
}

.hub-lead {
  max-width: 47rem;
  margin: 1.6rem 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.hub-cta,
.hub-project-link {
  display: inline-block;
  width: fit-content;
  margin-top: 1.8rem;
  padding: 0.72rem 1rem;
  color: #102d3e;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #e7b65b;
  background: #e7b65b;
}

.hub-cta:hover,
.hub-project-link:hover {
  color: #fff;
  border-color: #d05e24;
  background: #d05e24;
}

.hub-section {
  padding: clamp(4rem, 8vw, 7rem) 5vw;
  box-sizing: border-box;
}

.hub-section-copy,
.hub-section-heading {
  max-width: 48rem;
}

.hub-section h2 {
  color: #102d3e;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.hub-section-copy > p:not(.hub-eyebrow),
.hub-section-heading > p:not(.hub-eyebrow) {
  margin: 1.35rem 0 0;
}

.hub-capability-grid,
.hub-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.hub-capability-card,
.hub-project-card {
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid #cfd8d7;
  box-shadow: 0 2px 0 rgba(16, 45, 62, 0.07);
}

.hub-capability-card h3,
.hub-project-card h3 {
  margin: 0;
  color: #102d3e;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hub-capability-card p,
.hub-project-card > p {
  margin: 0.8rem 0 0;
}

.hub-project-section {
  background: #f7f5f0;
}

.hub-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hub-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  margin-bottom: 1rem;
  color: #4d5c63;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.hub-project-meta p,
.hub-status {
  margin: 0;
}

.hub-status {
  color: #9d3f18;
}

.hub-project-notes {
  color: #506069;
  font-size: 0.85rem;
}

.hub-project-notes span {
  font-weight: 700;
}

.hub-project-image {
  width: 100%;
  max-height: 12rem;
  margin-top: 1rem;
  object-fit: cover;
  border: 1px solid #d8e0df;
}

.hub-project-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.hub-project-card .hub-project-link {
  margin-top: 0;
}

.hub-project-repository,
.hub-private-actions a {
  color: #164f61;
  font-size: 0.82rem;
  font-weight: 700;
}

.hub-private-actions {
  display: inline-flex;
  gap: 0.65rem;
}

.hub-contact {
  color: #f9f5ea;
  background: #102d3e;
}

.hub-contact h2 {
  color: #fff;
}

.hub-contact .hub-eyebrow {
  color: #a7d5d3;
}

.hub-contact a {
  color: #fff;
  font-weight: 700;
}

.hub-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  width: auto;
  padding: 2rem 5vw;
  color: #45545c;
  font-size: 0.9rem;
  background: #dfe6e2;
}

.hub-footer p {
  margin: 0;
}

.hub-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hub-footer a {
  color: #102d3e;
  font-weight: 700;
}

.plain-page {
  color: #17242b;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.6;
  background: #fff;
}

.plain-header,
.plain-main {
  width: min(calc(100% - 2.5rem), 48rem);
  margin-inline: auto;
}

.plain-header {
  padding: 1rem 0;
  font-family: Lato, sans-serif;
  border-bottom: 1px solid #bac7c6;
}

.plain-header a,
.plain-main a {
  color: #0e5266;
}

.plain-main {
  padding: 2rem 0 4rem;
}

.plain-main h1,
.plain-main h2,
.plain-main h3 {
  color: #102d3e;
  line-height: 1.2;
}

.plain-main h2 {
  margin-top: 2.5rem;
}

.plain-main article,
.plain-main section {
  margin-top: 1.6rem;
}

.plain-main h3,
.plain-main p {
  margin: 0;
}

.plain-main h3 + p,
.plain-main p + p {
  margin-top: 0.7rem;
}

@media (max-width: 760px) {
  .hub-header {
    flex-wrap: wrap;
    padding: 0.65rem 5vw;
  }

  .hub-nav {
    flex-basis: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hub-nav a {
    padding-inline: 0.2rem;
    font-size: 0.7rem;
  }

  .hub-auth-state {
    display: none;
  }

  .hub-capability-grid,
  .hub-project-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
