/* Shared by every page on this site. */
:root { color-scheme: light dark; }
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1c1b1f;
  background: #fdfcff;
}
main { max-width: 760px; margin: 0 auto; padding: 32px 20px 64px; }
h1 { font-size: 1.9rem; margin: 0 0 4px; }
h2 { font-size: 1.25rem; margin: 32px 0 8px; }
h3 { font-size: 1.05rem; margin: 22px 0 6px; }
p { margin: 0 0 12px; }
.updated, .lede { color: #5f5d63; font-size: 0.95rem; margin: 0 0 24px; }
.lede { font-size: 1.05rem; line-height: 1.5; }
ul, ol { padding-left: 1.25rem; }
li { margin: 4px 0; }
a { color: #4255a4; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.92em; }
.wrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; margin: 12px 0; font-size: 0.95rem; }
th, td { text-align: left; padding: 8px 12px; border-bottom: 1px solid #cac4d0; vertical-align: top; }
th { white-space: nowrap; }
img { max-width: 100%; height: auto; }

/* the icon and name, at the top of every page */
.brand { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.brand img { width: 52px; height: 52px; border-radius: 12px; flex: none; }
.brand .name { font-size: 1.15rem; font-weight: 700; }
.brand .sub { color: #5f5d63; font-size: 0.92rem; }
.brand a { color: inherit; text-decoration: none; }

nav.links { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 0.95rem; margin-bottom: 8px; }

.shot { margin: 20px 0 28px; }
.shot img { border: 1px solid #cac4d0; border-radius: 12px; display: block; }
.shot figcaption { color: #5f5d63; font-size: 0.9rem; margin-top: 8px; }

.card {
  border: 1px solid #cac4d0; border-radius: 12px; padding: 16px 18px; margin: 16px 0;
  background: #f6f4fb;
}
.card p:last-child { margin-bottom: 0; }
.mail { font-size: 1.05rem; font-weight: 600; word-break: break-all; }

/* the tip link, on the homepage and the support page */
.coffee {
  display: inline-block; text-decoration: none; font-weight: 600;
  padding: 10px 18px; border-radius: 999px;
  color: #10245c; background: #ffdd66; border: 1px solid #e8c74d;
}
.coffee:hover { background: #ffe680; }

footer { margin-top: 48px; padding-top: 16px; border-top: 1px solid #cac4d0; color: #5f5d63; font-size: 0.9rem; }

@media (prefers-color-scheme: dark) {
  body { color: #e6e1e9; background: #141218; }
  .updated, .lede, footer, .brand .sub, .shot figcaption { color: #cac4d0; }
  a { color: #b6c4ff; }
  th, td, .shot img { border-color: #49454f; }
  .card { background: #1d1b20; border-color: #49454f; }
  footer { border-top-color: #49454f; }
}
