/* === VehicleHero Blog — Huckberry-Inspired Editorial Design === */

/* Override nav for dark blog pages */
.nav {
  background: rgba(11, 14, 20, 0.95) !important;
  box-shadow: none !important;
}
.nav-links a { color: #A0A6BE !important; }
.nav-links a:hover { color: #0DD34E !important; }

/* Blog Index */
.blog-hero {
  padding: 120px 24px 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.4rem;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.blog-hero h1 .green { color: #0DD34E; }

.blog-hero p {
  font-family: 'Poppins', sans-serif;
  color: #A0A6BE;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.blog-card {
  background: #13161E;
  border: 1px solid #232738;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  border-color: rgba(13, 211, 78, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

.blog-card-category {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0DD34E;
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #A0A6BE;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-meta {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: #5E6478;
  display: flex;
  gap: 16px;
}

/* === Article Page === */
.article-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.article-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.article-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 14, 20, 0.3) 0%,
    rgba(11, 14, 20, 0.7) 60%,
    rgba(11, 14, 20, 1) 100%
  );
}

.article-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 120px 24px 48px;
  width: 100%;
}

.article-category {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0DD34E;
  margin-bottom: 12px;
}

.article-hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.article-meta {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  color: #5E6478;
  display: flex;
  gap: 20px;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Article Body */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.article-body p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  color: #c8ccd8;
  line-height: 1.85;
  margin-bottom: 24px;
}

.article-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 1px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.article-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-top: 32px;
  margin-bottom: 12px;
}

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

.article-body a {
  color: #0DD34E;
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 211, 78, 0.3);
  transition: border-color 0.2s;
}

.article-body a:hover {
  border-color: #0DD34E;
}

.article-body ul, .article-body ol {
  margin: 0 0 24px 20px;
  font-family: 'Poppins', sans-serif;
  color: #c8ccd8;
  line-height: 1.85;
}

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

.article-body blockquote {
  border-left: 3px solid #0DD34E;
  margin: 32px 0;
  padding: 16px 24px;
  background: rgba(13, 211, 78, 0.04);
  border-radius: 0 10px 10px 0;
}

.article-body blockquote p {
  color: #e0e3eb;
  font-style: italic;
  margin-bottom: 0;
}

/* Pull quote — Huckberry style */
.pull-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #0DD34E;
  text-align: center;
  padding: 32px 0;
  margin: 40px 0;
  border-top: 1px solid #232738;
  border-bottom: 1px solid #232738;
  letter-spacing: 1px;
  line-height: 1.2;
}

/* Data callout box */
.data-callout {
  background: #13161E;
  border: 1px solid #232738;
  border-radius: 14px;
  padding: 28px;
  margin: 32px 0;
}

.data-callout .stat-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(35, 39, 56, 0.5);
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
}

.data-callout .stat-row:last-child { border-bottom: none; }
.data-callout .stat-label { color: #A0A6BE; }
.data-callout .stat-value { color: #0DD34E; font-weight: 600; }

/* Inline CTA */
.inline-cta {
  background: linear-gradient(135deg, rgba(13, 211, 78, 0.08) 0%, rgba(43, 52, 80, 0.3) 100%);
  border: 1px solid rgba(13, 211, 78, 0.2);
  border-radius: 14px;
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}

.inline-cta h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 8px;
  margin-top: 0;
}

.inline-cta p {
  color: #A0A6BE;
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.inline-cta .btn-primary {
  display: inline-flex;
}

/* FAQ Section */
.article-faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.article-faq h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 24px;
}

/* Related Posts */
.related-posts {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  border-top: 1px solid #232738;
}

.related-posts h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero h1 { font-size: 2.4rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-hero-content h1 { font-size: 2.2rem; }
  .pull-quote { font-size: 1.4rem; }
}
