.ctt-slider-wrap {
    overflow: hidden;
    cursor: grab;
    position: relative;
}
.ctt-slider-wrap:active { cursor: grabbing; }
.ctt-track-inner {
    display: flex;
    gap: 16px;
    align-items: stretch;
    will-change: transform;
}
.ctt-slide {
    flex-shrink: 0;
    box-sizing: border-box;
    /* width do JS set động theo breakpoint */
}
.ctt-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}
.ctt-card:hover { border-color: #0452A8; text-decoration: none; }
.ctt-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #0452A8;
    text-transform: uppercase;
}
.ctt-card-title {
       font-size: 24px;
    font-weight: 700;
    color: #333;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 120%;
}
.ctt-card:hover .ctt-card-title { color: #0452A8; }
.ctt-card-desc {
    font-size: 16px;
    color: #999;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ctt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
}
.ctt-tag {
       font-size: 12px;
    color: #999999;
    border-radius: 20px;
    padding: 3px 10px;
    white-space: nowrap;
    border: 1px solid #999999;
    background: #E4E4E4
}