.carousel-wrapper {
    background: white;
    border-radius: 20px;
/*     padding: 40px 0; */
/*     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
/*     overflow: hidden; */
}

.carousel-container {
/*     overflow: hidden; */
    position: relative;
    cursor: grab;
    user-select: none;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 40px;
    will-change: transform;
}

.logo-item {
    flex-shrink: 0;
    width: 242px;
    height: 160px;
		box-shadow: 0px 0px 20px 0px #0000001A;
	border-radius: 8px;
}

.logo {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
/*     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .logo img {
    max-height: 48px;
} */

.logo span {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.instruction {
    text-align: center;
    color: white;
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .carousel-wrapper {
        padding: 30px 0;
    }
    
    .logo-item {
        width: 150px;
        height: 90px;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .carousel-wrapper {
        padding: 20px 0;
    }
    
    .logo-item {
        width: 120px;
        height: 75px;
    }
    
    .logo span {
        font-size: 1rem;
    }
}
