/* =========================================
   NEWS DETAILS HERO TITLE
========================================= */

.news-detail-title{
    font-size: clamp(2.2rem, 6vw, 5rem);
    line-height: 1.05;
    max-width: 1000px;
    margin-inline: auto;
    word-break: break-word;
}
/* =========================================
   NEWS DETAILS HERO TITLE
========================================= */

.news-detail-title{
    font-size: clamp(2.2rem, 6vw, 5rem);
    line-height: 1.05;
    max-width: 1000px;
    margin-inline: auto;
    word-break: break-word;
}

@media (max-width: 768px){

    .news-detail-title{
        font-size: clamp(2rem, 9vw, 3.5rem);
        line-height: 1.1;
    }

}


/* =========================================
   ABOUT TIMELINE
========================================= */

.timeline-modern {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 90px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 142, 128, 0.15);
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-year {
    min-width: 90px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -17px;
    top: 14px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
}

.timeline-content {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    flex: 1;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
}

@media (max-width: 768px) {

    .timeline-modern::before {
        left: 18px;
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-year {
        min-width: 36px;
        font-size: 1.2rem;
    }

    .timeline-year::after {
        right: -12px;
        top: 7px;
    }

    .timeline-content {
        padding: 1rem;
    }
}