main.wrapper {
    margin-bottom: 140px;
    gap: 20px;
    * {
        line-height: 1.3;
        color: #252525;
    }
    h1 {
        margin-bottom: 30px;
        color: #000;
        line-height: 100%;
        span {
            color: #000;
            line-height: 100%;
        }
    }
    h2 {
        font-size: 22px;
        font-weight: 400;
    }
    p {
        position: relative;
        padding-left: 23px;
        &::before {
            content: '-';
            position: absolute;
            left: 0;
            top: 0;
            display: block;
            width: 23px;
            flex-shrink: 0;
            font-size: 18px;
            line-height: 20px;
            text-align: center;
        }
    }
    ul {
        margin-left: 25px;
    }
    a {
        text-decoration-line: underline;
    }
}
@media screen and (max-width: 768px) {
    main.wrapper {
        h1 {
            margin-bottom: 10px;
            font-size: 24px;
            hyphens: auto;
            word-break: break-word;
            span {
                white-space: unset !important;
            }
        }
        h2 {
            font-size: 22px;
        }
    }
}
@media (hover: hover) {
    main a:hover {
        color: var(--primary);
    }
}