/* Post Carousel Styles */
.post-carousel-wrapper {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.post-carousel-slider {
    width: 100%;
    position: relative;
}

.post-carousel-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.post-carousel-image {
    position: relative;
    overflow: hidden;
}

.post-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-carousel-item:hover .post-carousel-image img {
    transform: scale(1.05);
}

.post-carousel-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.post-carousel-content .post-carousel-title{
	font-size: initial;
}
.post-carousel-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #666;
}

.post-carousel-image .post-carousel-meta {
	position: absolute;
  left: 20px;
  bottom: 10px;
}
.post-category {
    background: #0073e6;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.post-date {
    color: #888;
}

.post-carousel-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.post-carousel-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-carousel-title a:hover {
    color: #0073e6;
}

.post-carousel-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.post-carousel-read-more-wrapper {
    margin-top: auto;
}

.post-carousel-read-more {
    display: inline-block;
    padding: 8px 20px;
    background: #0073e6;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
	font-size: 18px;
}

.post-carousel-read-more:hover {
    background: transparent;
    color: #0073e6;
}

/* Custom Navigation Arrows */
.post-carousel-arrow {
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #333;
    width: 50px;
    height: 50px;
}

.post-carousel-arrow:hover {
    color: #fff;
    border-color: #0073e6;
}

.post-carousel-prev {
    left: 10px;
}

.post-carousel-next {
    right: 10px;
}

.post-carousel-arrow i,
.post-carousel-arrow svg {
    transition: transform 0.3s ease;
    font-size: 20px;
}

.post-carousel-arrow:hover i,
.post-carousel-arrow:hover svg {
    transform: scale(1.1);
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 20px;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 5px;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background: #0073e6;
    transform: scale(1.2);
}
.post-slide-arrow {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 5px;
}
.post-slide-arrow .post-carousel-arrow {
	position: relative;
  left: 0;
  right: 0;
  top: 0;
	margin: 0;
}
/* Responsive Design */
@media (max-width: 767px) {
    .post-carousel-content {
        padding: 15px;
    }
    
    .post-carousel-title {
        font-size: 16px;
    }
    
    .post-carousel-excerpt {
        font-size: 14px;
    }
    
    .post-carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .post-carousel-arrow i,
    .post-carousel-arrow svg {
        font-size: 16px;
    }
	.custom-post-carousel .swiper-pagination{
		display: flex;
	}
}

@media (max-width: 480px) {
    
    .post-carousel-content {
        padding: 12px;
    }
    
    .post-carousel-arrow {
        display: none;
    }
}