.cjt-wrapper {
    position: relative;
    max-width: 1400px;
    margin: auto;
    overflow: hidden;
    padding: 60px 0;
}

.cjt-line {
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    height: 2px;
    background: #dbe5ec;
}

.cjt-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation-name: scroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.cjt-wrapper:hover .cjt-track {
    animation-play-state: paused;
}

.cjt-item {
    width: 320px;
    flex-shrink: 0;
}

.cjt-year-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.cjt-dot{
    width:14px;
    height:14px;
    border-radius:50%;
    margin-right:15px;
    background:#ffffff;
}

/*.cjt-dot.green { background: #2ECC71; }*/
/*.cjt-dot.blue  { background: #2980B9; }*/



.cjt-year {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

/*.cjt-card {*/
/*    background: #ffffff;*/
/*    padding: 24px;*/
/*    border-radius: 14px;*/
/*    box-shadow: 0 10px 25px rgba(0,0,0,0.06);*/
/*    border-left: 4px solid;*/
/*    transition: 0.3s ease;*/
/*    height: 220px;*/
/*}*/


.cjt-card{
    background:#ffffff;
    padding:28px;
    border-radius:16px;
    box-shadow:0 8px 24px rgba(0,0,0,0.05);
    border:1px solid #e8eef5;
    border-left:4px solid #2980B9;
    height:150px;
    transition:0.3s ease;
}

.cjt-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 28px rgba(0,0,0,0.08);
}


/*.cjt-card.green { border-color: #2ECC71; }*/
/*.cjt-card.blue  { border-color: #2980B9; }*/

.cjt-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
}

.cjt-card p {
    font-size: 16px;
    color: #546E7A;
    line-height: 1.6;
}

.cjt-badge {
    display: inline-block;
    margin-top: 15px;
    font-size: 12px;
    padding: 6px 12px;
    background: #eafaf1;
    color: #27ae60;
    border-radius: 6px;
    font-weight: 500;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
