.blog-section {
  padding: 60px 0;
  background: #ffeaf0;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  color: #8e324a;
  font-weight: 600;
  margin-bottom: 40px;
}

.blog-swiper {
  padding-bottom: 40px;
}

.blog-swiper .swiper-slide {
  height: auto !important;
  display: flex;
  justify-content: center;
}

.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 300px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.blog-content {
  flex-grow: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-content h3 {
  font-size: 1.1rem;
  color: #be2a51;
  margin-bottom: 10px;
  min-height: 50px;
}

.blog-content p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 15px;
  flex-grow: 1;
}

.btn-read-more {
  align-self: flex-start;
  padding: 8px 16px;
  background-color: #8e324a;
  color: #fff;
  border-radius: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-read-more:hover {
  background-color: #be2a51;
}

/* Swiper Dots */
.swiper-pagination-bullets {
  bottom: 0 !important;
}
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #8e324a;
}
