/* Blog specific styles */
.blog-header {
  background-color: #333;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.blog-header h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.blog-header p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.blog-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
}

.blog-date {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.blog-excerpt {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  background-color: #f7be16;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.read-more:hover {
  background-color: #e0a800;
}
