.about-page-block {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-top: clamp(30px, 4vw, 60px);
    padding-bottom: 100px;
}
.about-page-block.has-achives {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 800px);
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
}
.about-page-block .achives {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 150px;
}
.about-page-block .achive-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    gap: 8px;
    background: white;
    border-left: 4px solid var(--sec);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(6, 41, 57, 0.08);
}
.about-page-block .achive-value {
    display: flex;
    flex-direction: column;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 700;
    line-height: 110%;
    color: var(--main);
    text-align: left;
}
.about-page-block .achive-value span {
    font-size: 28px;
    font-weight: 700;
    line-height: 120%;
    text-align: left;
}
.about-page-block .achive-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
    color: #5b6268;
}
.about-page-block .text-holder  {
    max-width: 800px;
    margin: 0;
    gap: 0;
}
.about-page-block .text-holder p {
    margin: 0;
    color: #4f555b;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    text-align: left;
}
.about-page-block .text-holder p + p {
    margin-top: 10px;
}
.about-page-block .text-holder p:first-of-type {
    color: var(--main);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 600;
    line-height: 145%;
    margin-bottom: 14px;
}
.about-page-block .text-holder a {
    color: var(--main);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.about-page-block .text-holder strong {
    color: var(--main);
}
.about-page-block .text-holder ul,
.about-page-block .text-holder ol {
    margin: 6px 0 14px;
    padding-left: 28px;
    gap: 0;
}
.about-page-block .text-holder li {
    margin-bottom: 6px;
    color: #4f555b;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    list-style-position: outside;
    padding-left: 0;
    position: static;
}
.about-page-block .text-holder ul li {
    list-style-type: disc;
}
.about-page-block .text-holder li::before {
    display: none;
}

@media (max-width: 996px) {
    .about-page-block.has-achives {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .about-page-block .achives {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        position: static;
        width: 100%;
    }
    .about-page-block .text-holder {
        max-width: 760px;
    }
    .about-page-block .achive-value {
        font-size: 32px;
    }
    .about-page-block .achive-value span {
        font-size: 18px;
    }
    .about-page-block {
        padding-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .about-page-block .achives {
        display: flex;
        flex-direction: column;
    }
    .about-page-block .achive-item {
        padding: 18px;
    }
    .about-page-block {
        padding-bottom: 60px;
    }
    .about-page-block .text-holder p {
        font-size: 16px;
        line-height: 155%;
    }
    .about-page-block .text-holder p:first-of-type {
        font-size: 20px;
    }
    .about-page-block .text-holder li {
        font-size: 16px;
        line-height: 155%;
    }
}

@media (max-width: 600px) {
    .about-page-block {
        padding-bottom: 40px
    }
}
