:root {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #222;
    background: #f7f7f7;
    line-height: 1.6;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

.container {
    width: min(1100px, calc(100% - 2rem));
    margin-inline: auto;
}

.site-header {
    padding: 4rem 0 2rem;
}

.eyebrow {
    margin: 0 0 0.5rem;
    font-weight: 700;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4rem);
}

.intro {
    max-width: 65ch;
    font-size: 1.125rem;
}

.card-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    padding-bottom: 4rem;
}

.card {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.75rem;
}

.card h3 {
    margin-top: 0;
}

a {
    color: #005ea8;
}

a:hover,
a:focus-visible {
    text-decoration-thickness: 0.15em;
}
