.about-header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    padding: 14px 20px;
    box-shadow: 0 16px 24px rgb(var(--white-rgb) / 100%);
    background: linear-gradient(
        180deg,
        var(--background-primary),
        rgb(var(--white-rgb) / 90%)
    );
}

.about-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1;
    font-size: 24px;
}

.about-logo:hover {
    text-decoration: none;
}

.about-logo svg {
    display: block;
    color: var(--text-primary);
}

.about-page {
    display: block;
    padding: 42px 0 96px;
}

.about-article {
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 0 24px;
}

.about-article h1 {
    margin: 0 0 26px;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: 0;
}

.about-article h2 {
    margin: 34px 0 12px;
    padding-top: 0;
    font-size: 18px;
    line-height: 1.25;
}

.about-article p,
.about-article li {
    font-size: 16px;
    line-height: 1.75;
}

.about-article p {
    margin: 0 0 18px;
}

.about-article p + ul {
    margin: -12px 0 18px;
}

.about-article ul,
.about-article ol {
    margin: 0 0 24px;
    padding-left: 28px;
}

.about-article strong {
    font-weight: 600;
}

.about-article hr {
    margin: 42px 0 0;
    border: 0;
    border-top: 1px solid var(--border-soft);
}

@media (min-width: 1024px) {
    .about-header {
        box-shadow: none;
        background: transparent;
    }
}
