.tm-sponsor-carousel {
    margin: auto;
    width: 100%; /* Ensure the carousel takes full width of its container */
    max-width: 1200px; /* Optional: Limit max width for larger screens */
}

.tm-sponsor-carousel .carousel-logo {
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease;
}

.tm-sponsor-carousel .carousel-logo img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.tm-sponsor-carousel .carousel-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}