/* Team Carousel Styles */
.rawcut-team-carousel-wrapper {
    padding: 60px 0;
    background: #f5f5f5;
}

.team-carousel-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.rawcut-team-carousel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.team-member-slide {
    padding: 0 15px;
    transition: all 0.3s ease;
}

.team-member-card {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.team-member-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 3/4;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 30px 20px 20px;
    color: white;
    text-align: center;
}

.team-member-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: white;
}

.team-member-position {
    font-size: 14px;
    margin: 0 0 15px 0;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.team-member-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 16px;
}

.team-member-social a:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Slick Carousel Customization */
.rawcut-team-carousel .slick-slide {
    opacity: 0.4;
    transform: scale(0.85);
    transition: all 0.4s ease;
}

.rawcut-team-carousel .slick-slide.slick-center,
.rawcut-team-carousel .slick-slide.slick-active {
    opacity: 1;
    transform: scale(1);
}

.rawcut-team-carousel .slick-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.rawcut-team-carousel .slick-arrow:before {
    color: #333;
    font-size: 24px;
    opacity: 1;
}

.rawcut-team-carousel .slick-arrow:hover {
    background: #333;
    transform: scale(1.1);
}

.rawcut-team-carousel .slick-arrow:hover:before {
    color: white;
}

.rawcut-team-carousel .slick-prev {
    left: -25px;
}

.rawcut-team-carousel .slick-next {
    right: -25px;
}

/* Responsive */
@media (max-width: 1200px) {
    .rawcut-team-carousel {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .rawcut-team-carousel-wrapper {
        padding: 40px 0;
    }
    
    .team-carousel-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .rawcut-team-carousel {
        padding: 0 50px;
    }
    
    .rawcut-team-carousel .slick-slide {
        opacity: 0.6;
        transform: scale(0.9);
    }
    
    .team-member-name {
        font-size: 18px;
    }
    
    .team-member-position {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .rawcut-team-carousel {
        padding: 0 40px;
    }
    
    .rawcut-team-carousel .slick-arrow {
        width: 40px;
        height: 40px;
    }
    
    .rawcut-team-carousel .slick-arrow:before {
        font-size: 20px;
    }
}
