/*======================================================================*/
/* 🔵 BLOG PAGE - PREMIUM UX (FINAL CLEAN VERSION + BREATHING SPACE) */
/*======================================================================*/

/* ===== HERO ===== */
.blog-hero {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f7f9fc, #ffffff);
}

.hero-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
}


/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--text-dark);
}


/* ===== TOPIC CHIPS ===== */
.blog-topics {
  padding: 50px 0;
}

.topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.topic-chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.topic-chip:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.topic-chip.active {
  background: var(--primary);
  color: #ffffff;
}


/* ===== BLOG CARDS ===== */
.blog-cards {
  padding: 40px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.blog-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-dark);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 14px;
  color: var(--text-light);
}


/* ===== TRUST BAR ===== */
.trust-bar {
  text-align: center;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  font-size: 14px;
  color: var(--primary);
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  margin-top: 30px;
}


/* ===== CTA SECTION (WITH BREATHING SPACE) ===== */
.blog-cta {
  margin-top: 80px;
  margin-bottom: 100px; /* 🔥 KEY BREATHING SPACE */
  padding: 60px 20px;
  text-align: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #6a5cff, #00a8ff);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.blog-cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.blog-cta p {
  font-size: 16px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}


/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #333;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  background: #f2f2f2;
  transform: translateY(-2px);
}


/* ===== FOOTER BREATHING SPACE ===== */
.blog-page footer {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(0,0,0,0.05);
}


/* ===== MOBILE ===== */
@media (max-width: 767px) {

  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .section-title {
    font-size: 20px;
  }

  .topics-grid {
    gap: 10px;
  }

  .topic-chip {
    font-size: 13px;
    padding: 8px 14px;
  }

  .blog-card {
    padding: 18px;
  }

  .blog-cta {
    padding: 40px 20px;
    margin-bottom: 80px;
  }

  .blog-cta h2 {
    font-size: 22px;
  }

  .blog-cta p {
    font-size: 14px;
  }
}

/*======================================================================*/
/* 🔵 END BLOG PAGE */
/*======================================================================*/