/* ── BLOG HERO ── */
.blog-hero {
  background-color: var(--raisin-black);
  padding: 140px 20px 70px;
  text-align: center;
}

.blog-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-hero .back-link:hover {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}
.blog-hero .back-link ion-icon { font-size: 1.6rem; }

.blog-hero h1 {
  color: white;
  font-family: var(--ff-manrope);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 820px;
  margin: 0 auto 24px;
}

.blog-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(255,255,255,0.45);
  font-size: 1.35rem;
  font-weight: 500;
  flex-wrap: wrap;
}
.blog-hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-hero-meta ion-icon { font-size: 1.5rem; }

/* ── FEATURED IMAGE ── */
.blog-featured-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* ── ARTICLE WRAPPER ── */
.blog-article-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 65px 20px 80px;
}

/* ── INTRO PARAGRAPH ── */
.blog-intro {
  font-size: 1.85rem;
  line-height: 1.75;
  color: #444;
  font-weight: 500;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e8e8e8;
}

/* ── NUMBERED TIP BLOCKS (blog 1 and 2) ── */
.tip-block {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.tip-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--raisin-black);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  font-weight: 700;
  font-family: var(--ff-manrope);
  margin-top: 4px;
}

.tip-content h2 {
  font-family: var(--ff-manrope);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--raisin-black);
  margin-bottom: 12px;
  line-height: 1.3;
}
.tip-content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}
.tip-content p + p { margin-top: 14px; }

.tip-divider {
  border: none;
  border-top: 1px solid #efefef;
  margin: 0 0 48px 0;
}

/* ── STEP BLOCKS (blog 3) ── */
.step-block {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.step-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.step-badge .step-label {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #aaa;
}
.step-badge .step-num {
  width: 52px;
  height: 52px;
  background: var(--raisin-black);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  font-weight: 700;
  font-family: var(--ff-manrope);
}

.step-content h2 {
  font-family: var(--ff-manrope);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--raisin-black);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}
.step-content p + p { margin-top: 14px; }

.step-divider {
  border: none;
  border-top: 1px solid #efefef;
  margin: 0 0 48px 0;
}

/* ── WARNING CALLOUT (blog 2 only) ── */
.blog-warning {
  background: #fafafa;
  border-left: 4px solid #888;
  padding: 24px 28px;
  border-radius: 0 10px 10px 0;
  margin: 0 0 48px 0;
}
.blog-warning .warning-label {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-warning p {
  font-size: 1.55rem;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* ── TIMELINE BOX (blog 3 only) ── */
.timeline-box {
  background: #f9f8f6;
  border: 1px solid #e0ddd8;
  border-radius: 12px;
  padding: 32px 30px;
  margin: 0 0 48px 0;
}
.timeline-box h3 {
  font-family: var(--ff-manrope);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--raisin-black);
  margin-bottom: 20px;
}
.timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  gap: 16px;
}
.timeline-row:last-child { border-bottom: none; }
.timeline-phase {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--raisin-black);
}
.timeline-duration {
  font-size: 1.4rem;
  color: #888;
  font-weight: 500;
  white-space: nowrap;
}

/* ── CLOSING CALLOUT ── */
.blog-closing {
  background: #f9f8f6;
  border-left: 4px solid var(--raisin-black);
  padding: 28px 30px;
  border-radius: 0 10px 10px 0;
  margin-top: 55px;
  margin-bottom: 55px;
}
.blog-closing p {
  font-size: 1.65rem;
  line-height: 1.8;
  color: #444;
  margin: 0;
  font-weight: 500;
}

/* ── CTA BLOCK ── */
.blog-cta {
  background: var(--raisin-black);
  border-radius: 14px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 20px;
}
.blog-cta h3 {
  color: white;
  font-family: var(--ff-manrope);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.blog-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 1.55rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.blog-cta .cta-btn {
  display: inline-block;
  background: white;
  color: var(--raisin-black);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.blog-cta .cta-btn:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--raisin-black);
}

/* ── BACK TO BLOG ROW ── */
.back-to-blog-row {
  text-align: center;
  padding: 40px 20px 60px;
  border-top: 1px solid #efefef;
  margin-top: 20px;
}
.back-to-blog-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--raisin-black);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.back-to-blog-row a:hover {
  border-color: var(--raisin-black);
  text-decoration: none;
  color: var(--raisin-black);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .blog-hero { padding: 120px 16px 55px; }
  .blog-hero h1 { font-size: 2.8rem; }
  .blog-article-wrap { padding: 40px 16px 60px; }

  .tip-block,
  .step-block { flex-direction: column; gap: 14px; }

  .tip-number { width: 44px; height: 44px; font-size: 1.7rem; }

  .step-badge { flex-direction: row; align-items: center; gap: 10px; }
  .step-badge .step-label { display: none; }
  .step-badge .step-num { width: 44px; height: 44px; font-size: 1.7rem; }

  .blog-cta { padding: 36px 22px; }
  .blog-cta h3 { font-size: 2rem; }
  .blog-intro { font-size: 1.65rem; }

  .timeline-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}
