/* Brand Colors — Recycleme Solutions
   Primary Accent  : #EF6E1F (orange)
   Secondary Accent: #257730 (green)
   Card Background : #1D332B (dark overlay)
   Text            : #FFFFFF
   Dots inactive   : #C7C7C7
*/

.cc-carousel-310c0d88 {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 48px;
}
.cc-carousel-310c0d88 .swiper-slide {
    display: flex;
}

/* Card */
.cc-card {
    background: #1D332B;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* Image */
.cc-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Content */
.cc-card-content {
    padding: 20px;
    flex-grow: 1;
}
.cc-card-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: #FFFFFF;
    font-family: Poppins, sans-serif;
    font-weight: 600;
}
.cc-card-desc {
    margin: 0;
    line-height: 1.6;
    color: #C7C7C7;
    font-family: Poppins, sans-serif;
    font-size: 0.95rem;
}

/* Navigation Arrows */
.cc-carousel-310c0d88 .swiper-button-next,
.cc-carousel-310c0d88 .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: #EF6E1F;
    border-radius: 50%;
    color: #FFFFFF;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -24px;
    transition: background 0.25s ease;
}
.cc-carousel-310c0d88 .swiper-button-next:hover,
.cc-carousel-310c0d88 .swiper-button-prev:hover {
    background: #257730;
}
.cc-carousel-310c0d88 .swiper-button-next:after,
.cc-carousel-310c0d88 .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 700;
}

/* Pagination Dots */
.cc-carousel-310c0d88 .swiper-pagination {
    bottom: 0;
}
.cc-carousel-310c0d88 .swiper-pagination-bullet {
    background: #C7C7C7;
    opacity: 1;
    transition: background 0.25s ease, transform 0.25s ease;
}
.cc-carousel-310c0d88 .swiper-pagination-bullet-active {
    background: #EF6E1F;
    transform: scale(1.3);
}
.cc-carousel-310c0d88 .swiper-pagination-bullet:hover {
    background: #257730;
}
