:root {
  --pg-bg: #f5f3ee;
  --pg-card: #fff;
  --pg-text: #1a2420;
  --pg-muted: #5c6b64;
  --pg-accent: #2d6a5a;
  --pg-accent-hover: #245a4c;
  --pg-border: #dde5e0;
  --pg-warn-bg: #fff8e8;
  --pg-warn-border: #e8d4a8;
  --pg-max: 42rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--pg-text);
  background: var(--pg-bg);
}

.pg-wrap {
  max-width: var(--pg-max);
  margin: 0 auto;
  padding: 0.75rem clamp(0.85rem, 3vw, 1.25rem) 2.5rem;
}

.pg-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--pg-border);
  font-size: 0.95rem;
}

.pg-nav a {
  color: var(--pg-accent);
  text-decoration: none;
}

.pg-nav a:hover {
  text-decoration: underline;
}

.pg-header {
  margin-bottom: 1.5rem;
}

.pg-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  font-weight: 650;
  line-height: 1.25;
}

.pg-lead {
  margin: 0;
  color: var(--pg-muted);
}

.pg-disclaimer {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: var(--pg-warn-bg);
  border: 1px solid var(--pg-warn-border);
  border-radius: 8px;
  font-size: 0.95rem;
}

.pg-section {
  margin-bottom: 1.35rem;
  padding: 1rem 1.1rem;
  background: var(--pg-card);
  border: 1px solid var(--pg-border);
  border-radius: 10px;
}

.pg-section h2 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--pg-accent);
}

.pg-section p {
  margin: 0 0 0.65rem;
}

.pg-section p:last-child,
.pg-section ul:last-child {
  margin-bottom: 0;
}

.pg-section ul {
  margin: 0.35rem 0 0.65rem;
  padding-left: 1.25rem;
}

.pg-table-wrap {
  overflow-x: auto;
  margin: 0.5rem 0 0;
}

table.pg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.pg-table th,
.pg-table td {
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--pg-border);
  text-align: left;
  vertical-align: top;
}

.pg-table th {
  background: #eef4f1;
  font-weight: 600;
}

.pg-actions {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  background: var(--pg-card);
  border: 1px solid var(--pg-border);
  border-radius: 10px;
}

.pg-actions h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.pg-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pg-btn {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  background: var(--pg-accent);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.pg-btn:hover {
  background: var(--pg-accent-hover);
}

.pg-btn--ghost {
  background: transparent;
  color: var(--pg-accent);
  border: 1px solid var(--pg-accent);
}

.pg-btn--ghost:hover {
  background: #eef4f1;
}

.pg-footer {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--pg-muted);
}
