.eafe-post-carousel {
  position: relative;
  overflow: hidden;
}

.eafe-post-carousel .swiper-wrapper {
  display: flex;
  transition-timing-function: linear;
}

.eafe-post-carousel .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
}

/* Post slide styling */
.eafe-post-slide,
.eafe-post-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Thumbnail container */
.eafe-post-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

.eafe-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Default thumbnail styling */
.eafe-post-thumbnail .eafe-default-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 48px;
}

.eafe-post-thumbnail .eafe-default-thumbnail::before {
  content: "\1F4F7"; /* Camera emoji */
  font-size: 48px;
}

/* Post content */
.eafe-post-content {
  padding: 20px;
}

.eafe-post-title {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.eafe-post-title a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.eafe-post-title a:hover {
  color: #667eea;
}

.eafe-post-excerpt {
  margin: 10px 0;
}

.eafe-post-excerpt p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.eafe-post-meta {
  margin-top: 15px;
  font-size: 12px;
  color: #999;
  display: flex;
  justify-content: space-between;
}

/* Navigation arrows */
.eafe-carousel-arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.eafe-carousel-arrow {
  cursor: pointer;
  font-size: 24px;
  padding: 10px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.eafe-carousel-arrow:hover {
  background: rgba(255,255,255,1);
  transform: scale(1.1);
}

.eafe-carousel-arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
  color: #667eea;
}

/* Pagination dots */
.eafe-carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.eafe-carousel-dots .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
  background: #667eea;
}

.eafe-carousel-dots .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

/* Hover Effects */
.eafe-hover-zoom .eafe-post-thumbnail img {
  transition: transform 0.3s ease;
}

.eafe-hover-zoom:hover .eafe-post-thumbnail img {
  transform: scale(1.1);
}

.eafe-hover-fade .eafe-post-thumbnail {
  position: relative;
}

.eafe-hover-fade .eafe-post-thumbnail:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.eafe-hover-fade:hover .eafe-post-thumbnail:after {
  opacity: 1;
}

.eafe-hover-shadow {
  transition: box-shadow 0.3s ease;
}

.eafe-hover-shadow:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  transform: translateY(-5px);
}

/* No posts found */
.eafe-no-posts-found,
.eafe-no-posts,
.eafe-error {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  color: #666;
}

.eafe-loading-posts {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

/* Responsive design */
@media (max-width: 768px) {
  .eafe-post-carousel .eafe-carousel-arrows {
    display: none;
  }

  .eafe-post-thumbnail {
    height: 150px;
  }

  .eafe-post-content {
    padding: 15px;
  }

  .eafe-post-title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .eafe-post-thumbnail {
    height: 120px;
  }

  .eafe-post-content {
    padding: 12px;
  }

  .eafe-post-title {
    font-size: 14px;
  }

  .eafe-post-excerpt p {
    font-size: 12px;
  }
}