/* BLOG PAGE WRAPPER */
.blog-container {
  max-width: 850px;
  margin: 40px auto;
  padding: 20px;
}

/* BLOG TITLE */
.blog-container h1 {
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.3;
  margin-bottom: 16px;
}

/* INTRO */
.blog-container > p {
  /* font-size: 16px; */
  color: var(--text-secondary);
  margin-bottom: 25px;
}

/* SECTION CARD */
.blog-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  transition: 0.3s;
}

.blog-section:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

/* HEADINGS */
.blog-section h2 {
  /* font-size: 22px; */
  margin-bottom: 10px;
  color: #0f172a;
}

.blog-section h3 {
  /* font-size: 18px; */
  margin-bottom: 8px;
}

/* TEXT */
.blog-section p {
  /* font-size: 15px; */
  line-height: 1.7;
  color: #475569;
}

/* LISTS */
.blog-section ul {
  padding-left: 20px;
  margin-top: 10px;
}

.blog-section li {
  margin-bottom: 8px;
}

/* HIGHLIGHT BOX */
.highlight-box {
  background: #eef2ff;
  border-left: 4px solid #2563eb;
  padding: 12px;
  border-radius: 6px;
  margin-top: 12px;
}

/* CTA LINKS */
.blog-links {
  margin-top: 30px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 10px;
  text-align: center;
}

.blog-links a {
  display: inline-block;
  margin: 8px;
  padding: 10px 16px;
  background: #2563eb;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.blog-links a:hover {
  background: #1e40af;
}

/* MOBILE */
@media (max-width: 600px) {
  .blog-container {
    padding: 15px;
  }

  .blog-section {
    padding: 16px;
  }
}

/* BLOG LIST LINKS */
.blog-section ul li a {
  text-decoration: none;
  color: #2563eb;
  font-weight: 500;
}

.blog-section ul li a:hover {
  text-decoration: underline;
}

/* FEATURED CARDS (OPTIONAL) */
.blog-card {
  border: 1px solid #e5e7eb;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.blog-card:hover {
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}