/* =====================
   BLOG & POST STYLES
   ===================== */

/* Blog index page */
.blog-index {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.blog-index h1 {
  margin-bottom: 2rem;
}

/* Post cards on blog index */
.post-card {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
}

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

.post-card h2 {
  margin: 0 0 0.5rem 0;
}

.post-card h2 a {
  text-decoration: none;
}

.post-card h2 a:hover {
  text-decoration: underline;
}

.post-card-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.75rem;
}

.post-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.read-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Individual post */
.post {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.post-header {
  margin-bottom: 2rem;
}

.post-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.post-description {
  font-size: 1rem;
  color: #444;
  font-style: italic;
  margin-bottom: 0.4rem;
}

.post-meta {
  font-size: 0.85rem;
  color: #aaa;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.post-tag {
  color: #777;
  text-decoration: none;
  font-size: 0.85rem;
}

.post-tag:hover {
  text-decoration: underline;
}

/* Post body typography */
.post-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.post-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

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

.post-content p {
  margin-bottom: 1.25rem;
}

.post-content a {
  text-decoration: underline;
}

.post-content blockquote {
  border-left: 3px solid #ccc;
  margin: 1.5rem 0;
  padding: 0.5rem 1.25rem;
  color: #555;
  font-style: italic;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.post-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.back-to-blog {
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
}

.back-to-blog:hover {
  text-decoration: underline;
}

/* Affiliate disclosure */
.affiliate-disclosure {
  background: #f9f9f9;
  border-left: 3px solid #ccc;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 2rem;
  border-radius: 0 4px 4px 0;
}

/* Tag pages */
.tag-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.tag-page h1 {
  margin-bottom: 2rem;
}