.blogs-wrapper {
  max-width: 800px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blogs-title {
  color: #004aad;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  text-align: center;
}

.blogs-intro {
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: center;
  font-size: 1.1rem;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-post {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: #333;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.blog-meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  color: #004aad;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.read-more:after {
  content: "→";
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.read-more:hover:after {
  margin-left: 10px;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
  .blogs-wrapper {
    margin: 1rem;
    padding: 1rem;
  }
  
  .blogs-title {
    font-size: 2rem;
  }
  
  .blog-image img {
    height: 200px;
  }
  
  .blog-content {
    padding: 1rem;
  }
}