.th-e13100ee-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.th-e13100ee-viewport {
    overflow: hidden;
    flex-grow: 1;
    margin: 0 10px;
}

.th-e13100ee-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 20px;
}

.th-e13100ee-item {
    flex: 0 0 calc(25% - 15px); /* 4 items in a row */
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.th-e13100ee-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.th-e13100ee-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.th-e13100ee-arrow svg {
    fill: #333;
}

@media (max-width: 1024px) {
    .th-e13100ee-item { flex: 0 0 calc(33.333% - 13.33px); }
}

@media (max-width: 768px) {
    .th-e13100ee-item { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 480px) {
    .th-e13100ee-item { flex: 0 0 100%; }
}
