.blog-hero {
  background: linear-gradient(180deg, #f2f6ff 0%, #ffffff 100%);
  text-align: center;
  padding: 100px 20px 40px;
}

.blog-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.blog-hero p {
  font-size: 1.1rem;
  color: #444;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
  margin-top: 10px;
}

.blog-section {
  background: #ffffff;
  padding: 80px 10%;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.blog-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.blog-info h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #222;
}

.blog-info p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-btn {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-btn:hover {
  background: #d94d00;
  transform: scale(1.05);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
