.tc-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    user-select: none;
}

.tc-arrow {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color .2s, opacity .2s;
    outline: none;
}

.tc-track {
    position: relative;
    flex: 1;
    overflow: hidden;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-slide {
    position: absolute;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
    text-decoration: none;
}

.tc-slide--active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

a.tc-slide {
    text-decoration: none;
}

a.tc-slide:hover {
    text-decoration: underline;
}
