/* Blog Styles - Mister Seven */

.blog-hero {
  background: #0a0a0a;
  padding: 120px 0 60px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #c5a44e;
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.blog-hero p {
  color: #999;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Listing */
.blog-listing {
  background: #0f0f0f;
  padding: 60px 0 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #222;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(197, 164, 78, 0.1);
  border-color: #c5a44e;
}

.blog-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-image .category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #c5a44e;
  color: #0a0a0a;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-image .placeholder-icon {
  font-size: 48px;
  opacity: 0.3;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-body h3 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-body h3 a:hover {
  color: #c5a44e;
}

.blog-card-body p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #666;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Blog Article */
.blog-article-hero {
  background: #0a0a0a;
  padding: 120px 0 40px;
  text-align: center;
}

.blog-article-hero .category {
  color: #c5a44e;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.blog-article-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.3;
}

.blog-article-hero .meta {
  color: #666;
  font-size: 14px;
}

.blog-article-hero .meta span {
  margin: 0 8px;
}

.blog-article-content {
  background: #0f0f0f;
  padding: 60px 0 80px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  color: #ccc;
  font-size: 17px;
  line-height: 1.8;
}

.article-body h2 {
  color: #c5a44e;
  font-size: 28px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #222;
}

.article-body h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 16px;
}

.article-body h4 {
  color: #ddd;
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body strong {
  color: #fff;
}

.article-body ul, .article-body ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}

.article-body table th {
  background: #1a1a1a;
  color: #c5a44e;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #c5a44e;
}

.article-body table td {
  padding: 10px 16px;
  border-bottom: 1px solid #222;
  color: #bbb;
}

.article-body table tr:hover td {
  background: #151515;
}

.article-body blockquote {
  border-left: 3px solid #c5a44e;
  padding: 16px 24px;
  margin: 24px 0;
  background: #1a1a1a;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #aaa;
}

.article-body a {
  color: #c5a44e;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.article-body a:hover {
  border-bottom-color: #c5a44e;
}

/* CTA Box */
.article-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  border: 1px solid #c5a44e;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}

.article-cta h3 {
  color: #c5a44e;
  font-size: 24px;
  margin-bottom: 12px;
}

.article-cta p {
  color: #999;
  margin-bottom: 24px;
}

.article-cta .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.article-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.article-cta .cta-btn-primary {
  background: #c5a44e;
  color: #0a0a0a;
}

.article-cta .cta-btn-primary:hover {
  background: #d4b45e;
  transform: translateY(-2px);
}

.article-cta .cta-btn-secondary {
  background: transparent;
  color: #c5a44e;
  border: 1px solid #c5a44e;
}

.article-cta .cta-btn-secondary:hover {
  background: rgba(197, 164, 78, 0.1);
  transform: translateY(-2px);
}

/* Back to blog */
.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c5a44e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
  transition: gap 0.2s;
}

.back-to-blog:hover {
  gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 32px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-article-hero h1 {
    font-size: 28px;
  }
  
  .article-body {
    font-size: 16px;
  }
  
  .article-body h2 {
    font-size: 24px;
  }
  
  .article-body table {
    font-size: 13px;
  }
  
  .article-body table th,
  .article-body table td {
    padding: 8px 10px;
  }
  
  .article-cta {
    padding: 24px;
  }
}
