/* Custom styles for the carousel section */
.coverflow-carousel {
   padding-top: 50px;
   padding-bottom: 50px;
}
.coverflow-carousel .swiper-slide {
   background-position: center;
   background-size: cover;
   width: 320px;
   height: 450px;
   transition: transform 0.4s ease-in-out;
}
.coverflow-carousel .swiper-slide:hover {
   transform: scale(1.05);
}
.slide-card {
   background: rgba(0, 0, 0, 0.4);
   border-radius: 16px;
   overflow: hidden;
   height: 100%;
   display: flex;
   flex-direction: column;
   border: 1px solid rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(12px);
   box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.slide-card-content {
   padding: 1.5rem;
   flex-grow: 1;
   display: flex;
   flex-direction: column;
}
.slide-card-content h3 {
   font-size: 1.25rem;
   font-weight: 600;
   color: #e5e7eb;
   margin-bottom: 0.5rem;
}
.slide-card-content p {
   font-size: 0.9rem;
   color: #9ca3af;
   line-height: 1.6;
   flex-grow: 1;
}
.slide-card-content .read-more {
    color: #38bdf8;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    display: inline-block;
}
.coverflow-carousel .swiper-button-next,
.coverflow-carousel .swiper-button-prev {
   color: #fff;
   top: 50%;
   transform: translateY(-50%);
}
.coverflow-carousel .swiper-pagination-bullets {
   bottom: 10px;
}
.coverflow-carousel .swiper-pagination-bullet {
   background: rgba(255, 255, 255, 0.5);
   opacity: 1;
}
.coverflow-carousel .swiper-pagination-bullet-active {
   background: #38bdf8;
}