.ttsttc {
    --ttsttc-card-bg: rgba(10,10,10,.84);
    --ttsttc-card-border: rgba(212,175,55,.35);
    --ttsttc-gap: 24px;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    color: #f1f1f1;
    overflow: hidden;
}

.ttsttc::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ttsttc > * {
    position: relative;
    z-index: 1;
}

.ttsttc-header {
    margin-bottom: 22px;
}

.ttsttc-eyebrow {
    color: #99ff00;
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ttsttc-heading {
    margin: 4px 0 8px;
    color: #d4af37;
    font-family: Orbitron, Arial, sans-serif;
    font-size: 28px;
    line-height: 1.08;
    text-transform: uppercase;
}

.ttsttc-intro {
    color: #c9c9c9;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.ttsttc-stage {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 0;
    height: 100%;
}

.ttsttc-viewport {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    touch-action: pan-y;
}

.ttsttc-track {
    display: flex;
    align-items: stretch;
    gap: var(--ttsttc-gap);
    transform: translate3d(0,0,0);
    transition-property: transform;
    transition-timing-function: cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}

.ttsttc-slide {
    flex: 0 0 calc((100% - (var(--ttsttc-visible) - 1) * var(--ttsttc-gap)) / var(--ttsttc-visible));
    min-width: 0;
    box-sizing: border-box;
}

.ttsttc-card {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 245px;
    padding: 22px;
    background: var(--ttsttc-card-bg);
    border: 1px solid var(--ttsttc-card-border);
    border-radius: 10px;
    overflow: hidden;
}

.ttsttc-slide.is-featured .ttsttc-card {
    border-color: rgba(153,255,0,.56);
    box-shadow: 0 0 24px rgba(153,255,0,.08);
}

.ttsttc-quote-mark {
    margin-bottom: 4px;
    font-family: Georgia, serif;
    font-size: 42px;
    line-height: .65;
}

.ttsttc-quote {
    flex: 1 1 auto;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

.ttsttc-quote p {
    margin: 0;
}

.ttsttc-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 16px 0 14px;
}

.ttsttc-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.ttsttc-avatar {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(212,175,55,.36);
}

.ttsttc-avatar-initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(212,175,55,.22), rgba(5,5,5,.92));
    color: #f1f1f1;
    font-family: Orbitron, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.ttsttc-person-copy {
    min-width: 0;
}

.ttsttc-name {
    color: #f1f1f1;
    font-family: Orbitron, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ttsttc-role,
.ttsttc-project {
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.25;
}

.ttsttc-role { color: #c4c4c4; }
.ttsttc-project { color: #d4af37; }

.ttsttc-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(153,255,0,.5);
    border-radius: 50%;
    color: #99ff00;
    background: rgba(5,5,5,.76);
    cursor: pointer;
    transition: color .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
}

.ttsttc-arrow:hover,
.ttsttc-arrow:focus-visible {
    color: #050505;
    background: #99ff00;
    outline: none;
}

.ttsttc-arrow[disabled] {
    opacity: .28;
    cursor: default;
}

.ttsttc-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
}

.ttsttc-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(212,175,55,.30);
    cursor: pointer;
}

.ttsttc-dot.is-active {
    width: 18px;
    border-radius: 20px;
    background: #99ff00;
}

.ttsttc-progress {
    height: 2px;
    margin-top: 13px;
    overflow: hidden;
    background: rgba(212,175,55,.16);
}

.ttsttc-progress > span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #99ff00, #d4af37);
    transition: width .2s ease;
}

.ttsttc-height-scroll .ttsttc-card {
    overflow-y: auto;
}

.ttsttc-height-clip .ttsttc-card {
    overflow: hidden;
}

.ttsttc-height-stretch .ttsttc-card {
    overflow: hidden;
}

@media (max-width: 767px) {
    .ttsttc-stage {
        grid-template-columns: 34px minmax(0, 1fr) 34px;
        gap: 6px;
    }

    .ttsttc-card {
        min-height: 0;
        padding: 18px 16px;
    }

    .ttsttc-heading {
        font-size: 22px;
    }
}
