/* ============================================================
   blog.css — Best Bikes Under ₹1 Lakh Guide
   MotorGrid.in
   ============================================================ */

/* ── Container ── */
.blog-container {
  max-width: 1100px;
  margin: auto;
  padding: 24px 16px 64px;
  font-family: Arial, sans-serif;
  line-height: 1.75;
  color: #111;
}

/* ── Last updated badge ── */
.last-updated {
  display: inline-block;
  font-size: 13px;
  color: #666;
  background: #f4f4f4;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 18px;
}

/* ── Editorial note (trust signal) ── */
.editorial-note {
  background: #f9f9f9;
  border-left: 3px solid #e60023;
  border-radius: 0 6px 6px 0;
  padding: 12px 16px;
  font-size: 14px;
  color: #444;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ── Quick-pick summary box ── */
.quick-pick {
  background: #fff8f8;
  border: 1px solid #f5c0c0;
  border-radius: 8px;
  padding: 18px 20px;
  margin: 28px 0;
}
.quick-pick h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e60023;
  margin: 0 0 12px;
}
.quick-pick ul {
  margin: 0;
  padding-left: 18px;
}
.quick-pick li {
  font-size: 15px;
  color: #222;
  margin-bottom: 6px;
}

/* ── Title ── */
.blog-container h1 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #111;
}

/* ── Intro paragraphs ── */
.blog-container > p {
  font-size: 17px;
  color: #333;
}

/* ── Section titles (bike names + section heads) ── */
.blog-container h2 {
  font-size: 26px;
  margin-top: 48px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #111;
}

/* ── Sub headings ── */
.blog-container h3 {
  font-size: 18px;
  margin-top: 20px;
  color: #111;
}

/* ── Body paragraphs ── */
.blog-container p {
  font-size: 16px;
  color: #333;
  margin-bottom: 14px;
}

/* ── Price / spec line ── */
.price-line {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  color: #000;
}

/* ── Images ── */
.blog-container img {
  width: 85%;
  max-width: 850px;
  margin: 18px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.blog-container img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

/* ── Pros / Cons grid ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0 20px;
}
.pros,
.cons {
  border-radius: 6px;
  padding: 14px 16px;
}
.pros {
  background: #f0faf3;
  border: 1px solid #b8e5c4;
}
.cons {
  background: #fff5f5;
  border: 1px solid #f5c0c0;
}
.pros h4,
.cons h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}
.pros h4 {
  color: #1e7e3a;
}
.cons h4 {
  color: #c0001a;
}
.pros ul,
.cons ul {
  margin: 0;
  padding-left: 16px;
}
.pros li,
.cons li {
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
}

/* ── Verdict highlight block ── */
.verdict-block {
  background: #111;
  color: #fff;
  border-radius: 6px;
  padding: 14px 18px;
  margin: 18px 0 10px;
  font-size: 15px;
  line-height: 1.6;
}
.verdict-block strong {
  color: #ffcc00;
}

/* ── Who should buy ── */
.who-buy {
  font-size: 15px;
  color: #333;
  margin-bottom: 6px;
}
.who-buy strong {
  color: #000;
}

/* ── Verdict highlight (inline) ── */
.blog-container strong {
  color: #000;
}

/* ── Divider between bike sections ── */
.blog-container h2:not(:first-of-type) {
  border-top: 1px solid #eee;
  padding-top: 30px;
}

/* ── Lists ── */
.blog-container ul {
  margin: 10px 0 16px 18px;
}
.blog-container li {
  margin-bottom: 6px;
  font-size: 16px;
  color: #333;
}

/* ── Links ── */
.blog-container a {
  color: #e60023;
  font-weight: 600;
  text-decoration: none;
}
.blog-container a:hover {
  text-decoration: underline;
}

/* ── CTA button ── */
.spec-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 22px;
  background: #e60023;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.spec-btn:visited,
.spec-btn:active,
.spec-btn:hover {
  color: #ffffff !important;
}
.spec-btn:hover {
  background: #c4001d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 0, 35, 0.3);
}

/* ── Comparison table ── */
.blog-container table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 15px;
}
.blog-container th,
.blog-container td {
  padding: 12px 10px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}
.blog-container th {
  font-weight: 700;
  background: #fafafa;
  color: #111;
}
.blog-container td:first-child {
  font-weight: 600;
  color: #111;
}
.blog-container tr:last-child td {
  border-bottom: none;
}

/* ── H2+ul section blocks (buying factors etc.) ── */
.blog-container h2 + ul {
  background: #fafafa;
  padding: 14px 14px 14px 32px;
  border-radius: 6px;
  border: 1px solid #efefef;
}

/* ── Alternatives cards ── */
.alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 16px 0 24px;
}
.alt-card img {
  width: 100%;
  max-width: 100%;
  height: 160px;
  object-fit: contain;
  border-radius: 6px 6px 0 0;
  margin: -16px -18px 14px;
  width: calc(100% + 36px);
  display: block;
  box-shadow: none;
  transition: none;
}
.alt-card img:hover {
  transform: none;
  box-shadow: none;
}
.alt-card {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 16px 18px;
}
.alt-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px;
}
.alt-card p {
  font-size: 14px;
  color: #555;
  margin: 0 0 10px;
}
.alt-card a {
  font-size: 14px;
}

/* ── Skip segment box ── */
.skip-segment {
  background: #fffbea;
  border: 1px solid #f5dfa0;
  border-radius: 8px;
  padding: 16px 18px;
  margin: 20px 0;
  font-size: 15px;
  color: #444;
  line-height: 1.65;
}
.skip-segment strong {
  color: #7a5000;
}

/* ── FAQ items ── */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item .faq-q {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}
.faq-item .faq-a {
  font-size: 15px;
  color: #444;
  margin: 0;
  line-height: 1.65;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .blog-container h1 {
    font-size: 26px;
  }
  .blog-container h2 {
    font-size: 22px;
  }
  .blog-container p {
    font-size: 15px;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .alt-grid {
    grid-template-columns: 1fr;
  }
  .blog-container img {
    width: 100%;
  }
}
