        .icon[data-astro-cid-patnjmll] {
            display: inline-block;
            height: 1.2em;
            width: 1.2em;
            stroke: currentColor;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
            vertical-align: text-bottom
        }

        :root {
            --white: 214 20% 98%;
            --light-gray: 214 33% 94%;
            --medium-gray: 214 33% 86%;
            --dark: 214 33% 10%;
            --pink: 345 80% 60%
        }

        html {
            background: #ebeff5;
            background: hsl(var(--light-gray));
            color: #111822;
            color: hsl(var(--dark));
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            font-size: 14px
        }

        body {
            background: #f9fafb;
            background: hsl(var(--white));
            border-radius: .25rem;
            font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
            line-height: 1.5rem;
            margin: 1rem auto;
            max-width: min(100%, 80ch);
            padding: .5rem 1.5rem;
            position: relative
        }

        h1 {
            font-size: 1.6rem;
            padding: 0 3rem;
            text-align: center
        }

        h2 {
            color: #eb4770;
            color: hsl(var(--pink));
            font-size: 1.2rem;
            font-weight: 900;
            margin-bottom: 1rem;
            margin-top: 3rem;
            text-transform: uppercase
        }

        h3 {
            font-size: 1rem;
            margin-bottom: .25rem;
            position: relative
        }

        h3,
        h4 {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 0
        }

        h4 {
            font-style: italic;
            font-weight: 400;
            margin-bottom: .5rem
        }

        h4 a {
            display: inherit;
            justify-content: inherit;
            width: 100%
        }

        p,
        ul {
            margin-bottom: 1.5rem;
            margin-top: 0
        }

        ol {
            display: flex;
            flex-wrap: wrap;
            gap: .4rem;
            list-style: none;
            margin: 0 0 1rem;
            padding: 0
        }

        .cmd {
            font-size: 12px;
        }

        .cmd code {
            border: 1px solid hsl(345 80% 60%/.3);
            background: hsl(var(--pink)/.05);
            padding: 2px 4px;
            font-size: 10px;
            border-radius: 0.25rem;
        }

        ol>li {
            background: #111822;
            background: hsl(var(--dark));
            border: 1px solid #111822;
            border: 1px solid hsl(var(--dark));
            border-radius: .25rem;
            color: #f9fafb;
            color: hsl(var(--white));
            font-size: .9rem;
            font-weight: 700;
            line-height: 1.25rem;
            padding: .2rem .3rem
        }

        section.company {
            margin-bottom: 3rem
        }

        header {
            margin-bottom: 1.5rem
        }

        .spread {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin: 0 auto .5rem
        }

        .spread span {
            word-wrap: normal
        }

        footer {
            font-size: .8rem;
            text-align: right
        }

        a {
            color: #111822;
            color: hsl(var(--dark));
            text-decoration-color: #eb4770;
            text-decoration-color: hsl(var(--pink));
            text-decoration-style: solid;
            text-decoration-thickness: 2px
        }

        a:focus,
        a:hover {
            text-decoration-color: #111822;
            text-decoration-color: hsl(var(--dark))
        }

        h1 a,
        h2 a,
        h3 a,
        h4 a,
        h5 a,
        h6 a {
            -webkit-text-decoration: none;
            text-decoration: none
        }

        .print-btn {
            background: #eb47700d;
            background: hsl(var(--pink)/.05);
            border: 1px solid hsl(345 80% 60%/.3);
            border: 1px solid hsl(var(--pink)/.3);
            border-radius: .25rem;
            cursor: pointer;
            font-size: 1rem;
            padding: .5rem;
            position: absolute;
            right: 1.5rem;
            top: 1.5rem;
            height: 36px;
        }

        .print-btn img {
            height: 22px;
            width: auto;
            max-width: 100%;
        }

        .print {
            display: none
        }

        @media (max-width: 480px) {
            .print-btn {
                padding: .2rem;
                height: 26px;
            }

            .print-btn img {
                height: 18px;
            }
        }

        @media print {

            body,
            html {
                background: #fff;
                color: #000;
                margin: 0;
                max-width: 100%;
                padding: 0
            }

            .print {
                display: inherit
            }

            .noprint {
                display: none
            }

            h1 {
                margin-bottom: 1rem;
                margin-top: 0
            }

            h2,
            h3,
            h4 {
                color: #000;
                page-break-after: avoid;
                -moz-column-break-after: avoid;
                break-after: avoid-page
            }

            a {
                color: #000;
                text-decoration-color: #000
            }

            .break {
                page-break-after: always;
                -moz-column-break-after: page;
                break-after: page
            }

            ol>li {
                background: #f9fafb;
                background: hsl(var(--white));
                border: 1px solid #111822;
                border: 1px solid hsl(var(--dark));
                color: #111822;
                color: hsl(var(--dark))
            }
        }