/* PauseTab 公開ページ共通スタイル
   (docs/index.html と各ポリシー HTML から読み込み) */

* { box-sizing: border-box; }

body {
  font-family: -apple-system, "Helvetica Neue", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 96px;
  line-height: 1.75;
  color: #1a1a1a;
  background: #fafafa;
}

/* Header */
header {
  margin-bottom: 48px;
}
header h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
header .lead {
  color: #666;
  margin: 0;
}

/* Document headings */
h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 40px 0 12px;
  padding-top: 8px;
  border-top: 1px solid #eaeaea;
}
h2:first-of-type { border-top: none; padding-top: 0; }
h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 8px;
}

p {
  margin: 12px 0;
}

ul, ol {
  padding-left: 22px;
  margin: 12px 0;
}
li { margin-bottom: 6px; }

a {
  color: #2563eb;
  text-decoration: none;
}
a:hover { text-decoration: underline; }

code {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 13px;
  background: #eef2f7;
  padding: 2px 6px;
  border-radius: 4px;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0;
  font-size: 14px;
}
th, td {
  border: 1px solid #e5e5e5;
  padding: 8px 12px;
  text-align: left;
}
th {
  background: #f3f4f6;
  font-weight: 600;
}

hr {
  border: none;
  border-top: 1px solid #eaeaea;
  margin: 32px 0;
}

em, i {
  color: #666;
  font-style: italic;
}

blockquote {
  border-left: 3px solid #cbd5e1;
  margin: 16px 0;
  padding: 8px 16px;
  color: #475569;
  background: #f8fafc;
}

/* Footer */
.site-footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid #eaeaea;
  font-size: 13px;
  color: #888;
}
.site-footer a { color: #555; }
.site-footer .links a { margin-right: 14px; }

/* Index-specific */
.icon-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.icon-block img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
}
.icon-block .name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (prefers-color-scheme: dark) {
  body { background: #0e1116; color: #e6e6e6; }
  header .lead, em, i { color: #999; }
  h2 { border-top-color: #2a2f3a; }
  hr { border-top-color: #2a2f3a; }
  a { color: #60a5fa; }
  a:hover { color: #93c5fd; }
  code { background: #1e2530; }
  table th { background: #1a2030; }
  table th, table td { border-color: #2a2f3a; }
  blockquote { background: #161b22; border-left-color: #30363d; color: #b0b0b0; }
  .site-footer { border-top-color: #2a2f3a; color: #888; }
  .site-footer a { color: #aaa; }
}
