:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: #111827;
  background: #f7f7f4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: #0f766e;
}

.page {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.hero {
  padding: 28px 0 18px;
  border-bottom: 1px solid #d9d7ce;
}

.back {
  display: inline-flex;
  margin-bottom: 18px;
  text-decoration: none;
  font-size: 14px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 6vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero p {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

.content {
  padding: 22px 0 8px;
}

.content h2 {
  margin: 26px 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.content p {
  margin: 0 0 12px;
  color: #374151;
  font-size: 16px;
  line-height: 1.85;
}

table {
  width: 100%;
  margin: 14px 0 18px;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  padding: 12px 14px;
  border: 1px solid #d9d7ce;
  text-align: left;
  line-height: 1.6;
}

th {
  background: #eef2f1;
  color: #111827;
  font-weight: 650;
}

.link-grid,
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.link-grid a,
.footer-links a {
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid #d9d7ce;
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  text-decoration: none;
}

.link-grid a:hover,
.footer-links a:hover {
  border-color: #0f766e;
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 24px, 880px);
    padding-top: 20px;
  }

  .link-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }
}
