:root {
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #111;
  background: #fff;
}
a {
  color: inherit;
}
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
}
header {
  border-bottom: 1px solid #e5e5e5;
}
nav a {
  display: inline-block;
  margin-right: 14px;
  padding: 10px 0;
  text-decoration: none;
}
nav a[aria-current="page"] {
  text-decoration: underline;
}
.hero {
  padding: 24px 0;
}
.card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 18px;
  margin: 14px 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
small,
.muted {
  color: #555;
}
footer {
  border-top: 1px solid #e5e5e5;
  margin-top: 28px;
}
ul {
  padding-left: 18px;
}
.breadcrumbs {
  font-size: 0.95rem;
  color: #555;
}
.breadcrumbs a {
  text-decoration: none;
  color: #555;
}
.breadcrumbs span {
  color: #111;
}
.cta {
  display: inline-block;
  border: 1px solid #111;
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
}
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus {
  left: 24px;
  top: 24px;
  width: auto;
  height: auto;
  background: #fff;
  border: 1px solid #111;
  padding: 10px;
  border-radius: 10px;
  z-index: 999;
}
