.swiper-container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.swiper {
  width: 100%;
  height: 100%;

  /* btn next and prev */
  --swiper-navigation-size: 24px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  gap: 1rem ;
}

.blog-item {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 300px;
  /* height: 350px; */
  min-height: 350px;
}

.blog-item img {
  width: 100%;
  height: 154px;
  border-radius: 4px;
}

.blog-item h3 {
  margin-top: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.blog-item p {
  color: gray;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

