:root { color-scheme: light; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; } * { box-sizing: border-box; } body { margin: 0; min-height: 100vh; background: #f4f7f6; color: #17201d; } .shell { min-height: 100vh; display: grid; place-items: center; padding: 32px; } .hero { width: min(1040px, 100%); } .eyebrow { margin: 0 0 14px; color: #2d6a4f; font-weight: 700; letter-spacing: 0; } h1 { max-width: 760px; margin: 0; font-size: clamp(42px, 7vw, 88px); line-height: .96; letter-spacing: 0; } .lead { max-width: 580px; margin: 22px 0 34px; color: #53615c; font-size: 19px; line-height: 1.55; } .grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; } article { min-height: 132px; border: 1px solid #d8e0dd; border-radius: 8px; padding: 18px; background: #fff; display: grid; align-content: space-between; } span { color: #6f7f7a; font-size: 13px; } strong { display: block; font-size: 20px; } small { color: #687773; font-size: 14px; } @media (max-width: 720px) { .shell { padding: 22px; place-items: start; } .grid { grid-template-columns: 1fr; } h1 { font-size: 44px; } }