
:root {
  --primary: #333;
  --accent: #e53e3e;
  --bg-body: #fdfbf7;
  --bg-card: #ffffff;
  --text-primary: #2d3748;
  --text-secondary: #718096;
  --border: #edf2f7;
  --font-main: 'Helvetica Neue', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); background: var(--bg-body); color: var(--text-primary); line-height: 1.8; }
a { color: var(--text-primary); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
a:hover { border-bottom-color: var(--accent); }

header { padding: 2rem 0; text-align: center; border-bottom: 1px solid var(--border); background: var(--bg-body); }
.header-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.logo { font-size: 2rem; font-weight: 900; letter-spacing: -1px; text-transform: lowercase; }
nav ul { display: flex; gap: 1.5rem; list-style: none; }
nav a { color: var(--text-secondary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

main { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem; }
.hero { text-align: left; margin-bottom: 4rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.hero h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 1rem; letter-spacing: -1px; }

.articles-grid { display: flex; flex-direction: column; gap: 4rem; }
.article-card { display: flex; flex-direction: column; gap: 1rem; border-bottom: 1px solid var(--border); padding-bottom: 3rem; }
.article-card:last-child { border-bottom: none; }
.article-card img { width: 100%; height: auto; max-height: 400px; object-fit: cover; border-radius: 2px; }
.article-card h3 { font-size: 1.8rem; font-weight: 700; margin-top: 1rem; }
.read-more { color: var(--accent); font-weight: bold; margin-top: 0.5rem; }

footer { border-top: 1px solid var(--border); padding: 2rem 0; text-align: center; color: var(--text-secondary); font-size: 0.9rem; }
