/*
Theme Name: Wiredown
Theme URI: https://wiredown.com
Author: Wiredown
Description: Custom theme for Wiredown news aggregator.
Version: 0.1.0
License: Proprietary
Text Domain: wiredown
*/

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg: #f8f8f6;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-muted: #666666;
  --color-accent: #c0392b;
  --color-border: #e0e0e0;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --max-width: 860px;
  --space: 1rem;
}

html { font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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

/* Layout */
.site-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space);
}

/* Header */
.site-header {
  border-bottom: 2px solid var(--color-text);
  padding: 1.25rem 0;
  margin-bottom: 2rem;
}

.site-header .site-wrapper {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-title a { color: var(--color-text); }
.site-title a:hover { text-decoration: none; color: var(--color-accent); }

.site-tagline {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Main content */
.site-main { padding-bottom: 3rem; }

/* Post list */
.post-list { list-style: none; }

.post-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.post-item:first-child { padding-top: 0; }

.post-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.post-title a { color: var(--color-text); }
.post-title a:hover { color: var(--color-accent); text-decoration: none; }

.post-meta {
  font-size: 0.78rem;
  color: var(--color-muted);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.post-excerpt {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Single post */
.post-content {
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 1.5rem;
}

.post-content p { margin-bottom: 1rem; }
.post-content h2, .post-content h3 { margin: 1.5rem 0 0.5rem; font-weight: 600; }
.post-content a { text-decoration: underline; }

/* Entry header */
.entry-header { margin-bottom: 1rem; }
.entry-title { font-size: 1.75rem; font-weight: 700; line-height: 1.2; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: center;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 2rem 0 1rem;
  font-size: 0.9rem;
}

/* No posts */
.no-results { color: var(--color-muted); padding: 2rem 0; }
