/* Base & layout */
.blog-list-container {
  font-family: "Poppins", Arial, sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #fff;
  color: #333;
}

.blog-list-title {
  font-size: 2.4rem;
  color: #b97025;
  text-align: center;
  margin-bottom: 40px;
}

/* Blog item card */
.blog-item {
  margin-bottom: 40px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.blog-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.blog-link {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  color: inherit;
}

.blog-image-wrapper {
  flex: 0 0 35%;
  max-width: 35%;
}

.blog-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.blog-content {
  flex: 1;
  padding: 20px 25px;
}

.blog-item-title {
  font-size: 1.6rem;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.blog-item-excerpt {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.blog-read-button {
  background-color: #b97025;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.blog-read-button:hover {
  background-color: #944f15;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .blog-link {
    flex-direction: column;
  }
  .blog-image-wrapper {
    max-width: 100%;
  }
  .blog-item-title {
    font-size: 1.3rem;
  }
  .blog-list-title {
    font-size: 2rem;
  }
}
