/* ================= BLOG PAGE ================= */
.blog-section {
  padding: 80px 0;
}

.blog-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  margin-bottom: 30px;
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-title a {
  color: #0b1b3f;
  text-decoration: none;
}

.blog-excerpt {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.7;
}

/* ================= SINGLE POST ================= */
.single-post-section {
  padding: 100px 0;
}

.post-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0b1b3f;
}

.post-thumbnail img {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

.post-content {
  font-size: 17px;
  line-height: 1.9;
  color: #333;
}

/* Fix container width (important for your theme) */
.blog-section .container,
.single-post-section .container {
  max-width: 1200px;
}
