/* Jared Akers Archive - Clean Minimal Stylesheet */

*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Layout */
.site-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Header */
.site-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.site-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.site-title a {
  color: #333;
  text-decoration: none;
}

.site-title a:hover {
  color: #666;
}

/* Navigation */
.nav-categories {
  margin-top: 1rem;
}

.nav-categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.nav-categories a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-categories a:hover {
  color: #333;
  text-decoration: underline;
}

/* Main Content */
.content {
  margin-bottom: 3rem;
}

/* Article Styles */
.entry {
  margin-bottom: 3rem;
}

.entry-title {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.entry-title a {
  color: #333;
  text-decoration: none;
}

.entry-title a:hover {
  color: #666;
}

.entry-meta {
  margin: 0 0 1.5rem;
  color: #888;
  font-size: 0.875rem;
}

.entry-content {
  font-size: 1.05rem;
  line-height: 1.7;
}

.entry-content p {
  margin: 0 0 1.25rem;
}

.entry-content h2 {
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.entry-content h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
}

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

.entry-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 3px solid #ddd;
  background: #f9f9f9;
  font-style: italic;
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-content a {
  color: #0066cc;
}

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

/* Post List (Homepage/Category) */
.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-list li {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.post-list li:last-child {
  border-bottom: none;
}

.post-list .post-title {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.post-list .post-title a {
  color: #333;
  text-decoration: none;
}

.post-list .post-title a:hover {
  color: #0066cc;
}

.post-list .post-meta {
  margin: 0;
  color: #888;
  font-size: 0.8rem;
}

.post-list .post-excerpt {
  margin: 0.5rem 0 0;
  color: #555;
  font-size: 0.95rem;
}

/* Pagination */
.pagination {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pagination a {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  color: #666;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.pagination a:hover {
  background: #f5f5f5;
  color: #333;
}

.pagination .active a {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  color: #888;
  font-size: 0.85rem;
}

/* Category Label */
.category-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.5rem;
  background: #f0f0f0;
  color: #666;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 3px;
}

.category-label a {
  color: inherit;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
  .site-container {
    padding: 1.5rem 1rem;
  }

  .entry-title {
    font-size: 1.4rem;
  }

  .entry-content {
    font-size: 1rem;
  }

  .nav-categories ul {
    gap: 0.25rem 0.75rem;
  }
}
