/* VoirSite — minimal article stylesheet (hand-trimmed, replaces the old glob theme bundle) */

:root {
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --accent: #fa4c2a;
  --border: #e5e5e5;
  --bg: #ffffff;
  --max-width: 760px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 17px;
}

.page-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.site-home-link {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
}

.site-home-link:hover { color: var(--accent); }

.entry-header { margin-bottom: 16px; }

.entry-title {
  font-size: 1.85rem;
  line-height: 1.25;
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--text);
}

.entry-thumbnail { margin: 0 0 20px; }

.entry-thumbnail img,
.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.entry-content { margin-bottom: 40px; }

.entry-content p { margin: 0 0 1.1em; }

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-weight: 700;
  line-height: 1.3;
  margin: 1.6em 0 0.6em;
  color: var(--text);
}

.entry-content h2 { font-size: 1.4rem; }
.entry-content h3 { font-size: 1.2rem; }
.entry-content h4 { font-size: 1.05rem; }

.entry-content ul,
.entry-content ol {
  margin: 0 0 1.1em;
  padding-left: 1.4em;
}

.entry-content li { margin-bottom: 0.35em; }

.entry-content a {
  color: var(--accent);
  text-decoration: underline;
}

.entry-content a:hover { text-decoration: none; }

.entry-content strong { font-weight: 700; }
.entry-content em { font-style: italic; }

.site-footer {
  padding: 20px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-footer a:hover { color: var(--accent); }

@media (max-width: 480px) {
  body { font-size: 16px; }
  .entry-title { font-size: 1.5rem; }
}
