/* Basic aesthetic improvements */

:root {
  --primary-color: #2c3e50;
  --accent-color: #3498db;
  --text-color: #333;
  --light-gray: #f5f5f5;
  --border-color: #e0e0e0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.site-header {
  border-bottom: 2px solid var(--border-color);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.site-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

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

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.post-list {
  list-style: none;
  padding: 0;
}

.post-item {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--light-gray);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
}

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

.post-meta {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

h1 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

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

a:hover {
  text-decoration: underline;
}

/* Post content styling */
.post-content {
  max-width: 700px;
  margin: 0 auto;
}

.post-content ul,
.post-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

