/* Shared styles for the static toy-guide blog. Same palette as the legal
 * pages and the app tokens: paper background, dark ink, coral accent. */
:root {
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 24px 18px 64px;
  background: #f7f2e5;
  color: #17251f;
  font-family:
    'Nunito Sans',
    ui-rounded,
    -apple-system,
    'Segoe UI',
    Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
main {
  max-width: 720px;
  margin: 0 auto;
}
.brand {
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  color: #17251f;
}
.brand span {
  color: #ff5e4d;
}
a {
  color: #1c5f4a;
}
h1 {
  margin: 28px 0 4px;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
h2 {
  margin: 34px 0 8px;
  font-size: 21px;
}
.byline {
  margin: 0 0 22px;
  color: #777168;
  font-size: 14px;
}
p,
li {
  color: #35423a;
}
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 18px 0 6px;
  padding: 16px 18px;
  border: 1.5px solid #e3dccd;
  border-radius: 16px;
  background: #fffdf6;
}
.facts div {
  font-size: 14px;
  color: #35423a;
}
.facts dt {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #777168;
}
.facts dd {
  margin: 2px 0 0;
}
.update-note {
  margin: 18px 0;
  padding: 12px 16px;
  border-left: 4px solid #ff5e4d;
  border-radius: 0 12px 12px 0;
  background: #fff3e9;
  font-size: 15px;
}
.toy-list {
  list-style: none;
  margin: 14px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.toy-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 10px;
  border: 1px solid #e3dccd;
  border-radius: 16px;
  background: #fffdf6;
}
.toy-list img {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: #f1ead9;
  object-fit: cover;
}
.toy-number {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #ff5e4d;
}
.toy-list strong {
  font-size: 16px;
}
.cta-box {
  margin: 20px 0;
  padding: 18px;
  border-radius: 18px;
  border: 2px solid #17251f;
  background: #fffdf6;
  box-shadow: 0 4px 0 #17251f;
}
.cta-box p {
  margin: 0 0 12px;
}
.cta-button {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ff5e4d;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
}
.cta-button:active {
  transform: translateY(2px);
}
.faq h3 {
  margin: 20px 0 4px;
  font-size: 16px;
}
.guides {
  display: grid;
  gap: 12px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}
.guides li {
  padding: 16px 18px;
  border: 1.5px solid #e3dccd;
  border-radius: 16px;
  background: #fffdf6;
}
.guides a {
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
}
.guides a:hover {
  text-decoration: underline;
}
.guides small {
  display: block;
  margin-top: 2px;
  color: #777168;
}
.guides p {
  margin: 6px 0 0;
  font-size: 15px;
}
.footnote {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid #e3dccd;
  font-size: 14px;
  color: #777168;
}
@media (max-width: 480px) {
  .facts {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 27px;
  }
}
