        :root {
            --page-bg: #f3f5f7;
            --document-bg: #ffffff;
            --text: #222222;
            --muted: #60656c;
            --border: #dfe3e8;
            --link: #1558a6;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--page-bg);
            color: var(--text);
            font-family: Arial, Helvetica, sans-serif;
            font-size: 16px;
            line-height: 1.55;
        }

        .document {
            width: min(100% - 32px, 920px);
            margin: 32px auto;
            padding: 58px 68px;
            background: var(--document-bg);
            border: 1px solid var(--border);
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
        }

        h1 {
            margin: 0 0 34px;
            font-size: 1.35rem;
            line-height: 1.3;
            text-align: center;
        }

        p {
            margin: 0 0 14px;
            text-align: justify;
        }

        strong {
            font-weight: 700;
        }

        a {
            color: var(--link);
            overflow-wrap: anywhere;
            text-decoration-thickness: 1px;
            text-underline-offset: 2px;
        }

        ol,
        ul {
            margin: 0 0 16px;
            padding-left: 2.1rem;
        }

        li {
            margin: 0 0 10px;
            padding-left: .25rem;
            text-align: justify;
        }

        li>p {
            margin-bottom: 0;
        }

        /* Los listados de una sola línea funcionan como títulos numerados del documento. */
        .document>ol>li:only-child>p>strong {
            display: inline-block;
            margin-top: 5px;
        }

        .updated {
            margin: -18px 0 28px;
            color: var(--muted);
            font-size: .9rem;
            text-align: center;
        }

        @media (max-width: 700px) {
            body {
                font-size: 15px;
            }

            .document {
                width: 100%;
                margin: 0;
                padding: 34px 22px;
                border: 0;
                border-radius: 0;
                box-shadow: none;
            }

            h1 {
                font-size: 1.2rem;
            }

            p,
            li {
                text-align: left;
            }

            ol,
            ul {
                padding-left: 1.65rem;
            }
        }

        @media print {
            @page {
                size: A4;
                margin: 2cm;
            }

            body {
                background: #fff;
                color: #000;
                font-size: 11pt;
            }

            .document {
                width: auto;
                margin: 0;
                padding: 0;
                border: 0;
                box-shadow: none;
            }

            a {
                color: #000;
                text-decoration: none;
            }

            h1 {
                break-after: avoid;
            }

            li,
            p {
                orphans: 3;
                widows: 3;
            }
        }