.td-lab-carousel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.td-lab-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
    padding: 0 1rem;
}

.td-lab-slide {
    flex: 0 0 100%;
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.td-lab-slide img {
    max-width: 150px;
    height: auto;
    max-height:100px;
    margin: 0 auto 1rem;
    display: block;
}

.td-lab-slide h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #333;
}

.td-lab-ville {
    font-size: 0.95rem;
    color: #666;
    margin: 0.5rem 0 0;
}

.td-lab-prev,
.td-lab-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.td-lab-prev:hover:not(:disabled),
.td-lab-next:hover:not(:disabled) {
    background: rgba(0,0,0,0.8);
}

.td-lab-prev:disabled,
.td-lab-next:disabled {
    cursor: not-allowed;
}

.td-lab-prev {
    left: 0.5rem;
}

.td-lab-next {
    right: 0.5rem;
}

@media (min-width: 1000px) {
    .td-lab-slide {
        flex: 0 0 calc(33.333% - 1rem);
    }
    
    .td-lab-slide h3 {
        font-size: 1.4rem;
    }
    
    .td-lab-slide img {
        max-width: 180px;
    }
    
    .td-lab-prev,
    .td-lab-next {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}