* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #f8f9fa;
  color: #111;
}

.blog-header {
  text-align: center;
  padding: 60px 20px 30px;
  background: white;
}

.blog-header h1 {
  color: hsl(25, 95%, 45%);
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.blog-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 40px 20px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: hsl(25, 95%, 45%);
}

.blog-content a {
  text-decoration: none;
  color: inherit;
}

.blog-content a:hover {
  text-decoration: underline;
}

.blog-content p {
  color: #555;
  line-height: 1.6;
}

.blog-meta {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #777;
}

.blog-footer {
  text-align: center;
  padding: 30px;
  background: #fff;
  color: #777;
  font-size: 0.9rem;
}
