/* INFO PAGES */
.info-main { min-height: 72vh; }
.info-hero { padding: 72px 0 34px; max-width: 900px; }
.info-hero h1 { margin: 0; font-size: clamp(48px, 7vw, 88px); line-height: .94; letter-spacing: -.06em; }
.info-hero h1 span { color: var(--accent); }
.info-hero .lead { max-width: 760px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); margin: 24px 0 0; }
.info-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 24px; color: var(--muted); font-size: 12px; }
.info-layout { display: grid; grid-template-columns: minmax(0, 1fr) 270px; gap: 46px; padding-bottom: 90px; align-items: start; }
.info-content { min-width: 0; }
.info-content > section { padding: 30px 0; border-top: 1px solid var(--line); }
.info-content > section:first-child { border-top: 0; padding-top: 0; }
.info-content h2 { margin: 0 0 14px; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.045em; line-height: 1.05; }
.info-content h3 { margin: 25px 0 9px; font-size: 19px; letter-spacing: -.025em; }
.info-content p, .info-content li { color: var(--muted); font-size: 16px; }
.info-content strong { color: var(--text); }
.info-content a { color: var(--accent); text-underline-offset: .18em; }
.info-content ul, .info-content ol { padding-left: 1.3rem; }
.info-content li + li { margin-top: 8px; }
.info-aside { position: sticky; top: 96px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px; }
.info-aside strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin-bottom: 10px; }
.info-aside a { display: block; padding: 8px 9px; margin: 2px 0; border-radius: 9px; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 700; }
.info-aside a:hover, .info-aside a[aria-current="page"] { background: var(--surface-2); color: var(--text); }
.callout { margin: 22px 0; padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.callout.good { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); background: color-mix(in srgb, var(--accent-2) 52%, var(--surface)); }
.callout.warn { border-color: color-mix(in srgb, var(--yellow) 38%, var(--line)); background: color-mix(in srgb, var(--yellow-soft) 55%, var(--surface)); }
.callout p { margin: 0; }
.callout p + p { margin-top: 8px; }
.fact-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin: 20px 0; }
.fact-card { border: 1px solid var(--line); background: var(--surface); border-radius: 16px; padding: 18px; }
.fact-card .kicker { color: var(--accent); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.fact-card h3 { margin: 8px 0 6px; }
.fact-card p { margin: 0; font-size: 14px; }
.policy-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.policy-table th, .policy-table td { text-align: left; vertical-align: top; padding: 12px 10px; border-bottom: 1px solid var(--line); }
.policy-table th { color: var(--text); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.policy-table td { color: var(--muted); }
.action-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.mini-button { display: inline-flex; align-items: center; min-height: 42px; padding: 0 15px; border-radius: 12px; background: var(--text); color: var(--bg) !important; text-decoration: none; font-weight: 800; font-size: 13px; }
.mini-button.secondary { background: var(--surface); color: var(--text) !important; border: 1px solid var(--line); }
.project-directory { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 20px; }
.project-directory a { border: 1px solid var(--line); border-radius: 15px; background: var(--surface); padding: 16px; text-decoration: none; }
.project-directory a strong { display: block; margin-bottom: 4px; }
.project-directory a span { color: var(--muted); font-size: 13px; }
.simple-footer-fallback { width: min(var(--shell), calc(100% - 36px)); margin: 0 auto; padding: 32px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.simple-footer-fallback a { color: inherit; }
.codeish { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .9em; background: var(--surface-2); padding: 2px 6px; border-radius: 6px; }
@media (max-width: 860px) {
  .info-layout { grid-template-columns: 1fr; gap: 18px; }
  .info-aside { position: static; order: -1; display: flex; overflow-x: auto; gap: 4px; padding: 10px; }
  .info-aside strong { display: none; }
  .info-aside a { flex: 0 0 auto; }
}
@media (max-width: 600px) {
  .info-hero { padding-top: 48px; }
  .fact-grid, .project-directory { grid-template-columns: 1fr; }
  .policy-table { display: block; overflow-x: auto; }
}
