
.about-detail {
    grid-template-columns: 1fr;
    align-items: flex-start;
    margin-bottom: 4rem;
}

@media screen and (min-width: 769px) {
    .about-detail {
        grid-template-columns: 350px 1fr;
    }
}

.about-detail-img .img-placeholder {
    width: 100%;
    height: 350px;
}

.about-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-detail-content h3:first-child {
    margin-top: 0;
}

.about-detail-content p {
    margin-bottom: 1rem;
}

.values-list {
    margin-top: 1rem;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.values-list li i {
    color: var(--primary-color);
}

/* 
   -------------------------------------------------
   TIMELINE
   -------------------------------------------------
*/
.timeline-container {
    max-width: 600px;
    margin: 3rem auto 0;
    position: relative;
    padding-left: 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: -2.4rem;
    width: 14px;
    height: 14px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.timeline-date {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: var(--title-font);
}

.timeline-content p {
    color: var(--text-muted);
}

