@font-face {
  font-family: "Open Procured Standard";
  src: url("/open-procured-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  --background: #0e0e0e;
  --text: #e4e4df;
  --muted: #999a94;
  --rule: #272725;
  --hover: #151515;
  font-family: "Open Procured Standard", Arial, sans-serif;
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: -0.15px;
  color-scheme: dark;
  background: var(--background);
  color: var(--text);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-width: 280px;
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 5px;
  border-radius: 2px;
}
::selection {
  background: #46463e;
  color: #fff;
}
main {
  width: min(100% - 48px, 560px);
  margin: 0 auto;
  padding: 100px 0 40px;
}
.identity img {
  display: block;
  border-radius: 9px;
  margin-bottom: 24px;
}
h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
}
.identity p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.chooser-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-wrap: pretty;
}
.versions {
  margin-top: 32px;
  border-top: 1px solid var(--rule);
}
.version {
  display: block;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  transition: background-color 160ms ease;
}
.version-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
.version-title > span {
  color: var(--muted);
  font-size: 16px;
}
/* Adapted from Opensource UI PolaroidImageCard; MIT notice in THIRD_PARTY_LICENSES.txt. */
.preview-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.photo-card {
  padding: 8px 8px 16px;
  border: 1px solid #343432;
  border-radius: 8px;
  background: #1b1b1a;
  box-shadow: 0 8px 24px #0003;
  transition: border-color 160ms ease;
}
.photo-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.preview-desktop {
  margin-top: 20px;
}
.version:hover .photo-card,
.version:focus-visible .photo-card {
  border-color: #72726a;
}
.version:hover h2 {
  text-decoration: underline;
  text-underline-offset: 4px;
}
footer {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}
footer a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 44px;
}
footer a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 767px) {
  main {
    padding-top: 68px;
  }
}
@media (max-width: 350px) {
  main {
    width: calc(100% - 36px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .version,
  .photo-card {
    transition: none;
  }
}
