/* =========================
   ACHIEVEMENTS PAGE
   ========================= */

.achievements-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 30px 80px;
}

.achievements-page > h1 {
    margin: 0 0 15px;
    font-size: 42px;
    font-weight: 700;
}

.page-intro {
    max-width: 700px;
    margin: 0 0 50px;
    color: #666;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================
   STATS
   ========================= */

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 15px;
    background: var(--black);
    border-radius: 12px;
    color: white;
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: var(--yellow);
}

.stat-label {
    margin-top: 8px;
    font-size: 14px;
    color: #ddd;
}


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

.achievements-section h2 {
    margin: 0 0 35px;
    font-size: 28px;
    font-weight: 600;
}

.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-left: 30px;
    border-left: 3px solid var(--yellow);
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--yellow);
}

.timeline-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    margin: 4px 0 8px;
    font-size: 21px;
    font-weight: 600;
    color: var(--black);
}

.timeline-content p {
    max-width: 700px;
    color: #555;
    line-height: 1.6;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 900px) {

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 650px) {

    .achievements-page {
        padding: 35px 18px 60px;
    }

    .achievements-page > h1 {
        font-size: 34px;
    }

    .stats-section {
        grid-template-columns: 1fr;
        margin-bottom: 50px;
    }

    .timeline {
        padding-left: 24px;
    }

    .timeline-item::before {
        left: -30px;
    }

}
