.bpc-carousel-container {
  position: relative;
  padding: 20px 0 40px;
}

.bpc-post-carousel {
  width: 100%;
  height: 100%;
}

.bpc-carousel-slide {
  height: auto;
}

.bpc-post-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 50px;
}

.bpc-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bpc-post-image {
  position: relative;
  overflow: hidden;
}

.bpc-thumbnail {
  width: 100%;
  height: 200px !important;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bpc-post-card:hover .bpc-thumbnail {
  transform: scale(1.05);
}

.bpc-post-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.bpc-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  flex-wrap: wrap;
}

.bpc-category {
  background: #007cba;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bpc-author,
.bpc-date {
  color: #666;
  font-weight: 500;
}

.bpc-post-title {
  margin: 0 0 12px 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #000;
}

.bpc-post-title a {
  color: #000 !important;
  text-decoration: none !important;
}

.bpc-post-title a:hover {
  color: #007cba;
  text-decoration: underline;
}

.bpc-post-excerpt {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
  margin-top: auto;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #007cba;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #007cba;
  color: white;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #007cba;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .bpc-post-content {
    padding: 16px;
  }

  .bpc-post-meta {
    font-size: 11px;
    gap: 8px;
  }

  .bpc-post-title {
    font-size: 16px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}
