/* Shared blog post styles — used by all Before blog pages */
.blog-post-body { background: var(--cream); }

.blog-header { padding: 48px 24px 0; text-align: center; }
.blog-category-label {
  display: inline-block; background: var(--blush-pale); color: var(--blush-deep);
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px;
  border-radius: 20px; margin-bottom: 24px;
}
.blog-title {
  font-family: var(--serif); font-size: clamp(28px, 5.5vw, 48px);
  line-height: 1.15; color: var(--dark); max-width: 680px; margin: 0 auto 16px;
}
.blog-title em { color: var(--blush); font-style: italic; }
.blog-meta-bar {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-family: var(--sans); font-size: 13px; color: var(--warm-gray); margin-bottom: 32px;
}
.blog-meta-bar span { display: flex; align-items: center; gap: 6px; }

.blog-content {
  max-width: 660px; margin: 0 auto; padding: 40px 24px 80px;
}
.blog-intro {
  font-family: var(--serif); font-size: clamp(18px, 3vw, 22px);
  line-height: 1.65; color: var(--text); margin-bottom: 32px; font-style: italic;
}
.blog-intro strong { font-weight: 700; font-style: normal; color: var(--dark); }
.blog-intro em { color: var(--blush-deep); font-style: italic; }

h2.blog-section-title {
  font-family: var(--serif); font-size: clamp(20px, 3.5vw, 26px);
  color: var(--dark); margin: 48px 0 20px; padding-top: 32px; border-top: 2px solid var(--border);
}
h2.blog-section-title em { color: var(--blush); font-style: italic; }
h3.blog-subsection {
  font-family: var(--sans); font-size: 12px; font-weight: 700; color: var(--dark);
  margin: 32px 0 16px; text-transform: uppercase; letter-spacing: 1px;
}

p.blog-body {
  font-family: var(--sans); font-size: 16px; color: var(--text);
  line-height: 1.75; margin-bottom: 20px;
}

.blog-divider {
  text-align: center; margin: 40px 0; color: var(--blush);
  font-size: 24px; letter-spacing: 12px;
}

.blog-cta-section {
  background: var(--blush-pale); border: 1px solid var(--blush-light);
  border-radius: var(--radius-xl); padding: 40px 36px; text-align: center; margin: 48px 0 40px;
}
.blog-cta-section h2 {
  font-family: var(--serif); font-size: clamp(22px, 4vw, 28px);
  color: var(--dark); margin-bottom: 12px;
}
.blog-cta-section p {
  font-family: var(--sans); font-size: 15px; color: var(--text-light);
  line-height: 1.65; margin-bottom: 24px;
}
.blog-cta-btn {
  display: inline-block; background: var(--blush-deep); color: white;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  padding: 14px 32px; border-radius: var(--radius-pill);
  text-decoration: none; transition: background 0.2s;
}
.blog-cta-btn:hover { background: #a31150; }
.blog-cta-btn-secondary {
  display: inline-block; background: var(--white); color: var(--text);
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  padding: 12px 24px; border-radius: var(--radius-pill);
  text-decoration: none; border: 1px solid var(--border); transition: all 0.2s; margin-left: 8px;
}
.blog-cta-btn-secondary:hover { border-color: var(--blush-light); background: var(--blush-pale); color: var(--blush-deep); }

.blog-quick-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 32px 0;
}
.blog-quick-link {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); text-decoration: none; font-family: var(--sans);
  font-size: 13px; font-weight: 500; color: var(--text); transition: all 0.2s;
}
.blog-quick-link:hover { border-color: var(--blush-light); background: var(--blush-pale); color: var(--blush-deep); }
.blog-quick-link-icon {
  width: 32px; height: 32px; background: var(--blush-pale);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.blog-quick-link-label { color: var(--dark); font-weight: 600; }
.blog-quick-link-sub { color: var(--warm-gray); font-size: 11px; }

/* Shared sign/card styles (red flags + love bombing) */
.red-flag-card, .lb-sign-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 28px 24px;
  margin-bottom: 20px; border: 1px solid var(--border); box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.red-flag-card::before, .lb-sign-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--blush-deep);
}
.red-flag-number, .lb-sign-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; background: var(--blush-deep); color: white;
  font-family: var(--sans); font-size: 12px; font-weight: 700; border-radius: 50%; margin-bottom: 12px;
}
.red-flag-title, .lb-sign-title {
  font-family: var(--serif); font-size: 20px; color: var(--dark); margin-bottom: 8px;
}
.red-flag-desc, .lb-sign-desc {
  font-family: var(--sans); font-size: 15px; color: var(--text-light);
  line-height: 1.65; margin-bottom: 14px;
}
.red-flag-real, .lb-sign-example {
  background: var(--blush-pale); border-radius: var(--radius);
  padding: 12px 16px; font-family: var(--sans); font-size: 13px;
  color: var(--blush-deep); line-height: 1.5;
}
.red-flag-real strong, .lb-sign-example strong { font-weight: 600; }

/* Understanding box (love bombing) */
.understanding-box {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  margin: 32px 0; border: 1px solid var(--border);
}
.understanding-box h3 {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--blush-deep); margin-bottom: 14px;
}
.understanding-box p {
  font-family: var(--sans); font-size: 15px; color: var(--text);
  line-height: 1.7; margin-bottom: 14px;
}

/* Kids safety checklist styles */
.checklist-section { margin-bottom: 40px; }
.checklist-label {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--blush-deep);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.checklist-label span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; background: var(--blush-deep); color: white;
  border-radius: 50%; font-size: 11px;
}
.check-item {
  background: var(--white); border-radius: var(--radius-lg); padding: 20px 24px;
  margin-bottom: 12px; border: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 16px; transition: all 0.2s;
}
.check-item:hover { border-color: var(--blush-light); box-shadow: var(--shadow); }
.check-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0; margin-top: 2px;
}
.check-item.yes .check-icon { background: #e8f5e9; border-color: var(--sage); color: var(--sage); }
.check-item.warn .check-icon { background: var(--blush-pale); border-color: var(--blush-deep); color: var(--blush-deep); }
.check-content { flex: 1; }
.check-label {
  font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px;
}
.check-detail {
  font-family: var(--sans); font-size: 13px; color: var(--text-light); line-height: 1.55;
}
.check-item.yes .check-detail { color: var(--sage); }
.check-item.warn .check-detail { color: var(--blush-deep); }

.fact-stat {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--blush-pale); border-radius: var(--radius-lg);
  padding: 20px 24px; margin: 32px 0; border: 1px solid var(--blush-light);
}
.fact-stat-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.fact-stat-text { font-family: var(--sans); font-size: 14px; color: var(--blush-deep); line-height: 1.65; }
.fact-stat-text strong { font-weight: 700; }

.practical-box {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 28px;
  margin: 32px 0; border: 1px solid var(--border);
}
.practical-box h3 { font-family: var(--serif); font-size: 20px; color: var(--dark); margin-bottom: 16px; }
.practical-step { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.step-num {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  background: var(--blush-deep); color: white;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.step-text { font-family: var(--sans); font-size: 14px; color: var(--text); line-height: 1.6; }

@media (max-width: 480px) {
  .blog-quick-links { grid-template-columns: 1fr; }
  .blog-cta-section { padding: 28px 24px; }
  .check-item { padding: 16px 18px; }
  .red-flag-card, .lb-sign-card { padding: 20px 20px 18px; }
}