body {
    background: #ffffff !important;
}
.blog-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.blog-post {
  display: flex;
  flex-direction: row;
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.blog-post img {
  width: 250px;
  height: auto;
  object-fit: cover;
}

.post-content {
  padding: 20px;
  flex: 1;
}

.post-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.post-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  padding: 8px 16px;
  background-color: #0066cc;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #004999;
}

/* ----------- Mobile Responsive Design ----------- */
@media screen and (max-width: 768px) {
  .blog-post {
    flex-direction: column;
  }

  .blog-post img {
    width: 100%;
    height: auto;
  }

  .post-content {
    padding: 15px;
  }

  .post-content h2 {
    font-size: 18px;
  }

  .post-content p {
    font-size: 15px;
  }
}
