/* Timeline Section */
.tl-section {
    margin-bottom: 24px;
}

.tl-section:last-child {
    margin-bottom: 0;
}

.tl-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.tl-section-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #f97316;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-section-icon svg {
    width: 16px;
    height: 16px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tl-section-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    letter-spacing: 0.5px;
    padding-bottom: 4px;
    border-bottom: 2px solid #f97316;
    text-align: left !important;
}

/* Bullet List */
.tl-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tl-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tl-bullet {
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: #f97316;
    margin-top: 6px;
}

.tl-list-item p {
    margin: 0;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
    text-align: left !important;
}

/* Achievement Cards */
.tl-achievement-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tl-achievement-card {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-left: 3px solid #f97316;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tl-achievement-emoji {
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
}

.tl-achievement-card h4 {
    margin: 0 0 2px;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}

.tl-achievement-card p {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}

.tl-achievement-card p,
.tl-achievement-card h4 {
    text-align: left !important;
    /* ← add this */
}

/* Tech Stack Tags */
.tl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start !important;
}

.tl-tag {
    font-size: 11px;
    font-weight: 500;
    color: #f97316;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 20px;
    padding: 3px 10px;
}