:root {
  --text: #111;
  --muted: #565b61;
  --rule: #e5e7eb;
  --radius: 12px;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
  color: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px
}

header p.lead {
  margin: .25rem 0 1rem;
  color: #ccc;
}

h1 {
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.12;
  letter-spacing: .2px;
  margin: 8px 0 8px;
  padding-bottom: 8px;
  border-bottom: 4px solid currentColor;
  /* énfasis sutil */
}

h2 {
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  margin: 20px 0 8px;
  letter-spacing: .2px
}

h3 {
  margin: 16px 0 6px
}

p {
  margin: 8px 0
}

ul,
ol {
  padding-left: 18px;
  margin: 8px 0
}

li {
  margin: 4px 0
}

a {
  color: inherit;
  text-decoration: underline
}

hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 20px 0
}

.muted {
  color: color: #ccc;
}

.note {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 12px;
  font-size: 14px;
  color: #ccc;
}
details {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 10px 12px;
  margin: 8px 0
}

details>summary {
  cursor: pointer;
  font-weight: 600
}

.kws {
  font-size: 13px
}

.kws code {
  display: inline-block;
  margin: 3px 6px 0 0;
  padding: 2px 6px;
  border: 1px solid var(--rule);
  border-radius: 8px
}

.split {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

@media (max-width:760px) {
  .split {
    grid-template-columns: 1fr
  }
}

.cta a {
  margin-right: 12px
}
.story_reviw {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  font-family: Inter, system-ui, Arial, sans-serif;
  line-height: 1.45;
  color: #eaeaea;
  background: transparent
}

.story_reviw h1 {
  border: none;
  font-size: 28px;
  font-weight: 500;
}
.review_status {
  min-height: 22px;
  color: #ff9db1 !important;
  margin: 6px 0 14px
}
.story_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px
}

.story_reviw p {
  margin-top: 14px;
  font-size: 12px;
  color: #9aa0a6
}