
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: 62.5%;
        }

        body {
            font-family: "Source Sans Pro", Arial, sans-serif;
            font-size: 16px;
            font-size: 1.6rem;
            line-height: 1.6;
            color: #404040;
            background-color: #f0f0f0;
        }

        .site-container {
            max-width: 1180px;
            margin: 0 auto;
            background-color: #fff;
        }

        header.site-header {
            background-color: #fff;
            text-align: center;
            padding: 3em 4.661%;
            border-bottom: 1px solid #e6e6e6;
        }

        .site-title {
            font-family: "Oswald", sans-serif;
            font-size: 36px;
            font-size: 3.6rem;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0.5em;
            line-height: 1.3333;
        }

        .site-title a {
            color: #333;
            text-decoration: none;
        }

        .site-title a:hover {
            color: #e1122a;
        }

        .site-description {
            font-size: 13px;
            font-size: 1.3rem;
            color: #333;
            line-height: 1.8462;
        }

        nav.main-navigation {
            background-color: #B5A994;
            padding: 1em 4.661%;
            border-bottom: 2px solid rgba(0, 0, 0, 0.15);
        }

        nav.main-navigation ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5em;
        }

        nav.main-navigation li {
            position: relative;
        }

        nav.main-navigation a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-size: 1.4rem;
            font-weight: bold;
            text-transform: uppercase;
            padding: 0.5em 1em;
            display: block;
            transition: color 0.2s ease;
        }

        nav.main-navigation a:hover {
            color: #4f4f4f;
        }

        nav.main-navigation li.current-menu-item > a {
            color: #4f4f4f;
        }

        main.site-content {
            padding: 3em 4.661%;
        }

        h1 {
            font-family: "Oswald", sans-serif;
            font-size: 24px;
            font-size: 2.4rem;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #333;
            margin-bottom: 1em;
            line-height: 1.2;
        }

        article p {
            margin-bottom: 1.5em;
            line-height: 1.6;
        }

        article h2 {
            font-family: "Oswald", sans-serif;
            font-size: 21px;
            font-size: 2.1rem;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #333;
            margin: 1.5em 0 1em;
        }

        article h3 {
            font-family: "Oswald", sans-serif;
            font-size: 18px;
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #333;
            margin: 1.5em 0 1em;
        }

        .transition-section {
            margin: 3em 0;
            padding: 2em 0;
            border-top: 1px solid #f2f2f2;
        }

        .transition-section p {
            margin-bottom: 1.5em;
            line-height: 1.6;
        }

        {% if links %}
        .links-section {
            margin: 3em 0;
            padding: 3em 4.661%;
            background-color: #fafafa;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .links-section h3 {
            font-family: "Oswald", sans-serif;
            font-size: 18px;
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #333;
            margin-bottom: 1em;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.5em;
            margin-bottom: 2em;
        }

        .links-section li {
            padding: 0.5em 0;
            border-top: 1px solid #e5e5e5;
        }

        .links-section li:first-child {
            border-top: none;
        }

        .links-section a {
            color: #e1122a;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .links-section a:hover {
            color: #aaa;
        }
        {% endif %}

        footer.site-footer {
            background-color: #404040;
            color: #fff;
            text-align: center;
            padding: 24px 4.661%;
            font-size: 12px;
            font-size: 1.2rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-top: 1px solid #d9d9d9;
        }

        footer.site-footer a {
            color: #fff;
            text-decoration: none;
        }

        footer.site-footer a:hover {
            color: #B5A994;
        }

        @media screen and (min-width: 600px) {
            .links-section ul {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media screen and (min-width: 768px) {
            nav.main-navigation {
                padding: 0.25em 55px;
            }

            nav.main-navigation ul {
                gap: 0;
            }

            nav.main-navigation li {
                padding: 0.75em 1em 0.75em 0;
            }

            nav.main-navigation a {
                padding: 0;
            }

            nav.main-navigation li:not(:last-child) a::after {
                content: " •";
                color: #4F4F4F;
                margin-left: 1em;
            }
        }

        @media screen and (min-width: 1180px) {
            .site-container {
                padding: 0;
            }

            main.site-content {
                padding: 3em 55px;
            }

            header.site-header {
                padding: 3em 55px;
            }

            nav.main-navigation {
                padding: 0.25em 55px;
            }

            .links-section {
                padding: 3em 55px;
            }

            footer.site-footer {
                padding: 24px 55px;
            }
        }
    