.tl-awards-widget {
    padding: 0 0 40px 0;
    font-family: inherit;
	 font-family: "Plus Jakarta Sans", sans-serif;
}

.tl-awards-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
	 font-family: "Plus Jakarta Sans", sans-serif;
}

.tl-awards-container {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.tl-awards-track {
    display: flex;
    flex: 1;
    position: relative;
    padding: 0;
}

/* Continuous horizontal line running through all dots */
.tl-awards-track::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 44px; /* aligns with vertical center of dots */
    height: 1px;
    background: #333;
    z-index: 0;
}

.tl-awards-item {
    flex: 1;
    position: relative;
    z-index: 1;
    padding-right: 30px;
    min-width: 0;
}

.tl-awards-year {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 9px;
    letter-spacing: 0.02em;
	 font-family: "Plus Jakarta Sans", sans-serif;
}

.tl-awards-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid;
    background: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.tl-awards-desc {
    font-size: 14px;
    line-height: 1.6;
    max-width: 200px;
    color: #666;
}

/* Side label - outlined italic text */
.tl-awards-label {
    font-size: 64px;
    font-weight: 700;
    font-style: italic;
    white-space: nowrap;
    -webkit-text-stroke: 1px currentColor;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
    align-self: center;
    line-height: 1;
    margin-left: -10px;
    position: relative;
    z-index: 1;
	 font-family: "Plus Jakarta Sans", sans-serif;
}

/* Explore button */
.tl-awards-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
     font-family: "Plus Jakarta Sans", sans-serif; 
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tl-awards-explore:hover {
    background: var(--tl-btn-bg, #333);
    color: #fff !important;
    border-color: var(--tl-btn-bg, #333);
}

.tl-awards-explore svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.tl-awards-explore:hover svg {
    transform: translateX(4px);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .tl-awards-container {
        flex-direction: column;
    }

    .tl-awards-track {
        flex-direction: column;
        gap: 28px;
        padding-left: 20px;
    }

    /* Vertical line for mobile */
    .tl-awards-track::before {
        top: 0;
        bottom: 0;
        left: 4px;
        right: auto;
        width: 1px;
        height: auto;
    }

    .tl-awards-item {
        display: flex;
        gap: 16px;
        padding-left: 20px;
        padding-right: 0;
    }

    .tl-awards-dot {
        position: absolute;
        left: -20px;
        top: 4px;
        margin-bottom: 0;
    }

    .tl-awards-year {
        min-width: 50px;
        margin-bottom: 0;
		font-size: 20px;
		line-height:30px;
		 font-family: "Plus Jakarta Sans", sans-serif;
		font-weight:700;
    }

    .tl-awards-desc {
        max-width: none;
		font-size: 20px;
		line-height:24px;
		 font-family: "Plus Jakarta Sans", sans-serif;
    }

    .tl-awards-label {
        font-size: 48px;
        align-self: flex-end;
        margin-left: 0;
        margin-top: 20px;
    }

    .tl-awards-title {
        font-size: 24px;
		line-height:32px;
		 font-family: "Plus Jakarta Sans", sans-serif;
    }
}