/* Blog article styles — Lavage de Vitres Régional */

/* ——— Blog Hero ——— */
.blog-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a3e8a 100%);
  padding: 160px 20px 60px;
}
.blog-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}
.blog-hero__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.blog-hero__title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: var(--fw-black);
  line-height: var(--lh-snug);
  color: #fff;
  margin: 0;
}
@media (max-width: 768px) {
  .blog-hero { padding: 120px 20px 40px; }
  .blog-hero__title { font-size: 30px; }
}

/* ——— Breadcrumb (standalone, outside hero) ——— */
.blog-crumbs { padding: 20px 0 0; }
.blog-crumbs__inner {
  max-width: 820px; margin: 0 auto; padding: 0 15px;
  font-family: var(--font-display); font-size: 12px; font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: 1px; color: var(--ink-mute);
}
.blog-crumbs__inner a { color: var(--brand-blue); text-decoration: none; }
.blog-crumbs__inner a:hover { text-decoration: underline; }
.blog-crumbs__sep { margin: 0 8px; color: var(--hairline); }

/* ——— Article layout ——— */
.blog-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 15px 100px;
}

.blog-article__intro {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: var(--ink-soft);
  margin-bottom: 40px;
}

/* ——— Takeaway box ——— */
.blog-takeaway {
  background: var(--surface-alt);
  border-left: 5px solid var(--brand-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 30px;
  margin-bottom: 48px;
}
.blog-takeaway__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--fw-extrabold);
  margin-bottom: 14px;
  color: var(--ink);
}
.blog-takeaway ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-takeaway li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}
.blog-takeaway li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--brand-blue);
  border-radius: 50%;
}

/* ——— Headings ——— */
.blog-article h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-snug);
  color: var(--ink);
  margin: 48px 0 10px;
}
.blog-article h2 + .blog-divider {
  width: 80px;
  height: 4px;
  background: var(--brand-blue);
  border: none;
  border-radius: 2px;
  margin: 0 0 22px;
}

.blog-article h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--fw-extrabold);
  line-height: 1.3;
  color: var(--ink);
  margin: 36px 0 12px;
}

/* ——— Body copy ——— */
.blog-article p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: var(--lh-relaxed);
  color: var(--ink);
  margin-bottom: 18px;
  text-wrap: pretty;
}

.blog-article strong {
  font-weight: var(--fw-bold);
}

/* ——— Lists in body ——— */
.blog-article ul, .blog-article ol {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: var(--lh-relaxed);
  color: var(--ink);
  margin: 0 0 22px 24px;
}
.blog-article li {
  margin-bottom: 6px;
}

/* ——— FAQ ——— */
.blog-faq {
  background: var(--surface-cool);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  margin: 48px 0;
}
.blog-faq__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: var(--fw-extrabold);
  margin-bottom: 28px;
  color: var(--ink);
}
.blog-faq__item {
  margin-bottom: 24px;
}
.blog-faq__item:last-child { margin-bottom: 0; }
.blog-faq__q {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: var(--fw-extrabold);
  color: var(--ink);
  margin-bottom: 8px;
}
.blog-faq__a {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ——— Comparison table ——— */
.blog-table-wrap {
  overflow-x: auto;
  margin: 24px 0 32px;
}
.blog-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 15px;
}
.blog-table th {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  padding: 14px 16px;
  background: var(--brand-blue);
  color: #fff;
}
.blog-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.blog-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.blog-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink-soft);
  line-height: 1.5;
}
.blog-table tr:nth-child(even) td {
  background: var(--surface-alt);
}
.blog-table td:first-child {
  font-weight: var(--fw-semibold);
  color: var(--ink);
}

/* ——— CTA box ——— */
.blog-cta {
  background: linear-gradient(135deg, #1a3e8a 0%, #2962ff 100%);
  border-radius: var(--radius-xl);
  color: #fff;
  padding: 44px 40px;
  text-align: center;
  margin: 48px 0 0;
}
.blog-cta h2 {
  color: #fff;
  font-size: 28px;
  margin: 0 0 14px;
}
.blog-cta p {
  color: rgba(255,255,255,.9);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 24px;
}
.blog-cta ul {
  list-style: none;
  margin: 0 auto 28px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  color: rgba(255,255,255,.9);
  font-size: 16px;
}
.blog-cta li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 10px;
  font-size: 14px;
}

/* ——— Buttons ——— */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: 17px;
  padding: 16px 38px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .25s, transform .25s, box-shadow .25s;
  cursor: pointer;
}
.btn--onblue {
  background: #fff;
  color: var(--brand-blue);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}
.btn--onblue:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

/* ——— Next article ——— */
.blog-next {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 15px 80px;
}
.blog-next__label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.blog-next__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 1px solid var(--hairline);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.blog-next__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: var(--brand-blue);
}
.blog-next__link h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: var(--fw-extrabold);
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.blog-next__link:hover h3 { color: var(--brand-blue); }
.blog-next__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .2s;
}
.blog-next__link:hover .blog-next__arrow { transform: translateX(4px); }

/* ——— Responsive ——— */
@media (max-width: 768px) {
  .blog-article { padding: 40px 15px 60px; }
  .blog-article h2 { font-size: 24px; }
  .blog-article h3 { font-size: 19px; }
  .blog-takeaway { padding: 22px 20px; }
  .blog-faq { padding: 24px 20px; }
  .blog-cta { padding: 32px 24px; }
  .blog-next__link { padding: 20px 24px; }
  .blog-next__link h3 { font-size: 17px; }
}
