/**
 * Раздел «О компании» (/about/*).
 * Подключается после styles.min.css — селекторы с .about-page .content
 * перебивают одноимённые правила из основного бандла по специфичности и порядку.
 * Текст чуть крупнее базового (18px — как .about__col на главной), заголовки — Raleway из .h*.
 */

.about-page {
    --about-text-size: 18px;
}

.about-page .content {
    font-family: var(--base-font);
    font-size: var(--about-text-size);
    font-weight: 400;
    line-height: 1.6;
}

.about-page .content h1,
.about-page .content h2,
.about-page .content h3,
.about-page .content h4,
.about-page .content h5,
.about-page .content h6,
.about-page .content .h1,
.about-page .content .h2,
.about-page .content .h3,
.about-page .content .h4,
.about-page .content .h5,
.about-page .content .h6 {
    font-family: var(--raleway-font);
    font-weight: 600;
}

.about-page .content [style*="font-family"],
.about-page .content font {
    font-family: inherit !important;
}

.about-page .content p,
.about-page .content li,
.about-page .content .text-base,
.about-page .content .list-base li,
.about-page .content .company__col,
.about-page .content .unique__col,
.about-page .content .s-goal p,
.about-page .content .priorities,
.about-page .content .priorities p,
.about-page .content .approach__item p,
.about-page .content .approach__item span,
.about-page .content .excellence__body,
.about-page .content .cycle__body,
.about-page .content .cycle__item,
.about-page .content .intelligence__item,
.about-page .content .technology,
.about-page .content .technology p,
.about-page .content .technology li,
.about-page .content .orderPage__text {
    font-family: var(--base-font);
    font-size: var(--about-text-size);
    font-weight: 400;
    line-height: 1.6;
}

.about-page .content .company__col p:not(:last-child),
.about-page .content .unique__col p:not(:last-child),
.about-page .content .s-goal p:not(:last-child) {
    margin-bottom: 24px;
}

@media screen and (max-width: 481px) {
    .about-page .content .company__col p:not(:last-child),
    .about-page .content .unique__col p:not(:last-child),
    .about-page .content .s-goal p:not(:last-child) {
        margin-bottom: 16px;
    }
}
