.tc-0dcb598b-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.tc-0dcb598b-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    width: 100%;
}
.tc-0dcb598b-track::-webkit-scrollbar {
    display: none;
}

.tc-0dcb598b-item {
    flex: 0 0 300px;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
}

.tc-0dcb598b-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tc-0dcb598b-content {
    padding: 20px;
}

.tc-0dcb598b-name {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: bold;
}

.tc-0dcb598b-title {
    color: #666;
    font-size: 14px;
}

.tc-0dcb598b-nav {
    background: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: opacity 0.3s;
}
.tc-0dcb598b-nav:hover {
    opacity: 1;
}

.tc-0dcb598b-prev { left: -20px; }
.tc-0dcb598b-next { right: -20px; }

@media (max-width: 768px) {
    .tc-0dcb598b-item { flex: 0 0 80%; }
    .tc-0dcb598b-prev { left: 0; }
    .tc-0dcb598b-next { right: 0; }
}