:root {
    /* Colors */
    --color: #000;
    --bg-color: #f9f9f9;
    --hover-bg-color: #e9e9e9;
    --primary-color: #fc4c02;
    --secondary-color: #f68727;
    --muted-color: #999;
    --link-color: #17f;
    --code-color: var(--primary-color);
    --code-bg-color: #fff;

    /* Typography */
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --code-font: Menlo, Consolas, Monaco, Lucida Console, monospace;
    --code-font-size: 0.75rem;
    --bold: 700;
    --x-bold: 900;
    --line-height: 1.5em;
    --line-height-heading: 1.3em;
    --text-transform-heading: uppercase;

    /* Borders and corners */
    --border-color: #000;
    --border-color-light: #ccc;
    /* Used for inline content  */

    --border-radius: 6px;
    --border-radius-large: 8px;
    --border-radius-xl: 12px;

    /* Layout */
    --page-width: 56rem;

    /* Breakpoints */
    --sm-screen: 720px;
}

body {
    margin: 0;
    font-family: "\9ED1\4F53", "Arial", "Helvetica", "sans-serif";
    background: var(--bg-color);
}

/* Elements
* * ========================================================================== */
hr {
    border: 0;
    border-top: 1px solid var(--border-color-light);
}

@media (min-width: 720px) {
    hr {
        margin-left: 0;
    }
}

/* -- Examples -- */
.image-row {
    text-align: center;
}

@media (min-width: 720px) {
    .image-row {
        text-align: left;
    }
}

.example-image-link {
    display: inline-block;
    padding: 4px;
    margin: 0 0.2rem 0.6rem 0.2rem;
    /* background-color: var(--bg-color); */
    background-color: #eee;
    line-height: 0;
    border-radius: var(--border-radius-large);
}

.example-image-link:hover {
    background-color: var(--primary-color);
}

.example-image {
    width: 10rem;
    border-radius: var(--border-radius);
}

@media (max-width: 480px) {
    .example-image {
        width: 100%;
        height: 100%;
    }
}

.wp-section {
    padding: 2rem;
}

h1.title {
    margin: 0;
    padding: 1.5rem 0;
    color: #fff;
    background: #000;
    text-align: center;
}

.link {
    margin: 10px auto;
    font-size: 14px;
}