/* blogs.css */

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #f8f9fa;
  color: #333;
}

.blogs-section {
  padding: 60px 20px;
  background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #007bff;
  margin-bottom: 40px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.blog-card img.blog-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

.blog-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #222;
}

.blog-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: justify;
}

.read-more {
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.read-more:hover {
  color: #0056b3;
  text-decoration: underline;
}
