/*==about-page-specific==*/
.about-stats-area {
    background: #F8F9FA;
    padding: 80px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    margin-top: 50px;
}

.about-stat-item {
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 20px;
}

.about-stat-item h2 {
    font-family: 'Eurostile';
    font-weight: 700;
    font-size: 56px;
    color: #F26C0B;
    letter-spacing: -2%;
}

.about-stat-item h4 {
    font-family: 'Eurostile';
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    margin-top: 8px;
}

.about-stat-item p {
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 8px;
    line-height: 22px;
}

.about-story-area {
    background: #ffffff;
    padding: 100px 0 60px 0;
}

.about-story-main {
    max-width: 1061px;
    margin: auto;
    display: grid;
    grid-template-columns: 50% auto;
    column-gap: 71px;
    align-items: center;
}

.about-story-img img {
    width: 100%;
    border-radius: 20px;
}

.about-story-cnt h2 {
    font-family: 'Eurostile';
    font-weight: 700;
    font-size: 56px;
    color: #000000;
    letter-spacing: -2%;
    line-height: 58px;
    margin-top: 15px;
}

.about-story-cnt p {
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 26px;
    letter-spacing: -1%;
    margin-top: 20px;
}

.about-timeline-area {
    background: #ffffff;
    padding-bottom: 130px;
}

.about-timeline-grid {
    max-width: 900px;
    margin: 50px auto 0 auto;
}

.about-timeline-item {
    display: grid;
    grid-template-columns: 120px auto;
    column-gap: 40px;
    padding: 30px 0;
    border-bottom: 1px solid #E5E5E5;
    align-items: start;
}

.about-timeline-item:last-child {
    border-bottom: none;
}

.about-timeline-year {
    font-family: 'Eurostile';
    font-weight: 700;
    font-size: 28px;
    color: #F26C0B;
}

.about-timeline-cnt h4 {
    font-family: 'Eurostile';
    font-weight: 500;
    font-size: 22px;
    color: #000000;
}

.about-timeline-cnt p {
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 26px;
    margin-top: 8px;
}

.about-team-area {
    background: #F8F9FA;
    padding: 80px 0;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 0;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.about-team-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5;
}

.about-team-info h4 {
    font-family: 'Eurostile';
    font-weight: 500;
    font-size: 18px;
    color: #000000;
}

.about-team-info span {
    font-weight: 500;
    font-size: 13px;
    color: #F26C0B;
}

.about-team-info p {
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 20px;
    margin-top: 4px;
}

.about-team-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #F26C0B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Eurostile';
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
}

.about-team-area + .articles-area {
    padding-top: 80px;
}

@media screen and (max-width: 991px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }

    .about-story-main {
        grid-template-columns: 100%;
        row-gap: 32px;
    }

    .about-story-cnt h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .about-stat-item h2 {
        font-size: 38px;
    }

    .about-team-grid {
        grid-template-columns: 100%;
        max-width: 100%;
    }

    .about-timeline-item {
        grid-template-columns: 80px auto;
        column-gap: 20px;
    }

    .about-timeline-year {
        font-size: 22px;
    }

    .about-stats-area,
    .about-story-area,
    .about-timeline-area,
    .about-team-area {
        padding: 40px 0;
    }
}
