:root {
  --bg: #ffffff;
  --text: #111111;
  --text-secondary: #555555;
  --border: #e5e5e5;
  --accent: #000000;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Courier New', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-serif);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  max-width: 8.5in;
  margin: 0 auto;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* Print-optimized header */
.print-header {
  border-bottom: 2px solid var(--accent);
  padding: 24px 0;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.issue-info {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  text-align: right;
}

/* Intro section */
.intro {
  margin-bottom: 60px;
  text-align: center;
}

.intro h1 {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-secondary);
}

/* Articles */
.article {
  break-inside: avoid;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.article:last-child {
  border-bottom: none;
}

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.article-number {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
}

.article-source {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.article-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.article-meta {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.article-author::before {
  content: "by ";
}

.article-date::before {
  content: " • ";
}

.article-summary {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #222;
}

.article-excerpt {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #333;
}

.read-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.read-link:hover {
  opacity: 0.7;
}

/* Footer */
.print-footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
}

/* Screen-only styles */
@media screen {
  body {
    padding: 40px;
    background: #f5f5f5;
  }

  body > *:not(header):not(main) {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .content {
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
}

/* Print styles */
@media print {
  body {
    background: white;
    padding: 0;
    font-size: 12pt;
  }

  .content {
    background: white;
    padding: 0;
  }

  .article-title {
    font-size: 18pt;
  }

  .article-summary,
  .article-excerpt {
    font-size: 11pt;
  }

  .read-link {
    display: none;
  }

  .print-header,
  .print-footer {
    color: var(--text-secondary);
  }
}
