/*
Theme Name: Paid and Tested
Theme URI: https://paidandtested.com
Author: Ren Whitfield
Description: Custom theme for Paid and Tested - honest tech reviews
Version: 1.0
*/

:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --ink: #1a1814;
  --ink-muted: #6b6660;
  --accent: #d4590a;
  --accent-light: #fff0e8;
  --border: #e8e4dc;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
}

header {
  background: var(--ink);
  color: #fff;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.home-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.post-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 24px;
}

.post-card .post-label {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.post-card h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.post-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.post-card .post-excerpt {
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.post-card .post-meta {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-muted);
}

.hero {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 24px 48px;
}

.hero .label {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.post-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.post-content p {
  margin-bottom: 18px;
  color: #2d2a26;
}

.post-content h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.75rem;
  margin: 52px 0 16px;
}

.meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--ink-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

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

@media (max-width: 600px) {
  .hero { padding: 48px 16px 32px; }
  .post-content { padding: 0 16px 48px; }
}
