.codleade-tiktok-section {
    padding: 4rem 0;
    background: #fff;
    overflow: hidden;
}

.codleade-tiktok-header {
    text-align: center;
    margin-bottom: 3rem;
}

.codleade-tiktok-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    color: #000;
}

.codleade-tiktok-title .highlight {
    color: hsl(var(--primary));
}

.codleade-tiktok-underline {
    width: 60px;
    height: 4px;
    background: hsl(var(--primary));
    margin: 10px auto 0;
}

.codleade-tiktok-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

}

.codleade-t-shadow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 20;
    pointer-events: none;
}

.shadow-left {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.shadow-right {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.codleade-tiktok-track {
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
    scroll-behavior: smooth;
}

.codleade-tiktok-track::-webkit-scrollbar {
    display: none;
}

.codleade-tiktok-item {
    flex: 0 0 240px;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #000;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.codleade-video-card {
    width: 100%;
    height: 100%;
    position: relative;
}

.codleade-t-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .codleade-tiktok-section {
        padding: 2.5rem 0;
    }

    .codleade-tiktok-title {
        font-size: 1.5rem;
    }

    .codleade-tiktok-item {
        flex: 0 0 180px;
    }
}