:root {
  --accent: #e63946;
  --text: #222;
  --muted: #6b7280;
  --bg: #ffffff;
  --border: #e5e7eb;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header.site-header {
  border-bottom: 3px solid var(--text);
  padding: 24px 0;
  text-align: center;
}

.site-title {
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-tagline {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
  font-style: italic;
}

nav.site-nav {
  background: var(--text);
}

nav.site-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav.site-nav a {
  display: block;
  color: #fff;
  padding: 14px 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: Arial, sans-serif;
}

nav.site-nav a:hover {
  background: var(--accent);
  color: #fff;
}

/* Layout */
.layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 40px 0;
}

@media (max-width: 800px) {
  .layout { grid-template-columns: 1fr; }
}

/* Post cards */
.post-card {
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
  margin-bottom: 28px;
}

.post-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
}

.post-category {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.post-card h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.post-meta {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-excerpt {
  color: #444;
  font-size: 16px;
}

/* Sidebar */
.sidebar h3 {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--text);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.sidebar-list {
  list-style: none;
  margin-bottom: 36px;
}

.sidebar-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

/* Single post */
.single-post .post-category { margin-bottom: 14px; }

.single-post h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.single-post .post-meta { margin-bottom: 20px; }

.single-post img.featured {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin-bottom: 24px;
}

.single-post .content p {
  margin-bottom: 18px;
  font-size: 18px;
  color: #333;
}

.single-post .content h2 {
  margin: 28px 0 14px;
  font-size: 24px;
}

/* Footer */
footer.site-footer {
  background: var(--text);
  color: #cbd5e1;
  padding: 36px 0;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

footer.site-footer a { color: #fff; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 12px;
  cursor: pointer;
}

@media (max-width: 700px) {
  .nav-toggle { display: block; margin: 0 auto; }
  nav.site-nav ul { display: none; flex-direction: column; }
  nav.site-nav ul.open { display: flex; }
  .site-title { font-size: 30px; }
}
