/* Full width fix */
.tl-section.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc( 50% - 50vw );
    margin-right: calc( 50% - 50vw );
}

.tl-section {
    padding: 70px 0 90px;
    overflow: hidden;
    background: #f5f0ee;
}

.tl-header {
    text-align: center;
    padding: 0 24px 56px;
}

.tl-header h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #e85526;
    margin-bottom: 10px;
}

.tl-header h2 {
    font-size: 48px;
    line-height: 1.2;
}

.tl-header h2 span {
    color: #e85526;
}

.tl-outer {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    padding-bottom: 28px;
    scrollbar-width: thin;
    scrollbar-color: #e8552655 transparent;
    touch-action: pan-x;
}

.tl-outer::-webkit-scrollbar {
    height: 4px;
}

.tl-outer::-webkit-scrollbar-track {
    background: transparent;
}

.tl-outer::-webkit-scrollbar-thumb {
    background: #e8552255;
    border-radius: 2px;
}

.tl-outer.grabbing {
    cursor: grabbing;
}

.tl-track {
    display: flex;
    align-items: flex-start;
    padding: 0 60px;
    width: max-content;
    position: relative;
    gap: 0;
}

.tl-line-wrap {
    position: absolute;
    top: 195px;
    left: 60px;
    right: 60px;
    height: 2px;
    pointer-events: none;
    z-index: 0;
}

.tl-line {
    height: 100%;
    width: 100%;
    background: linear-gradient(to right,
        transparent,
        #e85526 5%,
        #e85526 95%,
        transparent);
}

.tl-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.tl-node:nth-child(odd) .tl-card  { order: -1; }
.tl-node:nth-child(odd) .tl-dot-col { order: 0; }
.tl-node:nth-child(odd) .tl-spacer  { order: 1; }

.tl-node:nth-child(even) .tl-card   { order: 1; }
.tl-node:nth-child(even) .tl-dot-col { order: 0; }
.tl-node:nth-child(even) .tl-spacer  { order: -1; }

.tl-card {
    width: 196px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f0e8e4;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.tl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 44px rgba(232, 85, 38, 0.15);
}

.tl-card::before {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    background: #e85526;
}

.tl-card-inner {
    padding: 16px 18px 20px;
}

.tl-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.tl-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fdf1ec;
    border: 1px solid #f5d5c8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
    color: #e85526;
}

.tl-year {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.tl-text {
    font-size: 13px;
    color: #666666;
    line-height: 1.65;
}

.tl-dot-col {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    margin: 0;
}

.tl-dot {
    width: 18px;
    height: 18px;
    background: #e85526;
    border-radius: 50%;
    border: 3px solid #f5f0ee;
    box-shadow: 0 0 0 3px rgba(232, 85, 38, 0.25),
                0 0 0 6px rgba(232, 85, 38, 0.08);
}

.tl-spacer {
    height: 148px;
}

.tl-empty {
    text-align: center;
    color: #aaa;
    padding: 40px;
    font-style: italic;
}

@media (max-width: 767px) {
    .tl-node { width: 190px; }
    .tl-card { width: 170px; }
    .tl-year { font-size: 22px; }
}

@media (max-width: 430px) {
    .tl-header h2 {
        font-size: 35px;
        line-height: 45px;
    }
}