/* ABOUT SECTION STYLES */

#about {
    background-color: #f4f4f4;
    color: #1f2937;
    padding-top: 10rem;
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

#about .about-header {
    display: flex;
    gap: clamp(2rem, 3vw, 4rem);
    align-items: flex-start;
    margin-bottom: 4rem;
}

#about .about-left {
    flex: 1;
    min-width: 0;
}

#about .about-right {
    flex: 1;
    min-width: 0;
}

#about .about-eyebrow {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6em;
    color: #f64900;
    margin-bottom: 1.5rem;
}

#about .about-title {
    font-size: clamp(2.2rem, 3.5vw, 4.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

#about .about-copy {
    font-size: clamp(1rem, 1.1vw, 1.25rem);
    line-height: 1.6;
    opacity: 0.8;
}

#about .about-copy p {
    margin-bottom: 1.5rem;
}

/* Timeline */
#about .about-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#about .timeline-item {
    position: relative;
    padding-left: 3rem;
}

#about .timeline-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: #f64900;
    border-radius: 50%;
    border: 3px solid #f4f4f4;
}

#about .timeline-item::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 1.5rem;
    width: 0;
    height: 1.5rem;
    border-left: 2px solid #f64900;
}

#about .timeline-item:last-child::after {
    display: none;
}

#about .timeline-year {
    font-size: 1.5rem;
    font-weight: 900;
    color: #f64900;
    margin-bottom: 0.5rem;
}

#about .timeline-text {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.7;
}

@media (max-width: 768px), (orientation: portrait) and (max-width: 1024px) {
    #about {
        padding-top: 4rem;
        padding-bottom: 2rem;
        padding-inline: var(--hero-align-x, clamp(0.9rem, 3.4vw, 4.5rem));
    }

    #about > div:nth-child(2) {
        gap: 1.5rem;
    }

    #about > div:nth-child(2) > div:first-child > div:first-child {
        margin-bottom: 1rem;
    }

    #about > div:nth-child(2) > div:first-child h2 {
        letter-spacing: 0.34em;
        line-height: 1.4;
    }

    #about > div:nth-child(2) > div:first-child h3 {
        font-size: clamp(2rem, 12vw, 2.9rem);
        line-height: 0.95;
        margin-bottom: 1.25rem;
    }

    #about > div:nth-child(2) > div:first-child > div:last-child {
        grid-template-columns: 1fr;
        gap: 1rem;
        font-size: 0.95rem;
    }

    #about > div:nth-child(2) > div:first-child > div:last-child .space-y-6 {
        gap: 0.8rem;
    }

    #about > div:nth-child(2) > div:first-child > div:last-child .pt-4 {
        padding-top: 0.35rem;
    }

    #about > div:nth-child(2) > div:last-child > div:first-child {
        height: 360px;
        gap: 0.5rem;
    }

    #about > div:nth-child(2) > div:last-child > div:first-child > div:nth-child(1) p,
    #about > div:nth-child(2) > div:last-child > div:first-child > div:nth-child(2) p,
    #about > div:nth-child(2) > div:last-child > div:first-child > div:nth-child(3) p {
        font-size: 0.42rem;
        letter-spacing: 0.22em;
        padding-inline: 0.35rem;
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
    }

    #about > div:nth-child(2) > div:last-child > div:first-child > div:nth-child(4) {
        display: none;
    }

    #about > #logo-track-wrapper {
        margin-top: 1.25rem;
    }

    #about .about-timeline {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    #about > div:nth-child(2) > div:first-child h3 {
        font-size: clamp(1.8rem, 11vw, 2.4rem);
    }

    #about > div:nth-child(2) > div:last-child > div:first-child {
        height: 300px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }

}

@media (min-width: 769px) and (max-width: 1366px) and (orientation: landscape) {
    #about .about-grid-img {
        filter: none !important;
    }
}

