.blog-section {
  padding: 20px;
  padding-bottom: 50px;
}

.intro-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

.blog-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.blog-post {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.blog-post:hover {
  transform: translateY(-8px);
}

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

.post-content {
  padding: 1.5rem;
}

.post-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.post-content p {
  font-size: 1rem;
  color: #555;
}

.blog-container .button {
  background: #a81b1b;
  color: white;
  padding: 0.625rem;
  border-radius: 0.9375rem;
}