* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f7f9;
  color: #333;
}

/* Header Section */
.blogs-header {
  background: linear-gradient(to right, #00c6e0, #0073b1);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.blogs-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.blogs-header p {
  font-size: 16px;
}

/* Blog Grid */
.blogs-list .container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #00c6e0;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
  margin-bottom: 15px;
}

.read-more {
  text-decoration: none;
  color: #0073b1;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #005880;
}

/* Responsive */
@media (max-width: 900px) {
  .blog-grid {
    flex-direction: column;
    align-items: center;
  }

  .blog-card {
    width: 100%;
    max-width: 500px;
  }
}
