body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f3f8f7;
}

/* Blog Wrapper */
.blogs-wrapper {
  padding: 60px 20px;
  background-color: #f3f8f7;
}

.blogs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blogs-title {
  text-align: center;
  font-size: 36px;
  color: #f25a40;
  margin-bottom: 10px;
}

.blogs-intro {
  text-align: center;
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}

/* Grid Layout */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Blog Card */
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h3 {
  font-size: 20px;
  color: #f25a40;
  margin-bottom: 10px;
}

.blog-content .meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 15px;
}

.blog-content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
  flex-grow: 1;
}

.read-btn {
  align-self: flex-start;
  padding: 10px 16px;
  background: #f25a40;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.read-btn:hover {
  background: #eb4528;
}
