* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", "PingFang SC", "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #0f172a, #0f2b62 60%, #111b36 100%);
  color: #e2e8f0;
  min-height: 100vh;
}

.page-shell {
  padding: clamp(1rem, 2vw, 2rem);
  max-width: 1100px;
  margin: 0 auto;
}

.hero {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  box-shadow: 0 10px 50px rgba(2, 6, 23, 0.8);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
}

.hero p {
  color: #cbd5f5;
  line-height: 1.7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.issue-card {
  text-decoration: none;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 1rem;
  border-radius: 0.85rem;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f8fafc;
}

.issue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.5);
}

.issue-card span {
  display: block;
  font-weight: 600;
}

.section-title {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #38bdf8;
}

.note {
  margin-top: 1rem;
  color: #94a3b8;
  font-size: 0.95rem;
}

.content-body {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(148, 163, 184, 0.2);
}
