:root {
  color: #1e293b;
  background: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  background: radial-gradient(circle at top, #e0f2fe 0, #f8fafc 44rem);
}

.notice {
  width: min(42rem, calc(100% - 3rem));
  align-self: center;
  justify-self: center;
  padding: 3rem;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 1rem 3rem rgb(15 23 42 / 8%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #0284c7;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

h1 {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.summary {
  margin: 1.25rem 0 0;
  font-size: 1.125rem;
  line-height: 1.8;
}

.scope {
  margin: 0.5rem 0 0;
  color: #64748b;
  line-height: 1.8;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.6rem;
  padding: 1.25rem 1rem;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}

footer a {
  color: #475569;
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  color: #0284c7;
  text-decoration: underline;
}

.public-security-record {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.public-security-record img {
  display: block;
  flex: none;
  width: 20px;
  height: auto;
}

@media (max-width: 32rem) {
  .notice {
    padding: 2rem 1.5rem;
  }
}
