/* Modern article-style layout for information pages */
:root {
  --article-accent: #00ffff;
  --article-muted: #b2fefa;
}

/* General article container */
.article {
  max-width: 900px;
  margin: 28px auto;
  padding: 32px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.04);
}

@media (prefers-color-scheme: light) {
  .article {
    background: #fff;
    color: #111;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.06);
  }
}

.article h1, .article h2, .article h3 {
  color: var(--article-accent);
  margin-top: 0;
  line-height: 1.1;
}

.article .meta {
  color: var(--article-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.article p {
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  hyphens: auto;
}

.article img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 14px 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.article figure { margin: 0; }
.article figcaption { font-size: 0.9rem; color: var(--article-muted); text-align: center; margin-top: 6px; }

.article blockquote {
  border-left: 4px solid var(--article-accent);
  padding-left: 14px;
  color: var(--article-muted);
  background: rgba(0,0,0,0.05);
  margin: 16px 0;
  border-radius: 6px;
}

@media (max-width: 720px) {
  .article { padding: 18px; margin: 16px; }
  .article h1 { font-size: 1.6rem; }
}

.article .lead { font-size:1.125rem; color:var(--article-muted); margin-bottom:1rem; }
.article .kicker { text-transform:uppercase; letter-spacing:0.08em; font-size:0.85rem; color:var(--article-muted); margin-bottom:8px; }
